forked from schrodinger/maeparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MaeParser.hpp
355 lines (288 loc) · 9.06 KB
/
MaeParser.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
#ifndef MAE_READER_HPP_
#define MAE_READER_HPP_
#include <cerrno>
#include <cstdio>
#include <map>
#include <stdexcept>
#include <string>
#include <boost/dynamic_bitset.hpp>
#include "MaeParserConfig.hpp"
#include "Buffer.hpp"
#include "MaeBlock.hpp"
#define MAEPARSER_EXCEPTION_BUFFER_SIZE 256
namespace schrodinger
{
namespace mae
{
/**
* Parse (and throw away) a comment of the form '# comment #'.
*/
void comment(Buffer& buffer);
/**
* Parse (and throw away) zero or more characters of whitespace including \t,
* \r, \n and ' ', along with any embedded comments.
*/
EXPORT_MAEPARSER void whitespace(Buffer& buffer);
/**
* Parse a triple colon or raise an exception.
*/
void triple_colon(Buffer& buffer);
/**
* Parse the specific character requested. Return true if successful, false if
* not.
*/
bool character(char c, Buffer& buffer);
/**
* Parse the specific character requested. Return true if successful, false if
* not. Update any save points if buffer reload is required.
*/
bool character(char c, Buffer& buffer, char*& save);
/**
* Parse a full (b|i|r|s)_<author>_<name> property key.
*
* Return NULL if a starting character of ':' is found (the beginning of the
* ':::' property name terminator).
*
* Raise a read_exception in any other situation.
*/
std::shared_ptr<std::string> property_key(Buffer& buffer);
/**
* Read through the opening '{' of a named or unnamed outer block.
*
* Set the name of the block in the provided argument; an empty string
* if unnamed. If EOF is reached, return false, otherwise return true.
*/
EXPORT_MAEPARSER std::string outer_block_beginning(Buffer& buffer);
template <typename T> T parse_value(Buffer& buffer);
class EXPORT_MAEPARSER read_exception : public std::exception
{
private:
char m_msg[MAEPARSER_EXCEPTION_BUFFER_SIZE];
void format(int line_number, int column, const char* msg);
public:
read_exception(const Buffer& buffer, const char* msg)
{
format(buffer.line_number, buffer.getColumn(), msg);
}
read_exception(int line_number, int column, const char* msg)
{
format(line_number, column, msg);
}
virtual const char* what() const throw() { return m_msg; }
};
/**
* A pure virtual base class for parsers. Allows us to store these in
* collections, so we can do things like easily invoke different parsers on
* each element while parsing a row of values.
*/
class EXPORT_MAEPARSER Parser
{
public:
virtual void parse(Buffer& buffer) = 0;
virtual ~Parser(){};
};
class EXPORT_MAEPARSER IndexedBlockParser
{
std::vector<std::string> m_property_names;
public:
virtual ~IndexedBlockParser(){};
virtual void parse(const std::string& name, size_t size,
Buffer& buffer) = 0;
virtual std::shared_ptr<IndexedBlockMapI> getIndexedBlockMap() = 0;
};
class EXPORT_MAEPARSER IndexedBlockBuffer
{
private:
std::vector<std::string> m_property_names;
std::string m_name;
TokenBufferList m_tokens_list;
size_t m_rows;
public:
IndexedBlockBuffer(const std::string& name, size_t rows)
: m_property_names(), m_name(name), m_rows(rows)
{
}
void addPropertyName(const std::string name)
{
m_property_names.push_back(name);
}
/**
* Parse the indexed block values, store them in a linked list of buffers.
*/
virtual void parse(Buffer& buffer);
/**
* Parse a value.
*/
void value(Buffer& buffer);
void getData(size_t ix, const char** data, size_t* const len) const
{
m_tokens_list.getData(ix, data, len);
}
std::string getName() const { return m_name; }
size_t size() const { return m_rows; }
IndexedBlock* getIndexedBlock();
};
class EXPORT_MAEPARSER BufferedIndexedBlockParser : public IndexedBlockParser
{
private:
std::shared_ptr<BufferedIndexedBlockMap> m_indexed_block_map;
public:
BufferedIndexedBlockParser();
virtual ~BufferedIndexedBlockParser();
virtual std::shared_ptr<IndexedBlockMapI> getIndexedBlockMap();
virtual void parse(const std::string& name, size_t size, Buffer& buffer);
};
class EXPORT_MAEPARSER DirectIndexedBlockParser : public IndexedBlockParser
{
std::shared_ptr<IndexedBlockMap> m_indexed_block_map;
public:
virtual ~DirectIndexedBlockParser();
virtual void parse(const std::string& name, size_t size, Buffer& buffer);
virtual std::shared_ptr<IndexedBlockMapI> getIndexedBlockMap();
};
class EXPORT_MAEPARSER IndexedValueParser : public Parser
{
public:
virtual void addToIndexedBlock(IndexedBlock* block) = 0;
};
template <typename T> class IndexedValueCollector : public IndexedValueParser
{
public:
std::string m_name;
std::vector<T> m_values;
boost::dynamic_bitset<>* m_is_null;
public:
explicit IndexedValueCollector(std::string name, size_t size)
: m_name(name), m_values(), m_is_null(nullptr)
{
m_values.reserve(size);
m_is_null = nullptr;
}
~IndexedValueCollector()
{
if (m_is_null) {
delete m_is_null;
}
}
virtual void parse(Buffer& buffer)
{
if (buffer.current >= buffer.end) {
if (!buffer.load()) {
throw read_exception(buffer, "Unexpected EOF.");
}
}
if (*buffer.current == '<') {
char* save = buffer.current;
++buffer.current;
if (buffer.current >= buffer.end) {
if (!buffer.load(save)) {
throw read_exception(buffer, "Unexpected EOF.");
}
}
// TODO: not sure, but I assume that unquoted strings like
// <foo> are allowed as values. Ugh. This requires saving the
// starting point of '<' in case we need to back up.
if (*buffer.current != '>') {
// Back up and parse as a normal value.
--buffer.current;
} else {
++buffer.current;
if (m_is_null == nullptr) {
m_is_null =
new boost::dynamic_bitset<>(m_values.capacity());
}
m_is_null->set(m_values.size());
m_values.push_back(T());
return;
}
}
m_values.push_back(parse_value<T>(buffer));
}
virtual void addToIndexedBlock(IndexedBlock* block)
{
auto ptr = std::shared_ptr<IndexedProperty<T>>(
new IndexedProperty<T>(m_values, m_is_null));
block->setProperty<T>(m_name, ptr);
m_is_null = nullptr;
}
};
class EXPORT_MAEPARSER MaeParser
{
protected:
Buffer m_buffer;
virtual IndexedBlockParser* getIndexedBlockParser()
{
return new BufferedIndexedBlockParser();
}
public:
explicit MaeParser(std::istream& stream,
size_t buffer_size = BufferLoader::DEFAULT_SIZE)
: m_buffer(stream, buffer_size)
{
m_buffer.load();
}
explicit MaeParser(FILE* file,
size_t buffer_size = BufferLoader::DEFAULT_SIZE)
: m_buffer(file, buffer_size)
{
if (file == nullptr) {
std::string msg("Bad file argument");
if (errno != 0) {
msg += ": ";
msg += strerror(errno);
} else {
msg += ".";
}
throw std::runtime_error(msg);
}
m_buffer.load();
}
// TODO: finish big three (four)
virtual ~MaeParser() {}
std::shared_ptr<Block> blockBody(const std::string& name);
IndexedBlock* indexedBlock(const std::string& name, size_t size);
// TODO: private
IndexedBlockBuffer* indexedBlockBuffer(const std::string& name,
size_t size);
std::shared_ptr<Block> outerBlock();
/**
* Read a block name or a closing '}'. The argument 'indexed' is set to
* a positive integer value indicating the number of rows, or zero if
* the block is not indexed.
*
* Return the block name or NULL if the closing '}' was found.
*/
std::string blockBeginning(int* indexed);
std::shared_ptr<std::string> property();
/**
* Read a list of properties, ending at the name/value separator.
* Populate the provided std::vector of std::string shared pointers.
*/
void properties(std::vector<std::shared_ptr<std::string>>* property_names);
/**
* Read (and throw away) any whitespace.
*/
void whitespace() { schrodinger::mae::whitespace(m_buffer); }
};
class EXPORT_MAEPARSER DirectMaeParser : public MaeParser
{
public:
explicit DirectMaeParser(std::istream& stream,
size_t buffer_size = BufferLoader::DEFAULT_SIZE)
: MaeParser(stream, buffer_size)
{
}
explicit DirectMaeParser(FILE* file,
size_t buffer_size = BufferLoader::DEFAULT_SIZE)
: MaeParser(file, buffer_size)
{
}
private:
virtual IndexedBlockParser* getIndexedBlockParser()
{
return new DirectIndexedBlockParser();
}
};
} // end namespace mae
} // end namespace schrodinger
#endif