--- libelwix/example/test_json.c 2018/03/07 12:29:28 1.3 +++ libelwix/example/test_json.c 2024/12/04 17:47:28 1.5 @@ -11,7 +11,7 @@ int run_simple(json_t *json) { static const char *teststr = "{\"user\": \"johndoe\", { \"meow\", \"\", \"\aaa\"}, \"admin\": false, \"uid\": 1000, \"objects\" : { \"a\":\"1\", \"b\" : \"2\" ,\"c\" : \"3\", , \"oho\"},\n" - "\"groups\": [\"users\", \"\", \"wheel\", \"audio\", \"video\"], \"testend\":{\"x\" : \"8\", \"y\":\"7\", \"z\" : \"9\"}}"; + "\"groups\": [\"users\", \"\", \"wheel\", \"audio\", \"video\"], \"testend\":{\"x\" : \"8\", \"y\":\"7\", \"z\" : \"9\"}}"; // static const char *teststr = "{}\n[]\n\"sdfsdf\""; int i, ret; jtok_t *tok, toks[36]; @@ -258,13 +258,80 @@ run_make() } int +run_stdin(json_t *json) +{ + char szJSON[BUFSIZ] = { [0 ... BUFSIZ - 1] = 0 }; + jtok_t *tok, toks[1024]; + int ret, scope; + char *str; + + printf("Input JSON> "); + fgets(szJSON, sizeof szJSON, stdin); + printf("Readed JSON> %s", szJSON); + + json_init(json, 0); + ret = json_parse(json, szJSON, strlen(szJSON), toks, sizeof toks/sizeof *toks); + if (ret == -1) { + printf("Error:: #%d - %s\n", elwix_GetErrno(), elwix_GetError()); + return 1; + } else + printf("We parsed %d tokens next=%lu\n", ret, json->h_next); + + printf("dump=%d\n", json_dump(stdout, szJSON, toks, json->h_next, 0)); + + tok = json_findbykey(szJSON, "aaa", J_STRING, toks, ret); + if (tok) { + str = json_token2str(szJSON, tok); + if (str) { + printf("str=%s\n", str); + json_freestr(str); + } + } + + printf("Default scope=%ld, scope for \"zzz\"=%ld\n", + json_objscope(NULL, szJSON, toks, ret), + (scope = json_objscope("zzz", szJSON, toks, ret))); + + tok = json_findbykeyatscope(0, szJSON, "t1", J_UNDEF, toks, ret); + if (tok) { + str = json_token2str(szJSON, tok); + if (str) { + printf("default scope t1=%s\n", str); + json_freestr(str); + } + } + tok = json_findbykeyatscope(scope, szJSON, "t1", J_UNDEF, toks, ret); + if (tok) { + str = json_token2str(szJSON, tok); + if (str) { + printf("scope=%ld object zzz t1=%s\n", scope, str); + json_freestr(str); + } + } + + scope = json_objscope("z", szJSON, toks, ret); + tok = json_findbykeyatscope(scope, szJSON, "t1", J_UNDEF, toks, ret); + if (tok) { + str = json_token2str(szJSON, tok); + if (str) { + printf("scope=%ld object z t1=%s\n", scope, str); + json_freestr(str); + } + } + + return 0; +} + +int main(int argc, char **argv) { json_t json; if (argc < 2) - return run_simple(&json); + return run_stdin(&json); else if (argc < 3) + return run_simple(&json); + else if (argc < 4) return run_make(); else return run_dump(&json, argv);