JunkBox_Lib++ (for Windows) 1.10.1
|
Tiny JSON ライブラリヘッダ More...
Go to the source code of this file.
Typedefs | |
typedef tTree | tJson |
Functions | |
tJson * | json_parse (const char *str, int num) |
文字列のJSONデータを解釈して,tJsonのツリーを生成する.ANCHOR付き. | |
tJson * | json_parse_prop (tJson *json, const char *str, int num) |
JSON Main Parser.json が NULL の場合は ANCHOR付き. | |
tJson * | json_parse_seq (tJson *json, const char *str, int num) |
断片化した JSONデータを読み込んで処理する. | |
tJson * | json_array_parse (tJson *json, const char *str, int num) |
JSONデータの 配列ノードの値(配列データ)を処理する. | |
tJson * | _json_array_parse (tJson *json, int num) |
json_parse_prop() の補助関数.配列処理用. | |
tJson * | _json_parse_term (tJson *json, const char *st, const char *ed, const char *com) |
json_parse_prop() の補助関数.断片的な入力データ用. | |
Buffer | json_inverse_parse (tJson *pp, int mode) |
tJsonデータをmodeに従って元の書式に戻して Bufferに格納する. | |
Buffer | json_inverse_parse_opt (tJson *pp, const char *crlf, const char *space) |
tJsonデータを指定に従って元の書式に戻して Bufferに格納する. | |
void | print_json (FILE *fp, tJson *json, int mode) |
tJsonデータをmodeに従って fp に出力する. | |
void | print_json_opt (FILE *fp, tJson *json, const char *crlf, const char *space) |
tJsonデータを指定に従って fp に出力する. | |
void | _json_to_Buffer (tJson *pp, Buffer *buf, const char *crlf, const char *space) |
tJsonデータを元の書式に戻して Bufferに格納する.補助関数. | |
tJson * | json_parse_file (const char *fn, int num) |
JSONデータをファイルから読み込んで,パースする. | |
void | json_set_str_val (tJson *json, const char *val) |
json ノード "key":val に文字列の属性値(value)を設定する. | |
void | json_set_int_val (tJson *json, int val) |
json ノード "key":val に整数の属性値(value)を設定する. | |
void | json_set_real_val (tJson *json, float val) |
json ノード "key":val に実数の属性値(value)を設定する. | |
void | json_copy_val (tJson *f_json, tJson *t_json) |
f_json から t_json へ属性値(value)をコピーする. | |
void | json_copy_data (tJson *f_json, tJson *t_json) |
f_json から t_json へ属性名(key)と属性値(value)をコピーする. | |
tJson * | json_insert_child (tJson *parent, tJson *child) |
parent に dict または array の child を繋げる. | |
tJson * | json_insert_parse (tJson *parent, const char *str) |
str をパースして繋げる.str は { または [ で始まる必要がある. | |
tJson * | json_append_obj_key (tJson *json, const char *key) |
属性値(value)なしのリストデータ "key":{} を追加する. | |
tJson * | json_append_array_key (tJson *json, const char *key) |
値(value)なしの配列 "key":[] を追加する. | |
void | json_append_obj_str_val (tJson *json, const char *key, const char *val) |
{} の要素として "key":val(val は文字列)を追加する. | |
void | json_append_obj_int_val (tJson *json, const char *key, int val) |
{} の要素として "key":val(val は整数)を追加する. | |
void | json_append_obj_real_val (tJson *json, const char *key, float val) |
{} の要素として "key":val(va lは実数)を追加する. | |
void | json_append_array_str_val (tJson *json, const char *val) |
配列 [] の要素として 文字列 val を追加する. | |
void | json_append_array_int_val (tJson *json, int val) |
配列 [] の要素として 整数 val を追加する. | |
void | json_append_array_real_val (tJson *json, float val) |
配列 [] の要素として 実数 val を追加する. | |
tJson * | join_json (tJson *parent, tJson **child) |
parent の子として child そのものを 直接繋げる. | |
tJson * | search_top_bracket_json (tJson *pp, int nn) |
ツリーが複数のルート(TOP)を持つ場合(JBXL_JSON_MULTI_ROOT),指定されたTOPへのポインタを返す. | |
tJson * | search_sister_json (tJson *pp, int nn) |
nn個先の sister ノードを返す.正数の場合は younger sister. 負数の場合は elder sister. | |
tJson * | search_key_json (tJson *pp, const char *key, int needval, int nn) |
名前(属性名)が key である nn番目のノードへのポインタを返す | |
tJson * | search_key_child_json (tJson *pp, const char *key, int needval) |
子の姉妹ノードで名前(属性名)が key である nn番目のノードへのポインタを返す. | |
tJson * | search_key_sister_json (tJson *pp, const char *key, int needval) |
姉妹ノードで名前(属性名)が key である nn番目のノードへのポインタを返す. | |
tJson * | search_key_json_obj (tJson *pp, const char *key, int nn) |
名前(属性名)が key である nn番目のオブジェクトノード(JSON_VALUE_OBJ)へのポインタを返す.ex.) "key":{} | |
tJson * | search_double_key_json (tJson *pp, const char *key1, const char *key2, int needval) |
属性名が key1 -> key2 の親子関係を持つ,key2ノードのポインタを返す. | |
tJson * | _search_key_json (tJson *pp, const char *key, int need, int *nn) |
search_key_json() の補助関数 | |
tJson * | _search_key_json_obj (tJson *pp, const char *key, int *nn) |
search_key_json_obj() の補助関数 | |
int | _json_check_node_bykey (tJson *pp, const char *key, int needval, int nn) |
search 系関数の補助関数 | |
Buffer | get_json_val (tJson *json) |
Buffer | get_key_json_val (tJson *pp, const char *key, int nn) |
名前(属性名)が key である nn番目のノードの属性値を返す. | |
Buffer | get_key_sister_json_val (tJson *pp, const char *key) |
姉妹ノードで名前(属性名)が key である nn番目のノードの属性値を返す. | |
Buffer | get_double_key_json_val (tJson *pp, const char *key1, const char *key2) |
key1 -> key2 の親子関係を持つ,key2ノードの属性値を返す. | |
Buffer | get_Buffer_from_json (tJson *json) |
char * | get_string_from_json (tJson *json) |
要 free() | |
tList * | search_all_node_strval_json (tJson *json, const char *name, const char *val) |
指定した条件に合う全てのノードへのポインタを,リストに格納して返す. | |
tList * | _search_all_node_strval_json (tList *list, tJson *pp, const char *name, const char *val) |
search_all_node_strval_json() の補助関数 | |
Definition in file tjson.h.
#define del_all_json | ( | j | ) | del_all_tTree((j)) |
#define del_json | ( | j | ) | del_tTree((j)) |
Definition at line 60 of file tjson.h.
Referenced by GLTFData::convertJson_gltf2glb(), and GLTFData::free().
#define del_json_anchor | ( | t | ) | del_tTree_anchor_node((t)) |
#define del_json_anchor_node | ( | t | ) | del_tTree_anchor_node((t)) |
Definition at line 58 of file tjson.h.
Referenced by json_append_array_key(), json_append_obj_key(), and json_insert_parse().
#define del_json_node | ( | j | ) | del_tTree_node((j)) |
Definition at line 62 of file tjson.h.
Referenced by GLTFData::addSkeletonNodes(), GLTFData::closeSolid(), join_json(), json_array_parse(), and json_parse_prop().
#define dup_merge_json | ( | p, | |
c ) dup_merge_tTree((p), (c)) |
#define find_double_key_json | ( | p, | |
k1, | |||
k2 ) search_double_key_json((p), (k1), (k2), FALSE) |
#define find_key_child_json | ( | p, | |
k ) search_key_child_json( (p), (k), FALSE) |
#define find_key_json | ( | p, | |
k ) search_key_json((p), (k), FALSE, 1) |
#define find_key_json_obj | ( | p, | |
k ) search_key_json_obj((p), (k)) |
#define find_key_sister_json | ( | p, | |
k ) search_key_sister_json((p), (k), FALSE) |
#define find_sister_json | ( | p, | |
n ) search_sister_json((p), (n)) |
#define find_top_json | ( | p, | |
n ) search_top_bracket_json((p), (n)) |
#define free_json | ( | j | ) | free_tTree_node((j)) |
#define free_json_node | ( | j | ) | free_tTree_node((j)) |
#define JSON_ANCHOR_NODE JBXL_STATE_ANCHOR |
Definition at line 27 of file tjson.h.
Referenced by _json_to_Buffer(), join_json(), json_append_array_key(), json_append_obj_key(), json_insert_parse(), json_inverse_parse(), json_inverse_parse_opt(), search_all_node_strval_json(), search_key_child_json(), and search_top_bracket_json().
#define JSON_ARRAY_NODE 3 |
Definition at line 31 of file tjson.h.
Referenced by _json_to_Buffer(), _search_all_node_strval_json(), json_append_array_int_val(), json_append_array_real_val(), json_append_array_str_val(), json_array_parse(), json_insert_child(), and json_parse_prop().
#define JSON_ARRAY_VALUE_NODE 4 |
Definition at line 32 of file tjson.h.
Referenced by _json_to_Buffer(), _search_all_node_strval_json(), json_append_array_int_val(), json_append_array_real_val(), json_append_array_str_val(), and json_array_parse().
#define JSON_BRACKET_NODE 1 |
Definition at line 29 of file tjson.h.
Referenced by _json_to_Buffer(), _search_all_node_strval_json(), json_append_array_int_val(), json_append_array_key(), json_append_array_real_val(), json_append_array_str_val(), json_append_obj_int_val(), json_append_obj_key(), json_append_obj_real_val(), json_append_obj_str_val(), json_copy_data(), json_copy_val(), json_insert_child(), json_parse(), json_parse_prop(), json_set_int_val(), json_set_real_val(), json_set_str_val(), and search_top_bracket_json().
#define JSON_CRLF_FORMAT 1 |
Definition at line 45 of file tjson.h.
Referenced by json_inverse_parse().
#define JSON_DATA_NODE 2 |
Definition at line 30 of file tjson.h.
Referenced by _json_to_Buffer(), _search_all_node_strval_json(), json_append_obj_int_val(), json_append_obj_real_val(), json_append_obj_str_val(), and json_parse_prop().
#define JSON_INDENT_FORMAT 2 |
Definition at line 46 of file tjson.h.
Referenced by json_inverse_parse(), and GLTFData::output_gltf().
#define JSON_ONELINE_FORMAT 0 |
Definition at line 44 of file tjson.h.
Referenced by GLTFData::output_glb().
#define JSON_TEMP_NODE -1 |
Definition at line 28 of file tjson.h.
Referenced by join_json(), json_array_parse(), and json_parse_prop().
#define JSON_VALUE_ARRAY 6 |
Definition at line 42 of file tjson.h.
Referenced by get_Buffer_from_json(), get_string_from_json(), json_array_parse(), and json_parse_prop().
#define JSON_VALUE_BOOL 3 |
Definition at line 39 of file tjson.h.
Referenced by json_array_parse(), and json_parse_prop().
#define JSON_VALUE_INT 1 |
Definition at line 37 of file tjson.h.
Referenced by json_append_array_int_val(), json_append_obj_int_val(), json_array_parse(), json_parse_prop(), and json_set_int_val().
#define JSON_VALUE_NULL 0 |
Definition at line 36 of file tjson.h.
Referenced by _json_to_Buffer(), json_append_array_str_val(), json_append_obj_str_val(), json_array_parse(), and json_parse_prop().
#define JSON_VALUE_OBJ 5 |
Definition at line 41 of file tjson.h.
Referenced by _json_to_Buffer(), _search_all_node_strval_json(), _search_key_json_obj(), json_append_obj_int_val(), json_append_obj_real_val(), json_append_obj_str_val(), json_array_parse(), json_insert_child(), json_parse_prop(), search_key_json(), and search_key_json_obj().
#define JSON_VALUE_REAL 2 |
Definition at line 38 of file tjson.h.
Referenced by json_append_array_real_val(), json_append_obj_real_val(), json_array_parse(), json_parse_prop(), and json_set_real_val().
#define JSON_VALUE_STR 4 |
Definition at line 40 of file tjson.h.
Referenced by _search_all_node_strval_json(), json_append_array_str_val(), json_append_obj_str_val(), json_array_parse(), json_parse_prop(), and json_set_str_val().
#define JSON_VALUE_UNRESOLV -1 |
Definition at line 35 of file tjson.h.
Referenced by json_array_parse(), and json_parse_prop().
#define new_json | ( | ) | new_tTree_node() |
#define new_json_anchor | ( | ) | new_tTree_anchor_node() |
#define new_json_anchor_node | ( | ) | new_tTree_anchor_node() |
Definition at line 53 of file tjson.h.
Referenced by json_parse(), and json_parse_prop().
#define new_json_anchor_node | ( | ) | new_tTree_anchor_node() |
#define new_json_node | ( | ) | new_tTree_node() |
Definition at line 52 of file tjson.h.
Referenced by json_array_parse(), json_parse_prop(), and search_all_node_strval_json().
#define print_tJson | ( | f, | |
j ) print_tTree((f), (j)) |
#define print_tJson_tree | ( | f, | |
j, | |||
s ) print_tTree_tree((f), (j), (s)) |
typedef tTree tJson;
tJson (tList, tTree, _tList と同じもの)
3, ノード(ノード)種別 (ldat.id)
tJson* _json_array_parse(tJson* json, int num)
JSONデータの 配列ノードの値(配列データ)を処理する.
json | 配列処理を行う JSON ノードデータ. |
num | 配列処理の残り段数. |
Definition at line 375 of file tjson.cpp.
References free_Buffer(), and json_array_parse().
Referenced by json_array_parse(), and json_parse_prop().
int _json_check_node_bykey | ( | tJson * | pp, |
const char * | key, | ||
int | needval, | ||
int | nn ) |
int _json_check_node_bykey(tJson* pp, const char* key, int needval, int nn)
pp が指すノードの名前(属性名)が key である場合,nnを 1減算して返す. needval が TRUE の場合は,値(属性値)を持っている場合のみ減算する.
Definition at line 1627 of file tjson.cpp.
Referenced by _search_key_json(), _search_key_json_obj(), search_key_json(), search_key_json_obj(), and search_key_sister_json().
tJson* _json_parse_term(tJson* json, const char* st, const char* ed, const char* com)
入力データが途中で終了した場合の処理
Definition at line 551 of file tjson.cpp.
References cat_b2Buffer(), JBXL_JSON_PARSE_TERM, and set_Buffer().
Referenced by json_parse_prop().
void _json_to_Buffer(tJson* pp, Buffer* buf, const char* crlf, const char* space)
json_inverse_parse()用の補助関数. ppに格納された JSONデータを元の書式に戻して Bufferに格納する.
pp | JSONデータが格納されたツリーへのポインタ |
buf | 変換したJSONデータを格納する Buffer変数.データ格納領域は予め確保しておく. |
crlf | JSONへ戻す時の改行コード |
space | インデントを付ける場合の空白やTAB |
Definition at line 688 of file tjson.cpp.
References _json_to_Buffer(), Buffer::buf, cat_Buffer(), cat_s2Buffer, JSON_ANCHOR_NODE, JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_VALUE_NULL, JSON_VALUE_OBJ, and TREE_NOSIS_NODE.
Referenced by _json_to_Buffer(), json_inverse_parse(), and json_inverse_parse_opt().
tList * _search_all_node_strval_json | ( | tList * | list, |
tJson * | pp, | ||
const char * | name, | ||
const char * | val ) |
Definition at line 1669 of file tjson.cpp.
References _search_all_node_strval_json(), add_tList_node, JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_VALUE_OBJ, JSON_VALUE_STR, new_tList_node(), and strncasecmp.
Referenced by _search_all_node_strval_json(), and search_all_node_strval_json().
Definition at line 1554 of file tjson.cpp.
References _json_check_node_bykey(), and _search_key_json().
Referenced by _search_key_json(), and search_key_json().
Definition at line 1593 of file tjson.cpp.
References _json_check_node_bykey(), _search_key_json_obj(), FALSE, and JSON_VALUE_OBJ.
Referenced by _search_key_json_obj(), and search_key_json_obj().
Buffer get_Buffer_from_json(tJson* json)
JSON データのノード値の文字列をを含む Buffer変数を返す. "" または '' で囲まれている場合は,その内部のデータ("", ''の中味)の返す.
Definition at line 1790 of file tjson.cpp.
References init_Buffer(), JSON_VALUE_ARRAY, and make_Buffer_str.
Buffer get_double_key_json_val(tJson* pp, const char* key1, const char* key2)
key1 -> key2 の親子関係を持つ,key2ノードの属性値を返す. 属性値が文字列の場合,先頭と最後の " または ' は削除する.
pp | 探索を開始するノード. |
key1 | 探索するノード名. |
key2 | 探索するノード名. |
Definition at line 1775 of file tjson.cpp.
References get_json_val(), search_double_key_json(), and TRUE.
Definition at line 1703 of file tjson.cpp.
References Buffer::buf, init_Buffer(), set_Buffer(), and Buffer::vldsz.
Referenced by get_double_key_json_val(), get_key_json_val(), and get_key_sister_json_val().
Buffer get_key_json_val(tJson* pp, const char* key, int nn)
pp が指すノード以下で,名前(属性名)が key である nn番目のノードへの属性値を返す.
属性値が文字列の場合,先頭と最後の " または ' は削除する. pp の姉妹ノードは探索しない.
pp | 探索を開始するノード.ppがオブジェクト要素(JSON_VALUE_OBJ)なら,次のノードから探索する. |
key | 探索するノード名. |
nn | 一致するノード内,何番目を返すか指定する.nn<=0 は nn==1 とみなす. |
Definition at line 1734 of file tjson.cpp.
References get_json_val(), search_key_json(), and TRUE.
Buffer get_key_sister_json_val(tJson* pp, const char* key)
pp が指すノードの姉妹で,名前(属性名)が key である nn番目のノードの属性値を返す. 探索対象は探索を開始した姉妹ノードのみ. 属性値が文字列の場合,先頭と最後の " または ' は削除する. @param pp 探索を開始するノード. @param key 探索するノード名. @param needval ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する.
Definition at line 1755 of file tjson.cpp.
References get_json_val(), search_key_sister_json(), and TRUE.
char * get_string_from_json | ( | tJson * | json | ) |
char* get_string_from_json(tJson* json)
JSON データのノード値の文字列を返す. "" または '' で囲まれている場合は,その内部のデータ("", ''の中味)の返す. 要 free
Definition at line 1825 of file tjson.cpp.
References dup_str(), and JSON_VALUE_ARRAY.
tJson* join_json(tJson* parent, tJson** child)
parent の子として child そのものを 直接結合する(add_tTreeを使用). child の TOPが ANCHORノードまたは JSON_TEMP_NODE の場合,そのノードは削除され,*child は書き換えられる.
parent | 結合対象の JSONノード | |
[in] | child | 結合するJSONノード |
[out] | child | child のTOPがANCHOR または JSON_TEMP_NODE の場合,そのノードを削除したjsonツリーのTOP. |
Definition at line 1309 of file tjson.cpp.
References add_tTree(), del_json_node, JSON_ANCHOR_NODE, and JSON_TEMP_NODE.
void json_append_array_int_val | ( | tJson * | json, |
int | val ) |
void json_append_array_int_val(tJson* json, int val)
配列 [] の要素として 整数 val を追加する.
Definition at line 1257 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, copy_i2Buffer(), free_Buffer(), JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, JSON_BRACKET_NODE, JSON_VALUE_INT, LEN_INT, and make_Buffer().
Referenced by GLTFData::addNodes(), GLTFData::addScenes(), GLTFData::addSkeletonNodes(), and GLTFData::addSkins().
tJson* json_append_array_key(tJson* json, const char* key)
json ツリー json に 属性名 key を持つ配列ノード "key":[] を追加する.
Definition at line 1115 of file tjson.cpp.
References Buffer::buf, cat_s2Buffer, del_json_anchor_node, free_Buffer(), JSON_ANCHOR_NODE, JSON_BRACKET_NODE, json_insert_child(), json_parse(), and make_Buffer_str.
Referenced by GLTFData::addMeshes(), GLTFData::addNodes(), GLTFData::addRootNode(), GLTFData::addSkeletonNodes(), GLTFData::addSkins(), and GLTFData::initGLTF().
void json_append_array_real_val | ( | tJson * | json, |
float | val ) |
void json_append_array_real_val(tJson* json, float val)
配列 [] の要素として 実数 val を追加する.
Definition at line 1280 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, copy_r2Buffer(), free_Buffer(), JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, JSON_BRACKET_NODE, JSON_VALUE_REAL, LEN_REAL, and make_Buffer().
Referenced by GLTFData::addNodes(), GLTFData::addRootNode(), and GLTFData::addSkeletonNodes().
void json_append_array_str_val | ( | tJson * | json, |
const char * | val ) |
void json_append_array_str_val(tJson* json, const char* val)
配列 [] の要素として 文字列 val を追加する.
Definition at line 1227 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, cat_s2Buffer, free_Buffer(), JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, JSON_BRACKET_NODE, JSON_VALUE_NULL, JSON_VALUE_STR, and make_Buffer().
void json_append_obj_int_val | ( | tJson * | json, |
const char * | key, | ||
int | val ) |
void json_append_obj_int_val(tJson* json, const char* key, int val)
{} の要素として key:val(valは整数)を追加する.
Definition at line 1181 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, copy_i2Buffer(), free_Buffer(), JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_VALUE_INT, JSON_VALUE_OBJ, LEN_INT, and make_Buffer().
tJson* json_append_obj_key(tJson* json, const char* key)
json ツリー json に 属性名 key を持つオブジェクトノード "key":{} を追加する.
Definition at line 1078 of file tjson.cpp.
References Buffer::buf, cat_s2Buffer, del_json_anchor_node, free_Buffer(), JSON_ANCHOR_NODE, JSON_BRACKET_NODE, json_insert_child(), json_parse(), and make_Buffer_str.
void json_append_obj_real_val | ( | tJson * | json, |
const char * | key, | ||
float | val ) |
void json_append_obj_real_val(tJson* json, const char* key, float val)
{} の要素として key:val(valは実数)を追加する.
Definition at line 1204 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, copy_r2Buffer(), free_Buffer(), JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_VALUE_OBJ, JSON_VALUE_REAL, LEN_REAL, and make_Buffer().
void json_append_obj_str_val | ( | tJson * | json, |
const char * | key, | ||
const char * | val ) |
void json_append_obj_str_val(tJson* json, const char* key, const char* val)
{} の要素として key:val(valは文字列)を追加する.
Definition at line 1150 of file tjson.cpp.
References add_tTree_node_bystr(), Buffer::buf, cat_s2Buffer, free_Buffer(), JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_VALUE_NULL, JSON_VALUE_OBJ, JSON_VALUE_STR, and make_Buffer().
tJson* json_array_parse(tJson* json, const char* str, int num)
JSONデータの 配列ノードの値(配列データ)を処理する.
先頭に姉妹ノードがない場合は json にNULLを指定しても可.
ただし配列なので,先頭は姉妹ノードだらけ.アンカーノードが必要.
その状態で それでもNULLを指定した場合は,この関数外で TOPの JSON_TEMP_NODE を上手く処理すること.
json | JSON ノードデータ.NULLでない場合は,このデータの後に結果が付加される. NULLでも可. |
str | 配列処理を行うデータ. |
num | 配列処理の残り段数. |
Definition at line 401 of file tjson.cpp.
References _json_array_parse(), add_tTree_node(), del_json_node, free_Buffer(), is_number(), JSON_ARRAY_NODE, JSON_ARRAY_VALUE_NODE, json_parse_prop(), JSON_TEMP_NODE, JSON_VALUE_ARRAY, JSON_VALUE_BOOL, JSON_VALUE_INT, JSON_VALUE_NULL, JSON_VALUE_OBJ, JSON_VALUE_REAL, JSON_VALUE_STR, JSON_VALUE_UNRESOLV, make_Buffer_bystr, new_json_node, pack_Buffer(), set_Buffer(), skip_char_pair(), skip_chars(), and strcasecmp.
Referenced by _json_array_parse().
void json_copy_data(tJson* f_json, tJson* t_json)
JSON ノードの f_json から t_json へ属性名と属性値をコピーする.
Definition at line 984 of file tjson.cpp.
References copy_Buffer(), and JSON_BRACKET_NODE.
void json_copy_val(tJson* f_json, tJson* t_json)
JSON ノードの f_json から t_json へ属性値をコピーする.
Definition at line 960 of file tjson.cpp.
References copy_Buffer(), and JSON_BRACKET_NODE.
void json_insert_child(tJson* parent, tJson* child)
json ツリー parent に json ツリー child のノードを挿入する. ANCHORノードは処理しない.ANCHORが有る場合は,これを呼び出す前に処理すること.
parent が 単独の{ または 属性がOBJECTのノード の場合 child の { は破棄されて,それ以下のノードが parent の子(姉妹)として結合される. child そのものは破棄される.
parent が [ の場合 child はそのまま配列の要素として追加される.
parent がそれ外の場合 何の処理も行われない.
Definition at line 1021 of file tjson.cpp.
References add_tTree(), clear_tList_data(), JSON_ARRAY_NODE, JSON_BRACKET_NODE, and JSON_VALUE_OBJ.
Referenced by json_append_array_key(), json_append_obj_key(), and json_insert_parse().
tJson* json_insert_parse(tJson* json, const char* str)
str をパースして json に繋げる.str は { または [ で始まる必要がある.
Definition at line 1053 of file tjson.cpp.
References del_json_anchor_node, JSON_ANCHOR_NODE, json_insert_child(), and json_parse().
Referenced by GLTFData::addAccessorsAoS(), GLTFData::addAccessorsIBM(), GLTFData::addAccessorsSoA(), GLTFData::addBufferViewsAoS(), GLTFData::addBufferViewsIBM(), GLTFData::addBufferViewsSoA(), GLTFData::addMaterialParameters(), GLTFData::addMaterials(), GLTFData::addMeshes(), GLTFData::addNodes(), GLTFData::addRootNode(), GLTFData::addSkeletonNodes(), GLTFData::addSkins(), GLTFData::addTextures(), GLTFData::convertJson_gltf2glb(), GLTFData::initGLTF(), GLTFData::output_glb(), and GLTFData::output_gltf().
Buffer json_inverse_parse(tJson* pp, int mode)
ppに格納された tJsonデータを mode に従って,元の書式に戻して Bufferに格納する.json_parse() の逆.
pp | tJsonデータが格納されたツリーへのポインタ |
mode | JSON_ONELINE_FORMAT 改行なしの一行にする. |
mode | JSON_CRLF_FORMAT ノードの終わりを CR(0x0d), LF(0x0a)で改行する. |
mode | JSON_INDENT_FORMAT 先頭にインデント(" ")をつけ,ノードごとに改行 CR LF (0x0d,0x0a)する. |
Definition at line 616 of file tjson.cpp.
References _json_to_Buffer(), Buffer::buf, count_tTree(), CRLF, init_Buffer(), JSON_ANCHOR_NODE, JSON_CRLF_FORMAT, JSON_INDENT_FORMAT, LSDATA, make_Buffer(), and TREE_NOSIS_NODE.
Referenced by GLTFData::output_glb(), and print_json().
Buffer json_inverse_parse_opt(tJson* pp, const char* crlf, const char* space)
ppに格納された tJsonデータを指定にしたっがて元の書式に戻して Bufferに格納する.
pp | tJsonデータが格納されたツリーへのポインタ |
crlf | json へ戻す時の改行コード |
space | インデントを付ける場合の空白やTAB |
Definition at line 656 of file tjson.cpp.
References _json_to_Buffer(), Buffer::buf, count_tTree(), init_Buffer(), JSON_ANCHOR_NODE, LSDATA, make_Buffer(), and TREE_NOSIS_NODE.
Referenced by print_json_opt().
tJson * json_parse | ( | const char * | str, |
int | num ) |
tJson* json_parse(const char* str, int num)
文字列のJSONデータを解釈して,tJsonのツリーを生成する. ツリーのトップは JSON_ANCHOR_NODE となる. シーケンス処理で書いたので,だらだら. あまり複雑なものはパースできない.たぶん.
str | 文字列の JSONデータへのポインタ. |
num | 0 配列を処理しない.高速. 1 配列を処するが,配列の中の JSONデータは処理しない. 2 配列の中の { } を処理する. N 配列処理 + 再帰処理 の段数. |
state | エラーを起こした場合 stateに JBXL_JSON_PARSED 以外の値(負数)が入る. |
Definition at line 51 of file tjson.cpp.
References JBXL_JSON_ARRAY, JBXL_JSON_DEFAULT_STATE, JBXL_JSON_MULTI_ROOT, JBXL_JSON_NOT_CLOSED, JBXL_JSON_PARSE_TERM, JBXL_JSON_PARSED, JSON_BRACKET_NODE, json_parse_prop(), and new_json_anchor_node.
Referenced by GLTFData::initGLTF(), json_append_array_key(), json_append_obj_key(), json_insert_parse(), and json_parse_file().
tJson * json_parse_file | ( | const char * | fn, |
int | num ) |
tJson* json_parse_file(const char* fn, int num)
ファイルから読み込んでパースする.
fn | 読み込むファイル名 |
num | 0 配列を処理しない.高速. 1 配列を処するが,配列の中の JSONデータは処理しない. 2 配列の中の { } を処理する. N 配列処理 + 再帰処理 の段数. |
Definition at line 868 of file tjson.cpp.
References Buffer::buf, free_Buffer(), json_parse(), and read_Buffer_file().
tJson* json_parse_prop(tJson* json, const char* str, int num)
JSON Main パーサ.
先頭に姉妹ノードがない場合は json にNULLを指定しても可.
処理に json->ctrl を使用(分割シーケンス処理用.プログラム中で書き換えられる).
json | JSONデータへのポインタ. NULLでない場合は,このデータの後に結果が付加される.NULLの場合はアンカー付き. |
str | パースする文字列. |
num | 0 配列を処理しない.高速. 1 配列を処するが,配列の中の JSONデータは処理しない. 2 配列の中の { } を処理する. N 配列処理 + 再帰処理 の段数. |
Definition at line 107 of file tjson.cpp.
References _json_array_parse(), _json_parse_term(), add_tTree_node(), del_json_node, free_Buffer(), is_number(), JBXL_JSON_NODE_OPENED, JBXL_JSON_PARSE_TERM, JBXL_JSON_PARSED, JBXL_NONE, JSON_ARRAY_NODE, JSON_BRACKET_NODE, JSON_DATA_NODE, JSON_TEMP_NODE, JSON_VALUE_ARRAY, JSON_VALUE_BOOL, JSON_VALUE_INT, JSON_VALUE_NULL, JSON_VALUE_OBJ, JSON_VALUE_REAL, JSON_VALUE_STR, JSON_VALUE_UNRESOLV, new_json_anchor_node, new_json_node, OFF, ON, pack_Buffer(), set_Buffer(), skip_char_pair(), skip_string_end(), and strcasecmp.
Referenced by json_array_parse(), json_parse(), and json_parse_seq().
tJson* json_parse_seq(tJson* json, const char* str, int num)
断片化した JSONデータを読み込んで処理する.
処理途中の戻り値は色々な場所を指すが,最期までパースできれば,戻り値はトップに戻る.
Definition at line 581 of file tjson.cpp.
References Buffer::buf, cat_s2Buffer, dup_Buffer(), free_Buffer(), JBXL_JSON_DEFAULT_STATE, and json_parse_prop().
void json_set_int_val | ( | tJson * | json, |
int | val ) |
void json_set_int_val(tJson* json, int val)
json ノードに整数の属性値(value)を設定する.
Definition at line 922 of file tjson.cpp.
References copy_i2Buffer(), JSON_BRACKET_NODE, and JSON_VALUE_INT.
Referenced by GLTFData::convertJson_gltf2glb().
void json_set_real_val | ( | tJson * | json, |
float | val ) |
void json_set_real_val(tJson* json, float val)
json ノードに実数(float) の属性値(value)を設定する.
Definition at line 941 of file tjson.cpp.
References copy_r2Buffer(), JSON_BRACKET_NODE, and JSON_VALUE_REAL.
void json_set_str_val | ( | tJson * | json, |
const char * | val ) |
void json_set_str_val(tJson* json, const char* val)
json ノードに文字列の属性値(value)を設定する.
Definition at line 888 of file tjson.cpp.
References Buffer::buf, cat_s2Buffer, copy_Buffer(), copy_s2Buffer, free_Buffer(), init_Buffer(), JSON_BRACKET_NODE, JSON_VALUE_STR, make_Buffer(), make_Buffer_bystr, and Buffer::vldsz.
Referenced by GLTFData::addScenes(), and GLTFData::initGLTF().
void print_json | ( | FILE * | fp, |
tJson * | json, | ||
int | mode ) |
void print_json(FILE* fp, tJson* json, int mode)
tJsonデータを modeに従って,fp に出力する.
fp | 出力先のファイルポインタ |
json | tJsonデータが格納されたツリーへのポインタ |
mode | JSON_ONELINE_FORMAT 改行なしの一行にする. |
mode | JSON_CRLF_FORMAT ノードの終わりを CR LF(0x0d, 0x0a) で改行する. |
mode | JSON_INDENT_FORMAT 先頭にインデント(TAB 0x09)をつけ,ノードごとに改行 CR LF (0x0d, 0x0a)する. |
Definition at line 818 of file tjson.cpp.
References Buffer::buf, free_Buffer(), and json_inverse_parse().
Referenced by GLTFData::output_gltf().
void print_json_opt | ( | FILE * | fp, |
tJson * | json, | ||
const char * | crlf, | ||
const char * | space ) |
void print_json_opt(FILE* fp, tJson* json, const char* crlf, const char* space)
tJsonデータを fp に出力する.
fp | 出力先のファイルポインタ |
json | tJsonデータが格納されたツリーへのポインタ |
crlf | json へ戻す時の改行コード |
space | インデントを付ける場合の空白やTAB |
Definition at line 840 of file tjson.cpp.
References Buffer::buf, free_Buffer(), and json_inverse_parse_opt().
tList* search_all_node_strval_json(tJson* pp, const char* name, const char* val)
指定した条件に会う全てのノードへのポインタを,リスト(list->altp)に格納して返す.
検索条件は,属性名 name, 属性値 val ("name": "val") を持つノード.
pp | 検索する JSONデータ. |
name | 属性名 |
val | 属性値 |
Definition at line 1657 of file tjson.cpp.
References _search_all_node_strval_json(), JSON_ANCHOR_NODE, and new_json_node.
tJson* search_double_key_json(tJson* pp, const char* key1, const char* key2, int needval)
key1 -> key2 の親子関係を持つ,key2ノードのポインタを返す.
pp | 探索を開始するノード. |
key1 | 探索するノード名. |
key2 | 探索するノード名. |
needval | TRUEの時,ky2 ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する. |
Definition at line 1524 of file tjson.cpp.
References search_key_json(), and search_key_json_obj().
Referenced by get_double_key_json_val(), and GLTFData::initGLTF().
tJson* search_key_child_json(tJson* pp, const char* key, int needval)
pp が指すノードの子(の姉妹)で,名前(属性名)が key であるノードへのポインタを返す. 探索対象は探索を開始した子の姉妹ノードのみ. needval が TRUE の場合は,値(属性値)を持っている場合のみカウントする.
pp | 探索を開始するノード. |
key | 探索するノード名. |
needval | TRUE の場合,ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する. |
Definition at line 1442 of file tjson.cpp.
References JSON_ANCHOR_NODE, and search_key_sister_json().
tJson* search_key_json(tJson* pp, const char* key, int needval, int nn)
pp が指すノード以下で,名前(属性名)が key である nn番目のノードへのポインタを返す.
needval が TRUE の場合は,値(属性値)を持っている場合のみカウントする. pp の姉妹ノードは探索しない.
pp | 探索を開始するノード.ppがオブジェクト要素(JSON_VALUE_OBJ)なら,次のノードから探索する. |
key | 探索するノード名. |
needval | TRUE の場合,ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する. |
nn | 一致するノード内,何番目を返すか指定する.nn<=0 は nn==1 とみなす. |
Definition at line 1378 of file tjson.cpp.
References _json_check_node_bykey(), _search_key_json(), and JSON_VALUE_OBJ.
Referenced by GLTFData::addMaterials(), GLTFData::convertJson_gltf2glb(), GLTFData::convertJson_TexturePath(), get_key_json_val(), GLTFData::getGLBTextureInfo(), and search_double_key_json().
tJson* search_key_json_obj(tJson* pp, const char* key, int nn)
pp が指すノード以下で,名前(属性名)が key である nn番目のオブジェクトノード(JSON_VALUE_OBJ)へのポインタを返す. pp の姉妹ノードは探索しない. search_key_json() よりは少し早い.たぶん.
pp | 探索を開始するノード. |
key | 探索するノード名. |
nn | 一致するノード内,何番目を返すか指定する.nn<=0 は nn==1 とみなす. |
Definition at line 1492 of file tjson.cpp.
References _json_check_node_bykey(), _search_key_json_obj(), FALSE, and JSON_VALUE_OBJ.
Referenced by search_double_key_json().
tJson* search_key_sister_json(tJson* pp, const char* key, int needval)
pp が指すノードの姉妹で,名前(属性名)が key であるノードへのポインタを返す. 探索対象は探索を開始した姉妹ノードのみ. needval が TRUE の場合は,値(属性値)を持っている場合のみカウントする.
pp | 探索を開始するノード. |
key | 探索するノード名. |
needval | TRUE の場合,ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する. |
Definition at line 1465 of file tjson.cpp.
References _json_check_node_bykey().
Referenced by get_key_sister_json_val(), and search_key_child_json().
tJson* search_sister_json(tJson* pp, int nn)
nn個先の sister ノードを返す.正数の場合は younger sister,負数の場合は elder sister を検索する.
pp | 探索を開始するノード. |
nn | 何個先の sister かを指定する.正数の場合は younger sister,負数の場合は elder sister. |
Definition at line 1407 of file tjson.cpp.
tJson* search_top_bracket_json(tJson* pp, int nn)
ツリーが複数のルート(TOP)を持つ場合(state==JBXL_JSON_MULTI_ROOT),指定された順番のTOPへのポインタを返す.
nn | 何番目のTOPを返すか指定する.nn<=0 は nn==1 とみなす. |
Definition at line 1338 of file tjson.cpp.
References JSON_ANCHOR_NODE, and JSON_BRACKET_NODE.