JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
tjson.h
Go to the documentation of this file.
1#ifndef __JBXL_TINY_JSON_H_
2#define __JBXL_TINY_JSON_H_
3
21#include "tools.h"
22#include "ttree.h"
23#include "jbxl_state.h"
24
25
26// ノード種別 (ldat.id)
27#define JSON_ANCHOR_NODE JBXL_STATE_ANCHOR
28#define JSON_TEMP_NODE -1
29#define JSON_BRACKET_NODE 1
30#define JSON_DATA_NODE 2
31#define JSON_ARRAY_NODE 3
32#define JSON_ARRAY_VALUE_NODE 4
33
34// 属性値の形式 (ldat.lv)
35#define JSON_VALUE_UNRESOLV -1
36#define JSON_VALUE_NULL 0
37#define JSON_VALUE_INT 1
38#define JSON_VALUE_REAL 2
39#define JSON_VALUE_BOOL 3
40#define JSON_VALUE_STR 4
41#define JSON_VALUE_OBJ 5
42#define JSON_VALUE_ARRAY 6
43
44#define JSON_ONELINE_FORMAT 0
45#define JSON_CRLF_FORMAT 1
46#define JSON_INDENT_FORMAT 2
47
48
50// JSON Functions
51
52#define new_json_node() new_tTree_node()
53#define new_json_anchor_node() new_tTree_anchor_node()
54#define new_json() new_tTree_node()
55#define new_json_anchor() new_tTree_anchor_node()
56#define new_json_anchor_node() new_tTree_anchor_node()
57#define del_json_anchor(t) del_tTree_anchor_node((t))
58#define del_json_anchor_node(t) del_tTree_anchor_node((t))
59
60#define del_json(j) del_tTree((j))
61#define del_all_json(j) del_all_tTree((j))
62#define del_json_node(j) del_tTree_node((j))
63#define free_json(j) free_tTree_node((j))
64#define free_json_node(j) free_tTree_node((j))
65
66
157typedef tTree tJson;
158
159
161// Parser
162
163tJson* json_parse(const char* str, int num);
164tJson* json_parse_prop (tJson* json, const char* str, int num);
165tJson* json_parse_seq (tJson* json, const char* str, int num);
166tJson* json_array_parse(tJson* json, const char* str, int num);
167
168tJson* _json_array_parse(tJson* json, int num);
169tJson* _json_parse_term (tJson* json, const char* st, const char* ed, const char* com);
170
171
173// 逆 Parser
174
175Buffer json_inverse_parse(tJson* pp, int mode);
176Buffer json_inverse_parse_opt(tJson* pp, const char* crlf, const char* space);
177void print_json(FILE* fp, tJson* json, int mode);
178void print_json_opt(FILE* fp, tJson* json, const char* crlf, const char* space);
179
180void _json_to_Buffer(tJson* pp, Buffer* buf, const char* crlf, const char* space);
181
182#define print_tJson(f, j) print_tTree((f), (j))
183#define print_tJson_tree(f, j, s) print_tTree_tree((f), (j), (s))
184
185
187// Tools
188
189tJson* json_parse_file(const char* fn, int num);
190
191void json_set_str_val(tJson* json, const char* val);
192void json_set_int_val(tJson* json, int val);
193void json_set_real_val(tJson* json, float val);
194
195void json_copy_val (tJson* f_json, tJson* t_json);
196void json_copy_data(tJson* f_json, tJson* t_json);
197
198tJson* json_insert_child(tJson* parent, tJson* child);
199tJson* json_insert_parse(tJson* parent, const char* str);
200
201tJson* json_append_obj_key(tJson* json, const char* key);
202tJson* json_append_array_key(tJson* json, const char* key);
203
204void json_append_obj_str_val (tJson* json, const char* key, const char* val);
205void json_append_obj_int_val (tJson* json, const char* key, int val);
206void json_append_obj_real_val(tJson* json, const char* key, float val);
207
208void json_append_array_str_val (tJson* json, const char* val);
209void json_append_array_int_val (tJson* json, int val);
210void json_append_array_real_val(tJson* json, float val);
211//
212tJson* join_json(tJson* parent, tJson** child);
213#define dup_merge_json(p, c) dup_merge_tTree((p), (c))
214
215
217// Search
218
219#define find_top_json(p, n) search_top_bracket_json((p), (n))
220#define find_sister_json(p, n) search_sister_json((p), (n))
221#define find_key_json(p, k) search_key_json((p), (k), FALSE, 1)
222#define find_key_child_json(p, k) search_key_child_json( (p), (k), FALSE)
223#define find_key_sister_json(p, k) search_key_sister_json((p), (k), FALSE)
224#define find_key_json_obj(p, k) search_key_json_obj((p), (k))
225#define find_double_key_json(p, k1, k2) search_double_key_json((p), (k1), (k2), FALSE)
226
227tJson* search_top_bracket_json(tJson* pp, int nn);
228tJson* search_sister_json(tJson* pp, int nn);
229
230tJson* search_key_json(tJson* pp, const char* key, int needval, int nn);
231tJson* search_key_child_json(tJson* pp, const char* key, int needval);
232tJson* search_key_sister_json(tJson* pp, const char* key, int needval);
233tJson* search_key_json_obj(tJson* pp, const char* key, int nn);
234tJson* search_double_key_json(tJson* pp, const char* key1, const char* key2, int needval);
235
236tJson* _search_key_json(tJson* pp, const char* key, int need, int* nn);
237tJson* _search_key_json_obj(tJson* pp, const char* key, int* nn);
238int _json_check_node_bykey(tJson* pp, const char* key, int needval, int nn);
239
241Buffer get_key_json_val(tJson* pp, const char* key, int nn);
242Buffer get_key_sister_json_val(tJson* pp, const char* key);
243Buffer get_double_key_json_val(tJson* pp, const char* key1, const char* key2);
244
246char* get_string_from_json(tJson* json);
247
248//
249tList* search_all_node_strval_json(tJson* json, const char* name, const char* val);
250tList* _search_all_node_strval_json(tList* list, tJson* pp, const char* name, const char* val);
251// ex.) search_all_node_strval_json(json, "ARRAY_VALUE", "jupyterhub-j20000xx");
252
253
254#endif // __JBXL_TINY_JSON_H_
255
JunkBox_Lib 状態ヘッダ
tJson * json_append_array_key(tJson *json, const char *key)
値(value)なしの配列 "key":[] を追加する.
Definition tjson.cpp:1115
void json_append_array_str_val(tJson *json, const char *val)
配列 [] の要素として 文字列 val を追加する.
Definition tjson.cpp:1227
tJson * json_parse_file(const char *fn, int num)
JSONデータをファイルから読み込んで,パースする.
Definition tjson.cpp:868
Buffer get_Buffer_from_json(tJson *json)
Definition tjson.cpp:1790
tJson * search_key_json_obj(tJson *pp, const char *key, int nn)
名前(属性名)が key である nn番目のオブジェクトノード(JSON_VALUE_OBJ)へのポインタを返す.ex.) "key":{}
Definition tjson.cpp:1492
tJson * json_insert_parse(tJson *parent, const char *str)
str をパースして繋げる.str は { または [ で始まる必要がある.
Definition tjson.cpp:1053
void print_json(FILE *fp, tJson *json, int mode)
tJsonデータをmodeに従って fp に出力する.
Definition tjson.cpp:818
void json_append_obj_str_val(tJson *json, const char *key, const char *val)
{} の要素として "key":val(val は文字列)を追加する.
Definition tjson.cpp:1150
tJson * json_insert_child(tJson *parent, tJson *child)
parent に dict または array の child を繋げる.
Definition tjson.cpp:1021
tJson * search_key_json(tJson *pp, const char *key, int needval, int nn)
名前(属性名)が key である nn番目のノードへのポインタを返す
Definition tjson.cpp:1378
tJson * search_key_sister_json(tJson *pp, const char *key, int needval)
姉妹ノードで名前(属性名)が key である nn番目のノードへのポインタを返す.
Definition tjson.cpp:1465
Buffer json_inverse_parse(tJson *pp, int mode)
tJsonデータをmodeに従って元の書式に戻して Bufferに格納する.
Definition tjson.cpp:616
tJson * search_double_key_json(tJson *pp, const char *key1, const char *key2, int needval)
属性名が key1 -> key2 の親子関係を持つ,key2ノードのポインタを返す.
Definition tjson.cpp:1524
tJson * json_parse_seq(tJson *json, const char *str, int num)
断片化した JSONデータを読み込んで処理する.
Definition tjson.cpp:581
tJson * json_append_obj_key(tJson *json, const char *key)
属性値(value)なしのリストデータ "key":{} を追加する.
Definition tjson.cpp:1078
tJson * join_json(tJson *parent, tJson **child)
parent の子として child そのものを 直接繋げる.
Definition tjson.cpp:1309
tList * search_all_node_strval_json(tJson *json, const char *name, const char *val)
指定した条件に合う全てのノードへのポインタを,リストに格納して返す.
Definition tjson.cpp:1657
Buffer get_key_sister_json_val(tJson *pp, const char *key)
姉妹ノードで名前(属性名)が key である nn番目のノードの属性値を返す.
Definition tjson.cpp:1755
tJson * _json_parse_term(tJson *json, const char *st, const char *ed, const char *com)
json_parse_prop() の補助関数.断片的な入力データ用.
Definition tjson.cpp:551
char * get_string_from_json(tJson *json)
要 free()
Definition tjson.cpp:1825
tJson * search_key_child_json(tJson *pp, const char *key, int needval)
子の姉妹ノードで名前(属性名)が key である nn番目のノードへのポインタを返す.
Definition tjson.cpp:1442
int _json_check_node_bykey(tJson *pp, const char *key, int needval, int nn)
search 系関数の補助関数
Definition tjson.cpp:1627
void json_copy_data(tJson *f_json, tJson *t_json)
f_json から t_json へ属性名(key)と属性値(value)をコピーする.
Definition tjson.cpp:984
Buffer get_json_val(tJson *json)
Definition tjson.cpp:1703
void _json_to_Buffer(tJson *pp, Buffer *buf, const char *crlf, const char *space)
tJsonデータを元の書式に戻して Bufferに格納する.補助関数.
Definition tjson.cpp:688
void json_append_array_real_val(tJson *json, float val)
配列 [] の要素として 実数 val を追加する.
Definition tjson.cpp:1280
tJson * _search_key_json(tJson *pp, const char *key, int need, int *nn)
search_key_json() の補助関数
Definition tjson.cpp:1554
tJson * _json_array_parse(tJson *json, int num)
json_parse_prop() の補助関数.配列処理用.
Definition tjson.cpp:375
tTree tJson
Definition tjson.h:157
tJson * search_top_bracket_json(tJson *pp, int nn)
ツリーが複数のルート(TOP)を持つ場合(JBXL_JSON_MULTI_ROOT),指定されたTOPへのポインタを返す.
Definition tjson.cpp:1338
void json_append_obj_int_val(tJson *json, const char *key, int val)
{} の要素として "key":val(val は整数)を追加する.
Definition tjson.cpp:1181
void json_append_obj_real_val(tJson *json, const char *key, float val)
{} の要素として "key":val(va lは実数)を追加する.
Definition tjson.cpp:1204
tJson * search_sister_json(tJson *pp, int nn)
nn個先の sister ノードを返す.正数の場合は younger sister. 負数の場合は elder sister.
Definition tjson.cpp:1407
void json_append_array_int_val(tJson *json, int val)
配列 [] の要素として 整数 val を追加する.
Definition tjson.cpp:1257
void json_set_real_val(tJson *json, float val)
json ノード "key":val に実数の属性値(value)を設定する.
Definition tjson.cpp:941
void json_copy_val(tJson *f_json, tJson *t_json)
f_json から t_json へ属性値(value)をコピーする.
Definition tjson.cpp:960
void json_set_str_val(tJson *json, const char *val)
json ノード "key":val に文字列の属性値(value)を設定する.
Definition tjson.cpp:888
tJson * json_parse_prop(tJson *json, const char *str, int num)
JSON Main Parser.json が NULL の場合は ANCHOR付き.
Definition tjson.cpp:107
Buffer json_inverse_parse_opt(tJson *pp, const char *crlf, const char *space)
tJsonデータを指定に従って元の書式に戻して Bufferに格納する.
Definition tjson.cpp:656
void print_json_opt(FILE *fp, tJson *json, const char *crlf, const char *space)
tJsonデータを指定に従って fp に出力する.
Definition tjson.cpp:840
Buffer get_double_key_json_val(tJson *pp, const char *key1, const char *key2)
key1 -> key2 の親子関係を持つ,key2ノードの属性値を返す.
Definition tjson.cpp:1775
tList * _search_all_node_strval_json(tList *list, tJson *pp, const char *name, const char *val)
search_all_node_strval_json() の補助関数
Definition tjson.cpp:1669
Buffer get_key_json_val(tJson *pp, const char *key, int nn)
名前(属性名)が key である nn番目のノードの属性値を返す.
Definition tjson.cpp:1734
tJson * json_array_parse(tJson *json, const char *str, int num)
JSONデータの 配列ノードの値(配列データ)を処理する.
Definition tjson.cpp:401
void json_set_int_val(tJson *json, int val)
json ノード "key":val に整数の属性値(value)を設定する.
Definition tjson.cpp:922
tJson * _search_key_json_obj(tJson *pp, const char *key, int *nn)
search_key_json_obj() の補助関数
Definition tjson.cpp:1593
tJson * json_parse(const char *str, int num)
文字列のJSONデータを解釈して,tJsonのツリーを生成する.ANCHOR付き.
Definition tjson.cpp:51
汎用ツールヘッダ
Tiny Tree Graph 構造ライブラリヘッダ