-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathtoml_generator.cpp
322 lines (282 loc) · 9.69 KB
/
toml_generator.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
// This file is a part of toml++ and is subject to the the terms of the MIT license.
// Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>
// See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
// SPDX-License-Identifier: MIT
// This example demonstrates the use of some more advanced features to generate a tree of random TOML data.
#include "examples.hpp"
#include <toml++/toml.hpp>
using namespace std::string_view_literals;
namespace
{
namespace random
{
inline constexpr std::string_view words[] = {
"acceptable"sv, "contain"sv, "ghost"sv, "mark"sv, "respect"sv, "taboo"sv,
"actually"sv, "cream"sv, "gleaming"sv, "meaty"sv, "rest"sv, "tacky"sv,
"addition"sv, "creature"sv, "glorious"sv, "memory"sv, "rice"sv, "tank"sv,
"adhesive"sv, "crime"sv, "gold"sv, "messy"sv, "rich"sv, "tent"sv,
"adorable"sv, "cross"sv, "grandfather"sv, "miss"sv, "righteous"sv, "terrible"sv,
"advise"sv, "crowded"sv, "gusty"sv, "modern"sv, "room"sv, "threatening"sv,
"afraid"sv, "crown"sv, "haircut"sv, "morning"sv, "rotten"sv, "three"sv,
"ancient"sv, "cure"sv, "hard-to-find"sv, "naughty"sv, "royal"sv, "ticket"sv,
"anxious"sv, "curious"sv, "harm"sv, "neck"sv, "run"sv, "title"sv,
"aromatic"sv, "curtain"sv, "heavy"sv, "night"sv, "satisfy"sv, "torpid"sv,
"attempt"sv, "cycle"sv, "helpless"sv, "nondescript"sv, "scary"sv, "train"sv,
"babies"sv, "deadpan"sv, "high-pitched"sv, "overjoyed"sv, "scatter"sv, "umbrella"sv,
"bake"sv, "decisive"sv, "hilarious"sv, "page"sv, "scene"sv, "unadvised"sv,
"ball"sv, "deeply"sv, "history"sv, "partner"sv, "scintillating"sv, "unbecoming"sv,
"bat"sv, "delightful"sv, "hook"sv, "party"sv, "self"sv, "unbiased"sv,
"behave"sv, "deserted"sv, "ignore"sv, "pause"sv, "selfish"sv, "unite"sv,
"best"sv, "draconian"sv, "imperfect"sv, "pear"sv, "silky"sv, "uptight"sv,
"birds"sv, "dreary"sv, "impossible"sv, "picture"sv, "sisters"sv, "used"sv,
"blind"sv, "dull"sv, "incandescent"sv, "place"sv, "ski"sv, "vengeful"sv,
"blood"sv, "enthusiastic"sv, "influence"sv, "playground"sv, "skip"sv, "versed"sv,
"blue-eyed"sv, "equable"sv, "innocent"sv, "popcorn"sv, "snow"sv, "vessel"sv,
"boiling"sv, "excuse"sv, "insidious"sv, "prefer"sv, "soap"sv, "view"sv,
"bore"sv, "experience"sv, "itch"sv, "productive"sv, "spare"sv, "voyage"sv,
"borrow"sv, "fabulous"sv, "jail"sv, "profuse"sv, "spicy"sv, "wall"sv,
"broken"sv, "familiar"sv, "kindhearted"sv, "protective"sv, "spiritual"sv, "want"sv,
"capable"sv, "finger"sv, "lackadaisical"sv, "pumped"sv, "sprout"sv, "weary"sv,
"charming"sv, "finicky"sv, "laughable"sv, "rabbit"sv, "squirrel"sv, "week"sv,
"cheerful"sv, "fix"sv, "leather"sv, "rapid"sv, "stale"sv, "whip"sv,
"chubby"sv, "flagrant"sv, "legal"sv, "regret"sv, "step"sv, "wilderness"sv,
"clean"sv, "flat"sv, "lewd"sv, "reject"sv, "stingy"sv, "wistful"sv,
"close"sv, "flimsy"sv, "license"sv, "rejoice"sv, "string"sv, "worried"sv,
"cobweb"sv, "fuel"sv, "light"sv, "relation"sv, "sulky"sv, "wretched"sv,
"complex"sv, "furtive"sv, "march"sv, "remarkable"sv, "surprise"sv, "zealous"sv,
"consist"sv, "geese"sv
};
[[nodiscard]] static bool boolean() noexcept
{
return std::rand() % 2 == 0;
}
template <typename T>
[[nodiscard]] static T integer(T excl_max) noexcept
{
return static_cast<T>(static_cast<T>(std::rand()) % excl_max);
}
template <typename T>
[[nodiscard]] static T integer(T incl_min, T excl_max) noexcept
{
return static_cast<T>(incl_min + integer(excl_max - incl_min));
}
[[nodiscard]] static bool chance(float val) noexcept
{
val = (val < 0.0f ? 0.0f : (val > 1.0f ? 1.0f : val)) * 1000.0f;
return static_cast<float>(integer(0, 1000)) <= val;
}
[[nodiscard]] static toml::date date() noexcept
{
return toml::date{ integer(1900, 2021), //
integer(1, 13),
integer(1, 29) };
}
[[nodiscard]] static toml::time time() noexcept
{
return toml::time{ integer(24), //
integer(60),
integer(60),
boolean() ? integer(1000000000u) : 0u };
}
[[nodiscard]] static toml::time_offset time_offset() noexcept
{
return toml::time_offset{ integer(-11, 12), integer(-45, +46) };
}
[[nodiscard]] static toml::date_time date_time() noexcept
{
return boolean() ? toml::date_time{ date(), time() } //
: toml::date_time{ date(), time(), time_offset() };
}
[[nodiscard]] static std::string_view word() noexcept
{
return words[integer(std::size(words))];
}
[[nodiscard]] static std::string string(size_t word_count, char sep = ' ')
{
std::string val;
while (word_count-- > 0u)
{
if (!val.empty())
val += sep;
val.append(word());
}
return val;
}
[[nodiscard]] static std::string key()
{
return random::string(random::integer(1u, 4u), '-');
}
}
template <typename T>
static auto add_to(toml::table& tbl, T&& val) -> toml::inserted_type_of<T&&>&
{
while (true)
{
auto key = random::key();
auto it = std::as_const(tbl).lower_bound(key);
if (it == tbl.cend() || it->first != key)
{
return *tbl.emplace_hint(it, std::move(key), static_cast<T&&>(val))
->second.template as<toml::inserted_type_of<T&&>>();
}
}
}
template <typename T>
static auto add_to(toml::array& arr, T&& val) -> toml::inserted_type_of<T&&>&
{
return arr.emplace_back(static_cast<T&&>(val));
}
template <typename Container>
static void add_value_to(Container& container)
{
static_assert(toml::is_container<Container>);
switch (random::integer(7))
{
case 0: add_to(container, random::string(random::integer(8u))); break;
case 1: add_to(container, random::integer(1000)); break;
case 2: add_to(container, random::integer(10001) / 10000.0); break;
case 3: add_to(container, random::boolean()); break;
case 4: add_to(container, random::date()); break;
case 5: add_to(container, random::time()); break;
case 6: add_to(container, random::date_time()); break;
default: break;
}
}
static constexpr int max_inline_nesting = 2;
static constexpr int default_max_inline_values = 4;
template <typename Container>
static void populate_inline_container(Container& container,
int& budget,
int inline_nesting = 0,
int max_values = default_max_inline_values)
{
static_assert(toml::is_container<Container>);
auto values = random::integer(max_values);
while (budget && values)
{
// inline array/table
if (inline_nesting < max_inline_nesting && random::chance(0.25f))
{
// array
if (random::boolean())
{
auto& arr = add_to(container, toml::array{});
populate_inline_container(arr, budget, inline_nesting + 1, default_max_inline_values);
}
// table
else
{
auto& tbl = add_to(container, toml::table{});
tbl.is_inline(true);
populate_inline_container(tbl, budget, inline_nesting + 1, default_max_inline_values);
}
}
// regular value
else
{
add_value_to(container);
budget--;
}
values--;
}
}
static constexpr int max_top_level_nesting = 5;
static constexpr int max_array_of_tables_children = 4;
static constexpr int max_table_children = 4;
static void populate_table(toml::table& tbl, int& budget, int nesting = 0)
{
assert(!tbl.is_inline());
// do simple values + inline tables/arrays first
populate_inline_container(tbl, budget, 0, 10);
// add a nested array-of-tables
if (budget && nesting < max_top_level_nesting && random::chance(0.33f))
{
auto& arr = add_to(tbl, toml::array{});
// note we don't subtract from the budget for the outer array;
// it's "invisible" from a topological perspective when reading the output TOML
auto children = random::integer(1, max_array_of_tables_children);
while (budget && children)
{
auto& sub_tbl = add_to(arr, toml::table{});
budget--;
children--;
populate_table(sub_tbl, budget, nesting + 1);
}
}
// add nested tables
if (budget && nesting < max_top_level_nesting && random::chance(0.33f))
{
auto children = random::integer(1, max_table_children);
while (budget && children)
{
auto& sub_tbl = add_to(tbl, toml::table{});
budget--;
children--;
populate_table(sub_tbl, budget, nesting + 1);
}
}
}
}
int main(int argc, char** argv)
{
int budget{};
bool comments = true;
for (int i = 1; i < argc; i++)
{
const auto arg = std::string_view{ argv[i] };
if (arg == "--nocomments"sv)
comments = false;
else
{
std::istringstream ss{ std::string(arg) };
int num;
if ((ss >> num))
budget += num;
else
{
std::cerr << "Unknown argument '"sv << arg << "'\n";
return 1;
}
}
}
if (budget <= 0)
budget = 100;
toml::table root;
while (budget > 0)
populate_table(root, budget);
if (comments)
{
std::stringstream src;
src << root;
std::string line;
std::ostringstream dest;
while (std::getline(src, line))
{
if (line.empty())
{
// occasionally dump a paragraph comment at the top-level of the document
if (random::chance(0.20f))
{
auto lines = random::integer(1, 8);
while (lines--)
dest << "\n# "sv << random::string(random::integer(4u, 8u));
dest << "\n"sv;
}
}
else
{
dest << line;
// occasionally add short comments at end of non-blank lines
if (random::chance(0.30f))
dest << " # "sv << random::string(random::integer(1u, 3u));
}
dest << "\n"sv;
}
std::cout << dest.str();
}
else
{
std::cout << root << "\n";
}
return 0;
}