提交 abe7c206 编写于 作者: M Markus Armbruster

json: Make JSONToken opaque outside json-parser.c

Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Reviewed-by: NEric Blake <eblake@redhat.com>
Message-Id: <20180823164025.12553-52-armbru@redhat.com>
上级 a2731e08
...@@ -15,7 +15,11 @@ ...@@ -15,7 +15,11 @@
#define QEMU_JSON_PARSER_H #define QEMU_JSON_PARSER_H
#include "qemu-common.h" #include "qemu-common.h"
#include "qapi/qmp/json-lexer.h"
typedef struct JSONToken JSONToken;
JSONToken *json_token(JSONTokenType type, int x, int y, GString *tokstr);
QObject *json_parser_parse(GQueue *tokens, va_list *ap, Error **errp); QObject *json_parser_parse(GQueue *tokens, va_list *ap, Error **errp);
#endif #endif
...@@ -16,13 +16,6 @@ ...@@ -16,13 +16,6 @@
#include "qapi/qmp/json-lexer.h" #include "qapi/qmp/json-lexer.h"
typedef struct JSONToken {
int type;
int x;
int y;
char str[];
} JSONToken;
typedef struct JSONMessageParser typedef struct JSONMessageParser
{ {
void (*emit)(void *opaque, QObject *json, Error *err); void (*emit)(void *opaque, QObject *json, Error *err);
......
...@@ -26,6 +26,13 @@ ...@@ -26,6 +26,13 @@
#include "qapi/qmp/json-lexer.h" #include "qapi/qmp/json-lexer.h"
#include "qapi/qmp/json-streamer.h" #include "qapi/qmp/json-streamer.h"
struct JSONToken {
JSONTokenType type;
int x;
int y;
char str[];
};
typedef struct JSONParserContext typedef struct JSONParserContext
{ {
Error *err; Error *err;
...@@ -538,6 +545,18 @@ static QObject *parse_value(JSONParserContext *ctxt, va_list *ap) ...@@ -538,6 +545,18 @@ static QObject *parse_value(JSONParserContext *ctxt, va_list *ap)
} }
} }
JSONToken *json_token(JSONTokenType type, int x, int y, GString *tokstr)
{
JSONToken *token = g_malloc(sizeof(JSONToken) + tokstr->len + 1);
token->type = type;
memcpy(token->str, tokstr->str, tokstr->len);
token->str[tokstr->len] = 0;
token->x = x;
token->y = y;
return token;
}
QObject *json_parser_parse(GQueue *tokens, va_list *ap, Error **errp) QObject *json_parser_parse(GQueue *tokens, va_list *ap, Error **errp)
{ {
JSONParserContext ctxt = { .buf = tokens }; JSONParserContext ctxt = { .buf = tokens };
......
...@@ -82,13 +82,7 @@ void json_message_process_token(JSONLexer *lexer, GString *input, ...@@ -82,13 +82,7 @@ void json_message_process_token(JSONLexer *lexer, GString *input,
goto out_emit; goto out_emit;
} }
token = g_malloc(sizeof(JSONToken) + input->len + 1); token = json_token(type, x, y, input);
token->type = type;
memcpy(token->str, input->str, input->len);
token->str[input->len] = 0;
token->x = x;
token->y = y;
parser->token_size += input->len; parser->token_size += input->len;
g_queue_push_tail(&parser->tokens, token); g_queue_push_tail(&parser->tokens, token);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册