simdjson/tests/allparserscheckfile.cpp

118 lines
3.8 KiB
C++
Raw Normal View History

2018-11-28 03:37:59 +08:00
#include <unistd.h>
2018-10-18 00:00:44 +08:00
#include "jsonparser/jsonparser.h"
// #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"
}
using namespace rapidjson;
using namespace std;
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];
std::pair<u8 *, size_t> p;
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 ";
if (p.second > 1024 * 1024)
std::cout << p.second / (1024 * 1024) << " MB ";
else if (p.second > 1024)
std::cout << p.second / 1024 << " KB ";
else
std::cout << p.second << " B ";
std::cout << std::endl;
}
2018-11-27 23:10:39 +08:00
ParsedJson *pj_ptr = allocate_ParsedJson(p.second, 1024);
2018-10-18 00:00:44 +08:00
if (pj_ptr == NULL) {
std::cerr << "can't allocate memory" << std::endl;
return EXIT_FAILURE;
}
ParsedJson &pj(*pj_ptr);
bool ours_correct = json_parse(p.first, p.second, pj);
rapidjson::Document d;
char *buffer = (char *)malloc(p.second + 1);
memcpy(buffer, p.first, p.second);
buffer[p.second] = '\0';
bool rapid_correct = (d.Parse((const char *)buffer).HasParseError() == false);
bool rapid_correct_checkencoding = (d.Parse<kParseValidateEncodingFlag>((const char *)buffer).HasParseError() == false);
bool sajson_correct = sajson::parse(sajson::dynamic_allocation(), sajson::mutable_string_view(p.second, 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;
bool ultrajson_correct = ((UJDecode(buffer, p.second, NULL, &state) == NULL) == false);
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");
2018-10-18 00:00:44 +08:00
free(buffer);
free(p.first);
deallocate_ParsedJson(pj_ptr);
return EXIT_SUCCESS;
}