OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
format_value.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3#if defined(OSSIA_HAS_FMT)
4#include <ossia/detail/flat_set.hpp>
5#include <ossia/detail/fmt.hpp>
6#include <ossia/detail/optional.hpp>
7#include <ossia/network/value/value.hpp>
8
9#include <boost/algorithm/string/replace.hpp>
10
11#include <fmt/ranges.h>
12FMT_BEGIN_NAMESPACE
13#if FMT_VERSION >= 100000
14namespace detail {
15template <typename T> class is_container_adaptor_like<boost::container::flat_set<T>>
16 : public std::false_type {
17
18};
19}
20#endif
21FMT_END_NAMESPACE
22namespace ossia
23{
24template <typename FmtCtx>
25struct value_prettyprint_visitor
26{
27 FmtCtx& ctx;
28 using iterator = typename FmtCtx::iterator;
29 iterator operator()(impulse) const;
30 iterator operator()(int32_t i) const;
31 iterator operator()(float f) const;
32 iterator operator()(bool b) const;
33 iterator operator()(char c) const;
34 iterator operator()(std::string str) const;
35 iterator operator()(vec2f vec) const;
36 iterator operator()(vec3f vec) const;
37 iterator operator()(vec4f vec) const;
38 iterator operator()(const std::vector<ossia::value>& t) const;
39 iterator operator()(const value_map_type& t) const;
40 iterator operator()() const;
41};
42}
43
44namespace fmt
45{
46template <typename T>
47struct formatter<std::optional<T>>
48{
49 template <typename ParseContext>
50 constexpr auto parse(ParseContext& ctx)
51 {
52 return ctx.begin();
53 }
54
55 template <typename FormatContext>
56 auto format(const std::optional<T>& n, FormatContext& ctx) const
57 {
58 if(n)
59 {
60 return fmt::format_to(ctx.out(), "{}", *n);
61 }
62 else
63 {
64 return fmt::format_to(ctx.out(), "none");
65 }
66 }
67};
68
69template <>
70struct formatter<ossia::value>
71{
72 template <typename ParseContext>
73 constexpr auto parse(ParseContext& ctx)
74 {
75 return ctx.begin();
76 }
77
78 template <typename FormatContext>
79 auto format(const ossia::value& v, FormatContext& ctx) const
80 {
81 return v.apply(ossia::value_prettyprint_visitor<FormatContext>{ctx});
82 }
83};
84
85}
86
87namespace ossia
88{
89
90template <typename FmtCtx>
91inline typename FmtCtx::iterator
92value_prettyprint_visitor<FmtCtx>::operator()(impulse) const
93{
94 return fmt::format_to(ctx.out(), "impulse");
95}
96
97template <typename FmtCtx>
98inline typename FmtCtx::iterator
99value_prettyprint_visitor<FmtCtx>::operator()(int32_t i) const
100{
101 return fmt::format_to(ctx.out(), "int: {}", i);
102}
103
104template <typename FmtCtx>
105inline typename FmtCtx::iterator
106value_prettyprint_visitor<FmtCtx>::operator()(float f) const
107{
108 return fmt::format_to(ctx.out(), "float: {:.2f}", f);
109}
110
111template <typename FmtCtx>
112inline typename FmtCtx::iterator
113value_prettyprint_visitor<FmtCtx>::operator()(bool b) const
114{
115 return fmt::format_to(ctx.out(), "bool: {}", b ? "true" : "false");
116}
117
118template <typename FmtCtx>
119inline typename FmtCtx::iterator
120value_prettyprint_visitor<FmtCtx>::operator()(char c) const
121{
122 return fmt::format_to(ctx.out(), "char: '{}'", c);
123}
124
125template <typename FmtCtx>
126inline typename FmtCtx::iterator
127value_prettyprint_visitor<FmtCtx>::operator()(std::string str) const
128{
129 boost::algorithm::replace_all(str, "\"", "\\\"");
130 return fmt::format_to(ctx.out(), "string: \"{}\"", str);
131}
132
133template <typename FmtCtx>
134inline typename FmtCtx::iterator
135value_prettyprint_visitor<FmtCtx>::operator()(vec2f vec) const
136{
137 return fmt::format_to(ctx.out(), "vec2f: [{:.2f}, {:.2f}]", vec[0], vec[1]);
138}
139
140template <typename FmtCtx>
141inline typename FmtCtx::iterator
142value_prettyprint_visitor<FmtCtx>::operator()(vec3f vec) const
143{
144 return fmt::format_to(
145 ctx.out(), "vec3f: [{:.2f}, {:.2f}, {:.2f}]", vec[0], vec[1], vec[2]);
146}
147
148template <typename FmtCtx>
149inline typename FmtCtx::iterator
150value_prettyprint_visitor<FmtCtx>::operator()(vec4f vec) const
151{
152 return fmt::format_to(
153 ctx.out(), "vec4f: [{:.2f}, {:.2f}, {:.2f}, {:.2f}]", vec[0], vec[1], vec[2],
154 vec[3]);
155}
156template <typename FmtCtx>
157inline typename FmtCtx::iterator
158value_prettyprint_visitor<FmtCtx>::operator()(const std::vector<value>& t) const
159{
160 fmt::format_to(ctx.out(), "list: [");
161 int i = 0;
162 for(auto& v : t)
163 {
164 v.apply(*this);
165 if(++i < t.size())
166 fmt::format_to(ctx.out(), ", ");
167 }
168 return fmt::format_to(ctx.out(), "]");
169}
170
171template <typename FmtCtx>
172inline typename FmtCtx::iterator
173value_prettyprint_visitor<FmtCtx>::operator()(const value_map_type& t) const
174{
175 fmt::format_to(ctx.out(), "map: {{");
176 int i = 0;
177 for(auto& v : t)
178 {
179 fmt::format_to(ctx.out(), "\"{}\": ", v.first);
180 v.second.apply(*this);
181 if(++i < t.size())
182 fmt::format_to(ctx.out(), ", ");
183 }
184 return fmt::format_to(ctx.out(), "}}");
185}
186
187template <typename FmtCtx>
188inline typename FmtCtx::iterator value_prettyprint_visitor<FmtCtx>::operator()() const
189{
190 return fmt::format_to(ctx.out(), "invalid");
191}
192
193}
194#endif
The value class.
Definition value.hpp:173
Definition git_info.h:7