1
- #include < functional>
2
- #include < iostream>
3
1
#include < filesystem>
4
2
#include < fstream>
3
+ #include < functional>
4
+ #include < iostream>
5
5
6
6
#include < docopt/docopt.h>
7
- #include < spdlog/spdlog.h>
8
7
#include < nlohmann/json.hpp>
8
+ #include < spdlog/spdlog.h>
9
9
10
10
static constexpr auto USAGE =
11
11
R"( json_compiler
@@ -19,13 +19,71 @@ static constexpr auto USAGE =
19
19
--version Show version.
20
20
)" ;
21
21
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
+
22
80
int main (int argc, const char **argv)
23
81
{
24
82
try {
25
83
std::map<std::string, docopt::value> args = docopt::docopt (USAGE,
26
84
{ std::next (argv), std::next (argv, argc) },
27
85
true ,// show help if requested
28
- " json_compiler 0.1" );// version string
86
+ " json_compiler 0.0. 1" );// version string
29
87
30
88
std::filesystem::path filename = args.at (" <file_name>" ).asString ();
31
89
spdlog::info (" Loading file: '{}'" , filename.native ());
@@ -37,6 +95,15 @@ int main(int argc, const char **argv)
37
95
spdlog::info (" File loaded" );
38
96
39
97
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
+
40
107
} catch (const std::exception &e) {
41
108
spdlog::error (" Unhandled exception in main: {}" , e.what ());
42
109
}
0 commit comments