From f22c2d30b7c73ebf1a7815b4a3eb5df18c251ed1 Mon Sep 17 00:00:00 2001 From: "Serge A. Zaitsev" Date: Mon, 15 Nov 2010 13:11:08 +0200 Subject: [PATCH] Initial commit. Demo program is included in the jsmn.c code. Ugly names and no comments. Please, don't read this changeset --- Makefile | 13 ++++ jsmn.c | 198 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ jsmn.h | 17 +++++ 3 files changed, 228 insertions(+) create mode 100644 Makefile create mode 100644 jsmn.c create mode 100644 jsmn.h diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c6816e9 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS=-Wall -W -std=c89 + +all: jsmn_demo + +jsmn_demo: jsmn.o + gcc $(LDFLAGS) jsmn.o -o $@ + +jsmn.o: jsmn.c jsmn.h + gcc $(CFLAGS) -c jsmn.c -o $@ + +clean: + rm -f jsmn.o + rm -f jsmn_demo diff --git a/jsmn.c b/jsmn.c new file mode 100644 index 0000000..3342494 --- /dev/null +++ b/jsmn.c @@ -0,0 +1,198 @@ +#include +#include + +#include "jsmn.h" + +enum { + JSON_SKIP = 0, + JSON_OPEN = 1, + JSON_CLOSE = 2, + JSON_BARE = 3, + JSON_UNBARE = 4, + JSON_QUOTE = 5, + JSON_UNQUOTE = 6, + JSON_ERROR = 7 +}; + +#define JSON_SYM_SKIP(sym) \ + [sym] = JSON_SKIP + +#define JSON_SYM_ERROR(sym) \ + [sym] = JSON_ERROR + +#define JSON_SYM_OPEN(sym) \ + [sym] = JSON_OPEN + +#define JSON_SYM_CLOSE(sym) \ + [sym] = JSON_CLOSE + +#define JSON_SYM_BARE(sym) \ + [sym] = JSON_BARE + +#define JSON_SYM_UNBARE(sym) \ + [sym] = JSON_UNBARE + +#define JSON_SYM_QUOTE(sym) \ + [sym] = JSON_QUOTE + +#define JSON_SYM_UNQUOTE(sym) \ + [sym] = JSON_UNQUOTE + +int jsmn_parse(const unsigned char *js, jsontok_t *tokens, size_t num_tokens, int **errpos) { + + int jsmn_token_start(jsontype_t type, int pos) { + unsigned int i; + for (i = 0; i= 0; i--) { + if (tokens[i].type == type && tokens[i].start != -1 && tokens[i].end == -1) { + tokens[i].end = pos; + return 0; + } + } + return -1; + } + + const unsigned char *p; + jsontok_t *cur_token; + + int obj_common[] = { + JSON_SYM_ERROR(0 ... 255), + JSON_SYM_SKIP('\t'), JSON_SYM_SKIP('\r'),JSON_SYM_SKIP('\n'), + JSON_SYM_SKIP(':'), JSON_SYM_SKIP(','), JSON_SYM_SKIP(' '), + JSON_SYM_QUOTE('\"'), + JSON_SYM_OPEN('['), JSON_SYM_CLOSE(']'), + JSON_SYM_OPEN('{'), JSON_SYM_CLOSE('}'), + JSON_SYM_BARE('-'), JSON_SYM_BARE('0'...'9'), + JSON_SYM_BARE('t'), JSON_SYM_BARE('f'), JSON_SYM_BARE('n') /* true false null */ + }; + + int obj_bare[] = { + JSON_SYM_ERROR(0 ... 31), + JSON_SYM_ERROR(127 ... 255), + JSON_SYM_SKIP(32 ... 126), + JSON_SYM_UNBARE('\t'), JSON_SYM_UNBARE(' '), + JSON_SYM_UNBARE('\r'), JSON_SYM_UNBARE('\n'), + JSON_SYM_UNBARE(','), JSON_SYM_UNBARE(']'), + JSON_SYM_UNBARE('}') + }; + + int obj_string[] = { + JSON_SYM_ERROR(0 ... 31), JSON_SYM_ERROR(127), + JSON_SYM_SKIP(32 ... 126), + JSON_SYM_UNQUOTE('\"'), + JSON_SYM_ERROR(248 ... 255), + }; + + int *obj_state = obj_common; + + cur_token = tokens; + + int i; + for (i = 0; istart, obj->end); + len = obj->end - obj->start; + + char *type; + switch (obj->type) { + case JSON_OTHER: + type = "other"; + break; + case JSON_STRING: + type = "string"; + break; + case JSON_ARRAY: + type = "array"; + break; + case JSON_OBJECT: + type = "object"; + break; + } + + printf(" %s ", type); + + if (len > 0) { + char *s = strndup(&js[obj->start], len); + printf("%s", s); + free(s); + } + printf("\n"); +} + +int main(int argc, char *argv[]) { + int i; +#define NUM_TOKENS 20 + jsontok_t tokens[NUM_TOKENS]; + + const char *js = + "{" + "\"foo\": \"bar\"," + "\"bar\": [1,2, 3]," + "\"obj\": { \"true\": false}" + "}"; + + jsmn_parse(js, tokens, NUM_TOKENS, NULL); + + for (i = 0; i