-
Notifications
You must be signed in to change notification settings - Fork 1
/
input.h
executable file
·288 lines (257 loc) · 7.47 KB
/
input.h
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*
* Copyright (C) 2007 Andre Wehe, Mukul Bansal, Oliver Eulenstein
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef INPUT_H
#define INPUT_H
// legal characters
// std::string legalChars4Name = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_";
#define legalChar4Name(c) (\
((c>='a') && (c<='z')) || \
((c>='A') && (c<='Z')) || \
((c>='0') && (c<='9')) | \
(c=='+') | \
(c=='-') | \
(c=='.') | \
(c=='_') \
)
#define legalChar4Number(c) (\
((c>='0') && (c<='9')) || \
(c=='.') || \
(c=='-') || \
(c=='+') || \
(c=='e') \
)
#include <stack>
#include <string>
#include <sstream>
namespace NS_input {
using namespace std;
inline bool legalstring(const std::string &str) {
for (unsigned int i=0,iEE=str.length(); i<iEE; ++i) {
if (!legalChar4Name(str[i])) return false;
}
return true;
}
inline std::string getlegalstring(const std::string &str) {
if (legalstring(str)) return str;
std::ostringstream os;
os << '"';
for (unsigned int i=0,iEE=str.length(); i<iEE; ++i) {
if (str[i] != '"') os << str[i];
}
os << '"';
return os.str();
}
// interface for callbacks for comments
class InputCommentCallbackBase {
public:
virtual void commentFound(string &str) = 0;
virtual ~InputCommentCallbackBase() {};
};
// handles intup from a stream
class Input {
public:
std::string legalChars4Name;
istream *in;
int prevline, line;
int prevcolumn, column;
stack<char> st;
bool skipComments;
Input(istream *in = NULL, int line = 1, int column = 1) : in(in) {
legalChars4Name = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_";
this->line = line;
prevline = line;
this->column = column;
prevcolumn = column;
skipComments = true;
callbackflag = false;
}
// set the input stream
inline void setInputStream(istream &is) {
in = &is;
}
// checks if c is a whitespace
inline bool whitespace(char &c) {
return ((c==' ') || (c=='\t') || (c=='\n') || (c=='\r') || (c=='\f'));
}
// gets the next character
inline bool nextChar(char &c) {
if (!st.empty()) {
c = st.top();
st.pop();
return true;
}
if (!in->get(c)) return false;
prevcolumn = column++;
prevline = line;
if (c == '\n') {
line++;
column = 1;
}
return true;
}
// gets the next character that is not a whitespace
inline bool nextAnyChar(char &c) {
while (nextChar(c)) {
if ((skipComments) && (c=='[')) {
ostringstream comment;
comment << c;
for (;;) {
if (!nextChar(c)) return false;
comment << c;
if (c==']') {
if (!nextChar(c)) return false;
break;
}
}
string str = comment.str();
if (callbackflag) {
commentcallback->commentFound(str);
}
}
if (!whitespace(c)) return true;
}
return false;
}
// skip following white spaces
inline bool skipWhiteSpaces() {
char c;
if (!nextAnyChar(c)) return false;
pushBack(c);
return true;
}
// puts 1 character back onto the stream
inline void pushBack(const char c) {
st.push(c);
}
// reads a string
inline string getString() {
ostringstream name;
char c;
while (nextChar(c)) {
if (whitespace(c)) {
pushBack(c);
break;
}
name << c;
};
return name.str();
}
// read a comment
inline string getComment() {
setSkipComments(false);
ostringstream comment;
char c;
if (nextAnyChar(c)) {
if (c != '[') pushBack(c);
else {
comment << '[';
while (nextChar(c) && (c != ']')) {
comment << c;
}
comment << ']';
}
}
setSkipComments(true);
return comment.str();
}
// read a name
inline string getName() {
ostringstream name;
char c;
if (!nextAnyChar(c)) return "";
if ((c == '\'') || (c == '"')) {
while (nextChar(c) && (c != '\'') && (c != '"')) {
name << c;
}
} else {
do {
if (legalChar4Name(c)) {
name << c;
} else {
pushBack(c);
break;
}
} while (nextChar(c));
}
return name.str();
}
// read a numeric value
inline double readNumber() {
double value;
if (!readNumber(value)) ERROR_exit("cannot read numeric value at " << getPos());
return value;
}
// read a numeric value
template<typename T>
inline bool readNumber(T &value) {
ostringstream name;
char c;
if (!nextAnyChar(c)) return 0;
if ((c == '\'') || (c == '"')) {
while (nextChar(c) && (c != '\'') && (c != '"')) {
name << c;
}
} else {
do {
if (legalChar4Number(c)) {
name << c;
} else {
pushBack(c);
break;
}
} while (nextChar(c));
}
// trim leading whitespace
string str2 = name.str();
char const delims[] = " \t\r\n\f";
string::size_type notwhite = str2.find_first_not_of(delims);
str2.erase(0, notwhite);
// trim trailing whitespace
notwhite = str2.find_last_not_of(delims);
str2.erase(notwhite+1);
// convert to float
istringstream ss(str2);
ss >> value;
if (ss.fail()) return false;
// look for junk after the value
string junk;
ss >> junk;
if (junk.size() != 0) return false;
return true;
}
// return the current postion as a string
inline string getPos() {
ostringstream os;
os << "line " << line << " column " << column;
return os.str();
}
// return the previous postion as a string
inline string getLastPos() {
ostringstream os;
os << "line " << prevline << " column " << prevcolumn;
return os.str();
}
// ignore comments when reading input stream or not
inline void setSkipComments(bool flag) {
skipComments = flag;
}
// set a callback that gets executed when a comment is read
InputCommentCallbackBase *commentcallback;
bool callbackflag;
inline void setCommentCallback(InputCommentCallbackBase *obj) {
callbackflag = (obj != NULL);
commentcallback = obj;
}
};
} // end namespace
#endif