#include #include "simdjson.h" SIMDJSON_PUSH_DISABLE_ALL_WARNINGS // #define RAPIDJSON_SSE2 // bad // #define RAPIDJSON_SSE42 // bad #include "fastjson.cpp" #include "fastjson_dom.cpp" #include "gason.cpp" #include "json11.cpp" #include "rapidjson/document.h" #include "rapidjson/reader.h" // you have to check in the submodule #include "rapidjson/stringbuffer.h" #include "rapidjson/writer.h" #include "sajson.h" extern "C" { #include "cJSON.c" #include "cJSON.h" #include "jsmn.c" #include "jsmn.h" #include "ujdecode.h" #include "ultrajsondec.c" } #include "jsoncpp.cpp" #include "json/json.h" SIMDJSON_POP_DISABLE_WARNINGS // fastjson has a tricky interface void on_json_error(void *, UNUSED const fastjson::ErrorContext &ec) { // std::cerr<<"ERROR: "<= argc) { std::cerr << "Usage: " << argv[0] << " " << std::endl; std::cerr << "Or " << argv[0] << " -v " << std::endl; exit(1); } const char *filename = argv[optind]; auto [p, loaderr] = simdjson::padded_string::load(filename); if (loaderr) { std::cerr << "Could not load the file " << filename << ": " << loaderr << std::endl; return EXIT_FAILURE; } if (verbose) { std::cout << "Input has "; if (p.size() > 1024 * 1024) std::cout << p.size() / (1024 * 1024) << " MB "; else if (p.size() > 1024) std::cout << p.size() / 1024 << " KB "; else std::cout << p.size() << " B "; std::cout << std::endl; } simdjson::dom::parser parser; auto err = parser.parse(p).error(); rapidjson::Document d; char *buffer = (char *)malloc(p.size() + 1); memcpy(buffer, p.data(), p.size()); buffer[p.size()] = '\0'; bool rapid_correct_checkencoding = (d.Parse((const char *)buffer) .HasParseError() == false); bool sajson_correct = sajson::parse(sajson::dynamic_allocation(), sajson::mutable_string_view(p.size(), buffer)) .is_valid(); if (just_favorites) { printf("our parser : %s \n", (err == simdjson::error_code::SUCCESS) ? "correct" : "invalid"); printf("rapid (check encoding) : %s \n", rapid_correct_checkencoding ? "correct" : "invalid"); printf("sajson : %s \n", sajson_correct ? "correct" : "invalid"); if (err == simdjson::DEPTH_ERROR) { printf("simdjson encountered a DEPTH_ERROR, it was parametrized to " "reject documents with depth exceeding %zu.\n", parser.max_depth()); } if (((err == simdjson::error_code::SUCCESS) != rapid_correct_checkencoding) || (rapid_correct_checkencoding != sajson_correct) || ((err == simdjson::SUCCESS) != sajson_correct)) { printf("WARNING: THEY DISAGREE\n\n"); return EXIT_FAILURE; } free(buffer); return EXIT_SUCCESS; } bool rapid_correct = (d.Parse((const char *)buffer).HasParseError() == false); std::string json11err; bool dropbox_correct = ((json11::Json::parse(buffer, json11err).is_null()) || (!json11err.empty())) == false; bool fastjson_correct = fastjson_parse(buffer); JsonValue value; JsonAllocator allocator; char *endptr; bool gason_correct = (jsonParse(buffer, &endptr, &value, allocator) == JSON_OK); void *state; bool ultrajson_correct = ((UJDecode(buffer, p.size(), NULL, &state) == NULL) == false); auto tokens = std::make_unique(p.size()); bool jsmn_correct = false; if (tokens == nullptr) { printf("Failed to alloc memory for jsmn\n"); } else { jsmn_parser jsmnparser; jsmn_init(&jsmnparser); memcpy(buffer, p.data(), p.size()); buffer[p.size()] = '\0'; int r = jsmn_parse(&jsmnparser, buffer, p.size(), tokens.get(), p.size()); tokens = nullptr; jsmn_correct = (r > 0); } memcpy(buffer, p.data(), p.size()); buffer[p.size()] = '\0'; cJSON *tree = cJSON_Parse(buffer); bool cjson_correct = (tree != NULL); if (tree != NULL) { cJSON_Delete(tree); } Json::CharReaderBuilder b; Json::CharReader *json_cpp_reader = b.newCharReader(); Json::Value root; Json::String errs; bool is_json_cpp_ok = json_cpp_reader->parse(buffer, buffer + p.size(), &root, &errs); delete json_cpp_reader; printf("our parser : %s \n", (err == simdjson::error_code::SUCCESS) ? "correct" : "invalid"); printf("rapid : %s \n", rapid_correct ? "correct" : "invalid"); printf("rapid (check encoding) : %s \n", rapid_correct_checkencoding ? "correct" : "invalid"); printf("sajson : %s \n", sajson_correct ? "correct" : "invalid"); printf("dropbox : %s \n", dropbox_correct ? "correct" : "invalid"); printf("fastjson : %s \n", fastjson_correct ? "correct" : "invalid"); printf("gason : %s \n", gason_correct ? "correct" : "invalid"); printf("ultrajson : %s \n", ultrajson_correct ? "correct" : "invalid"); printf("jsmn : %s \n", jsmn_correct ? "correct" : "invalid"); printf("cjson : %s \n", cjson_correct ? "correct" : "invalid"); printf("jsoncpp : %s \n", is_json_cpp_ok ? "correct" : "invalid"); free(buffer); return EXIT_SUCCESS; }