-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.h
279 lines (203 loc) · 5.93 KB
/
parser.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
#ifndef PARSER_H
#define PARSER_H
#include <cstring>
#include <vector>
#include <format>
#include <stdexcept>
#include "basic_types.h"
#include "file_helper.h"
#include "LinearAllocator.hpp"
using std::string;
using std::vector;
using std::format;
using std::runtime_error;
class Parser {
constexpr static long BUFFER_SIZE = 16384;
// File descriptor
int fd;
// Data buffer: gets constantly resized down when tokenization consumes all data
vector<char> buffer;
// Points to the first byte of unconsumed data (or nullptr if a new line needs to be sourced)
char *next_line;
// Points to the last returned line
char *line;
// Points to the last returned token
char *token;
// Current line number from the input file
unsigned long line_number;
// End-of-file (EOF) flag
bool eof;
// Allocates all permanent strings in a linear buffer, reducing calls to malloc()
LinearAllocator<char> linear_allocator;
// File helper that provides some useful input/output functions
FileHelper file_helper;
public:
Parser(char *filename);
virtual ~Parser();
//////////////////////
// Memory functions //
//////////////////////
inline char *get_stable_string(char *token) {
char *stable_token = linear_allocator.allocate(strlen(token) + 1) ;
strcpy(stable_token, token);
return stable_token;
}
////////////////////////////
// Core parsing functions //
////////////////////////////
template<typename T>
using conversion_function = T(*)(const char *, char **, int);
template<typename T, conversion_function<T> F>
inline T convert(char *token, int line_number) {
char *leftover;
T converted;
errno = 0;
converted = F(token, &leftover, 10);
if(errno != 0) {
throw runtime_error(format("Error in line {}: {}\n", line_number, strerror(errno)));
}
if(*leftover != '\0') {
throw runtime_error(format("Error in line {}: leftover bytes in token ({})\n", line_number, leftover));
}
return converted;
}
inline long parse_long(char *token) {
return convert<long, strtol>(token, line_number);
}
inline unsigned long parse_unsigned_long(char *token) {
return convert<unsigned long, strtoul>(token, line_number);
}
inline Number parse_number(char *token) {
if(strchr(token, '/') == nullptr) {
return Number(get_stable_string(token));
}
else {
char *fraction_token = token;
char *numerator = strsep(&fraction_token, "/");
char *numerator_stable = get_stable_string(numerator);
char *denominator = strsep(&fraction_token, "/");
char *denominator_stable = get_stable_string(denominator);
if(fraction_token != nullptr) {
throw runtime_error(format("Error in line {}: leftover bytes in token ({})\n", line_number, fraction_token));
}
return Number(numerator_stable, denominator_stable);
}
}
inline Number parse_number_or_infinity(char *token) {
if(strstr(token, "inf") == nullptr) {
return parse_number(token);
}
else {
if(strcmp(token, "inf") == 0) {
Number number("inf");
number.is_positive_infinity = true;
return number;
}
if(strcmp(token, "-inf") == 0) {
Number number("-inf");
number.is_negative_infinity = true;
return number;
}
throw runtime_error(format("Error in line {}: extraneous bytes in token ({})\n", line_number, token));
}
}
inline long get_long() {
char *token = get_token();
if(!token) {
throw runtime_error(format("Error in line {}: expected signed integral value\n", line_number));
}
return parse_long(token);
}
inline unsigned long get_unsigned_long() {
char *token = get_token();
if(!token) {
throw runtime_error(format("Error in line {}: expected unsigned integral value\n", line_number));
}
return parse_unsigned_long(token);
}
inline Number get_number() {
char *token = get_token();
if(!token) {
throw runtime_error(format("Error in line {}: expected numeric value\n", line_number));
}
return parse_number(token);
}
inline Number get_number_or_infinity() {
char *token = get_token();
if(!token) {
throw runtime_error(format("Error in line {}: expected numeric value\n", line_number));
}
return parse_number_or_infinity(token);
}
///////////////////////////
// Tokenization functions //
///////////////////////////
inline char *get_line() {
line = strsep(&next_line, "\n");
// If we have some leftover bytes
while(next_line == nullptr && !eof) {
int leftover = strlen(line);
// If the leftover bytes were not in the beginning of the buffer,
// move it to the beginning
if(leftover != 0 && line != &buffer[0]) {
memmove(&buffer[0], line, leftover);
}
// Adds the space for the new chunk
buffer.resize(leftover + BUFFER_SIZE + 1);
// Reads the new chunk into the larger buffer
char *chunk = &buffer[leftover];
int bytes_read;
if((bytes_read = read(fd, chunk, BUFFER_SIZE)) <= 0) {
eof = true;
}
chunk[bytes_read] = '\0';
// Try again
next_line = &buffer[0];
line = strsep(&next_line, "\n");
}
// If EOF, considers the leftover bytes as a line of its own
if(next_line == nullptr && eof) {
if(line != nullptr && strlen(line) != 0) {
return line;
}
return nullptr;;
}
line_number++;
return line;
}
inline char *get_token() {
// If there's no line to get token, obtain one
if(line == nullptr) {
line = get_line();
// If the end of file is reached, there is no token
if(line == nullptr) {
return nullptr;
}
}
while(true) {
token = strsep(&line, " \t\n");
while(token[0] != '\0' && isspace(token[0])) {
token++;
}
if(token[0] != '\0') {
break;
}
// If there's no line to get token, obtain one
if(line == nullptr) {
line = get_line();
// If the end of file is reached, there is no token
if(line == nullptr) {
return nullptr;
}
}
}
return token;
}
/////////////////////////////
// Getter/setter functions //
/////////////////////////////
inline unsigned long get_line_number() {
return line_number;
}
};
#endif /* PARSER_H */