2018-12-23 01:13:42 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
2020-03-03 06:23:19 +08:00
|
|
|
#include "simdjson.h"
|
2018-12-23 01:13:42 +08:00
|
|
|
|
2019-07-31 05:18:10 +08:00
|
|
|
size_t count_nonasciibytes(const uint8_t *input, size_t length) {
|
2018-12-23 01:13:42 +08:00
|
|
|
size_t count = 0;
|
2019-07-31 05:18:10 +08:00
|
|
|
for (size_t i = 0; i < length; i++) {
|
2018-12-23 01:13:42 +08:00
|
|
|
count += input[i] >> 7;
|
|
|
|
}
|
|
|
|
return count;
|
2019-07-31 05:18:10 +08:00
|
|
|
}
|
2018-12-23 01:13:42 +08:00
|
|
|
|
2019-07-31 05:18:10 +08:00
|
|
|
size_t count_backslash(const uint8_t *input, size_t length) {
|
2018-12-23 01:13:42 +08:00
|
|
|
size_t count = 0;
|
2019-07-31 05:18:10 +08:00
|
|
|
for (size_t i = 0; i < length; i++) {
|
|
|
|
count += (input[i] == '\\') ? 1 : 0;
|
2018-12-23 01:13:42 +08:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct stat_s {
|
|
|
|
size_t integer_count;
|
|
|
|
size_t float_count;
|
|
|
|
size_t string_count;
|
|
|
|
size_t backslash_count;
|
2019-07-31 05:18:10 +08:00
|
|
|
size_t non_ascii_byte_count;
|
2018-12-23 01:13:42 +08:00
|
|
|
size_t object_count;
|
|
|
|
size_t array_count;
|
|
|
|
size_t null_count;
|
|
|
|
size_t true_count;
|
|
|
|
size_t false_count;
|
|
|
|
size_t byte_count;
|
|
|
|
size_t structural_indexes_count;
|
2020-03-26 06:01:23 +08:00
|
|
|
size_t key_count;
|
|
|
|
size_t key_maximum_length;
|
|
|
|
size_t maximum_depth;
|
|
|
|
size_t ascii_key_count;
|
|
|
|
size_t ascii_string_count;
|
|
|
|
size_t maximum_object_size;
|
|
|
|
size_t maximum_array_size;
|
|
|
|
size_t string_maximum_length;
|
2018-12-23 01:13:42 +08:00
|
|
|
bool valid;
|
|
|
|
};
|
|
|
|
|
2019-02-24 00:28:20 +08:00
|
|
|
using stat_t = struct stat_s;
|
2018-12-23 01:13:42 +08:00
|
|
|
|
2020-03-26 06:01:23 +08:00
|
|
|
bool is_ascii(const std::string_view &v) {
|
|
|
|
for (size_t i = 0; i < v.size(); i++) {
|
|
|
|
if (static_cast<unsigned char>(v[i]) >= 128) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-03-29 02:43:41 +08:00
|
|
|
void recurse(simdjson::dom::element element, stat_t &s, size_t depth) {
|
2020-03-26 06:01:23 +08:00
|
|
|
if (depth > s.maximum_depth) {
|
|
|
|
s.maximum_depth = depth;
|
|
|
|
}
|
2020-03-29 05:48:43 +08:00
|
|
|
if (element.is<simdjson::dom::array>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.array_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
auto [array, array_error] = element.get<simdjson::dom::array>();
|
2020-03-26 06:01:23 +08:00
|
|
|
if (!array_error) {
|
|
|
|
size_t counter = 0;
|
|
|
|
for (auto child : array) {
|
|
|
|
counter++;
|
|
|
|
recurse(child, s, depth + 1);
|
|
|
|
}
|
|
|
|
if (counter > s.maximum_array_size) {
|
|
|
|
s.maximum_array_size = counter;
|
|
|
|
}
|
|
|
|
}
|
2020-03-29 05:48:43 +08:00
|
|
|
} else if (element.is<simdjson::dom::object>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.object_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
auto [object, object_error] = element.get<simdjson::dom::object>();
|
2020-03-26 06:01:23 +08:00
|
|
|
if (!object_error) {
|
|
|
|
size_t counter = 0;
|
|
|
|
for (auto [key, value] : object) {
|
|
|
|
counter++;
|
|
|
|
if (is_ascii(key)) {
|
|
|
|
s.ascii_key_count++;
|
|
|
|
s.ascii_string_count++;
|
|
|
|
}
|
|
|
|
if (key.size() > s.key_maximum_length) {
|
|
|
|
s.key_maximum_length = key.size();
|
|
|
|
}
|
|
|
|
if (key.size() > s.string_maximum_length) {
|
|
|
|
s.string_maximum_length = key.size();
|
|
|
|
}
|
|
|
|
s.string_count++;
|
|
|
|
s.key_count++;
|
|
|
|
recurse(value, s, depth + 1);
|
|
|
|
}
|
|
|
|
if (counter > s.maximum_object_size) {
|
|
|
|
s.maximum_object_size = counter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-03-29 05:48:43 +08:00
|
|
|
if (element.is<double>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.float_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
} else if (element.is<int64_t>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.integer_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
} else if (element.is<bool>()) {
|
|
|
|
if (element.get<bool>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.true_count++;
|
|
|
|
} else {
|
|
|
|
s.false_count++;
|
|
|
|
}
|
|
|
|
} else if (element.is_null()) {
|
|
|
|
s.null_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
} else if (element.is<std::string_view>()) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.string_count++;
|
2020-03-29 05:48:43 +08:00
|
|
|
if (is_ascii(element.get<std::string_view>())) {
|
2020-03-26 06:01:23 +08:00
|
|
|
s.ascii_string_count++;
|
|
|
|
}
|
2020-03-29 05:48:43 +08:00
|
|
|
const std::string_view strval = element.get<std::string_view>();
|
2020-03-26 06:01:23 +08:00
|
|
|
if (strval.size() > s.string_maximum_length) {
|
|
|
|
s.string_maximum_length = strval.size();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw std::runtime_error("unrecognized node.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-31 05:18:10 +08:00
|
|
|
stat_t simdjson_compute_stats(const simdjson::padded_string &p) {
|
2020-03-26 06:01:23 +08:00
|
|
|
stat_t s{};
|
2020-03-29 02:43:41 +08:00
|
|
|
simdjson::dom::parser parser;
|
2020-03-26 06:01:23 +08:00
|
|
|
auto [doc, error] = parser.parse(p);
|
|
|
|
if (error) {
|
|
|
|
s.valid = false;
|
|
|
|
std::cerr << error << std::endl;
|
|
|
|
return s;
|
2018-12-23 01:13:42 +08:00
|
|
|
}
|
2020-03-26 06:01:23 +08:00
|
|
|
s.valid = true;
|
|
|
|
s.backslash_count =
|
2019-07-31 05:18:10 +08:00
|
|
|
count_backslash(reinterpret_cast<const uint8_t *>(p.data()), p.size());
|
2020-03-26 06:01:23 +08:00
|
|
|
s.non_ascii_byte_count = count_nonasciibytes(
|
2019-07-31 05:18:10 +08:00
|
|
|
reinterpret_cast<const uint8_t *>(p.data()), p.size());
|
2020-03-26 06:01:23 +08:00
|
|
|
s.byte_count = p.size();
|
|
|
|
s.structural_indexes_count = parser.n_structural_indexes;
|
|
|
|
|
|
|
|
// simdjson::document::iterator iter(doc);
|
2020-03-27 04:51:38 +08:00
|
|
|
recurse(doc, s, 0);
|
2020-03-26 06:01:23 +08:00
|
|
|
return s;
|
2018-12-23 01:13:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2019-07-02 02:18:30 +08:00
|
|
|
int myoptind = 1;
|
|
|
|
if (myoptind >= argc) {
|
2019-05-10 05:59:51 +08:00
|
|
|
std::cerr << "Reads json, prints stats. " << std::endl;
|
|
|
|
std::cerr << "Usage: " << argv[0] << " <jsonfile>" << std::endl;
|
2018-12-23 01:13:42 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-07-02 02:18:30 +08:00
|
|
|
const char *filename = argv[myoptind];
|
|
|
|
if (myoptind + 1 < argc) {
|
2019-07-31 05:18:10 +08:00
|
|
|
std::cerr << "warning: ignoring everything after " << argv[myoptind + 1]
|
|
|
|
<< std::endl;
|
2018-12-23 01:13:42 +08:00
|
|
|
}
|
2020-03-26 06:01:23 +08:00
|
|
|
|
2020-03-07 10:14:34 +08:00
|
|
|
auto [p, error] = simdjson::padded_string::load(filename);
|
|
|
|
if (error) {
|
2018-12-23 01:13:42 +08:00
|
|
|
std::cerr << "Could not load the file " << filename << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2019-07-31 05:18:10 +08:00
|
|
|
stat_t s = simdjson_compute_stats(p);
|
|
|
|
if (!s.valid) {
|
2018-12-23 01:13:42 +08:00
|
|
|
std::cerr << "not a valid JSON" << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2020-03-26 06:01:23 +08:00
|
|
|
// Future work: the proper way to do the what follows would be to create
|
|
|
|
// a JSON object and then to serialize it.
|
2018-12-23 01:13:42 +08:00
|
|
|
|
2020-03-26 06:01:23 +08:00
|
|
|
printf(R"({
|
|
|
|
"integer_count" = %10zu,
|
|
|
|
"float_count" = %10zu,
|
|
|
|
"string_count" = %10zu,
|
|
|
|
"ascii_string_count" = %10zu,
|
|
|
|
"string_maximum_length" = %10zu,
|
|
|
|
"backslash_count" = %10zu,
|
|
|
|
"non_ascii_byte_count" = %10zu,
|
|
|
|
"object_count" = %10zu,
|
|
|
|
"maximum_object_size" = %10zu,
|
|
|
|
"array_count" = %10zu,
|
|
|
|
"maximum_array_size" = %10zu,
|
|
|
|
"null_count" = %10zu,
|
|
|
|
"true_count" = %10zu,
|
|
|
|
"false_count" = %10zu,
|
|
|
|
"byte_count" = %10zu,
|
|
|
|
"structural_indexes_count" = %10zu,
|
|
|
|
"key_count" = %10zu,
|
|
|
|
"ascii_key_count" = %10zu,
|
|
|
|
"key_maximum_length" = %10zu,
|
|
|
|
"maximum_depth" = %10zu
|
2018-12-23 01:13:42 +08:00
|
|
|
}
|
2020-03-26 06:01:23 +08:00
|
|
|
)",
|
|
|
|
s.integer_count, s.float_count, s.string_count, s.ascii_string_count,
|
|
|
|
s.string_maximum_length, s.backslash_count, s.non_ascii_byte_count,
|
|
|
|
s.object_count, s.maximum_object_size, s.array_count,
|
|
|
|
s.maximum_array_size, s.null_count, s.true_count, s.false_count,
|
|
|
|
s.byte_count, s.structural_indexes_count, s.key_count,
|
|
|
|
s.ascii_key_count, s.key_maximum_length, s.maximum_depth);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|