-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_parser.cpp
266 lines (250 loc) · 5.05 KB
/
db_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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <algorithm>
#include <functional>
#include <cctype>
#include <locale>
#include "db_parser.h"
#include "review.h"
using namespace std;
DBParser::DBParser()
{
lineno_ = 1;
error_ = false;
}
DBParser::~DBParser()
{
for(map<string, ProductParser*>::iterator it = parsers_.begin();
it != parsers_.end();
++it){
delete it->second;
}
}
void DBParser::addProductParser(ProductParser* p)
{
parsers_.insert(make_pair(p->categoryID(), p));
}
bool DBParser::parse(string db_filename, DataStore& ds)
{
int numProds = 0;
int numUsers = 0;
int numReviews = 0;
#ifdef DEBUG
cout << "Starting parsing" << endl;
#endif
ifstream ifile(db_filename.c_str());
if(ifile.fail()){
return true;
}
lineno_ = 1;
string line;
PState state = INIT;
while(!ifile.fail() && !error_){
getline(ifile, line);
#ifdef DEBUG
cout << "Line: " << line << endl;
#endif
stringstream ss(line);
string token;
if(state == INIT){
if( ss >> token ){
if(token == "<products>"){
#ifdef DEBUG
cout << "Found product" << endl;
#endif
state = PRODUCTS;
}
}
}
else if( state == PRODUCTS ){
if( ss >> token) {
if( token == "</products>" ){
#ifdef DEBUG
cout << "Found /product" << endl;
#endif
state = FIND_USERS;
}
else {
Product* p = parseProduct(token, ifile);
if(!error_ && p != NULL){
ds.addProduct(p);
numProds++;
}
}
}
}
else if( state == FIND_USERS){
if( ss >> token ){
if(token == "<users>"){
state = READ_USERS;
#ifdef DEBUG
cout << "Found users" << endl;
#endif
}
}
}
else if( state == READ_USERS){
if( ss >> token) {
if( token == "</users>" ){
#ifdef DEBUG
cout << "Found /users" << endl;
#endif
state = FIND_REVIEWS;
}
else {
ss.clear();
ss.str(line);
User* u = parseUser(ss);
if(u){
ds.addUser(u);
numUsers++;
}
}
}
}
else if( state == FIND_REVIEWS){
if( ss >> token ){
if(token == "<reviews>"){
state = READ_REVIEWS;
#ifdef DEBUG
cout << "Found reviews" << endl;
#endif
}
}
}
else if( state == READ_REVIEWS){
if( ss >> token) {
if( token == "</reviews>" ){
#ifdef DEBUG
cout << "Found /reviews" << endl;
#endif
state = DONE;
}
else {
string prodName = token;
Review* r = parseReview(ifile, line);
if(r){
ds.addReview(r);
numReviews++;
}
}
}
}
if(error_){
cerr << "Parse error on line " << lineno_ << ": " << errorMsg_ << endl;
}
lineno_++;
}
if(!error_){
cout << "Successfully parsed " << numProds << " products, " <<
numUsers << " users, and " << numReviews << " reviews." << endl;
}
return error_;
}
Product* DBParser::parseProduct(const string& category,
istream& is)
{
map<string,ProductParser*>::iterator it = parsers_.find(category);
if(it != parsers_.end()){
return it->second->parse(category, is, error_, errorMsg_, lineno_);
}
else {
error_ = true;
string msg = "No product parser available for category: ";
errorMsg_ = msg + category;
return NULL;
}
}
User* DBParser::parseUser(istream& is)
{
string username;
int age;
double balance;
int type;
int password;
is >> username;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read username";
}
is >> age;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read age";
}
is >> balance;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read balance";
}
is >> type;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read type";
}
is >> password;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read type";
}
if(error_){
return NULL;
}
else {
return new User(username, age, balance, type, password);
}
}
Review* DBParser::parseReview(istream& is, string prodname)
{
int rating;
string date;
string review_text;
string line;
string username;
is >> rating;
if( is.fail() || (rating < 1 || rating > 5) ){
error_ = true;
errorMsg_ = "Unable to read rating";
}
is>>username;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read date";
}
is >> date;
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read date";
}
// skip over whitespace but not newlines
char c = is.peek();
while(c == ' ' || c == '\t'){
is.get();
c = is.peek();
}
// get the review text
getline(is, review_text);
if( is.fail() ){
error_ = true;
errorMsg_ = "Unable to read review text";
}
lineno_++;
if(error_){
return NULL;
}
else {
return makeReview(prodname,username, rating, date, review_text);
}
}
Review* DBParser::makeReview(string& prodname, string& username, int& rating, string& date, string& review_text)
{
while(prodname[0] == ' '){
prodname.erase(prodname.begin()+0);
}
while(prodname[prodname.size()-1] == ' '){
prodname.erase(prodname.begin()+prodname.size()-1);
}
return new Review(prodname,username, rating, date, review_text);
}