2#include <ossia/detail/fmt.hpp>
3#include <ossia/detail/json.hpp>
4#include <ossia/network/dataspace/color.hpp>
5#include <ossia/network/dataspace/dataspace.hpp>
6#include <ossia/network/value/value.hpp>
8#include <oscpack/osc/OscTypes.h>
9namespace ossia::oscquery::detail
15 ossia::json_writer& writer;
17 void operator()(impulse)
const { writer.Null(); }
18 void operator()(
int v)
const { writer.Int(v); }
19 void operator()(
float v)
const { writer.Double(v); }
20 void operator()(
bool v)
const
24 void operator()(
char v)
const { write_json(writer, v); }
25 void operator()(
const std::string& v)
const
32 template <std::
size_t N>
33 void operator()(
const std::array<float, N>& t)
const
37 if(unit == ossia::rgba8_u{})
39 auto r = (uint8_t)t[0];
40 auto g = (uint8_t)t[1];
41 auto b = (uint8_t)t[2];
42 auto a = (uint8_t)t[3];
45 writer.String(fmt::format(
"#{:02X}{:02X}{:02X}{:02X}", r, g, b, a));
52 for(std::size_t i = 0; i < N; i++)
59 void operator()(
const std::vector<ossia::value>& vec)
const
62 for(
const auto& sub : vec)
69 void operator()(
const value_map_type& vec)
const { }
70 void operator()()
const {
throw std::runtime_error(
"value_to_json: no type"); }
73static inline auto from_hex(
char c)
107 constexpr auto operator[](
const std::size_t idx)
const {
return tab[idx]; }
109 static constexpr Table t;
115 const rapidjson::Value& val;
116 std::string_view& typetags;
119 bool operator()(impulse)
const
125 bool operator()(int32_t& res)
const
129 bool b = val.IsInt();
135 bool operator()(
float& res)
const
139 bool b = val.IsNumber();
141 res = (float)val.GetDouble();
145 bool operator()(
bool& res)
const
149 switch(typetags[typetag_cursor])
168 bool operator()(
char& res)
const
172 bool b = val.IsString() && val.GetStringLength() > 0;
174 res = val.GetString()[0];
178 bool operator()(std::string& res)
const
184 bool b = val.IsString();
186 res = std::string(val.GetString(), val.GetStringLength());
190 template <std::
size_t N>
191 bool operator()(std::array<float, N>& res)
const
195 if(typetags[typetag_cursor] == oscpack::TypeTagValues::RGBA_COLOR_TYPE_TAG)
198 bool b = val.IsString();
201 std::string_view hex(val.GetString(), val.GetStringLength());
204 res[0] = (from_hex(hex[1]) * 16 + from_hex(hex[2]));
205 res[1] = (from_hex(hex[3]) * 16 + from_hex(hex[4]));
206 res[2] = (from_hex(hex[5]) * 16 + from_hex(hex[6]));
207 res[3] = (from_hex(hex[7]) * 16 + from_hex(hex[8]));
216 bool b = val.IsArray();
219 auto arr = val.GetArray();
222 for(
int i = 0; i < (int)N; i++)
224 if(arr[i].IsNumber())
226 res[i] = arr[i].GetDouble();
244 handleVecElement(
const rapidjson::Value& elt, std::vector<ossia::value>& res)
const
246 if((
int)typetags.size() > typetag_cursor)
248 switch(typetags[typetag_cursor])
250 case oscpack::TypeTagValues::INFINITUM_TYPE_TAG: {
252 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
258 case oscpack::TypeTagValues::INT32_TYPE_TAG: {
260 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
266 case oscpack::TypeTagValues::FLOAT_TYPE_TAG: {
268 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
274 case oscpack::TypeTagValues::CHAR_TYPE_TAG: {
276 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
283 case oscpack::TypeTagValues::TRUE_TYPE_TAG:
284 case oscpack::TypeTagValues::FALSE_TYPE_TAG: {
286 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
293 case oscpack::TypeTagValues::STRING_TYPE_TAG:
294 case oscpack::TypeTagValues::SYMBOL_TYPE_TAG: {
296 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
299 res.emplace_back(std::move(i));
303 case oscpack::TypeTagValues::ARRAY_BEGIN_TYPE_TAG: {
307 std::array<float, 2> i;
308 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
314 else if(can_read(
"[fff]"))
317 std::array<float, 3> i;
318 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
324 else if(can_read(
"[ffff]"))
327 std::array<float, 4> i;
328 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
336 std::vector<ossia::value> i;
338 if(!json_to_value{elt, typetags, typetag_cursor, unit}(i))
342 res.emplace_back(std::move(i));
346 case oscpack::TypeTagValues::ARRAY_END_TYPE_TAG:
359 bool can_read(std::string_view sv)
const noexcept
361 const auto res = typetags.find(sv);
362 if(res == std::string_view::npos)
368 return int64_t(res) == typetag_cursor;
372 bool operator()(std::vector<ossia::value>& res)
const
375 bool b = val.IsArray();
378 auto arr = val.GetArray();
380 for(
const auto& elt : arr)
382 if(!handleVecElement(elt, res))
389 bool operator()(ossia::value_map_type& res)
const {
return false; }
390 bool operator()()
const {
throw std::runtime_error(
"json_to_value: no type"); }
393struct json_to_single_value
395 const rapidjson::Value& val;
396 std::string_view typetags;
398 bool operator()(impulse)
const {
return val.IsNull(); }
400 bool operator()(int32_t& res)
const
402 bool b = val.IsInt();
408 bool operator()(
float& res)
const
410 bool b = val.IsNumber();
412 res = (float)val.GetDouble();
416 bool operator()(
bool& res)
const
424 else if(typetags ==
"T")
434 bool b = val.IsBool();
441 bool operator()(
char& res)
const
443 bool b = val.IsString() && val.GetStringLength() > 0;
445 res = val.GetString()[0];
449 bool operator()(std::string& res)
const
454 bool b = val.IsString();
456 res = std::string(val.GetString(), val.GetStringLength());
460 template <std::
size_t N>
461 bool operator()(std::array<float, N>& res)
const
465 if(typetags[0] == oscpack::TypeTagValues::RGBA_COLOR_TYPE_TAG)
467 bool b = val.IsString();
470 std::string_view hex(val.GetString(), val.GetStringLength());
473 res[0] = (from_hex(hex[1]) * 16 + from_hex(hex[2]));
474 res[1] = (from_hex(hex[3]) * 16 + from_hex(hex[4]));
475 res[2] = (from_hex(hex[5]) * 16 + from_hex(hex[6]));
476 res[3] = (from_hex(hex[7]) * 16 + from_hex(hex[8]));
487 bool operator()(std::vector<ossia::value>& res)
const {
return false; }
488 bool operator()(ossia::value_map_type& res)
const {
return false; }
490 bool operator()()
const {
throw std::runtime_error(
"json_to_value: no type"); }
493inline ossia::value ReadValue(
const rapidjson::Value& val)
495 switch(val.GetType())
497 case rapidjson::kNumberType: {
500 else if(val.IsUint())
501 return (
int)val.GetUint();
505 return val.GetDouble();
507 case rapidjson::kFalseType:
509 case rapidjson::kTrueType:
512 case rapidjson::kArrayType: {
513 std::vector<ossia::value> tpl;
514 tpl.reserve(val.Size());
515 for(
auto& elt : val.GetArray())
517 tpl.push_back(ReadValue(elt));
522 case rapidjson::kStringType:
523 return get_string(val);
525 case rapidjson::kObjectType:
526 case rapidjson::kNullType:
528 return ossia::impulse{};
532struct json_to_value_unchecked
534 const rapidjson::Value& val;
535 void operator()(impulse)
const { }
537 void operator()(int32_t& res)
const
543 void operator()(
float& res)
const
546 res = (float)val.GetDouble();
549 void operator()(
bool& res)
const
555 void operator()(
char& res)
const
557 if(val.IsString() && val.GetStringLength() > 0)
558 res = val.GetString()[0];
561 void operator()(std::string& res)
const
567 res = get_string(val);
570 template <std::
size_t N>
571 void operator()(std::array<float, N>& res)
const
575 auto arr = val.GetArray();
578 for(
int i = 0; i < (int)N; i++)
580 res[i] = arr[i].GetDouble();
586 void operator()(std::vector<ossia::value>& res)
const
591 auto arr = val.GetArray();
592 for(
const auto& elt : arr)
594 res.push_back(ReadValue(elt));
599 void operator()(value_map_type& res)
const { }
601 void operator()()
const
603 throw std::runtime_error(
"json_to_value_unchecked: no type");
The value class.
Definition value.hpp:173
Definition dataspace.hpp:24