-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjsl-parser.h
91 lines (61 loc) · 1.85 KB
/
jsl-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
/*
jsl-parser.h
This scource file is part of the jsl-esp32 project.
Author: Lorenzo Pastrana
Copyright © 2019 Lorenzo Pastrana
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see http://www.gnu.org/licenses/.
*/
#ifndef JSL_PARSER_H
#define JSL_PARSER_H
#include <string>
#include <fstream>
#include "jsl-data.h"
class jsl_parser
{
public:
typedef std::istream& src_t;
jsl_parser(src_t& _src) : m_src(_src) {}
jsl_data_dict* parse();
protected:
jsl_data_dict* eat_dict();
jsl_data_vect* eat_vect();
jsl_data* eat_value();
jsl_data_scal* eat_null();
jsl_data_scal* eat_false();
jsl_data_scal* eat_true();
jsl_data_scal* eat_num();
jsl_data_scal* eat_str();
bool scan_str(std::string& _str); // returns true on EOF
bool unescape(std::string& _str); //
void utf8_str(uint32_t _char, std::string& _str);
inline bool is_space(uint8_t _c);
inline bool eat_space(); // returns true on EOF
const src_t m_src;
};
#endif // #ifndef JSL_PARSER_H
/*
void test_parser()
{
ESP_LOGI(LOGTAG, "Test PARSER");
std::string str;
if(!load_file("/config/test.json",str)) return;
jsl_parser parser(str);
jsl_data_dict* data = parser.parse();
if(data != nullptr)
{
ESP_LOGI(LOGTAG, "Data file parsed");
std::cout << data->encode(true) << "\n\n";
data->fire();
}
else ESP_LOGE(LOGTAG, "Failed to parse file");
}
*/