-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.cpp
221 lines (197 loc) · 4.62 KB
/
parser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
//
// parser.cpp
// Project2
//
// Created by Michael Bird on 7/10/14.
// Copyright (c) 2014 Michael Bird. All rights reserved.
//
#include "parser.h"
#include <string>
#include <vector>
#include <sstream>
#include <iostream>
parser::parser() {}
parser::~parser() {}
void parser::parse(vector<Token> tokenlist_) {
tokenlist = tokenlist_;
//get_token();
//current_token_value = tokenlist[index].get_token_value();
//current_token_type = tokenlist[index].get_token_type();
try {
update_token();
match("SCHEMES");
match("COLON");
schemelist();
match("FACTS");
match("COLON");
update_token();
factlist();
match("RULES");
match("COLON");
rulelist();
match("QUERIES");
match("COLON");
querylist();
match("ENDFILE");
if(index > tokenlist.size()) {
error();
}
//cout << D.toString() << endl;
//outputFile << D.toString();
}
catch (string e){
//outputFile << "Failure!" <<endl << " " << e << endl;
cout << "Failure!" <<endl << " " << e << endl;
}
//outputFile.close();
}
DataLog parser::get_datalog_object() {
return D;
}
void parser::get_token_type() {
current_token_type = tokenlist[index].get_token_type();
}
void parser::get_token_value() {
current_token_value = tokenlist[index].get_token_value();
}
void parser::get_token_line() {
current_token_line = tokenlist[index].get_token_line();
}
void parser::update_token() {
get_token_type();
get_token_value();
get_token_line();
}
void parser::match( string match_token) {
if(index > (tokenlist.size())) {
//return;
error();
}
update_token();
if(match_token == current_token_type) {
index++;
}
else error();
}
void parser::error() {
stringstream ss;
ss << "(" << current_token_type << ",\"" << current_token_value << "\"," << current_token_line << ")";
string error = ss.str();
throw error;
}
void parser::predicatelist() {
predicate();
R.add_rule(P);
if (current_token_type == "COMMA") {
match("COMMA");
predicatelist();
}
}
void parser::predicate() {
match("ID");
P.clear();
P.add_id(current_token_value);
update_token();
match("LEFT_PAREN");
parameterlist();
match("RIGHT_PAREN");
update_token();
//add predicate to datalog program
}
void parser::parameterlist() {
// update_token();
parameter();
update_token();
if(current_token_type == "COMMA"){
match("COMMA");
//P.add_param(current_token_value);
parameterlist();
}
/*
if(current_token_type == "STRING"){
match("STRING");
parameterlist();
}*/
}
void parser::parameter() {
update_token();
if (current_token_type == "ID") {
match("ID");
P.add_param(current_token_value);
}
else if (current_token_type == "STRING") {
match("STRING");
P.add_param("'"+current_token_value+"'");
D.add_to_domains(current_token_value);
}
else
error();
//P.add_param(get_token_value());
//P.add_param("'");
//Par.add_param(get_token_value());
//else
// match("ERROR");
}
void parser::schemelist() {
scheme();
D.add_to_schemes(P);
//get_token_type();
if(current_token_type == "ID")
schemelist();
}
void parser::scheme() {
predicate();
}
void parser::factlist() {
if (current_token_type != "RULES") {
fact();
factlist();
}
}
void parser::fact() {
update_token();
predicate();
match("PERIOD");
D.add_to_facts(P);
update_token();
}
void parser::rulelist() {
update_token();
if(current_token_type != "QUERIES") {
rule();
match("PERIOD");
D.add_to_rules(R);
update_token();
if(current_token_type == "ID")
rulelist();
else if(current_token_type == "COLON_DASH") {
match("COLON_DASH");
rulelist();
}
else if(current_token_type == "COMMA") {
match("COMMA");
rulelist();
}
else {}
}
}
void parser::rule() {
R.clear();
predicate();
R.add_head(P);
match("COLON_DASH");
predicatelist();
}
void parser::querylist() {
if(index < tokenlist.size()) {
query();
D.add_to_queries(P);
update_token();
if(current_token_type == "ID")
querylist();
}
}
void parser::query() {
predicate();
match("Q_MARK");
}