Skip to content

Commit 3a0bde8

Browse files
committed
Basic compilation of json to C++ working
1 parent fa4683f commit 3a0bde8

File tree

2 files changed

+72
-4
lines changed

2 files changed

+72
-4
lines changed

.clang-tidy

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Checks: "*,
1313
-readability-avoid-const-params-in-decls,
1414
-cppcoreguidelines-non-private-member-variables-in-classes,
1515
-misc-non-private-member-variables-in-classes,
16+
-misc-no-recursion
1617
"
1718
WarningsAsErrors: ''
1819
HeaderFilterRegex: ''

src/main.cpp

+71-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
#include <functional>
2-
#include <iostream>
31
#include <filesystem>
42
#include <fstream>
3+
#include <functional>
4+
#include <iostream>
55

66
#include <docopt/docopt.h>
7-
#include <spdlog/spdlog.h>
87
#include <nlohmann/json.hpp>
8+
#include <spdlog/spdlog.h>
99

1010
static constexpr auto USAGE =
1111
R"(json_compiler
@@ -19,13 +19,71 @@ static constexpr auto USAGE =
1919
--version Show version.
2020
)";
2121

22+
std::string to_string(const nlohmann::json &value, std::size_t &obj_count, std::vector<std::string> &lines)
23+
{
24+
const auto current_object_number = obj_count++;
25+
26+
const auto json_string = [](const auto &str) { return fmt::format("R\"json_string({})json_string\"", str); };
27+
28+
if (value.is_object()) {
29+
std::vector<std::string> pairs;
30+
for (auto itr = value.begin(); itr != value.end(); ++itr) {
31+
pairs.push_back(fmt::format(
32+
"value_pair_t{{std::string_view{{{}}}, {}}},", json_string(itr.key()), to_string(*itr, obj_count, lines)));
33+
}
34+
35+
lines.push_back(fmt::format(
36+
"static constexpr std::array<value_pair_t, {}> object_data_{} = {{", pairs.size(), current_object_number));
37+
38+
std::transform(pairs.begin(), pairs.end(), std::back_inserter(lines), [](const auto &pair) {
39+
return fmt::format(" {}", pair);
40+
});
41+
42+
lines.emplace_back("};");
43+
44+
return fmt::format("json{{object_data_{}}}", current_object_number);
45+
} else if (value.is_array()) {
46+
std::vector<std::string> entries;
47+
std::transform(value.begin(), value.end(), std::back_inserter(entries), [&](const auto &child) {
48+
return fmt::format("{},", to_string(child, obj_count, lines));
49+
});
50+
51+
52+
lines.push_back(
53+
fmt::format("static constexpr std::array<json, {}> object_data_{} = {{", entries.size(), current_object_number));
54+
55+
std::transform(entries.begin(), entries.end(), std::back_inserter(lines), [](const auto &entry) {
56+
return fmt::format(" {}", entry);
57+
});
58+
59+
lines.emplace_back("};");
60+
61+
return fmt::format("json{{object_data_{}}}", current_object_number);
62+
63+
64+
} else if (value.is_number_float()) {
65+
return fmt::format("json{{data_t{{double{{{}}}}}}}", value.get<double>());
66+
} else if (value.is_number_unsigned()) {
67+
return fmt::format("json{{data_t{{std::uint64_t{{{}}}}}}}", value.get<std::uint64_t>());
68+
} else if (value.is_number() && !value.is_number_unsigned()) {
69+
return fmt::format("json{{data_t{{std::int64_t{{{}}}}}}}", value.get<std::uint64_t>());
70+
} else if (value.is_boolean()) {
71+
return fmt::format("json{{data_t{{bool{{{}}}}}}}", value.get<bool>());
72+
} else if (value.is_string()) {
73+
return fmt::format("json{{data_t{{std::string_view{{{}}}}}}}", json_string(value.get<std::string>()));
74+
}
75+
76+
return "unhandled";
77+
}
78+
79+
2280
int main(int argc, const char **argv)
2381
{
2482
try {
2583
std::map<std::string, docopt::value> args = docopt::docopt(USAGE,
2684
{ std::next(argv), std::next(argv, argc) },
2785
true,// show help if requested
28-
"json_compiler 0.1");// version string
86+
"json_compiler 0.0.1");// version string
2987

3088
std::filesystem::path filename = args.at("<file_name>").asString();
3189
spdlog::info("Loading file: '{}'", filename.native());
@@ -37,6 +95,15 @@ int main(int argc, const char **argv)
3795
spdlog::info("File loaded");
3896

3997

98+
std::size_t obj_count{ 0 };
99+
std::vector<std::string> lines;
100+
101+
const auto str = to_string(document, obj_count, lines);
102+
103+
for (const auto &line : lines) { std::cout << line << '\n'; }
104+
105+
std::cout << "static constexpr auto document = " << str << ";\n";
106+
40107
} catch (const std::exception &e) {
41108
spdlog::error("Unhandled exception in main: {}", e.what());
42109
}

0 commit comments

Comments
 (0)