-
Notifications
You must be signed in to change notification settings - Fork 2
/
CSVParser.hpp
429 lines (379 loc) · 11 KB
/
CSVParser.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
#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 : char
{
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 bool operator==(const char c, const Term t)
{
switch (t)
{
case Term::CRLF:
return c == '\r' || c == '\n';
default:
return static_cast<char>(t) == c;
}
}
inline bool operator!=(const char c, const Term t)
{
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), data(nullptr)
{
}
explicit Field(const std::string& str) : type(FieldType::DATA), data(&str)
{
}
FieldType type;
const 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::string m_input_filename;
// Buffer capacities
static constexpr int FIELDBUF_CAP = 1024;
static constexpr int INPUTBUF_CAP = 1024 * 128;
// Buffers
std::string m_fieldbuf{};
const char* m_inputbuf;
// Misc
bool m_eof = false;
size_t m_cursor = 0;
size_t m_inputbuf_size = 0;
size_t m_file_size = 0;
std::streamoff m_scanposition = -INPUTBUF_CAP;
public:
// 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(const char* input, size_t cursor, size_t inputbuf_size, size_t file_size)
: m_inputbuf(input), m_cursor(cursor), m_inputbuf_size(inputbuf_size), m_file_size(file_size)
{
// UTF-8 BOM is not desired at the start of file
if (inputbuf_size > 3 && input[0] == 0xEF && input[1] == 0xBB && input[2] == 0xBF)
{
throw std::invalid_argument("Invalid input encoding (UTF-8 without BOM is required)");
}
// Reserve space upfront to improve performance
m_fieldbuf.reserve(FIELDBUF_CAP);
// find nearest start of the line to start of the input (backward)
if (m_cursor > 0)
{
while (m_inputbuf[m_cursor] != m_terminator && m_cursor >= 0)
{
m_cursor--;
}
m_cursor++;
}
// find nearest end of the line to end of the input (backward)
if (m_inputbuf_size < m_file_size)
{
while (m_inputbuf[m_inputbuf_size] != m_terminator && m_inputbuf_size >= 0)
{
m_inputbuf_size--;
}
m_inputbuf_size++;
}
}
// Change the quote character
CsvParser& quote(char c) noexcept
{
m_quote = c;
return *this;
}
// Change the delimiter character
CsvParser& delimiter(char c) noexcept
{
m_delimiter = c;
return *this;
}
// Change the terminator character
CsvParser& terminator(char c) noexcept
{
m_terminator = static_cast<Term>(c);
return *this;
}
// The parser is in the empty state when there are
// no more tokens left to read from the input buffer
bool empty()
{
return m_state == State::EMPTY;
}
// Not the actual position in the stream (its buffered) just the
// position up to last availiable token
std::streamoff position() const
{
return m_scanposition + static_cast<std::streamoff>(m_cursor);
}
// Reads a single field from the CSV
Field next_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 (;;)
{
// 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 (m_cursor == m_inputbuf_size)
{
m_state = State::EMPTY;
return !m_fieldbuf.empty() ? Field(m_fieldbuf) : Field(FieldType::CSV_END);
}
const char* maybe_token = &m_inputbuf[m_cursor];
// Parsing the CSV is done using a finite state machine
char c = *maybe_token;
switch (m_state)
{
case State::IN_FIELD:
m_cursor++;
if (c == m_terminator)
{
handle_crlf(c);
m_state = State::END_OF_ROW;
return Field(m_fieldbuf);
}
if (c == m_delimiter)
{
m_state = State::START_OF_FIELD;
return Field(m_fieldbuf);
}
else
{
m_fieldbuf += c;
}
break;
case State::START_OF_FIELD:
m_cursor++;
if (c == m_terminator)
{
handle_crlf(c);
return Field(FieldType::ROW_END);
}
if (c == m_quote)
{
m_state = State::IN_QUOTED_FIELD;
}
else if (c == m_delimiter)
{
return Field(m_fieldbuf);
}
else
{
m_state = State::IN_FIELD;
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(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(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' || m_cursor == m_inputbuf_size)
{
return;
}
const char* token = &m_inputbuf[m_cursor];
if (token && *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.
inline const char* top_token()
{
// Return null if there's nothing left to read
if (m_cursor == m_inputbuf_size)
{
return nullptr;
}
return &m_inputbuf[m_cursor];
}
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)
{
if (!end)
{
m_row.reserve(50);
m_current_row = 0;
next();
}
}
iterator& operator++()
{
next();
return *this;
}
iterator operator++(int)
{
iterator i = (*this);
++(*this);
return i;
}
bool operator==(const iterator& other) const
{
return m_current_row == other.m_current_row && m_row.size() == other.m_row.size();
}
bool operator!=(const iterator& other) const
{
return !(*this == other);
}
reference operator*() const
{
return m_row;
}
pointer operator->() const
{
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++;
}
}
}
};
iterator begin()
{
return iterator(this);
};
iterator end()
{
return iterator(this, true);
};
};
} // namespace csv
} // namespace aria
#endif