-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_json.cpp
123 lines (93 loc) · 3.69 KB
/
bench_json.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Benchmark for https://github.com/NREL/OpenStudio/issues/4187
#include <benchmark/benchmark.h>
#include <json/json.h>
#include <iostream>
#include <fstream>
// #include <fmt/format.h>
#include <vector>
#include <filesystem>
static void BM_JsonStreamOp(benchmark::State& state) {
std::filesystem::path p("/home/julien/Software/CppBenchmarks/resources/Sandia_Modules.json");
if (!std::filesystem::exists(p) || !std::filesystem::is_regular_file(p)){
std::cout << "Path '" << p.string() << "' is not a valid file";
exit(1);
}
std::ifstream ifs(p);
Json::Value m_sandiaRoot;
ifs >> m_sandiaRoot;
switch (m_sandiaRoot.type()) {
case Json::nullValue: std::cout << "nullValue\n"; break;
case Json::intValue: std::cout << "intValue\n"; break;
case Json::uintValue: std::cout << "uintValue\n"; break;
case Json::realValue: std::cout << "realValue\n"; break;
case Json::stringValue: std::cout << "stringValue\n"; break;
case Json::booleanValue: std::cout << "booleanValue\n"; break;
case Json::arrayValue: std::cout << "arrayValue\n"; break;
case Json::objectValue: std::cout << "objectValue\n"; break;
default: std::cout << "wrong type\n"; break;
}
//for (auto& m: m_sandiaRoot.getMemberNames()) {
//std::cout << m << '\n';
//}
//std::cout << "\n\n";
//for (auto& m: m_sandiaRoot["data"].getMemberNames()) {
//std::cout << m << '\n';
//}
Json::Value this_data = m_sandiaRoot["data"]["Solarex MST-43LV [1998]"];
if (!this_data) {
throw std::runtime_error("error");
}
switch (this_data.type()) {
case Json::nullValue: std::cout << "nullValue\n"; break;
case Json::intValue: std::cout << "intValue\n"; break;
case Json::uintValue: std::cout << "uintValue\n"; break;
case Json::realValue: std::cout << "realValue\n"; break;
case Json::stringValue: std::cout << "stringValue\n"; break;
case Json::booleanValue: std::cout << "booleanValue\n"; break;
case Json::arrayValue: std::cout << "arrayValue\n"; break;
case Json::objectValue: std::cout << "objectValue\n"; break;
default: std::cout << "wrong type\n"; break;
}
std::cout << this_data << '\n';
std::map<std::string, double> stdmap;
for (auto &k: this_data) {
std::cout << k;
// stdmap.insert(std::make_pair(kv.first, kv.second));
}
for (Json::ValueConstIterator it = this_data.begin(); it != this_data.end(); ++it) {
std::cout << it.name() << ", " << it->asDouble() << "\n";
stdmap.insert(std::make_pair(it.name(), it->asDouble()));
}
// std::cout << m_sandiaRoot << '\n';
// Code inside this loop is measured repeatedly
for (auto _ : state) {
// open file
std::ifstream ifs(p);
Json::Value m_sandiaRoot;
ifs >> m_sandiaRoot;
}
}
static void BM_JsonCharBuilder(benchmark::State& state) {
std::filesystem::path p("/home/julien/Software/CppBenchmarks/resources/Sandia_Modules.json");
if (!std::filesystem::exists(p) || !std::filesystem::is_regular_file(p)){
std::cout << "Path '" << p.string() << "' is not a valid file";
exit(1);
}
// open file
std::ifstream ifs(p);
// Code inside this loop is measured repeatedly
for (auto _ : state) {
Json::CharReaderBuilder rbuilder;
rbuilder["collectComments"] = false;
std::string formattedErrors;
// open file
std::ifstream ifs(p);
Json::Value m_sandiaRoot;
bool parsingSuccessful = Json::parseFromStream(rbuilder, ifs, &m_sandiaRoot, &formattedErrors);
if (!parsingSuccessful){
std::cout << "JSON file at '" << p.string() << "' cannot be processed: " << formattedErrors << '\n';
}
}
}
BENCHMARK(BM_JsonStreamOp);
BENCHMARK(BM_JsonCharBuilder);