From 39f9ff3f04228a90b8d148e22ecf50f7fadd08cd Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 7 Feb 2014 17:14:39 -0800 Subject: [PATCH] Make streaming formatting consistent --- jsoncat.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/jsoncat.c b/jsoncat.c index e5a5e6d..f3220e1 100644 --- a/jsoncat.c +++ b/jsoncat.c @@ -101,9 +101,10 @@ void callback(json_type type, json_pull *jp, void *state) { (*level)++; indent(*level); } else if (type == JSON_COMMA) { - printf(", "); + printf(",\n"); + indent(*level); } else if (type == JSON_COLON) { - printf(": "); + printf(" : "); } } @@ -115,6 +116,10 @@ void process_callback(FILE *f, char *fname) { while ((j = json_read_with_separators(jp, callback, &level)) != NULL) { json_print_one(j, &level); json_free(j); + + if (j->parent == NULL) { + printf("\n"); + } } if (jp->error != NULL) { @@ -161,7 +166,7 @@ void process_tree(FILE *f, char *fname) { int main(int argc, char **argv) { if (argc == 1) { - process_tree(stdin, "standard input"); + process_callback(stdin, "standard input"); } else { int i; for (i = 1; i < argc; i++) { @@ -170,7 +175,7 @@ int main(int argc, char **argv) { perror(argv[i]); exit(EXIT_FAILURE); } - process_tree(f, argv[i]); + process_callback(f, argv[i]); fclose(f); } }