2018-11-28 03:37:59 +08:00
|
|
|
#include <unistd.h>
|
2018-10-18 00:00:44 +08:00
|
|
|
|
2018-11-30 22:37:57 +08:00
|
|
|
#include "simdjson/jsonparser.h"
|
2018-10-18 00:00:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
// #define RAPIDJSON_SSE2 // bad
|
|
|
|
// #define RAPIDJSON_SSE42 // bad
|
|
|
|
#include "rapidjson/document.h"
|
|
|
|
#include "rapidjson/reader.h" // you have to check in the submodule
|
|
|
|
#include "rapidjson/stringbuffer.h"
|
|
|
|
#include "rapidjson/writer.h"
|
2018-11-21 09:08:02 +08:00
|
|
|
#include "json11.cpp"
|
2018-10-18 00:00:44 +08:00
|
|
|
#include "sajson.h"
|
2018-11-21 09:08:02 +08:00
|
|
|
#include "fastjson.cpp"
|
|
|
|
#include "fastjson_dom.cpp"
|
|
|
|
#include "gason.cpp"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include "ultrajsondec.c"
|
|
|
|
#include "ujdecode.h"
|
2019-01-18 06:24:29 +08:00
|
|
|
#include "cJSON.h"
|
|
|
|
#include "cJSON.c"
|
|
|
|
#include "jsmn.h"
|
|
|
|
#include "jsmn.c"
|
2018-11-21 09:08:02 +08:00
|
|
|
}
|
2019-01-25 03:28:26 +08:00
|
|
|
#include "json/json.h"
|
|
|
|
#include "jsoncpp.cpp"
|
2018-10-18 00:00:44 +08:00
|
|
|
|
2018-11-21 09:08:02 +08:00
|
|
|
// fastjson has a tricky interface
|
|
|
|
void on_json_error( void *, const fastjson::ErrorContext& ec) {
|
|
|
|
//std::cerr<<"ERROR: "<<ec.mesg<<std::endl;
|
|
|
|
}
|
|
|
|
bool fastjson_parse(const char *input) {
|
|
|
|
fastjson::Token token;
|
|
|
|
fastjson::dom::Chunk chunk;
|
|
|
|
return fastjson::dom::parse_string(input, &token, &chunk, 0, &on_json_error, NULL);
|
|
|
|
}
|
|
|
|
// end of fastjson stuff
|
2018-10-18 00:00:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace rapidjson;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2018-11-28 03:37:59 +08:00
|
|
|
bool verbose = false;
|
|
|
|
int c;
|
|
|
|
while ((c = getopt (argc, argv, "v")) != -1)
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'v':
|
|
|
|
verbose = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
if (optind >= argc) {
|
2018-10-18 00:00:44 +08:00
|
|
|
cerr << "Usage: " << argv[0] << " <jsonfile>\n";
|
|
|
|
cerr << "Or " << argv[0] << " -v <jsonfile>\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2018-11-28 03:37:59 +08:00
|
|
|
const char * filename = argv[optind];
|
2018-12-01 10:31:05 +08:00
|
|
|
std::string_view p;
|
2018-11-28 03:37:59 +08:00
|
|
|
try {
|
|
|
|
p = get_corpus(filename);
|
|
|
|
} catch (const std::exception& e) { // caught by reference to base
|
|
|
|
std::cout << "Could not load the file " << filename << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
2018-10-18 00:00:44 +08:00
|
|
|
}
|
|
|
|
if (verbose) {
|
|
|
|
std::cout << "Input has ";
|
2018-12-01 09:27:16 +08:00
|
|
|
if (p.size() > 1024 * 1024)
|
|
|
|
std::cout << p.size() / (1024 * 1024) << " MB ";
|
|
|
|
else if (p.size() > 1024)
|
|
|
|
std::cout << p.size() / 1024 << " KB ";
|
2018-10-18 00:00:44 +08:00
|
|
|
else
|
2018-12-01 09:27:16 +08:00
|
|
|
std::cout << p.size() << " B ";
|
2018-10-18 00:00:44 +08:00
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
2018-12-01 09:27:16 +08:00
|
|
|
ParsedJson pj;
|
|
|
|
bool allocok = pj.allocateCapacity(p.size(), 1024);
|
|
|
|
if (!allocok) {
|
2018-10-18 00:00:44 +08:00
|
|
|
std::cerr << "can't allocate memory" << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2019-04-17 10:07:52 +08:00
|
|
|
bool ours_correct = json_parse(p, pj) == 0; // returns 0 on success
|
2018-10-18 00:00:44 +08:00
|
|
|
|
|
|
|
rapidjson::Document d;
|
|
|
|
|
2018-12-01 09:27:16 +08:00
|
|
|
char *buffer = (char *)malloc(p.size() + 1);
|
2018-12-01 10:31:05 +08:00
|
|
|
memcpy(buffer, p.data(), p.size());
|
2018-12-01 09:27:16 +08:00
|
|
|
buffer[p.size()] = '\0';
|
2018-10-18 00:00:44 +08:00
|
|
|
bool rapid_correct = (d.Parse((const char *)buffer).HasParseError() == false);
|
|
|
|
bool rapid_correct_checkencoding = (d.Parse<kParseValidateEncodingFlag>((const char *)buffer).HasParseError() == false);
|
2018-12-01 09:27:16 +08:00
|
|
|
bool sajson_correct = sajson::parse(sajson::dynamic_allocation(), sajson::mutable_string_view(p.size(), buffer)).is_valid();
|
2018-11-21 09:08:02 +08:00
|
|
|
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;
|
2018-12-01 09:27:16 +08:00
|
|
|
bool ultrajson_correct = ((UJDecode(buffer, p.size(), NULL, &state) == NULL) == false);
|
2019-04-17 10:07:52 +08:00
|
|
|
|
2019-04-13 21:43:28 +08:00
|
|
|
auto tokens = make_unique<jsmntok_t[]>(p.size());
|
2019-04-17 10:07:52 +08:00
|
|
|
bool jsmn_correct = false;
|
2019-02-26 04:03:20 +08:00
|
|
|
if(tokens == nullptr) {
|
2019-01-18 06:24:29 +08:00
|
|
|
printf("Failed to alloc memory for jsmn\n");
|
|
|
|
} else {
|
|
|
|
jsmn_parser parser;
|
|
|
|
jsmn_init(&parser);
|
|
|
|
memcpy(buffer, p.data(), p.size());
|
|
|
|
buffer[p.size()] = '\0';
|
2019-02-26 04:03:20 +08:00
|
|
|
int r = jsmn_parse(&parser, buffer, p.size(), tokens.get(), p.size());
|
|
|
|
tokens = nullptr;
|
2019-01-18 06:24:29 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-01-25 03:28:26 +08:00
|
|
|
Json::CharReaderBuilder b;
|
|
|
|
Json::CharReader * jsoncppreader = b.newCharReader();
|
|
|
|
Json::Value root;
|
|
|
|
Json::String errs;
|
|
|
|
bool isjsoncppok = jsoncppreader->parse(buffer,buffer+p.size(),&root,&errs);
|
|
|
|
delete jsoncppreader;
|
2019-01-18 06:24:29 +08:00
|
|
|
|
|
|
|
|
2018-10-18 00:00:44 +08:00
|
|
|
printf("our parser : %s \n", ours_correct ? "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");
|
2018-11-21 09:08:02 +08:00
|
|
|
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");
|
2019-01-25 03:28:26 +08:00
|
|
|
printf("jsmn : %s \n", jsmn_correct ? "correct":"invalid");
|
|
|
|
printf("cjson : %s \n", cjson_correct ? "correct":"invalid");
|
|
|
|
printf("jsoncpp : %s \n", isjsoncppok ? "correct":"invalid");
|
2019-01-18 06:24:29 +08:00
|
|
|
|
2019-04-17 10:07:52 +08:00
|
|
|
aligned_free((void*)p.data());
|
2018-10-18 00:00:44 +08:00
|
|
|
free(buffer);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|