-
Notifications
You must be signed in to change notification settings - Fork 156
/
jo.c
830 lines (729 loc) · 19.6 KB
/
jo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#ifndef _AIX
# include <getopt.h>
#endif
#include <ctype.h>
#if !defined(WIN32) && !defined(_AIX)
# include <err.h>
#endif
#include "json.h"
#include "base64.h"
/*
* Copyright (C) 2016-2019 Jan-Piet Mens <jp@mens.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#define SPACER " "
#define FLAG_ARRAY 0x01
#define FLAG_PRETTY 0x02
#define FLAG_NOBOOL 0x04
#define FLAG_BOOLEAN 0x08
#define FLAG_NOSTDIN 0x10
#define FLAG_SKIPNULLS 0x20
#define FLAG_MASK (FLAG_ARRAY | FLAG_PRETTY | FLAG_NOBOOL | FLAG_BOOLEAN | FLAG_NOSTDIN | FLAG_SKIPNULLS)
/* Size of buffer blocks for pipe slurping */
#define SLURP_BLOCK_SIZE 4096
static JsonNode *pile; /* pile of nested objects/arrays */
#if defined(_WIN32) || defined(_AIX)
#include <errno.h>
#include <stdarg.h>
static inline void err(int eval, const char *fmt, ...) {
int errnum = errno;
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "jo: ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, ": %s\n", strerror(errnum));
va_end(ap);
exit(eval);
}
static inline void errx(int eval, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "jo: ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
va_end(ap);
exit(eval);
}
#endif
#if defined(_WIN32) && !defined(fseeko)
# define fseeko fseek
# define ftello ftell
#endif
#define TAG_TO_FLAGS(tag) ((FLAG_MASK + 1) * (tag))
#define TAG_FLAG_BOOL (TAG_TO_FLAGS(JSON_BOOL))
#define TAG_FLAG_STRING (TAG_TO_FLAGS(JSON_STRING))
#define TAG_FLAG_NUMBER (TAG_TO_FLAGS(JSON_NUMBER))
#define COERCE_MASK (TAG_FLAG_BOOL | TAG_FLAG_STRING | TAG_FLAG_NUMBER)
JsonTag flags_to_tag(int flags) {
return flags / (FLAG_MASK + 1);
}
void json_copy_to_object(JsonNode * obj, JsonNode * object_or_array, int clobber)
{
JsonNode *node, *node_child, *obj_child;
if (obj->tag != JSON_OBJECT && obj->tag != JSON_ARRAY)
return;
json_foreach(node, object_or_array) {
if (!clobber & (json_find_member(obj, node->key) != NULL))
continue; /* Don't clobber existing keys */
if (obj->tag == JSON_OBJECT) {
if (node->tag == JSON_STRING)
json_append_member(obj, node->key, json_mkstring(node->string_));
else if (node->tag == JSON_NUMBER)
json_append_member(obj, node->key, json_mknumber(node->number_));
else if (node->tag == JSON_BOOL)
json_append_member(obj, node->key, json_mkbool(node->bool_));
else if (node->tag == JSON_NULL)
json_append_member(obj, node->key, json_mknull());
else if (node->tag == JSON_OBJECT) {
/* Deep-copy existing object to new object */
json_append_member(obj, node->key, (obj_child = json_mkobject()));
json_foreach(node_child, node) {
json_copy_to_object(obj_child, node_child, clobber);
}
} else
fprintf(stderr, "PANIC: unhandled JSON type %d\n", node->tag);
} else if (obj->tag == JSON_ARRAY) {
if (node->tag == JSON_STRING)
json_append_element(obj, json_mkstring(node->string_));
if (node->tag == JSON_NUMBER)
json_append_element(obj, json_mknumber(node->number_));
if (node->tag == JSON_BOOL)
json_append_element(obj, json_mkbool(node->bool_));
if (node->tag == JSON_NULL)
json_append_element(obj, json_mknull());
}
}
}
int slurp(FILE *fp, char **bufp, off_t bufblk_sz, int eos_char, size_t *out_len, bool fold_newlines)
{
char *buf;
int result = 0;
size_t i = 0;
int ch = EOF;
size_t buffer_len = bufblk_sz;
if ((buf = malloc(buffer_len)) == NULL) {
result = -1;
} else {
while ((ch = fgetc(fp)) != eos_char && ch != EOF) {
if (i == (buffer_len - 1)) {
buffer_len += bufblk_sz;
if ((buf = realloc(buf, buffer_len)) == NULL) {
result = -1;
break;
}
}
if (ch != '\n' || !fold_newlines) {
buf[i++] = ch;
}
}
}
if (result < 0) {
free(buf);
buf = NULL;
} else {
buf[i] = 0;
}
*out_len = i;
*bufp = buf;
return result;
}
char *slurp_file(const char* filename, size_t *out_len, bool fold_newlines)
{
char *buf;
off_t buffer_len;
FILE *fp;
bool use_stdin = strcmp(filename, "-") == 0;
if (use_stdin) fp = stdin;
else if ((fp = fopen(filename, "r")) == NULL) {
perror(filename);
errx(1, "Cannot open %s for reading", filename);
}
if (fseeko(fp, 0, SEEK_END) != 0) {
/* If we cannot seek, we're operating off a pipe and
need to dynamically grow the buffer that we're
reading into */
buffer_len = SLURP_BLOCK_SIZE;
} else {
buffer_len = ftello(fp) + 1;
fseeko(fp, 0, SEEK_SET);
}
if (slurp(fp, &buf, buffer_len, EOF, out_len, fold_newlines) < 0) {
errx(1, "File %s is too large to be read into memory", filename);
}
if (!use_stdin) fclose(fp);
return buf;
}
char *slurp_line(FILE *fp, size_t *out_len)
{
char *buf;
if (slurp(fp, &buf, SLURP_BLOCK_SIZE, '\n', out_len, false) < 0) {
errx(1, "Line too large to be read into memory");
}
return buf;
}
JsonNode *jo_mknull(JsonTag type) {
switch (type) {
case JSON_STRING:
return json_mkstring("");
break;
case JSON_NUMBER:
return json_mknumber(0);
break;
case JSON_BOOL:
return json_mkbool(false);
break;
default:
return json_mknull();
break;
}
}
JsonNode *jo_mkbool(bool b, JsonTag type) {
switch (type) {
case JSON_STRING:
return json_mkstring(b ? "true" : "false");
break;
case JSON_NUMBER:
return json_mknumber(b ? 1 : 0);
break;
default:
return json_mkbool(b);
break;
}
}
JsonNode *jo_mkstring(char *str, JsonTag type) {
switch (type) {
case JSON_NUMBER:
/* Length of string */
return json_mknumber(strlen(str));
break;
case JSON_BOOL:
/* True if not empty */
return json_mkbool(strlen(str) > 0);
break;
default:
return json_mkstring(str);
break;
}
}
JsonNode *jo_mknumber(char *str, JsonTag type) {
/* ASSUMPTION: str already tested as valid number */
double n = strtod(str, NULL);
switch (type) {
case JSON_STRING:
/* Just return the original representation */
return json_mkstring(str);
break;
case JSON_BOOL:
return json_mkbool(n != 0);
break;
default:
/* ASSUMPTION: str already tested as valid number */
return json_mknumber(n);
break;
}
}
/*
* Attempt to "sniff" the type of data in `str' and return
* a JsonNode of the correct JSON type.
*/
JsonNode *vnode(char *str, int flags)
{
JsonTag type = flags_to_tag(flags);
if (strlen(str) == 0) {
return (flags & FLAG_SKIPNULLS) ? (JsonNode *)NULL : jo_mknull(type);
}
/* If str begins with a double quote, keep it a string */
if (*str == '"') {
#if 0
char *bp = str + strlen(str) - 1;
if (bp > str && *bp == '"')
*bp = 0; /* Chop closing double quote */
return json_mkstring(str + 1);
#endif
return jo_mkstring(str, type);
}
char *endptr;
double num = strtod(str, &endptr);
if (!*endptr && isfinite(num)) {
return jo_mknumber(str, type);
}
if (!(flags & FLAG_NOBOOL)) {
if (strcmp(str, "true") == 0) {
return jo_mkbool(true, type);
} else if (strcmp(str, "false") == 0) {
return jo_mkbool(false, type);
} else if (strcmp(str, "null") == 0) {
return jo_mknull(type);
}
}
if (*str == '\\') {
++str;
} else {
if (*str == '@' || *str == '%' || *str == ':') {
char *filename = str + 1, *content;
bool binmode = (*str == '%');
bool jsonmode = (*str == ':');
size_t len = 0;
JsonNode *j = NULL;
if ((content = slurp_file(filename, &len, false)) == NULL) {
errx(1, "Error reading file %s", filename);
}
if (binmode) {
char *encoded;
if ((encoded = base64_encode(content, len)) == NULL) {
errx(1, "Cannot base64-encode file %s", filename);
}
j = json_mkstring(encoded);
free(encoded);
} else if (jsonmode) {
j = json_decode(content);
if (j == NULL) {
errx(1, "Cannot decode JSON in file %s", filename);
}
}
// If it got this far without valid JSON, just consider it a string
if (j == NULL) {
char *bp = content + strlen(content) - 1;
if (*bp == '\n') *bp-- = 0;
if (*bp == '\r') *bp = 0;
j = json_mkstring(content);
}
free(content);
return (j);
}
}
if (*str == '{' || *str == '[') {
if (type == JSON_STRING) {
return json_mkstring(str);
}
JsonNode *obj = json_decode(str);
if (obj == NULL) {
/* JSON cannot be decoded; return the string */
// fprintf(stderr, "Cannot decode JSON from %s\n", str);
obj = json_mkstring(str);
}
return (obj);
}
return jo_mkstring(str, type);
}
/*
* Attempt to sniff `str' into a boolean; return a
* corresponding JsonNode for it.
*/
JsonNode *boolnode(char *str)
{
if (strlen(str) == 0) {
return json_mknull();
}
if (tolower((unsigned char) *str) == 't') {
return json_mkbool(1);
}
return json_mkbool(atoi(str));
}
int usage(char *prog)
{
fprintf(stderr, "Usage: %s [-a] [-B] [-D] [-d keydelim] [-p] [-e] [-n] [-o outfile] [-v] [-V] [-f file] [--] [-s|-n|-b] [word...]\n", prog);
fprintf(stderr, "\tword is key=value or key@value\n");
fprintf(stderr, "\t-a creates an array of words\n");
fprintf(stderr, "\t-B disable boolean true/false/null detection\n");
fprintf(stderr, "\t-D deduplicate object keys\n");
fprintf(stderr, "\t-d key will be object path separated by keydelim\n");
fprintf(stderr, "\t-f load file as JSON object or array\n");
fprintf(stderr, "\t-p pretty-prints JSON on output\n");
fprintf(stderr, "\t-e quit if stdin is empty do not wait for input\n");
fprintf(stderr, "\t-s coerce type guessing to string\n");
fprintf(stderr, "\t-b coerce type guessing to bool\n");
fprintf(stderr, "\t-n coerce type guessing to number\n");
fprintf(stderr, "\t-o output to the given file\n");
fprintf(stderr, "\t-v show version\n");
fprintf(stderr, "\t-V show version in JSON\n");
return (-1);
}
/*
* Check whether we're being given nested arrays or objects.
* `kv' contains the "key" such as "number" or "point[]" or
* "geo[lat]". `value' the actual value for that element.
*
* Returns true if nesting is completely handled, otherwise:
* *keyp -> remaining key for caller to insert "value"
* *baseop -> object node in which caller should insert "value"
*/
bool resolve_nested(int flags, char **keyp, char key_delim, JsonNode *value, JsonNode **baseop)
{
char *member = NULL, *bo, *bc, *so; /* bracket open, close, sub-object */
JsonNode *op;
int found = false;
(void)flags;
if (key_delim) {
/* First construct nested object */
while ((so = strchr(*keyp, key_delim)) != NULL) {
*so = 0;
if ((op = json_find_member(*baseop, *keyp)) == NULL) {
/* Add a nested object node */
op = json_mkobject();
json_append_member(*baseop, *keyp, op);
}
*baseop = op;
*keyp = so + 1;
}
}
/* Now check for trailing geo[] or geo[lat] */
if ((bo = strchr(*keyp, '[')) != NULL) {
if (*(bo+1) == ']') {
*bo = 0;
} else if ((bc = strchr(bo + 1, ']')) == NULL) {
fprintf(stderr, "missing closing bracket on %s\n", *keyp);
return (false);
} else {
*bo = *bc = 0;
member = bo + 1;
}
/*
* *keyp is now `geo' for both `geo[]` and `geo[lat]`
* member is null for the former and "lat" for the latter.
* Find an existing object in *baseop for this member name
* or create a new one if we don't have it.
*/
if ((op = json_find_member(*baseop, *keyp)) != NULL) {
found = true;
} else {
op = (member == NULL) ? json_mkarray() : json_mkobject();
}
if (member == NULL) { /* we're doing an array */
json_append_element(op, value);
} else { /* we're doing an object */
json_append_member(op, member, value);
}
if (!found) {
json_append_member(*baseop, *keyp, op);
}
return (true);
}
return (false);
}
int member_to_object(JsonNode *object, int flags, char key_delim, char *kv)
{
/* we expect key=value or key:value (boolean on last) */
char *p = strchr(kv, '=');
char *q = strchr(kv, '@');
char *r = strchr(kv, ':');
if ((r && *(r+1) == '=') && !q) {
char *filename = p + 1;
char *content;
size_t len;
if ((content = slurp_file(filename, &len, false)) == NULL) {
errx(1, "Error reading file %s", filename);
}
JsonNode *o = json_decode(content);
free(content);
if (o == NULL) {
errx(1, "Cannot decode JSON in file %s", filename);
}
*r = 0; /* Chop at ":=" */
if (!resolve_nested(flags, &kv, key_delim, o, &object))
json_append_member(object, kv, o);
return (0);
}
if (!p && !q && !r) {
return (-1);
}
JsonNode *val;
if (p) {
*p = 0;
val = vnode(p+1, flags);
if (!resolve_nested(flags, &kv, key_delim, val, &object))
json_append_member(object, kv, val);
} else {
if (q) {
*q = 0;
val = boolnode(q+1);
if (!resolve_nested(flags | FLAG_BOOLEAN, &kv, key_delim, val, &object))
json_append_member(object, kv, val);
}
}
return (0);
}
/*
* Append kv to the array or object.
*/
void append_kv(JsonNode *object_or_array, int flags, char key_delim, char *kv)
{
if (flags & FLAG_ARRAY) {
json_append_element(object_or_array, vnode(kv, flags));
} else {
if (member_to_object(object_or_array, flags, key_delim, kv) == -1) {
fprintf(stderr, "Argument `%s' is neither k=v nor k@v\n", kv);
}
}
}
#ifdef _WIN32
#include <windows.h>
char* utf8_from_locale(const char *str, size_t len)
{
wchar_t* wcsp;
char* mbsp;
size_t mbssize, wcssize;
if (len == 0) {
return strdup("");
}
if (len == (size_t)-1) {
len = strlen(str);
}
wcssize = MultiByteToWideChar(GetACP(), 0, str, len, NULL, 0);
wcsp = (wchar_t*) malloc((wcssize + 1) * sizeof(wchar_t));
if (!wcsp) {
return NULL;
}
wcssize = MultiByteToWideChar(GetACP(), 0, str, len, wcsp, wcssize + 1);
wcsp[wcssize] = 0;
mbssize = WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR) wcsp, -1, NULL, 0, NULL, NULL);
mbsp = (char*) malloc((mbssize + 1));
if (!mbsp) {
free(wcsp);
return NULL;
}
mbssize = WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR) wcsp, -1, mbsp, mbssize, NULL, NULL);
mbsp[mbssize] = 0;
free(wcsp);
return mbsp;
}
# define utf8_free(p) free(p)
char* locale_from_utf8(const char *utf8, size_t len)
{
wchar_t* wcsp;
char* mbsp;
size_t mbssize, wcssize;
if (len == 0) {
return strdup("");
}
if (len == (size_t)-1) {
len = strlen(utf8);
}
wcssize = MultiByteToWideChar(CP_UTF8, 0, utf8, len, NULL, 0);
wcsp = (wchar_t*) malloc((wcssize + 1) * sizeof(wchar_t));
if (!wcsp) {
return NULL;
}
wcssize = MultiByteToWideChar(CP_UTF8, 0, utf8, len, wcsp, wcssize + 1);
wcsp[wcssize] = 0;
mbssize = WideCharToMultiByte(GetACP(), 0, (LPCWSTR) wcsp, -1, NULL, 0, NULL, NULL);
mbsp = (char*) malloc((mbssize + 1));
if (!mbsp) {
free(wcsp);
return NULL;
}
mbssize = WideCharToMultiByte(GetACP(), 0, (LPCWSTR) wcsp, -1, mbsp, mbssize, NULL, NULL);
mbsp[mbssize] = 0;
free(wcsp);
return mbsp;
}
# define locale_free(p) free(p)
#else
# define utf8_from_locale(p, l) (p)
# define utf8_free(p) do {} while (0)
# define locale_from_utf8(p, l) (p)
# define locale_free(p) do {} while (0)
#endif
char *stringify(JsonNode *json, int flags)
{
int pretty = flags & FLAG_PRETTY;
return json_stringify(json, (pretty) ? SPACER : NULL);
}
int version(int flags)
{
JsonNode *json = json_mkobject();
char *js;
json_append_member(json, "program", json_mkstring("jo"));
json_append_member(json, "author", json_mkstring("Jan-Piet Mens"));
json_append_member(json, "repo", json_mkstring("https://github.com/jpmens/jo"));
json_append_member(json, "version", json_mkstring(PACKAGE_VERSION));
if ((js = stringify(json, flags)) != NULL) {
printf("%s\n", js);
free(js);
}
json_delete(json);
return (0);
}
int main(int argc, char **argv)
{
int c, key_delim = 0;
bool showversion = false;
char *kv, *js_string, *progname, *buf, *p;
char *in_file = NULL, *in_str;
char *out_file = NULL;
FILE *out = stdout;
size_t in_len = 0;
int ttyin = isatty(fileno(stdin));
int ttyout = isatty(fileno(stdout));
int flags = 0;
JsonNode *json, *op;
#if HAVE_PLEDGE
if (pledge("stdio rpath", NULL) == -1) {
err(1, "pledge");
}
#endif
progname = (progname = strrchr(*argv, '/')) ? progname + 1 : *argv;
while ((c = getopt(argc, argv, "aBDd:f:hpeno:vV")) != EOF) {
switch (c) {
case 'a':
flags |= FLAG_ARRAY;
break;
case 'B':
flags |= FLAG_NOBOOL;
break;
case 'D':
json_dedup_members(true);
break;
case 'd':
key_delim = optarg[0];
break;
case 'f':
in_file = optarg;
break;
case 'h':
usage(progname);
return (0);
case 'p':
flags |= FLAG_PRETTY;
break;
case 'e':
flags |= FLAG_NOSTDIN;
break;
case 'n':
flags |= FLAG_SKIPNULLS;
break;
case 'o':
out_file = optarg;
break;
case 'v':
printf("jo %s\n", PACKAGE_VERSION);
exit(0);
case 'V':
showversion = true;
break;
default:
exit(usage(progname));
}
}
if (showversion) {
return(version(flags));
}
argc -= optind;
argv += optind;
pile = json_mkobject();
if (in_file != NULL) {
if ((in_str = slurp_file(in_file, &in_len, false)) == NULL) {
errx(1, "Error reading file %s", in_file);
}
json = json_decode(in_str);
if (json) {
switch (json->tag) {
case JSON_ARRAY:
flags |= FLAG_ARRAY;
break;
case JSON_OBJECT:
break;
default:
errx(1, "Input JSON not an array or object: %s", stringify(json, flags));
}
} else
json = (flags & FLAG_ARRAY) ? json_mkarray() : json_mkobject();
} else {
json = (flags & FLAG_ARRAY) ? json_mkarray() : json_mkobject();
}
if (argc == 0) {
if (flags & FLAG_NOSTDIN) {
return(0);
}
while ((buf = slurp_line(stdin, &in_len)) != NULL && in_len > 0) {
p = ttyin ? utf8_from_locale(buf, -1) : buf;
append_kv(json, flags, key_delim, p);
if (ttyin) utf8_free(p);
if (buf) free(buf);
}
} else {
while ((kv = *argv++)) {
if (kv[0] == '-' && !(flags & COERCE_MASK)) {
/* Set one-shot coerce flag */
switch (kv[1]) {
case 'b':
flags |= TAG_FLAG_BOOL;
break;
case 's':
flags |= TAG_FLAG_STRING;
break;
case 'n':
flags |= TAG_FLAG_NUMBER;
break;
default:
/* Treat as normal input */
p = utf8_from_locale(kv, -1);
append_kv(json, flags, key_delim, p);
utf8_free(p);
/* Reset any one-shot coerce flags */
flags &= ~(COERCE_MASK);
}
} else {
p = utf8_from_locale(kv, -1);
append_kv(json, flags, key_delim, p);
utf8_free(p);
/* Reset any one-shot coerce flags */
flags &= ~(COERCE_MASK);
}
}
}
/*
* See if we have any nested objects or arrays in the pile,
* and copy these into our main object if so.
*/
json_foreach(op, pile) {
JsonNode *o;
if (op->tag == JSON_ARRAY) {
o = json_mkarray();
} else if (op->tag == JSON_OBJECT) {
o = json_mkobject();
} else {
continue;
}
json_copy_to_object(o, op, 0);
json_append_member(json, op->key, o);
}
if ((js_string = stringify(json, flags)) == NULL) {
fprintf(stderr, "Invalid JSON\n");
exit(2);
}
if (out_file != NULL) {
out = fopen(out_file, "w");
if (out == NULL) {
perror(out_file);
errx(1, "Cannot open %s for writing", out_file);
}
ttyout = isatty(fileno(out));
}
p = ttyout ? locale_from_utf8(js_string, -1) : js_string;
fprintf(out, "%s\n", p);
if (ttyout) locale_free(p);
free(js_string);
json_delete(json);
json_delete(pile);
return (0);
}