-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_parser.cpp
More file actions
237 lines (218 loc) · 5.68 KB
/
db_parser.cpp
File metadata and controls
237 lines (218 loc) · 5.68 KB
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
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <algorithm>
#include <functional>
#include <cctype>
#include <locale>
#include "db_parser.h"
#include "util.h"
using namespace std;
DBParser::DBParser()
{
lineno_ = 1;
error_ = false;
}
DBParser::~DBParser()
{
for(map<string, SectionParser*>::iterator it = parsers_.begin();
it != parsers_.end();
++it) {
delete it->second;
}
}
void DBParser::addSectionParser(const std::string& sectionName,
SectionParser* parser)
{
parsers_.insert(make_pair(sectionName, parser));
}
bool DBParser::parse(string db_filename, DataStore& ds)
{
#ifdef DEBUG
cout << "Starting parsing" << endl;
#endif
ifstream ifile(db_filename.c_str());
if(ifile.fail()) {
return true;
}
lineno_ = 1;
int startLineNo;
string line;
string sectionName;
PState state = FIND_SECTION;
stringstream sectionText;
while(!ifile.fail() && !error_) {
getline(ifile, line);
#ifdef DEBUG
cout << "Line: " << line << endl;
#endif
trim(line); // remove whitespace on either end
if(state == FIND_SECTION) {
if((line.size() > 2) && line[0] == '<' && line[line.size()-1] == '>') {
state = IN_SECTION;
sectionName = line.substr(1,line.size()-2);
startLineNo = lineno_ + 1;
#ifdef DEBUG
cout << "Found section: " << sectionName << endl;
#endif
sectionText.clear();
sectionText.str("");
}
}
else if(state == IN_SECTION) {
if((line.size() > 3) && line[0] == '<' && line[1] == '/' && line[line.size()-1] == '>') {
map<string, SectionParser*>::iterator it = parsers_.find(sectionName);
if(it != parsers_.end()) {
error_ = it->second->parse(sectionText, ds, startLineNo, errorMsg_);
if(error_) {
lineno_ = startLineNo;
}
}
else {
cerr << "No section parser available for " << sectionName << "..skipping!" << endl;
}
state = FIND_SECTION;
#ifdef DEBUG
cout << "End section: " << sectionName << endl;
#endif
}
else {
sectionText << line << '\n';
}
}
if(error_) {
cerr << "Parse error on line " << lineno_ << ": " << errorMsg_ << endl;
}
lineno_++;
}
if(!error_) {
for(map<string, SectionParser*>::iterator it = parsers_.begin();
it != parsers_.end();
++it)
{
it->second->reportItemsRead(cout);
}
}
return error_;
}
ProductSectionParser::ProductSectionParser()
{
numRead_ = 0;
}
ProductSectionParser::~ProductSectionParser()
{
for(map<string, ProductParser*>::iterator it = prodParsers_.begin();
it != prodParsers_.end();
++it) {
delete it->second;
}
}
void ProductSectionParser::addProductParser(ProductParser* p)
{
prodParsers_.insert(make_pair(p->categoryID(), p));
}
bool ProductSectionParser::parse(
std::istream& is,
DataStore& ds,
int& lineno,
std::string& errorMsg)
{
string line;
while(getline(is, line)) {
stringstream ss(line);
string category;
ss >> category;
map<string,ProductParser*>::iterator it = prodParsers_.find(category);
if(it == prodParsers_.end()) {
string msg = "No product parser available for category: ";
errorMsg = msg + category;
return true;
}
lineno++;
Product* p = parseProduct(category, is, lineno, errorMsg);
if(p != NULL) {
ds.addProduct(p);
numRead_++;
}
else {
return true;
}
}
return false;
}
Product* ProductSectionParser::parseProduct(const string& category,
istream& is,
int& lineno,
std::string& errorMsg)
{
bool error = false;
map<string,ProductParser*>::iterator it = prodParsers_.find(category);
if(it != prodParsers_.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;
}
}
void ProductSectionParser::reportItemsRead(std::ostream& os)
{
os << "Read " << numRead_ << " products" << endl;
}
UserSectionParser::UserSectionParser()
{
numRead_ = 0;
}
bool UserSectionParser::parse(
std::istream& is,
DataStore& ds,
int& lineno,
std::string& errorMsg)
{
string line;
while(getline(is, line)) {
stringstream ss(line);
User* u = parseUser(ss, ds, errorMsg);
if(u) {
ds.addUser(u);
numRead_++;
}
else {
return true;
}
lineno++;
}
return false;
}
User* UserSectionParser::parseUser(
std::istream& is,
DataStore& ds,
std::string& errorMsg)
{
string username;
double balance;
int type;
is >> username;
if( is.fail() ) {
errorMsg = "Unable to read username";
return NULL;
}
is >> balance;
if( is.fail() ) {
errorMsg = "Unable to read balance";
return NULL;
}
is >> type;
if( is.fail() ) {
errorMsg = "Unable to read type";
return NULL;
}
return new User(username, balance, type);
}
void UserSectionParser::reportItemsRead(std::ostream& os)
{
os << "Read " << numRead_ << " users" << endl;
}