File tree 4 files changed +34
-14
lines changed
4 files changed +34
-14
lines changed Original file line number Diff line number Diff line change 10
10
11
11
#include < fstream>
12
12
13
- json_parsert json_parser;
13
+ int yyjsonparse (json_parsert &);
14
+
15
+ bool json_parsert::parse ()
16
+ {
17
+ return yyjsonparse (*this ) != 0 ;
18
+ }
14
19
15
20
// 'do it all' function
16
21
bool parse_json (
@@ -19,10 +24,10 @@ bool parse_json(
19
24
message_handlert &message_handler,
20
25
jsont &dest)
21
26
{
22
- json_parser.clear ();
27
+ json_parsert json_parser{message_handler};
28
+
23
29
json_parser.set_file (filename);
24
30
json_parser.in =∈
25
- json_parser.log .set_message_handler (message_handler);
26
31
27
32
bool result=json_parser.parse ();
28
33
Original file line number Diff line number Diff line change 15
15
#include < util/parser.h>
16
16
#include < util/json.h>
17
17
18
- int yyjsonparse ();
19
18
void yyjsonrestart (FILE *input_file);
20
19
21
20
class json_parsert :public parsert
22
21
{
23
22
public:
23
+ explicit json_parsert (message_handlert &message_handler)
24
+ : parsert(message_handler)
25
+ {
26
+ }
27
+
24
28
typedef std::stack<jsont, std::vector<jsont> > stackt;
25
29
stackt stack;
26
30
27
31
jsont &top () { return stack.top (); }
28
32
29
- virtual bool parse () override
30
- {
31
- return yyjsonparse ()!=0 ;
32
- }
33
+ bool parse () override ;
33
34
34
35
void push (const jsont &x)
35
36
{
@@ -50,9 +51,7 @@ class json_parsert:public parsert
50
51
}
51
52
};
52
53
53
- extern json_parsert json_parser;
54
-
55
- int yyjsonerror (const std::string &error);
54
+ int yyjsonerror (json_parsert &, const std::string &error);
56
55
57
56
// 'do it all' functions
58
57
bool parse_json (
Original file line number Diff line number Diff line change 20
20
21
21
#include < util/unicode.h>
22
22
23
- int yyjsonlex ();
23
+ int yyjsonlex (json_parsert &json_parser );
24
24
extern char *yyjsontext;
25
25
extern int yyjsonleng; // really an int, not a size_t
26
26
@@ -75,14 +75,17 @@ static std::string convert_TOK_NUMBER()
75
75
return yyjsontext;
76
76
}
77
77
78
- int yyjsonerror (const std::string &error)
78
+ int yyjsonerror (json_parsert &json_parser, const std::string &error)
79
79
{
80
80
json_parser.parse_error (error, yyjsontext);
81
81
return 0 ;
82
82
}
83
83
84
84
%}
85
85
86
+ %parse-param {json_parsert &json_parser}
87
+ %lex-param {json_parsert &json_parser}
88
+
86
89
%token TOK_STRING
87
90
%token TOK_NUMBER
88
91
%token TOK_TRUE
Original file line number Diff line number Diff line change 24
24
#pragma warning(disable:4005)
25
25
#endif
26
26
27
- #define PARSER json_parser
27
+ #define PARSER (* json_parser)
28
28
29
29
#include " json_parser.h"
30
30
#include " json_y.tab.h"
33
33
#include < util/pragma_wnull_conversion.def> // IWYU pragma: keep
34
34
#include < util/pragma_wdeprecated_register.def> // IWYU pragma: keep
35
35
36
+ static json_parsert *json_parser;
37
+
38
+ int yyjsonlex (void );
39
+
40
+ int yyjsonlex (json_parsert &_json_parser)
41
+ {
42
+ // our scanner is not reentrant
43
+ PRECONDITION (!json_parser);
44
+ json_parser = &_json_parser;
45
+ int result = yyjsonlex ();
46
+ json_parser = nullptr ;
47
+ return result;
48
+ }
36
49
%}
37
50
38
51
string \"\" | \" {chars }\"
You can’t perform that action at this time.
0 commit comments