JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
tjson.cpp
Go to the documentation of this file.
1
17#ifdef CPLUSPLUS
18 #undef CPLUSPLUS
19#endif
20
21
22#include "tjson.h"
23#include "jbxl_state.h"
24
25
27// Parser
28//
29
51tJson* json_parse(const char* str, int num)
52{
53 int state = JBXL_JSON_DEFAULT_STATE;
54 char* pp = (char*)str;
55
56 while(*pp!='{' && *pp!='[' && *pp!='\0') pp++;
57 if (*pp=='\0') return NULL;
58 if (*pp=='[') state = JBXL_JSON_ARRAY;
59
60 tJson* json = new_json_anchor_node(); // アンカー
61
62 // パース
63 tJson* node = json_parse_prop(json, pp, num);
64 if (node->state<0) return node;
65 if (node->state==JBXL_JSON_PARSE_TERM) return node; // 中途半端な入力
66
67 // 元に戻ったか?
68 if (json==node) {
69 json->state = JBXL_JSON_PARSED;
70 }
71 else {
72 json->state = JBXL_JSON_NOT_CLOSED;
73 }
74
75 // JSON rootの数
76 if (json->next!=NULL && state!=JBXL_JSON_ARRAY) {
77 int n = 0;
78 node = json->next;
79 while(node!=NULL) {
80 if (node->ldat.id==JSON_BRACKET_NODE) n++;
81 node = node->ysis;
82 }
83 if (n!=1) json->state = JBXL_JSON_MULTI_ROOT;
84 }
85 else json->state = state;
86
87 return json;
88}
89
90
107tJson* json_parse_prop(tJson* json, const char* str, int num)
108{
109 char* pp = (char*)str;
110 char* pt = NULL;
111 tJson* node = NULL;
112 tJson* trgt = NULL;
113 int valflg = OFF;
114
115 if (json==NULL) {
116 json = new_json_anchor_node();
117 }
118
119 while (*pp!='\0') {
120 //
121 if (*pp=='{') {
122 //PRINT_MESG("open { \n");
123 pp++;
124 //
125 if (json->ctrl!=JBXL_JSON_NODE_OPENED) {
126 if (valflg==OFF || json->depth<0) {
127 node = new_json_node();
128 node->ldat.id = JSON_BRACKET_NODE;
129 node->ldat.lv = JSON_VALUE_OBJ;
130 json = add_tTree_node(json, node);
131 }
132 else {
133 json = json->yngr;
134 json->ldat.lv = JSON_VALUE_OBJ;
135 }
136 valflg = OFF;
137 }
138 json->ctrl = JBXL_NONE;
139
140 // 次の \", \', {, } を見つける
141 pt = pp;
142 //while (*pt!='\0' && *pt!='\'' && *pt!='\"' && *pt!='{' && *pt!='}') pt++;
143 while(*pt!='\0') {
144 while(*pt=='\\') pt += 2;
145 if (*pt!='\0') {
146 if (*pt=='\'' || *pt=='\"' || *pt=='{' || *pt=='}') break;
147 pt++;
148 }
149 }
150 if (*pt=='\0') {
151 json = _json_parse_term(json, NULL, NULL, "{");
152 json->ctrl = JBXL_JSON_NODE_OPENED;
153 return json;
154 }
155
156 pp = pt;
157 if (*pp=='\"' || *pp=='\'') {
158 char ch = '\"';
159 if (*pp=='\'') ch = '\'';
160 //
161 pt = pp + 1;
162 while(*pt!='\0') {
163 while(*pt=='\\') pt += 2;
164 if (*pt!='\0') {
165 if (*pt==ch) break;
166 pt++;
167 }
168 }
169 if (*pt=='\0') {
170 json = _json_parse_term(json, pp, pt, "{");
171 json->ctrl = JBXL_JSON_NODE_OPENED;
172 return json;
173 }
174
175 int len = (int)(pt - pp) - 1 ;
176 node = new_json_node();
177 node->ldat.key = set_Buffer(pp + 1, len);
178 node->ldat.id = JSON_DATA_NODE;
179 node->ldat.lv = JSON_VALUE_NULL;
180 trgt = add_tTree_node(json, node);
181
182 pt = pt + 1;
183 while(*pt!=',' && *pt!=':' && *pt!='}' && *pt!='\0') pt++;
184 if (*pt=='\0') {
185 json->state = JBXL_JSON_PARSE_TERM;
186 return json;
187 }
188 pp = pt;
189 }
190 }
191
192 //
193 else if (*pp=='[') {
194 //PRINT_MESG("open [ \n");
195 pt = skip_char_pair(pp, '[', ']');
196 if (*pt=='\0') {
197 json = _json_parse_term(json, pp, pt, "[");
198 return json;
199 }
200 if (valflg==OFF || json->depth<0) { // アンカーのみ
201 node = new_json_node();
202 node->ldat.id = JSON_ARRAY_NODE;
203 node->ldat.lv = JSON_VALUE_ARRAY;
204 add_tTree_node(json, node);
205 }
206 if (json->yngr!=NULL) {
207 int len = (int)(pt - pp) + 1;
208 Buffer temp = set_Buffer(pp, len);
209 json->yngr->ldat.val = pack_Buffer(temp, '\0');
210 json->yngr->ldat.lv = JSON_VALUE_ARRAY;
211 free_Buffer(&temp);
212 }
213 valflg = OFF;
214
215 if (num>0 && json->yngr!=NULL) _json_array_parse(json->yngr, num-1);
216
217 pt++;
218 while(*pt!=',' && *pt!='}' && *pt!='{' && *pt!='[' && *pt!='\0') pt++;
219 if (*pt=='\0') {
220 if (json->depth>0) json->state = JBXL_JSON_PARSE_TERM;
221 return json;
222 }
223 //
224 pp = pt;
225 }
226
227 //
228 else if (*pp==',') {
229 //PRINT_MESG("next , \n");
230 pt = pp + 1;
231 // 次の \", \', {, } を見つける
232 //while (*pt!='\0' && *pt!='\'' && *pt!='\"' && *pt!='{' && *pt!='}' && *pt!='[') pt++;
233 while(*pt!='\0') {
234 while(*pt=='\\') pt += 2;
235 if (*pt!='\0') {
236 if (*pt=='\'' || *pt=='\"' || *pt=='{' || *pt=='}' || *pt=='[') break;
237 pt++;
238 }
239 }
240 if (*pt=='\0') {
241 json = _json_parse_term(json, NULL, NULL, ",");
242 return json;
243 }
244
245 pp = pt;
246 if (*pp=='\"' || *pp=='\'') {
247 char ch = '\"';
248 if (*pt=='\'') ch = '\'';
249 //
250 pt = pp + 1;
251 while(*pt!='\0') {
252 while(*pt=='\\') pt += 2;
253 if (*pt!='\0') {
254 if (*pt==ch) break;
255 pt++;
256 }
257 }
258 if (*pt=='\0') {
259 json = _json_parse_term(json, pp, pt, ",");
260 return json;
261 }
262
263 int len = (int)(pt - pp) - 1 ;
264 node = new_json_node();
265 node->ldat.key = set_Buffer(pp + 1, len);
266 node->ldat.id = JSON_DATA_NODE;
267 node->ldat.lv = JSON_VALUE_NULL;
268 trgt = add_tTree_node(json, node);
269
270 pt = pt + 1;
271 while(*pt!=',' && *pt!=':' && *pt!='}' && *pt!='\0') pt++;
272 if (*pt=='\0') {
273 json->state = JBXL_JSON_PARSE_TERM;
274 return json;
275 }
276 pp = pt;
277 }
278 }
279
280 //
281 else if (*pp==':') {
282 //PRINT_MESG("next : \n");
283 pt = pp + 1;
284 while (*pt==' ') pt++;
285 if (*pt=='\0') {
286 json = _json_parse_term(json, NULL, NULL, ":");
287 return json;
288 }
289 pp = pt;
290
291 if (*pp!='{' && *pp!='[') {
292 while(*pt==' ') pt++;
293 if (*pt!='\0') while (*pt=='\\') pt += 2;
294 //
295 if (*pp=='\'' || *pp=='\"') {
296 pt = skip_string_end(pt);
297 if (*pt!='\0') pt++;
298 }
299 while (*pt!=',' && *pt!='{' && *pt!='}' && *pt!='\0') pt++;
300
301 if (*pt=='\0') {
302 json = _json_parse_term(json, pp, pt, ":");
303 return json;
304 }
305 pt--;
306 while (*pt==' ' || *pt==0x0a || *pt==0x0d) pt--;
307
308 int len = (int)(pt - pp) + 1 ;
309 Buffer temp = set_Buffer(pp, len);
310 if (trgt==NULL) trgt = json->yngr;
311 trgt->ldat.val = pack_Buffer(temp, '\0');
312 free_Buffer(&temp);
313 //
314 if (*pp=='\"' || *pp=='\'') trgt->ldat.lv = JSON_VALUE_STR;
315 else {
316 char* val = (char*)trgt->ldat.val.buf;
317 if (!strcasecmp("true", val) || !strcasecmp("false", val)) trgt->ldat.lv = JSON_VALUE_BOOL;
318 else {
319 int num = is_number((unsigned char*)val);
320 if (num==1) trgt->ldat.lv = JSON_VALUE_INT;
321 else if (num==2) trgt->ldat.lv = JSON_VALUE_REAL;
322 else trgt->ldat.lv = JSON_VALUE_UNRESOLV;
323 }
324 }
325
326 pt++;
327 while (*pt==' ') pt++;
328 pp = pt;
329 }
330 else {
331 valflg = ON; // ':{' or ':['
332 }
333 }
334
335 //
336 else if (*pp=='}') {
337 //PRINT_MESG("close } \n");
338 if (json->prev!=NULL) json = json->prev;
339 //
340 pt = pp = pp + 1;
341 while (*pt!=',' && *pt!='}' && *pt!='{' && *pt!='\0') pt++;
342 if (*pt=='\0' && json->depth>0) {
343 json->state = JBXL_JSON_PARSE_TERM;
344 return json;
345 }
346 pp = pt;
347 }
348
349 //
350 else {
351 pp++;
352 }
353 }
354
355 if (json->ldat.id==JSON_TEMP_NODE) {
356 tJson* temp = json->next;
357 del_json_node(&json);
358 json = temp;
359 }
360
361 json->state = JBXL_JSON_PARSED;
362 return json;
363}
364
365
376{
377 char* pp = (char*)(json->ldat.val.buf);
378 //
379 json = json_array_parse(json, pp, num);
380 free_Buffer(&(json->ldat.val));
381
382 return json;
383}
384
385
401tJson* json_array_parse(tJson* json, const char* str, int num)
402{
403 char* pp = (char*)str;
404 char* pt;
405 if (*pp!='[') return json;
406
407 if (json==NULL) {
408 json = new_json_node();
409 json->ldat.id = JSON_TEMP_NODE;
410 json->ldat.lv = JSON_VALUE_NULL;
411 }
412 else {
413 json->ldat.id = JSON_ARRAY_NODE;
414 json->ldat.lv = JSON_VALUE_ARRAY;
415 }
416
417 //
418 int depth = 1;
419 pp++;
420 while (*pp!='\0') {
421 while (*pp==' ') pp++;
422 if (*pp!='\0') while (*pp=='\\') pp += 2;
423
424 //
425 if (*pp=='[') {
426 pt = skip_char_pair(pp, '[', ']');
427
428 tJson* node = new_json_node();
429 node->ldat.id = JSON_ARRAY_NODE;
430 node->ldat.lv = JSON_VALUE_ARRAY;
431 add_tTree_node(json, node);
432 //
433 if (json->yngr!=NULL) {
434 int len = (int)(pt - pp) + 1;
435 Buffer temp = set_Buffer(pp, len);
436 json->yngr->ldat.val = pack_Buffer(temp, '\0');
437 json->yngr->ldat.lv = JSON_VALUE_ARRAY;
438 free_Buffer(&temp);
439 }
440 if (num>0 && json->yngr!=NULL) _json_array_parse(json->yngr, num-1);
441
442 pt++;
443 while(*pt!=',' && *pt!='}' && *pt!='{' && *pt!='[' && *pt!='\0') pt++;
444
445 depth++;
446 pp = pt + 1;
447 }
448
449 //
450 else if (*pp==']') {
451 depth--;
452 if (depth==0) break;
453 pp++;
454 }
455
456 //
457 else if (*pp=='\'' || *pp=='\"') {
458 char ch = *pp;
459 pt = pp + 1;
460 while (*pt!='\0') {
461 while (*pt=='\\') pt += 2;
462 if (*pt!='\0') {
463 if (*pt==ch) break;
464 pt++;
465 }
466 }
467
468 if (*pt!='\0') {
469 int len = (int)(pt - pp) + 1 ;
470 tJson* node = new_json_node();
471 Buffer temp = set_Buffer(pp, len);
472 node->ldat.key = make_Buffer_bystr("ARRAY_VALUE");
473 node->ldat.val = pack_Buffer(temp, '\0');
474 node->ldat.id = JSON_ARRAY_VALUE_NODE;
475 node->ldat.lv = JSON_VALUE_STR;
476 free_Buffer(&temp);
477 add_tTree_node(json, node);
478
479 pp = pt + 1;
480 }
481 }
482
483 //
484 else if (*pp=='{') {
485 pt = skip_char_pair(pp, '{', '}');
486
487 int len = (int)(pt - pp) + 1 ;
488 tJson* node = new_json_node();
489 Buffer temp = set_Buffer(pp, len);
490 node->ldat.key = make_Buffer_bystr("ARRAY_VALUE");
491 node->ldat.val = pack_Buffer(temp, '\0');
492 node->ldat.id = JSON_ARRAY_VALUE_NODE;
493 node->ldat.lv = JSON_VALUE_OBJ;
494 free_Buffer(&temp);
495
496 if (num>0) {
497 node = json_parse_prop(node, (char*)node->ldat.val.buf, num-1);
498 add_tTree_node(json, node);
499 del_json_node(&node); // ノードを詰める
500 }
501 else {
502 add_tTree_node(json, node);
503 }
504
505 pp = pt + 1;
506 }
507
508 //
509 else if (*pp==',') {
510 pp++;
511 }
512
513 //
514 else {
515 pt = skip_chars(pp, ",}]");
516
517 int len = (int)(pt - pp);
518 tJson* node = new_json_node();
519 Buffer temp = set_Buffer(pp, len);
520 node->ldat.key = make_Buffer_bystr("ARRAY_VALUE");
521 node->ldat.val = pack_Buffer(temp, '\0');
522 node->ldat.id = JSON_ARRAY_VALUE_NODE;
523
524 if (*pp=='\"' || *pp=='\'') node->ldat.lv = JSON_VALUE_STR;
525 else {
526 const char* val = (const char*)node->ldat.val.buf;
527 if (!strcasecmp("true", val) || !strcasecmp("false", val)) node->ldat.lv = JSON_VALUE_BOOL;
528 else {
529 int num = is_number((unsigned char*)val);
530 if (num==1) node->ldat.lv = JSON_VALUE_INT;
531 else if (num==2) node->ldat.lv = JSON_VALUE_REAL;
532 else node->ldat.lv = JSON_VALUE_UNRESOLV;
533 }
534 }
535
536 free_Buffer(&temp);
537 add_tTree_node(json, node);
538 pp = pt;
539 }
540 }
541
542 return json;
543}
544
545
551tJson* _json_parse_term(tJson* json, const char* st, const char* ed, const char* com)
552{
553 if (json==NULL) return NULL;
554
555 json->state = JBXL_JSON_PARSE_TERM;
556 if (com!=NULL) {
557 json->ldat.val = set_Buffer((void*)com, -1);
558 if (st!=NULL && ed!=NULL) {
559 int len = (int)(ed - st) + 1;
560 cat_b2Buffer((char*)st, &(json->ldat.val), len);
561 json->ldat.val.vldsz = (int)strlen((char*)json->ldat.val.buf);
562 }
563 }
564 return json;
565}
566
567
581tJson* json_parse_seq(tJson* json, const char* str, int num)
582{
583 if (json==NULL) {
584 json = json_parse_prop(NULL, str, num);
585 return json;
586 }
587
588 Buffer buf = dup_Buffer(json->ldat.val);
589 free_Buffer(&(json->ldat.val));
590 cat_s2Buffer((char*)str, &buf);
591
592 json->state = JBXL_JSON_DEFAULT_STATE;
593 json = json_parse_prop(json, (char*)buf.buf, num);
594 free_Buffer(&buf);
595
596 return json;
597}
598
599
600
602// 逆 Parser
603//
604
617{
618 int cnt;
619 Buffer buf;
620
621 buf = init_Buffer();
622 if (pp==NULL) return buf;
623 if (pp->ldat.id==JSON_ANCHOR_NODE) pp = pp->next;
624 if (pp==NULL) return buf;
625
626 cnt = count_tTree(pp);
627 buf = make_Buffer(cnt*LSDATA);
628 if (buf.buf==NULL) return buf;
629
630 if (pp->ctrl!=TREE_NOSIS_NODE) while (pp->esis!=NULL) pp = pp->esis;
631
632 if (mode==JSON_CRLF_FORMAT) {
633 _json_to_Buffer(pp, &buf, CRLF, "");
634 }
635 else if (mode==JSON_INDENT_FORMAT) {
636 _json_to_Buffer(pp, &buf, CRLF, " ");
637 }
638 else {
639 _json_to_Buffer(pp, &buf, "", "");
640 }
641
642 return buf;
643}
644
645
656Buffer json_inverse_parse_opt(tJson* pp, const char* crlf, const char* space)
657{
658 int cnt;
659 Buffer buf;
660
661 buf = init_Buffer();
662 if (pp==NULL) return buf;
663 if (pp->ldat.id==JSON_ANCHOR_NODE) pp = pp->next;
664 if (pp==NULL) return buf;
665
666 cnt = count_tTree(pp);
667 buf = make_Buffer(cnt*LSDATA);
668 if (buf.buf==NULL) return buf;
669
670 if (pp->ctrl!=TREE_NOSIS_NODE) while (pp->esis!=NULL) pp = pp->esis;
671 _json_to_Buffer(pp, &buf, crlf, space);
672
673 return buf;
674}
675
676
688void _json_to_Buffer(tJson* pp, Buffer* buf, const char* crlf, const char* space)
689{
690 if (pp==NULL) return;
691 if (buf==NULL || buf->buf==NULL) return;
692 //
693 if (pp->ldat.id==JSON_ANCHOR_NODE) pp = pp->next;
694
695 if (pp!=NULL) {
696 if (pp->ctrl!=TREE_NOSIS_NODE) while(pp->esis!=NULL) pp = pp->esis; // 長女から逆パースを開始.
697 do {
698 int i;
699 if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
700 //
701 if (pp->ldat.id==JSON_BRACKET_NODE) {
702 //PRINT_MESG("JSON_BRACKET_NODE\n");
703 cat_s2Buffer("{", buf);
704 if (pp->next!=NULL) {
705 if (crlf[0]!='\0') cat_s2Buffer(crlf, buf);
706 _json_to_Buffer(pp->next, buf, crlf, space);
707 if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
708 }
709 //if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
710 cat_s2Buffer("}", buf);
711 }
712 //
713 else if (pp->ldat.id==JSON_DATA_NODE) {
714 //PRINT_MESG("JSON_DATA_NODE\n");
715 cat_s2Buffer("\"", buf);
716 cat_s2Buffer(pp->ldat.key.buf, buf);
717 cat_s2Buffer("\"", buf);
718 //
719 if (pp->ldat.lv==JSON_VALUE_OBJ) {
720 if (space[0]!='\0') cat_s2Buffer(": {", buf);
721 else cat_s2Buffer(":{", buf);
722 if (pp->next!=NULL) {
723 if (crlf[0]!='\0') cat_s2Buffer(crlf, buf);
724 _json_to_Buffer(pp->next, buf, crlf, space);
725 if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
726 }
727 //if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
728 cat_s2Buffer("}", buf);
729 }
730 else {
731 if (pp->ldat.lv==JSON_VALUE_NULL) {
732 if (space[0]!='\0') cat_s2Buffer(": null", buf);
733 else cat_s2Buffer(":null", buf);
734 }
735 else {
736 if (space[0]!='\0') cat_s2Buffer(": ", buf);
737 else cat_s2Buffer(":", buf);
738 cat_s2Buffer(pp->ldat.val.buf, buf);
739 }
740 }
741 }
742 //
743 // array
744 else if (pp->ldat.id==JSON_ARRAY_NODE) {
745 //PRINT_MESG("JSON_ARRAY_NODE\n");
746 if (pp->ldat.key.buf!=NULL) {
747 cat_s2Buffer("\"", buf);
748 cat_s2Buffer(pp->ldat.key.buf, buf);
749 if (space[0]!='\0') cat_s2Buffer("\": ", buf);
750 else cat_s2Buffer("\":", buf);
751 }
752 if (pp->ldat.val.buf!=NULL) {
753 cat_s2Buffer(pp->ldat.val.buf, buf);
754 }
755 else {
756 cat_s2Buffer("[", buf);
757 if (pp->next!=NULL) {
758 if (crlf[0]!='\0') cat_s2Buffer(crlf, buf);
759 _json_to_Buffer(pp->next, buf, crlf, space);
760 if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
761 }
762 //if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
763 cat_s2Buffer("]", buf);
764 }
765 }
766
767 else if (pp->ldat.id==JSON_ARRAY_VALUE_NODE) {
768 //PRINT_MESG("JSON_ARRAY_VALUE_NODE\n");
769 if (pp->ldat.lv==JSON_VALUE_OBJ) {
770 if (pp->ldat.val.buf==NULL) {
771 cat_s2Buffer("{", buf);
772 if (pp->next!=NULL) {
773 if (crlf[0]!='\0') cat_s2Buffer(crlf, buf);
774 _json_to_Buffer(pp->next, buf, crlf, space);
775 if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
776 }
777 //if (space[0]!='\0') for(i=0; i<pp->depth; i++) cat_s2Buffer(space, buf);
778 cat_s2Buffer("}", buf);
779 }
780 else {
781 cat_Buffer(&pp->ldat.val, buf);
782 }
783 }
784 else {
785 if (pp->ldat.lv==JSON_VALUE_NULL) {
786 cat_s2Buffer("null", buf);
787 }
788 else {
789 cat_s2Buffer(pp->ldat.val.buf, buf);
790 }
791 }
792 }
793
794 if (pp->ctrl!=TREE_NOSIS_NODE && pp->ysis!=NULL &&
795 pp->prev!=NULL && pp->prev->ldat.id!=JSON_ANCHOR_NODE) cat_s2Buffer(",", buf);
796 if (crlf[0]!='\0') cat_s2Buffer(crlf, buf);
797
798 if (pp->ctrl!=TREE_NOSIS_NODE) pp = pp->ysis;
799 else pp = NULL;
800 } while(pp!=NULL);
801 }
802
803 return;
804}
805
806
818void print_json(FILE* fp, tJson* json, int mode)
819{
820 Buffer buf = json_inverse_parse(json, mode);
821 if (buf.buf!=NULL) {
822 fprintf(fp, "%s", buf.buf);
823 free_Buffer(&buf);
824 }
825
826 return;
827}
828
829
840void print_json_opt(FILE* fp, tJson* json, const char* crlf, const char* space)
841{
842 Buffer buf = json_inverse_parse_opt(json, crlf, space);
843 if (buf.buf!=NULL) {
844 fprintf(fp, "%s", buf.buf);
845 free_Buffer(&buf);
846 }
847
848 return;
849}
850
851
852
854// Tools
855
868tJson* json_parse_file(const char* fn, int num)
869{
870 tJson* json = NULL;
871 Buffer buf;
872
873 buf = read_Buffer_file(fn);
874 if (buf.buf!=NULL) {
875 json = json_parse((char*)(buf.buf), num);
876 free_Buffer(&buf);
877 }
878
879 return json;
880}
881
882
888void json_set_str_val(tJson* json, const char* val)
889{
890 if (json==NULL || val==NULL) return;
891 if (json->ldat.id==JSON_BRACKET_NODE) {
892 json = json->next;
893 if (json==NULL) return;
894 }
895
896 Buffer buf = init_Buffer();
897 if (val[0]!='"') {
898 buf = make_Buffer((int)strlen(val) + 3); // " + " + \0
899 copy_s2Buffer("\"", &buf);
900 cat_s2Buffer(val, &buf);
901 }
902 else {
903 buf = make_Buffer_bystr(val);
904 }
905 if (buf.buf[buf.vldsz-1]!='"') {
906 cat_s2Buffer("\"", &buf);
907 }
908
909 copy_Buffer(&buf, &(json->ldat.val));
910 json->ldat.lv = JSON_VALUE_STR;
911 free_Buffer(&buf);
912
913 return;
914}
915
916
922void json_set_int_val(tJson* json, int val)
923{
924 if (json==NULL) return;
925 if (json->ldat.id==JSON_BRACKET_NODE) {
926 json = json->next;
927 if (json==NULL) return;
928 }
929
930 copy_i2Buffer(val, &(json->ldat.val));
931 json->ldat.lv = JSON_VALUE_INT;
932 return;
933}
934
935
941void json_set_real_val(tJson* json, float val)
942{
943 if (json==NULL) return;
944 if (json->ldat.id==JSON_BRACKET_NODE) {
945 json = json->next;
946 if (json==NULL) return;
947 }
948
949 copy_r2Buffer(val, &(json->ldat.val));
950 json->ldat.lv = JSON_VALUE_REAL;
951 return;
952}
953
954
960void json_copy_val(tJson* f_json, tJson* t_json)
961{
962 if (f_json==NULL || t_json==NULL) return;
963 if (f_json->ldat.id==JSON_BRACKET_NODE) {
964 f_json = f_json->next;
965 if (f_json==NULL) return;
966 }
967 if (t_json->ldat.id==JSON_BRACKET_NODE) {
968 t_json = t_json->next;
969 if (t_json==NULL) return;
970 }
971
972 t_json->ldat.lv = f_json->ldat.lv;
973 copy_Buffer(&(f_json->ldat.val), &(t_json->ldat.val));
974
975 return;
976}
977
978
984void json_copy_data(tJson* f_json, tJson* t_json)
985{
986 if (f_json==NULL || t_json==NULL) return;
987 if (f_json->ldat.id==JSON_BRACKET_NODE) {
988 f_json = f_json->next;
989 if (f_json==NULL) return;
990 }
991 if (t_json->ldat.id==JSON_BRACKET_NODE) {
992 t_json = t_json->next;
993 if (t_json==NULL) return;
994 }
995
996 t_json->ldat.id = f_json->ldat.id;
997 t_json->ldat.lv = f_json->ldat.lv;
998 copy_Buffer(&(f_json->ldat.key), &(t_json->ldat.key));
999 copy_Buffer(&(f_json->ldat.val), &(t_json->ldat.val));
1000
1001 return;
1002}
1003
1004
1022{
1023 if (parent==NULL || child ==NULL) return NULL;
1024 if (parent->ldat.id!=JSON_BRACKET_NODE && parent->ldat.lv!=JSON_VALUE_OBJ && parent->ldat.id!=JSON_ARRAY_NODE) return NULL;
1025 if (child->ldat.id !=JSON_BRACKET_NODE) return NULL;
1026
1027 tJson* ret = NULL;
1028 //if (parent->ldat.id==JSON_BRACKET_NODE) {
1029 if (parent->ldat.id==JSON_BRACKET_NODE || parent->ldat.lv==JSON_VALUE_OBJ) {
1030 tJson* cp = child->next;
1031 while (cp!=NULL) {
1032 add_tTree(parent, cp);
1033 ret = cp;
1034 cp = cp->ysis;
1035 }
1036 clear_tList_data(&child->ldat);
1037 free(child);
1038 }
1039 else if (parent->ldat.id==JSON_ARRAY_NODE) {
1040 add_tTree(parent, child);
1041 ret = child;
1042 }
1043
1044 return ret;
1045}
1046
1047
1053tJson* json_insert_parse(tJson* json, const char* str)
1054{
1055 if (str==NULL || json==NULL) return NULL;
1056 if (json->ldat.id==JSON_ANCHOR_NODE) json = json->next;
1057 if (json==NULL) return NULL;
1058
1059 tJson* jcld = json_parse(str, 99);
1060 if (jcld!=NULL && jcld->ldat.id==JSON_ANCHOR_NODE) {
1061 jcld = del_json_anchor_node(jcld);
1062 }
1063 if (jcld!=NULL) {
1064 jcld = json_insert_child(json, jcld);
1065 }
1066
1067 return jcld;
1068}
1069
1070
1078tJson* json_append_obj_key(tJson* json, const char* key)
1079{
1080 if (key==NULL || json==NULL) return NULL;
1081 if (json->ldat.id==JSON_ANCHOR_NODE) json = json->next;
1082 if (json==NULL) return NULL;
1083
1084 Buffer buf = make_Buffer_str("{");
1085 if (key[0]!='"') cat_s2Buffer("\"", &buf);
1086 cat_s2Buffer(key, &buf);
1087 if (key[strlen(key)-1]!='"') cat_s2Buffer("\"", &buf);
1088 cat_s2Buffer(":{}}", &buf);
1089
1090 tJson* jcld = json_parse((char*)buf.buf, 1);
1091 if (jcld!=NULL && jcld->ldat.id==JSON_ANCHOR_NODE) {
1092 jcld = del_json_anchor_node(jcld);
1093 }
1094 free_Buffer(&buf);
1095
1096 if (jcld!=NULL) {
1097 jcld = json_insert_child(json, jcld);
1098 }
1099 else {
1100 return NULL;
1101 }
1102 if (jcld->ldat.id==JSON_BRACKET_NODE) jcld = jcld->next;
1103
1104 return jcld;
1105}
1106
1107
1115tJson* json_append_array_key(tJson* json, const char* key)
1116{
1117 if (key==NULL || json==NULL) return NULL;
1118 if (json->ldat.id==JSON_ANCHOR_NODE) json = json->next;
1119 if (json==NULL) return NULL;
1120
1121 Buffer buf = make_Buffer_str("{");
1122 if (key[0]!='"') cat_s2Buffer("\"", &buf);
1123 cat_s2Buffer(key, &buf);
1124 if (key[strlen(key)-1]!='"') cat_s2Buffer("\"", &buf);
1125 cat_s2Buffer(":[]}", &buf);
1126
1127 tJson* jcld = json_parse((char*)buf.buf, 1);
1128 if (jcld!=NULL && jcld->ldat.id==JSON_ANCHOR_NODE) {
1129 jcld = del_json_anchor_node(jcld);
1130 }
1131 free_Buffer(&buf);
1132
1133 if (jcld!=NULL) {
1134 jcld = json_insert_child(json, jcld);
1135 }
1136 else {
1137 return NULL;
1138 }
1139 if (jcld->ldat.id==JSON_BRACKET_NODE) jcld = jcld->next;
1140
1141 return jcld;
1142}
1143
1144
1150void json_append_obj_str_val(tJson* json, const char* key, const char* val)
1151{
1152 if (json==NULL) return;
1153 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) {
1154 json = json->next;
1155 if (json!=NULL) return;
1156 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) return;
1157 }
1158
1159 if (val!=NULL) {
1160 int len = (int)strlen(val);
1161 Buffer val_buf = make_Buffer(len + 4); // \" + \" + \0 + 予備
1162 if (val[0]!='"') cat_s2Buffer("\"", &val_buf);
1163 cat_s2Buffer(val, &val_buf);
1164 if (val[len-1]!='"') cat_s2Buffer("\"", &val_buf);
1165 //
1166 add_tTree_node_bystr(json, JSON_DATA_NODE, JSON_VALUE_STR, key, (char*)val_buf.buf, NULL, 0);
1167 free_Buffer(&val_buf);
1168 }
1169 else {
1170 add_tTree_node_bystr(json, JSON_DATA_NODE, JSON_VALUE_NULL, key, NULL, NULL, 0);
1171 }
1172 return;
1173}
1174
1175
1181void json_append_obj_int_val(tJson* json, const char* key, int val)
1182{
1183 if (json==NULL) return;
1184 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) {
1185 json = json->next;
1186 if (json!=NULL) return;
1187 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) return;
1188 }
1189
1190 Buffer val_buf = make_Buffer(LEN_INT + 1);
1191 copy_i2Buffer(val, &val_buf);
1192 add_tTree_node_bystr(json, JSON_DATA_NODE, JSON_VALUE_INT, key, (char*)val_buf.buf, NULL, 0);
1193
1194 free_Buffer(&val_buf);
1195 return;
1196}
1197
1198
1204void json_append_obj_real_val(tJson* json, const char* key, float val)
1205{
1206 if (json==NULL) return;
1207 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) {
1208 json = json->next;
1209 if (json!=NULL) return;
1210 if (json->ldat.id!=JSON_BRACKET_NODE && json->ldat.lv!=JSON_VALUE_OBJ) return;
1211 }
1212
1213 Buffer val_buf = make_Buffer(LEN_REAL + 1);
1214 copy_r2Buffer(val, &val_buf);
1215 add_tTree_node_bystr(json, JSON_DATA_NODE, JSON_VALUE_REAL, key, (char*)val_buf.buf, NULL, 0);
1216
1217 free_Buffer(&val_buf);
1218 return;
1219}
1220
1221
1227void json_append_array_str_val(tJson* json, const char* val)
1228{
1229 if (json==NULL) return;
1230 if (json->ldat.id==JSON_BRACKET_NODE) {
1231 json = json->next;
1232 if (json==NULL) return;
1233 }
1234 if (json->ldat.id!=JSON_ARRAY_NODE) return;
1235
1236 if (val!=NULL) {
1237 int len = (int)strlen(val);
1238 Buffer val_buf = make_Buffer(len + 4); // \" + \" + \0 + 予備
1239 if (val[0]!='"') cat_s2Buffer("\"", &val_buf);
1240 cat_s2Buffer(val, &val_buf);
1241 if (val[len-1]!='"') cat_s2Buffer("\"", &val_buf);
1242 add_tTree_node_bystr(json, JSON_ARRAY_VALUE_NODE, JSON_VALUE_STR, "ARRAY_VALUE", (char*)val_buf.buf, NULL, 0);
1243 free_Buffer(&val_buf);
1244 }
1245 else {
1246 add_tTree_node_bystr(json, JSON_ARRAY_VALUE_NODE, JSON_VALUE_NULL, "ARRAY_VALUE", NULL, NULL, 0);
1247 }
1248 return;
1249}
1250
1251
1258{
1259 if (json==NULL) return;
1260 if (json->ldat.id==JSON_BRACKET_NODE) {
1261 json = json->next;
1262 if (json==NULL) return;
1263 }
1264 if (json->ldat.id!=JSON_ARRAY_NODE) return;
1265
1266 Buffer val_buf = make_Buffer(LEN_INT + 1);
1267 copy_i2Buffer(val, &val_buf);
1268 add_tTree_node_bystr(json, JSON_ARRAY_VALUE_NODE, JSON_VALUE_INT, "ARRAY_VALUE", (char*)val_buf.buf, NULL, 0);
1269
1270 free_Buffer(&val_buf);
1271 return;
1272}
1273
1274
1280void json_append_array_real_val(tJson* json, float val)
1281{
1282 if (json==NULL) return;
1283 if (json->ldat.id==JSON_BRACKET_NODE) {
1284 json = json->next;
1285 if (json==NULL) return;
1286 }
1287 if (json->ldat.id!=JSON_ARRAY_NODE) return;
1288
1289 Buffer val_buf = make_Buffer(LEN_REAL + 1);
1290 copy_r2Buffer(val, &val_buf);
1291 add_tTree_node_bystr(json, JSON_ARRAY_VALUE_NODE, JSON_VALUE_REAL, "ARRAY_VALUE", (char*)val_buf.buf, NULL, 0);
1292
1293 free_Buffer(&val_buf);
1294 return;
1295}
1296
1297
1309tJson* join_json(tJson* parent, tJson** child)
1310{
1311 if (*child==NULL) return parent;
1312 if (parent==NULL) return *child; // この場合 ANCHOR, TEMP_NODE はそのまま
1313
1314 if ((*child)->ldat.id==JSON_ANCHOR_NODE || (*child)->ldat.id==JSON_TEMP_NODE) { // 子として繋げる場合,ANCHOR, TEMP_NODE は削除
1315 tJson* jtmp = (*child)->next;
1316 del_json_node(child); // ANCHOR, TEMP_NODE を削除してつめる.
1317 *child = jtmp;
1318 }
1319
1320 add_tTree(parent, *child);
1321
1322 return parent;
1323}
1324
1325
1326
1328// Search
1329
1339{
1340 if (pp==NULL) return NULL;
1341 if (nn<=0) nn = 1;
1342
1343 while (pp->prev!=NULL) pp = pp->prev;
1344
1345 if (pp->ldat.id==JSON_ANCHOR_NODE) {
1346 pp = pp->next;
1347 }
1348 if (pp->ldat.id==JSON_BRACKET_NODE) {
1349 while(pp->esis!=NULL) pp = pp->esis;
1350 }
1351 else {
1352 return NULL;
1353 }
1354
1355 int i = 1;
1356 while (i<nn && pp!=NULL) {
1357 pp = pp->ysis;
1358 i++;
1359 }
1360
1361 return pp;
1362}
1363
1364
1378tJson* search_key_json(tJson* pp, const char* key, int needval, int nn)
1379{
1380 if (pp==NULL || key==NULL) return NULL;
1381 if (nn<=0) nn = 1;
1382
1383 // 開始ノードのチェック
1384 if (!(pp->ldat.lv==JSON_VALUE_OBJ && needval)){
1385 nn = _json_check_node_bykey(pp, key, needval, nn);
1386 }
1387 // 子ノード
1388 if (nn>0 && pp->next!=NULL) {
1389 pp = _search_key_json(pp->next, key, needval, &nn);
1390 }
1391 else return NULL;
1392
1393 return pp;
1394}
1395
1396
1408{
1409 if (pp==NULL) return NULL;
1410
1411 if (nn>0) {
1412 int i = 0;
1413 while (pp!=NULL && i<nn) {
1414 pp = pp->ysis;
1415 i++;
1416 }
1417 }
1418 else if (nn<0) {
1419 nn = -nn;
1420 int i = 0;
1421 while (pp!=NULL && i<nn) {
1422 pp = pp->esis;
1423 i++;
1424 }
1425 }
1426 return pp;
1427}
1428
1429
1442tJson* search_key_child_json(tJson* pp, const char* key, int needval)
1443{
1444 if (pp!=NULL && pp->ldat.id==JSON_ANCHOR_NODE) pp = pp->next;
1445 if (pp==NULL || pp->next==NULL) return NULL;
1446
1447 tJson* json = search_key_sister_json(pp->next, key, needval);
1448
1449 return json;
1450}
1451
1452
1465tJson* search_key_sister_json(tJson* pp, const char* key, int needval)
1466{
1467 if (pp==NULL || key==NULL) return NULL;
1468 while(pp->esis!=NULL) pp = pp->esis;
1469
1470 while(pp!=NULL) {
1471 int nn = _json_check_node_bykey(pp, key, needval, 1);
1472 if (nn==0) return pp;
1473 pp = pp->ysis;
1474 }
1475
1476 return NULL;
1477}
1478
1479
1492tJson* search_key_json_obj(tJson* pp, const char* key, int nn)
1493{
1494 if (pp==NULL || key==NULL) return NULL;
1495 if (nn<=0) nn = 1;
1496
1497 // 開始ノードのチェック
1498 if (pp->ldat.lv==JSON_VALUE_OBJ) {
1499 nn = _json_check_node_bykey(pp, key, FALSE, nn);
1500 }
1501 if (nn==0) return pp;
1502
1503 // 子ノード
1504 if (pp->next!=NULL) {
1505 pp = _search_key_json_obj(pp->next, key, &nn);
1506 }
1507 else return NULL;
1508
1509 return pp;
1510}
1511
1512
1524tJson* search_double_key_json(tJson* pp, const char* key1, const char* key2, int needval)
1525{
1526 if (pp==NULL || key1==NULL || key2==NULL) return NULL;
1527
1528 pp = search_key_json_obj(pp, key1, 1);
1529 if (pp==NULL) return NULL;
1530
1531 if (pp->next!=NULL) {
1532 pp = search_key_json(pp, key2, needval, 1);
1533 }
1534 else return NULL;
1535
1536 return pp;
1537}
1538
1539
1540/*
1541tJson* _search_key_json(tJson* pp, const char* key, int needval, int* nn)
1542
1543search_key_json() の補助関数
1544pp が指すノード以下で,名前(属性名)が key である nn番目のノードへのポインタを返す.@n
1545needval が TRUE の場合は,値(属性値)を持っている場合のみカウントする.
1546search_key_json() との違いは pp の姉妹ノードも探索することである.
1547
1548@param pp 探索を開始するノード.ppがオブジェクト要素(JSON_VALUE_OBJ)なら,次のノードから探索する.
1549@param key 探索するノード名.
1550@param needval TRUE の場合,ノードが値(属性値)を持っていない場合は無視する."", '' の場合も無視する.
1551@param nn 一致するノード内,何番目を返すか指定する.nn<=0 は nn==1 とみなす.
1552@return 見つかったノードへのポインタ.見つからない場合は,NULL
1553*/
1554tJson* _search_key_json(tJson* pp, const char* key, int needval, int* nn)
1555{
1556 while(pp->esis!=NULL) pp = pp->esis;
1557 tJson* esis = pp;
1558
1559 while(pp!=NULL) {
1560 *nn = _json_check_node_bykey(pp, key, needval, *nn);
1561 if ((*nn)<=0) return pp;
1562 pp = pp->ysis;
1563 }
1564
1565 // 子ノード
1566 pp = esis;
1567 while(pp!=NULL) {
1568 if (pp->next!=NULL) {
1569 tJson* json = _search_key_json(pp->next, key, needval, nn);
1570 if (json!=NULL) return json;
1571 }
1572 pp = pp->ysis;
1573 }
1574
1575 return NULL;
1576}
1577
1578
1579/*
1580tJson* _search_key_json_obj(tJson* pp, const char* key, int* nn)
1581
1582search_key_json_obj() の補助関数
1583pp が指すノード以下で,名前(属性名)が key である nn番目のオブジェクトノードへのポインタを返す.
1584pp の姉妹ノードは探索しない.
1585_search_key_json() よりは少し早い.たぶん.
1586search_key_json_obj() との違いは pp の姉妹ノードも探索することである.
1587
1588@param pp 探索を開始するノード.
1589@param key 探索するノード名.
1590@param nn 一致するノード内,何番目を返すか指定する.nn<=0 は nn==1 とみなす.
1591@return 見つかったオブジェクトノードへのポインタ.見つからない場合は,NULL
1592*/
1593tJson* _search_key_json_obj(tJson* pp, const char* key, int* nn)
1594{
1595 if (pp==NULL) return NULL;
1596 while(pp->esis!=NULL) pp = pp->esis;
1597 tJson* esis = pp;
1598
1599 while(pp!=NULL) {
1600 if (pp->ldat.lv==JSON_VALUE_OBJ) {
1601 *nn = _json_check_node_bykey(pp, key, FALSE, *nn);
1602 }
1603 if ((*nn)<=0) return pp;
1604 pp = pp->ysis;
1605 }
1606
1607 // 子ノード
1608 pp = esis;
1609 while(pp!=NULL) {
1610 if (pp->next!=NULL) {
1611 tJson* json = _search_key_json_obj(pp->next, key, nn);
1612 if (json!=NULL) return json;
1613 }
1614 pp = pp->ysis;
1615 }
1616
1617 return NULL;
1618}
1619
1620
1627int _json_check_node_bykey(tJson* pp, const char* key, int needval, int nn)
1628{
1629 if (pp->ldat.key.buf!=NULL) {
1630 if (!strcmp(key, (char*)pp->ldat.key.buf)) {
1631 if (needval) {
1632 unsigned char* pm = pp->ldat.val.buf;
1633 if (pm!=NULL) {
1634 if (!((pm[0]=='\'' && pm[1]=='\'') || (pm[0]=='"' && pm[1]=='"')) && pm[0]!='\0') nn--;
1635 }
1636 }
1637 else {
1638 nn--;
1639 }
1640 }
1641 }
1642 return nn;
1643}
1644
1645
1657tList* search_all_node_strval_json(tJson* pp, const char* name, const char* val)
1658{
1659 if (pp!=NULL && pp->ldat.id==JSON_ANCHOR_NODE) pp = pp->next;
1660 if (pp==NULL) return NULL;
1661
1662 tList* list = new_json_node();
1663 _search_all_node_strval_json(list, pp, name, val);
1664
1665 return list;
1666}
1667
1668
1669tList* _search_all_node_strval_json(tList* list, tJson* pp, const char* name, const char* val)
1670{
1671 while (pp->esis!=NULL) pp = pp->esis;
1672 do {
1673 if (pp->ldat.id==JSON_DATA_NODE || pp->ldat.id==JSON_ARRAY_VALUE_NODE) {
1674 if (!strncasecmp(name, (char*)pp->ldat.key.buf, strlen(name))) {
1675 if (pp->ldat.lv==JSON_VALUE_STR) {
1676 if (!strncasecmp(val, (char*)(pp->ldat.val.buf+1), strlen(val))) {
1677 list->altp = pp;
1678 tList* temp = new_tList_node();
1679 temp->ldat.id = list->ldat.id + 1;
1680 add_tList_node(list, temp);
1681 list = temp;
1682 }
1683 }
1684 }
1685 else if (pp->ldat.lv==JSON_VALUE_OBJ) {
1686 if (pp->next!=NULL) {
1687 list = _search_all_node_strval_json(list, pp->next, name, val);
1688 }
1689 }
1690 }
1691 else if (pp->ldat.id==JSON_BRACKET_NODE || pp->ldat.id==JSON_ARRAY_NODE) {
1692 if (pp->next!=NULL) {
1693 list = _search_all_node_strval_json(list, pp->next, name, val);
1694 }
1695 }
1696 pp = pp->ysis;
1697 } while (pp!=NULL);
1698
1699 return list;
1700}
1701
1702
1704{
1705 Buffer val = init_Buffer();
1706
1707 if (json!=NULL) {
1708 char* pp = (char*)json->ldat.val.buf;
1709 if ((*pp=='\"') || (*pp=='\'')) {
1710 val = set_Buffer(pp+1, (int)strlen(pp)-1);
1711 val.buf[val.vldsz-1] = '\0';
1712 val.vldsz = (int)strlen((const char*)val.buf);
1713 }
1714 else {
1715 val = set_Buffer(pp, (int)strlen(pp));
1716 }
1717 }
1718 return val;
1719}
1720
1721
1734Buffer get_key_json_val(tJson* pp, const char* key, int nn)
1735{
1736 tJson* json = search_key_json(pp, key, TRUE, nn);
1737 Buffer val = get_json_val(json);
1738
1739 return val;
1740}
1741
1742
1756{
1757 tJson* json = search_key_sister_json(pp, key, TRUE);
1758 Buffer val = get_json_val(json);
1759
1760 return val;
1761}
1762
1763
1775Buffer get_double_key_json_val(tJson* pp, const char* key1, const char* key2)
1776{
1777 tJson* json = search_double_key_json(pp, key1, key2, TRUE);
1778 Buffer val = get_json_val(json);
1779
1780 return val;
1781}
1782
1783
1791{
1792 Buffer buf = init_Buffer();
1793
1794 if (json==NULL) return buf;
1795
1796 char* pp = (char*)json->ldat.val.buf;
1797
1798 if (pp!=NULL && json->ldat.lv!=JSON_VALUE_ARRAY) {
1799 if (*pp=='\"' || *pp=='\'') {
1800 char* pt = (char*)&(json->ldat.val.buf[json->ldat.val.vldsz-1]);
1801 if (*pp==*pt) {
1802 pp++;
1803 char bkup = *pt;
1804 *pt = '\0';
1805 buf = make_Buffer_str(pp);
1806 *pt = bkup;
1807 }
1808 }
1809 else {
1810 buf = make_Buffer_str(pp);
1811 }
1812 }
1813
1814 return buf;
1815}
1816
1817
1826{
1827 if (json==NULL) return NULL;
1828
1829 char* str = NULL;
1830 char* pp = (char*)json->ldat.val.buf;
1831
1832 if (pp!=NULL) {
1833 if (json->ldat.lv!=JSON_VALUE_ARRAY) {
1834 if (*pp=='\"' || *pp=='\'') {
1835 char* pt = (char*)&(json->ldat.val.buf[json->ldat.val.vldsz-1]);
1836 if (*pp==*pt) {
1837 pp++;
1838 char bkup = *pt;
1839 *pt = '\0';
1840 str = dup_str(pp);
1841 *pt = bkup;
1842 }
1843 }
1844 }
1845 if (str==NULL) str = dup_str(pp);
1846 }
1847
1848 return str;
1849}
1850
Buffer make_Buffer(int sz)
Buffer型変数のバッファ部をつくり出す.
Definition buffer.cpp:71
Buffer set_Buffer(void *dat, int len)
Buffer型変数のバッファ部を新しく作り, そのバッファに bufをコピーする.
Definition buffer.cpp:170
int cat_b2Buffer(void *src, Buffer *dst, int len)
任意のバイナリデータsrcを Buffer型変数dstへ lenバイト catする.
Definition buffer.cpp:585
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
Buffer read_Buffer_file(const char *fn)
ファイル fn の内容を Buffer型変数に読み込む.
Definition buffer.cpp:1467
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
Buffer dup_Buffer(Buffer buf)
Buffer型変数のコピーをつくる.
Definition buffer.cpp:211
int copy_r2Buffer(float src, Buffer *dst)
実数 srcを文字列に変換して,dstへ copyする.
Definition buffer.cpp:706
Buffer pack_Buffer(Buffer buf, char cc)
文字列の先頭のcc(複数),終わりのcc(複数),TAB, CR, LF を削除
Definition buffer.cpp:1134
int copy_i2Buffer(int src, Buffer *dst)
整数 srcを文字列に変換して,dstへ copyする.
Definition buffer.cpp:664
int cat_Buffer(Buffer *src, Buffer *dst)
Buffer変数 srcから dstへバッファを catする.
Definition buffer.cpp:384
int copy_Buffer(Buffer *src, Buffer *dst)
Buffer型変数 srcから dstへバッファをコピーする.
Definition buffer.cpp:315
#define copy_s2Buffer(src, dst)
copy_b2Buffer()
Definition buffer.h:108
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57
#define OFF
Definition common.h:231
#define CRLF
Definition common.h:239
#define TRUE
Definition common.h:226
#define FALSE
Definition common.h:223
#define LEN_INT
log 2^64 + '\0' + 1(予備)
Definition common.h:171
#define strncasecmp
Definition common.h:59
#define LSDATA
Definition common.h:158
#define strcasecmp
Definition common.h:58
#define LEN_REAL
15*2 + '\0' + 1(予備)
Definition common.h:170
#define ON
Definition common.h:230
JunkBox_Lib 状態ヘッダ
#define JBXL_JSON_NOT_CLOSED
JSONデータが閉じていない.原因不明.パースアルゴリズムのミス?
Definition jbxl_state.h:111
#define JBXL_JSON_NODE_OPENED
JSONノードは開いている
Definition jbxl_state.h:107
#define JBXL_NONE
情報無し
Definition jbxl_state.h:33
#define JBXL_JSON_ARRAY
JSONの配列
Definition jbxl_state.h:110
#define JBXL_JSON_MULTI_ROOT
JSONは複数のルート(TOP)を持っている.(パース済み)
Definition jbxl_state.h:106
#define JBXL_JSON_PARSED
JSONパース済み
Definition jbxl_state.h:105
#define JBXL_JSON_PARSE_TERM
JSON のパースが途中で終了した.入力データが不完全.
Definition jbxl_state.h:112
#define JBXL_JSON_DEFAULT_STATE
JSONデータの初期状態
Definition jbxl_state.h:115
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
Definition buffer.h:37
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39
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
tList * search_all_node_strval_json(tJson *pp, const char *name, const char *val)
指定した条件に合う全てのノードへのポインタを,リストに格納して返す.
Definition tjson.cpp:1657
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
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 * _search_key_json(tJson *pp, const char *key, int needval, int *nn)
search_key_json() の補助関数
Definition tjson.cpp:1554
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
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
tJson * json_insert_parse(tJson *json, const char *str)
str をパースして繋げる.str は { または [ で始まる必要がある.
Definition tjson.cpp:1053
void json_append_array_real_val(tJson *json, float val)
配列 [] の要素として 実数 val を追加する.
Definition tjson.cpp:1280
tJson * _json_array_parse(tJson *json, int num)
json_parse_prop() の補助関数.配列処理用.
Definition tjson.cpp:375
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 JSON ライブラリヘッダ
#define JSON_ARRAY_VALUE_NODE
配列の要素データのノード.
Definition tjson.h:32
#define new_json_node()
JSONデータのノードを生成 new_tTree_node()
Definition tjson.h:52
#define JSON_CRLF_FORMAT
ノードの終わりを CR(0x0d), LF(0x0a)で改行する.
Definition tjson.h:45
#define JSON_DATA_NODE
key:val の形の通常のノード
Definition tjson.h:30
#define JSON_TEMP_NODE
一時的なノード.削除対象.
Definition tjson.h:28
#define JSON_INDENT_FORMAT
先頭にインデント(TAB)をつけ,ノードごとに改行する.
Definition tjson.h:46
#define JSON_BRACKET_NODE
'{' を格納したノード.key は持たない.
Definition tjson.h:29
#define JSON_VALUE_ARRAY
属性値:配列
Definition tjson.h:42
#define JSON_VALUE_UNRESOLV
属性値の種類は未確定.
Definition tjson.h:35
#define JSON_ANCHOR_NODE
アンカーノード
Definition tjson.h:27
#define JSON_VALUE_NULL
属性値なし.
Definition tjson.h:36
#define JSON_VALUE_STR
属性値:文字列
Definition tjson.h:40
#define JSON_VALUE_OBJ
属性値:オブジェクト
Definition tjson.h:41
#define new_json_anchor_node()
JSONデータの ANCHORノードを生成 new_tTree_anchor_node()
Definition tjson.h:53
#define del_json_anchor_node(t)
JSONデータの ANCHORノードを削除 del_tTree_anchor_node()
Definition tjson.h:58
#define del_json_node(j)
JSONデータのノード削除 del_tTree_node()
Definition tjson.h:62
#define JSON_VALUE_REAL
属性値:実数 未サポート
Definition tjson.h:38
#define JSON_VALUE_BOOL
属性値:論理値 未サポート
Definition tjson.h:39
#define JSON_VALUE_INT
属性値:整数 未サポート
Definition tjson.h:37
#define JSON_ARRAY_NODE
配列ノード.処理された場合,JSON_ARRAY_VALUE_NODE を子ノードとして持つ.
Definition tjson.h:31
void clear_tList_data(tList_data *ldat)
ノードデータのバッファ部をクリアする.データ自身は削除しない.
Definition tlist.cpp:120
tList * new_tList_node(void)
リスト用の空ノードを動的に生成する.
Definition tlist.cpp:198
#define add_tList_node(p, t)
insert_tList()
Definition tlist.h:179
char * dup_str(char *buf)
文字列を複製する.要 free()
Definition tools.cpp:1368
int is_number(unsigned char *str)
数字かどうか判定する(簡易版).整数(1) と小数点付き数字(2) のみ.
Definition tools.cpp:1394
char * skip_char_pair(char *pp, char pair, char end)
pair と end で閉じるまでポインタをスキップさせる.ただし クォーテーション内は完全スキップ
Definition tools.cpp:1022
char * skip_chars(char *pp, const char *check)
check[]中の何れかの文字までポインタをスキップさせる.ただし クォーテーション内は完全スキップ
Definition tools.cpp:948
char * skip_string_end(char *pp)
次の文字列を一つスキップする.最期のクォーテーションの位置を返す.
Definition tools.cpp:1060
tTree * add_tTree_node(tTree *pp, tTree *node)
ツリー ppへノード nodeを末っ子として追加.
Definition ttree.cpp:97
tTree * add_tTree(tTree *tp, tTree *tt)
ツリー tpへ ツリー ttを追加.
Definition ttree.cpp:778
int count_tTree(tTree *pp)
ツリーの ppノード以降のノードの数を数える.
Definition ttree.cpp:1151
tTree * add_tTree_node_bystr(tTree *pp, int id, int lv, const char *key, const char *val, void *ptr, int sz)
ノードを末っ子としてリストに追加.
Definition ttree.cpp:202
#define TREE_NOSIS_NODE
このノードの姉妹ノードは処理しない.一部の関数のみ有効.
Definition ttree.h:56