4 * Copyright IBM, Corp. 2009
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #ifndef JSON_PARSER_INT_H
15 #define JSON_PARSER_INT_H
17 #include "qapi/qmp/json-parser.h"
19 typedef enum json_token_type
{
20 JSON_ERROR
= 0, /* must be zero, see json_lexer[] */
21 /* Gap for lexer states */
23 JSON_MIN
= JSON_LCURLY
,
35 JSON_MAX
= JSON_END_OF_INPUT
38 typedef struct JSONToken JSONToken
;
41 void json_lexer_init(JSONLexer
*lexer
, bool enable_interpolation
);
42 void json_lexer_feed(JSONLexer
*lexer
, const char *buffer
, size_t size
);
43 void json_lexer_flush(JSONLexer
*lexer
);
44 void json_lexer_destroy(JSONLexer
*lexer
);
47 void json_message_process_token(JSONLexer
*lexer
, GString
*input
,
48 JSONTokenType type
, int x
, int y
);
51 JSONToken
*json_token(JSONTokenType type
, int x
, int y
, GString
*tokstr
);
52 QObject
*json_parser_parse(GQueue
*tokens
, va_list *ap
, Error
**errp
);