blob: 85e2eff1b8b84cd5ac52a9a8e1f1a794131a7620 (
plain)
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
|
#ifndef JSON_WRAPPER_H_
#define JSON_WRAPPER_H_
#include <iostream>
#include <cassert>
#include "JSON_parser.h"
class JSONParser {
public:
JSONParser() {
init_JSON_config(&config);
hack.mf = &JSONParser::Callback;
config.depth = 10;
config.callback_ctx = reinterpret_cast<void*>(this);
config.callback = hack.cb;
config.allow_comments = 1;
config.handle_floats_manually = 1;
jc = new_JSON_parser(&config);
}
virtual ~JSONParser() {
delete_JSON_parser(jc);
}
bool Parse(std::istream* in) {
int count = 0;
int lc = 1;
for (; in ; ++count) {
int next_char = in->get();
if (!in->good()) break;
if (lc == '\n') { ++lc; }
if (!JSON_parser_char(jc, next_char)) {
std::cerr << "JSON_parser_char: syntax error, line " << lc << " (byte " << count << ")" << std::endl;
return false;
}
}
if (!JSON_parser_done(jc)) {
std::cerr << "JSON_parser_done: syntax error\n";
return false;
}
return true;
}
static void WriteEscapedString(const std::string& in, std::ostream* out);
protected:
virtual bool HandleJSONEvent(int type, const JSON_value* value) = 0;
private:
int Callback(int type, const JSON_value* value) {
if (HandleJSONEvent(type, value)) return 1;
return 0;
}
JSON_parser_struct* jc;
JSON_config config;
typedef int (JSONParser::* MF)(int type, const struct JSON_value_struct* value);
union CBHack {
JSON_parser_callback cb;
MF mf;
} hack;
};
#endif
|