hw/intc/arm_gicv3_common: Give no-migration-shift-bug subsection a needed function
[qemu/ar7.git] / include / qapi / qmp / json-streamer.h
blob00d8a23af8085c0c70d354148260e48fd4f9d02a
1 /*
2 * JSON streaming support
4 * Copyright IBM, Corp. 2009
6 * Authors:
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 QEMU_JSON_STREAMER_H
15 #define QEMU_JSON_STREAMER_H
17 #include "qapi/qmp/json-lexer.h"
19 typedef struct JSONToken {
20 int type;
21 int x;
22 int y;
23 char str[];
24 } JSONToken;
26 typedef struct JSONMessageParser
28 void (*emit)(struct JSONMessageParser *parser, GQueue *tokens);
29 JSONLexer lexer;
30 int brace_count;
31 int bracket_count;
32 GQueue *tokens;
33 uint64_t token_size;
34 } JSONMessageParser;
36 void json_message_parser_init(JSONMessageParser *parser,
37 void (*func)(JSONMessageParser *, GQueue *));
39 int json_message_parser_feed(JSONMessageParser *parser,
40 const char *buffer, size_t size);
42 int json_message_parser_flush(JSONMessageParser *parser);
44 void json_message_parser_destroy(JSONMessageParser *parser);
46 #endif