-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathserialize_filters.cpp
442 lines (342 loc) · 11.5 KB
/
serialize_filters.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#include "filters.h"
#include "generic_adapters.h"
#include "out_stream.h"
#include "testers.h"
#include "value_helpers.h"
#include "value_visitors.h"
#include <fmt/args.h>
#include <algorithm>
#include <numeric>
#include <random>
#include <sstream>
#include <string>
#ifdef JINJA2CPP_WITH_JSON_BINDINGS_BOOST
#include "binding/boost_json_serializer.h"
using DocumentWrapper = jinja2::boost_json_serializer::DocumentWrapper;
#else
#include "binding/rapid_json_serializer.h"
using DocumentWrapper = jinja2::rapidjson_serializer::DocumentWrapper;
#endif
using namespace std::string_literals;
namespace jinja2
{
namespace filters
{
struct PrettyPrinter : visitors::BaseVisitor<std::string>
{
using BaseVisitor::operator();
PrettyPrinter(const RenderContext* context)
: m_context(context)
{
}
std::string operator()(const ListAdapter& list) const
{
std::string str;
auto os = std::back_inserter(str);
fmt::format_to(os, "[");
bool isFirst = true;
for (auto& v : list)
{
if (isFirst)
isFirst = false;
else
fmt::format_to(os, ", ");
fmt::format_to(os, "{}", Apply<PrettyPrinter>(v, m_context));
}
fmt::format_to(os, "]");
return str;
}
std::string operator()(const MapAdapter& map) const
{
std::string str;
auto os = std::back_inserter(str);
fmt::format_to(os, "{{");
const auto& keys = map.GetKeys();
bool isFirst = true;
for (auto& k : keys)
{
if (isFirst)
isFirst = false;
else
fmt::format_to(os, ", ");
fmt::format_to(os, "'{}': ", k);
fmt::format_to(os, "{}", Apply<PrettyPrinter>(map.GetValueByName(k), m_context));
}
fmt::format_to(os, "}}");
return str;
}
std::string operator()(const KeyValuePair& kwPair) const
{
std::string str;
auto os = std::back_inserter(str);
fmt::format_to(os, "'{}': ", kwPair.key);
fmt::format_to(os, "{}", Apply<PrettyPrinter>(kwPair.value, m_context));
return str;
}
std::string operator()(const std::string& str) const { return fmt::format("'{}'", str); }
std::string operator()(const nonstd::string_view& str) const { return fmt::format("'{}'", fmt::basic_string_view<char>(str.data(), str.size())); }
std::string operator()(const std::wstring& str) const { return fmt::format("'{}'", ConvertString<std::string>(str)); }
std::string operator()(const nonstd::wstring_view& str) const { return fmt::format("'{}'", ConvertString<std::string>(str)); }
std::string operator()(bool val) const { return val ? "true"s : "false"s; }
std::string operator()(EmptyValue) const { return "none"s; }
std::string operator()(const Callable&) const { return "<callable>"s; }
std::string operator()(double val) const
{
std::string str;
auto os = std::back_inserter(str);
fmt::format_to(os, "{:.8g}", val);
return str;
}
std::string operator()(int64_t val) const { return fmt::format("{}", val); }
const RenderContext* m_context;
};
PrettyPrint::PrettyPrint(FilterParams params) {}
InternalValue PrettyPrint::Filter(const InternalValue& baseVal, RenderContext& context)
{
return Apply<PrettyPrinter>(baseVal, &context);
}
Serialize::Serialize(const FilterParams params, const Serialize::Mode mode)
: m_mode(mode)
{
switch (mode)
{
case JsonMode:
ParseParams({ { "indent", false, static_cast<int64_t>(0) } }, params);
break;
default:
break;
}
}
InternalValue Serialize::Filter(const InternalValue& value, RenderContext& context)
{
if (m_mode == JsonMode)
{
const auto indent = ConvertToInt(this->GetArgumentValue("indent", context));
DocumentWrapper jsonDoc;
const auto jsonValue = jsonDoc.CreateValue(value);
const auto jsonString = jsonValue.AsString(static_cast<uint8_t>(indent));
std::string result = ""s;
result.reserve(jsonString.size());
for (char c : jsonString) {
if (c == '<') {
result.append("\\u003c");
} else if (c == '>') {
result.append("\\u003e");
} else if (c == '&') {
result.append("\\u0026");
} else if (c == '\'') {
result.append("\\u0027");
} else {
result.push_back(c);
}
}
return result;
}
return InternalValue();
}
namespace
{
using FormatContext = fmt::format_context;
using FormatArgument = fmt::basic_format_arg<FormatContext>;
using FormatDynamicArgsStore = fmt::dynamic_format_arg_store<FormatContext>;
struct FormatArgumentConverter : visitors::BaseVisitor<FormatArgument>
{
using result_t = FormatArgument;
using BaseVisitor::operator();
FormatArgumentConverter(const RenderContext* context, FormatDynamicArgsStore& store)
: m_context(context)
, m_store(store)
{
}
FormatArgumentConverter(const RenderContext* context, FormatDynamicArgsStore& store, const std::string& name)
: m_context(context)
, m_store(store)
, m_name(name)
, m_named(true)
{
}
result_t operator()(const ListAdapter& list) const { return make_result(Apply<PrettyPrinter>(list, m_context)); }
result_t operator()(const MapAdapter& map) const { return make_result(Apply<PrettyPrinter>(map, m_context)); }
result_t operator()(const std::string& str) const { return make_result(str); }
result_t operator()(const nonstd::string_view& str) const { return make_result(std::string(str.data(), str.size())); }
result_t operator()(const std::wstring& str) const { return make_result(ConvertString<std::string>(str)); }
result_t operator()(const nonstd::wstring_view& str) const { return make_result(ConvertString<std::string>(str)); }
result_t operator()(double val) const { return make_result(val); }
result_t operator()(int64_t val) const { return make_result(val); }
result_t operator()(bool val) const { return make_result(val ? "true"s : "false"s); }
result_t operator()(EmptyValue) const { return make_result("none"s); }
result_t operator()(const Callable&) const { return make_result("<callable>"s); }
template<typename T>
result_t make_result(const T& t) const
{
if (!m_named)
{
m_store.push_back(t);
}
else
{
m_store.push_back(fmt::arg(m_name.c_str(), t));
}
return fmt::detail::make_arg<FormatContext>(t);
}
const RenderContext* m_context;
FormatDynamicArgsStore& m_store;
const std::string m_name;
bool m_named = false;
};
} // namespace
InternalValue StringFormat::Filter(const InternalValue& baseVal, RenderContext& context)
{
// Format library internally likes using non-owning views to complex arguments.
// In order to ensure proper lifetime of values and named args,
// helper buffer is created and passed to visitors.
FormatDynamicArgsStore store;
for (auto& arg : m_params.posParams)
{
Apply<FormatArgumentConverter>(arg->Evaluate(context), &context, store);
}
for (auto& arg : m_params.kwParams)
{
Apply<FormatArgumentConverter>(arg.second->Evaluate(context), &context, store, arg.first);
}
return InternalValue(fmt::vformat(AsString(baseVal), store));
}
class XmlAttrPrinter : public visitors::BaseVisitor<std::string>
{
public:
using BaseVisitor::operator();
explicit XmlAttrPrinter(RenderContext* context, bool isFirstLevel = false)
: m_context(context)
, m_isFirstLevel(isFirstLevel)
{
}
std::string operator()(const ListAdapter& list) const
{
EnforceThatNested();
return EscapeHtml(Apply<PrettyPrinter>(list, m_context));
}
std::string operator()(const MapAdapter& map) const
{
if (!m_isFirstLevel)
{
return EscapeHtml(Apply<PrettyPrinter>(map, m_context));
}
std::string str;
auto os = std::back_inserter(str);
const auto& keys = map.GetKeys();
bool isFirst = true;
for (auto& k : keys)
{
const auto& v = map.GetValueByName(k);
const auto item = Apply<XmlAttrPrinter>(v, m_context, false);
if (item.length() > 0)
{
if (isFirst)
isFirst = false;
else
fmt::format_to(os, " ");
fmt::format_to(os, "{}=\"{}\"", k, item);
}
}
return str;
}
std::string operator()(const KeyValuePair& kwPair) const
{
EnforceThatNested();
return EscapeHtml(Apply<PrettyPrinter>(kwPair, m_context));
}
std::string operator()(const std::string& str) const
{
EnforceThatNested();
return EscapeHtml(str);
}
std::string operator()(const nonstd::string_view& str) const
{
EnforceThatNested();
const auto result = fmt::format("{}", fmt::basic_string_view<char>(str.data(), str.size()));
return EscapeHtml(result);
}
std::string operator()(const std::wstring& str) const
{
EnforceThatNested();
return EscapeHtml(ConvertString<std::string>(str));
}
std::string operator()(const nonstd::wstring_view& str) const
{
EnforceThatNested();
const auto result = fmt::format("{}", ConvertString<std::string>(str));
return EscapeHtml(result);
}
std::string operator()(bool val) const
{
EnforceThatNested();
return val ? "true"s : "false"s;
}
std::string operator()(EmptyValue) const
{
EnforceThatNested();
return ""s;
}
std::string operator()(const Callable&) const
{
EnforceThatNested();
return ""s;
}
std::string operator()(double val) const
{
EnforceThatNested();
std::string str;
auto os = std::back_inserter(str);
fmt::format_to(os, "{:.8g}", val);
return str;
}
std::string operator()(int64_t val) const
{
EnforceThatNested();
return fmt::format("{}", val);
}
private:
void EnforceThatNested() const
{
if (m_isFirstLevel)
m_context->GetRendererCallback()->ThrowRuntimeError(ErrorCode::InvalidValueType, ValuesList{});
}
std::string EscapeHtml(const std::string &str) const
{
const auto result = std::accumulate(str.begin(), str.end(), ""s, [](const auto &str, const auto &c)
{
switch (c)
{
case '<':
return str + "<";
break;
case '>':
return str +">";
break;
case '&':
return str +"&";
break;
case '\'':
return str +"'";
break;
case '\"':
return str +""";
break;
default:
return str + c;
break;
}
});
return result;
}
private:
RenderContext* m_context;
bool m_isFirstLevel;
};
XmlAttrFilter::XmlAttrFilter(FilterParams) {}
InternalValue XmlAttrFilter::Filter(const InternalValue& baseVal, RenderContext& context)
{
return Apply<XmlAttrPrinter>(baseVal, &context, true);
}
} // namespace filters
} // namespace jinja2