Files
xemu/include/qobject/json-parser.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
C
Raw Normal View History

2009-11-11 10:39:23 -06:00
/*
2018-08-23 18:40:20 +02:00
* JSON Parser
2009-11-11 10:39:23 -06:00
*
* Copyright IBM, Corp. 2009
*
* Authors:
* Anthony Liguori <aliguori@us.ibm.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*
*/
2018-08-23 18:40:20 +02:00
#ifndef QAPI_QMP_JSON_PARSER_H
#define QAPI_QMP_JSON_PARSER_H
2009-11-11 10:39:23 -06:00
2018-08-23 18:40:20 +02:00
typedef struct JSONLexer {
int start_state, state;
GString *token;
int x, y;
} JSONLexer;
2009-11-11 10:39:23 -06:00
2018-08-23 18:40:20 +02:00
typedef struct JSONMessageParser {
void (*emit)(void *opaque, QObject *json, Error *err);
void *opaque;
va_list *ap;
JSONLexer lexer;
int brace_count;
int bracket_count;
GQueue tokens;
uint64_t token_size;
} JSONMessageParser;
2018-08-23 18:40:20 +02:00
void json_message_parser_init(JSONMessageParser *parser,
void (*emit)(void *opaque, QObject *json,
Error *err),
void *opaque, va_list *ap);
void json_message_parser_feed(JSONMessageParser *parser,
const char *buffer, size_t size);
void json_message_parser_flush(JSONMessageParser *parser);
void json_message_parser_destroy(JSONMessageParser *parser);
2009-11-11 10:39:23 -06:00
#endif