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>
9#include <boost/algorithm/string/replace.hpp>
11#include <fmt/ranges.h>
13#if FMT_VERSION >= 100000
15template <
typename T>
class is_container_adaptor_like<boost::container::flat_set<T>>
16 :
public std::false_type {
24template <
typename FmtCtx>
25struct value_prettyprint_visitor
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;
47struct formatter<std::optional<T>>
49 template <
typename ParseContext>
50 constexpr auto parse(ParseContext& ctx)
55 template <
typename FormatContext>
56 auto format(
const std::optional<T>& n, FormatContext& ctx)
const
60 return fmt::format_to(ctx.out(),
"{}", *n);
64 return fmt::format_to(ctx.out(),
"none");
70struct formatter<
ossia::value>
72 template <
typename ParseContext>
73 constexpr auto parse(ParseContext& ctx)
78 template <
typename FormatContext>
79 auto format(
const ossia::value& v, FormatContext& ctx)
const
81 return v.apply(ossia::value_prettyprint_visitor<FormatContext>{ctx});
90template <
typename FmtCtx>
91inline typename FmtCtx::iterator
92value_prettyprint_visitor<FmtCtx>::operator()(impulse)
const
94 return fmt::format_to(ctx.out(),
"impulse");
97template <
typename FmtCtx>
98inline typename FmtCtx::iterator
99value_prettyprint_visitor<FmtCtx>::operator()(int32_t i)
const
101 return fmt::format_to(ctx.out(),
"int: {}", i);
104template <
typename FmtCtx>
105inline typename FmtCtx::iterator
106value_prettyprint_visitor<FmtCtx>::operator()(
float f)
const
108 return fmt::format_to(ctx.out(),
"float: {:.2f}", f);
111template <
typename FmtCtx>
112inline typename FmtCtx::iterator
113value_prettyprint_visitor<FmtCtx>::operator()(
bool b)
const
115 return fmt::format_to(ctx.out(),
"bool: {}", b ?
"true" :
"false");
118template <
typename FmtCtx>
119inline typename FmtCtx::iterator
120value_prettyprint_visitor<FmtCtx>::operator()(
char c)
const
122 return fmt::format_to(ctx.out(),
"char: '{}'", c);
125template <
typename FmtCtx>
126inline typename FmtCtx::iterator
127value_prettyprint_visitor<FmtCtx>::operator()(std::string str)
const
129 boost::algorithm::replace_all(str,
"\"",
"\\\"");
130 return fmt::format_to(ctx.out(),
"string: \"{}\"", str);
133template <
typename FmtCtx>
134inline typename FmtCtx::iterator
135value_prettyprint_visitor<FmtCtx>::operator()(vec2f vec)
const
137 return fmt::format_to(ctx.out(),
"vec2f: [{:.2f}, {:.2f}]", vec[0], vec[1]);
140template <
typename FmtCtx>
141inline typename FmtCtx::iterator
142value_prettyprint_visitor<FmtCtx>::operator()(vec3f vec)
const
144 return fmt::format_to(
145 ctx.out(),
"vec3f: [{:.2f}, {:.2f}, {:.2f}]", vec[0], vec[1], vec[2]);
148template <
typename FmtCtx>
149inline typename FmtCtx::iterator
150value_prettyprint_visitor<FmtCtx>::operator()(vec4f vec)
const
152 return fmt::format_to(
153 ctx.out(),
"vec4f: [{:.2f}, {:.2f}, {:.2f}, {:.2f}]", vec[0], vec[1], vec[2],
156template <
typename FmtCtx>
157inline typename FmtCtx::iterator
158value_prettyprint_visitor<FmtCtx>::operator()(
const std::vector<value>& t)
const
160 fmt::format_to(ctx.out(),
"list: [");
166 fmt::format_to(ctx.out(),
", ");
168 return fmt::format_to(ctx.out(),
"]");
171template <
typename FmtCtx>
172inline typename FmtCtx::iterator
173value_prettyprint_visitor<FmtCtx>::operator()(
const value_map_type& t)
const
175 fmt::format_to(ctx.out(),
"map: {{");
179 fmt::format_to(ctx.out(),
"\"{}\": ", v.first);
180 v.second.apply(*
this);
182 fmt::format_to(ctx.out(),
", ");
184 return fmt::format_to(ctx.out(),
"}}");
187template <
typename FmtCtx>
188inline typename FmtCtx::iterator value_prettyprint_visitor<FmtCtx>::operator()()
const
190 return fmt::format_to(ctx.out(),
"invalid");
The value class.
Definition value.hpp:173