-
Notifications
You must be signed in to change notification settings - Fork 29
/
parser.hpp
358 lines (304 loc) · 9.38 KB
/
parser.hpp
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#ifndef ARIA_CSV_H
#define ARIA_CSV_H
#include <fstream>
#include <memory>
#include <stdexcept>
#include <string>
#include <vector>
namespace aria {
namespace csv {
enum class Term { CRLF = -2 };
enum class FieldType { DATA, ROW_END, CSV_END };
using CSV = std::vector<std::vector<std::string>>;
// Checking for '\n', '\r', and '\r\n' by default
inline auto operator==(const char c, const Term t) -> bool {
switch (t) {
case Term::CRLF:
return c == '\r' || c == '\n';
default:
return static_cast<char>(t) == c;
}
}
inline auto operator!=(const char c, const Term t) -> bool { return !(c == t); }
// Wraps returned fields so we can also indicate
// that we hit row endings or the end of the csv itself
struct Field {
explicit Field(FieldType t) : type(t) {}
explicit Field(std::string &&str)
: type(FieldType::DATA), data(std::move(str)) {}
FieldType type;
std::string data;
};
// Reads and parses lines from a csv file
class CsvParser {
private:
// CSV state for state machine
enum class State {
START_OF_FIELD,
IN_FIELD,
IN_QUOTED_FIELD,
IN_ESCAPED_QUOTE,
END_OF_ROW,
EMPTY
};
State m_state = State::START_OF_FIELD;
// Configurable attributes
char m_quote = '"';
char m_delimiter = ',';
Term m_terminator = Term::CRLF;
std::istream *m_input;
// Buffer capacities
static constexpr int FIELDBUF_CAP = 1024;
static constexpr int INPUTBUF_CAP = 1024 * 128;
// Buffers
std::string m_fieldbuf{};
std::vector<char> m_inputbuf = std::vector<char>(INPUTBUF_CAP);
// Misc
bool m_eof = false;
size_t m_cursor = 0;
size_t m_bytes_read = 0;
std::streamoff m_scanposition = 0;
public:
// Delete copy constructor and assignment
CsvParser(const CsvParser &) = delete;
auto operator=(const CsvParser &) -> CsvParser & = delete;
// Allow move operations
CsvParser(CsvParser &&) = default;
auto operator=(CsvParser &&) -> CsvParser & = default;
// Creates the CSV parser which by default, splits on commas,
// uses quotes to escape, and handles CSV files that end in either
// '\r', '\n', or '\r\n'.
explicit CsvParser(std::istream &input) : m_input(&input) {
// Reserve space upfront to improve performance
m_fieldbuf.reserve(FIELDBUF_CAP);
if (!m_input->good()) {
throw std::runtime_error("Something is wrong with input stream");
}
}
// Change the quote character
auto quote(char c) noexcept -> CsvParser && {
m_quote = c;
return std::move(*this);
}
// Change the delimiter character
auto delimiter(char c) noexcept -> CsvParser && {
m_delimiter = c;
return std::move(*this);
}
// Change the terminator character
auto terminator(char c) noexcept -> CsvParser && {
m_terminator = static_cast<Term>(c);
return std::move(*this);
}
// The parser is in the empty state when there are
// no more tokens left to read from the input buffer
auto empty() -> bool { return m_state == State::EMPTY; }
// Not the actual position in the stream (its buffered) just the
// position up to last availiable token
auto position() const -> std::streamoff {
return m_scanposition + static_cast<std::streamoff>(m_cursor);
}
// Reads a single field from the CSV
auto next_field() -> Field {
if (empty()) {
return Field(FieldType::CSV_END);
}
m_fieldbuf.clear();
// This loop runs until either the parser has
// read a full field or until there's no tokens left to read
for (;;) {
char *maybe_token = top_token();
// If we're out of tokens to read return whatever's left in the
// field and row buffers. If there's nothing left, return null.
if (maybe_token == nullptr) {
m_state = State::EMPTY;
return !m_fieldbuf.empty() ? Field(std::move(m_fieldbuf))
: Field(FieldType::CSV_END);
}
// Parsing the CSV is done using a finite state machine
char c = *maybe_token;
switch (m_state) {
case State::START_OF_FIELD:
m_cursor++;
if (c == m_terminator) {
handle_crlf(c);
m_state = State::END_OF_ROW;
return Field(std::move(m_fieldbuf));
}
if (c == m_quote) {
m_state = State::IN_QUOTED_FIELD;
} else if (c == m_delimiter) {
return Field(std::move(m_fieldbuf));
} else {
m_state = State::IN_FIELD;
m_fieldbuf += c;
}
break;
case State::IN_FIELD:
m_cursor++;
if (c == m_terminator) {
handle_crlf(c);
m_state = State::END_OF_ROW;
return Field(std::move(m_fieldbuf));
}
if (c == m_delimiter) {
m_state = State::START_OF_FIELD;
return Field(std::move(m_fieldbuf));
}
m_fieldbuf += c;
break;
case State::IN_QUOTED_FIELD:
m_cursor++;
if (c == m_quote) {
m_state = State::IN_ESCAPED_QUOTE;
} else {
m_fieldbuf += c;
}
break;
case State::IN_ESCAPED_QUOTE:
m_cursor++;
if (c == m_terminator) {
handle_crlf(c);
m_state = State::END_OF_ROW;
return Field(std::move(m_fieldbuf));
}
if (c == m_quote) {
m_state = State::IN_QUOTED_FIELD;
m_fieldbuf += c;
} else if (c == m_delimiter) {
m_state = State::START_OF_FIELD;
return Field(std::move(m_fieldbuf));
} else {
m_state = State::IN_FIELD;
m_fieldbuf += c;
}
break;
case State::END_OF_ROW:
m_state = State::START_OF_FIELD;
return Field(FieldType::ROW_END);
case State::EMPTY:
throw std::logic_error("You goofed");
}
}
}
private:
// When the parser hits the end of a line it needs
// to check the special case of '\r\n' as a terminator.
// If it finds that the previous token was a '\r', and
// the next token will be a '\n', it skips the '\n'.
void handle_crlf(const char c) {
if (m_terminator != Term::CRLF || c != '\r') {
return;
}
char *token = top_token();
if ((token != nullptr) && *token == '\n') {
m_cursor++;
}
}
// Pulls the next token from the input buffer, but does not move
// the cursor forward. If the stream is empty and the input buffer
// is also empty return a nullptr.
auto top_token() -> char * {
// Return null if there's nothing left to read
if (m_eof && m_cursor == m_bytes_read) {
return nullptr;
}
// Refill the input buffer if it's been fully read
if (m_cursor == m_bytes_read) {
fill_buffer();
// Return null if there's nothing left to read
if (m_bytes_read == 0) {
return nullptr;
}
}
return &m_inputbuf[m_cursor];
}
void fill_buffer() {
m_input->read(m_inputbuf.data(), INPUTBUF_CAP);
m_bytes_read = static_cast<size_t>(m_input->gcount());
m_eof = m_input->eof();
m_cursor = 0;
if (m_scanposition == 0 && m_bytes_read >= 3 && m_inputbuf[0] == '\xEF' &&
m_inputbuf[1] == '\xBB' && m_inputbuf[2] == '\xBF') {
if (m_bytes_read > 3) {
m_cursor = 3;
} else {
m_bytes_read = 0;
}
}
m_scanposition += static_cast<std::streamoff>(m_bytes_read);
}
public:
// Iterator implementation for the CSV parser, which reads
// from the CSV row by row in the form of a vector of strings
class iterator {
public:
using difference_type = std::ptrdiff_t;
using value_type = std::vector<std::string>;
using pointer = const std::vector<std::string> *;
using reference = const std::vector<std::string> &;
using iterator_category = std::input_iterator_tag;
explicit iterator(CsvParser *p, bool end = false) : m_parser(p) {
static constexpr size_t DEFAULT_ROW_CAPACITY = 50;
if (!end) {
m_row.reserve(DEFAULT_ROW_CAPACITY);
m_current_row = 0;
next();
}
}
auto operator++() -> iterator & {
next();
return *this;
}
auto operator++(int) -> iterator {
iterator i = (*this);
++(*this);
return i;
}
auto operator==(const iterator &other) const -> bool {
return m_current_row == other.m_current_row &&
m_row.size() == other.m_row.size();
}
auto operator!=(const iterator &other) const -> bool {
return !(*this == other);
}
auto operator*() const -> reference { return m_row; }
auto operator->() const -> pointer { return &m_row; }
private:
value_type m_row{};
CsvParser *m_parser;
int m_current_row = -1;
void next() {
value_type::size_type num_fields = 0;
for (;;) {
auto field = m_parser->next_field();
switch (field.type) {
case FieldType::CSV_END:
if (num_fields < m_row.size()) {
m_row.resize(num_fields);
}
m_current_row = -1;
return;
case FieldType::ROW_END:
if (num_fields < m_row.size()) {
m_row.resize(num_fields);
}
m_current_row++;
return;
case FieldType::DATA:
if (num_fields < m_row.size()) {
m_row[num_fields] = std::move(field.data);
} else {
m_row.push_back(std::move(field.data));
}
num_fields++;
}
}
}
};
auto begin() -> iterator { return iterator(this); };
auto end() -> iterator { return iterator(this, true); };
};
} // namespace csv
} // namespace aria
#endif