-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexto.hpp
74 lines (62 loc) · 1.8 KB
/
texto.hpp
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
#include <array>
#include <deque>
#include <introspecto.h>
#include <ostream>
#include <string>
#include <texto.h>
#include <vector>
void texto::to_json(std::ostream &out, const size_t &value) { out << value; }
void texto::to_json(std::ostream &out, const double &value) { out << value; }
void texto::to_json(std::ostream &out, const std::string &value) {
out << '"' << value << '"';
}
void texto::to_json(std::ostream &out, const char &value) {
std::string str = {value};
texto::to_json(out, str);
}
namespace texto {
template <typename Container>
void to_json_array(std::ostream &out, const Container &container) {
out << '[';
bool is_first_member = true;
for (const auto &element : container) {
if (is_first_member) {
is_first_member = false;
} else {
out << ',';
}
to_json(out, element);
}
out << ']';
}
template <typename T>
void to_json(std::ostream &out, const std::vector<T> &container) {
to_json_array(out, container);
}
template <typename T>
void to_json(std::ostream &out, const std::deque<T> &container) {
to_json_array(out, container);
}
template <typename T, size_t S>
void to_json(std::ostream &out, const std::array<T, S> &container) {
to_json_array(out, container);
}
} // namespace texto
// TODO: Replace by const reference , const reference not provided yet by
// introspecto
template <typename T> void texto::to_json(std::ostream &out, T object) {
out << '{';
auto personInfo = introspecto::introspect(object);
bool is_first_member = true;
personInfo.foreachField([&out, &is_first_member]<typename Type>(
std::string name, const Type content) {
if (is_first_member) {
is_first_member = false;
} else {
out << ',';
}
out << '"' << name << "\":";
to_json(out, content);
});
out << '}';
}