simdjson/tools/json2json.cpp

112 lines
2.7 KiB
C++
Raw Normal View History

2018-12-10 02:08:41 +08:00
#include <iostream>
#ifndef _MSC_VER
2018-12-07 06:22:22 +08:00
#include <unistd.h>
#endif
2018-12-07 06:22:22 +08:00
#include "simdjson/jsonioutil.h"
2018-12-10 02:08:41 +08:00
#include "simdjson/jsonparser.h"
2018-12-07 06:22:22 +08:00
using namespace std;
2018-12-10 02:08:41 +08:00
void compute_dump(ParsedJson::iterator &pjh) {
2018-12-15 10:32:42 +08:00
if (pjh.is_object()) {
2018-12-10 02:08:41 +08:00
std::cout << "{";
2018-12-15 10:32:42 +08:00
if (pjh.down()) {
pjh.print(std::cout); // must be a string
2018-12-10 02:08:41 +08:00
std::cout << ":";
2018-12-15 10:32:42 +08:00
pjh.next();
2018-12-10 02:08:41 +08:00
compute_dump(pjh); // let us recurse
2018-12-15 10:32:42 +08:00
while (pjh.next()) {
std::cout << ",";
pjh.print(std::cout);
std::cout << ":";
pjh.next();
compute_dump(pjh); // let us recurse
}
pjh.up();
}
2018-12-10 02:08:41 +08:00
std::cout << "}";
2018-12-15 10:32:42 +08:00
} else if (pjh.is_array()) {
2018-12-10 02:08:41 +08:00
std::cout << "[";
2018-12-15 10:32:42 +08:00
if (pjh.down()) {
2018-12-10 02:08:41 +08:00
compute_dump(pjh); // let us recurse
2018-12-15 10:32:42 +08:00
while (pjh.next()) {
std::cout << ",";
compute_dump(pjh); // let us recurse
}
pjh.up();
}
2018-12-10 02:08:41 +08:00
std::cout << "]";
2018-12-15 10:32:42 +08:00
} else {
pjh.print(std::cout); // just print the lone value
2018-12-10 02:08:41 +08:00
}
}
2018-12-07 06:22:22 +08:00
int main(int argc, char *argv[]) {
bool rawdump = false;
bool apidump = false;
#ifndef _MSC_VER
2018-12-07 06:22:22 +08:00
int c;
2019-02-24 00:28:20 +08:00
while ((c = getopt(argc, argv, "da")) != -1) {
2018-12-10 02:08:41 +08:00
switch (c) {
case 'd':
rawdump = true;
break;
case 'a':
apidump = true;
break;
default:
abort();
}
2019-02-24 00:28:20 +08:00
}
#else
int optind = 1;
#endif
2018-12-07 06:22:22 +08:00
if (optind >= argc) {
2018-12-10 02:08:41 +08:00
cerr << "Reads json in, out the result of the parsing. " << endl;
2018-12-07 06:22:22 +08:00
cerr << "Usage: " << argv[0] << " <jsonfile>" << endl;
2018-12-13 11:42:19 +08:00
cerr << "The -d flag dumps the raw content of the tape." << endl;
2018-12-07 06:22:22 +08:00
exit(1);
}
2018-12-10 02:08:41 +08:00
const char *filename = argv[optind];
if (optind + 1 < argc) {
cerr << "warning: ignoring everything after " << argv[optind + 1] << endl;
2018-12-07 06:22:22 +08:00
}
std::string_view p;
try {
p = get_corpus(filename);
2018-12-10 02:08:41 +08:00
} catch (const std::exception &e) { // caught by reference to base
2018-12-07 06:22:22 +08:00
std::cout << "Could not load the file " << filename << std::endl;
return EXIT_FAILURE;
}
ParsedJson pj;
bool allocok = pj.allocateCapacity(p.size(), 1024);
2018-12-10 02:08:41 +08:00
if (!allocok) {
2018-12-07 06:22:22 +08:00
std::cerr << "failed to allocate memory" << std::endl;
return EXIT_FAILURE;
}
int res = json_parse(p, pj); // do the parsing, return false on error
aligned_free((void *)p.data());
if (res) {
2018-12-07 06:22:22 +08:00
std::cerr << " Parsing failed. " << std::endl;
return EXIT_FAILURE;
}
2018-12-10 02:08:41 +08:00
if (apidump) {
ParsedJson::iterator pjh(pj);
if (!pjh.isOk()) {
std::cerr << " Could not iterate parsed result. " << std::endl;
return EXIT_FAILURE;
}
compute_dump(pjh);
} else {
const bool is_ok = rawdump ? pj.dump_raw_tape(std::cout) : pj.printjson(std::cout);
2018-12-10 02:08:41 +08:00
if (!is_ok) {
std::cerr << " Could not print out parsed result. " << std::endl;
2018-12-10 02:08:41 +08:00
return EXIT_FAILURE;
}
2018-12-07 06:22:22 +08:00
}
return EXIT_SUCCESS;
}