2#include <ossia/detail/concepts.hpp>
4#include <ossia/detail/string_view.hpp>
5#include <ossia/network/common/parameter_properties.hpp>
6#include <ossia/network/exceptions.hpp>
7#include <ossia/network/value/value_base.hpp>
9#include <boost/container/flat_map.hpp>
42OSSIA_EXPORT
ossia::value parse_pretty_value(std::string_view str);
44using value_map_element = std::pair<std::string, ossia::value>;
45struct value_map_type : std::vector<value_map_element>
53struct value_variant_type
65 ossia::vec2f m_value2;
67 ossia::vec3f m_value3;
69 ossia::vec4f m_value4;
71 ossia::impulse m_value5;
77 std::vector<ossia::value> m_value8;
79 value_map_type m_value9;
101 Npos = std::numeric_limits<int8_t>::max()
104 void destruct_impl();
109 static const constexpr auto npos = Npos;
112 operator bool()
const;
113 template <
typename T>
114 const T* target()
const;
115 template <
typename T>
117 template <
typename T>
118 const T& get()
const;
119 template <
typename T>
122 template <
typename T>
125 value_variant_type();
126 ~value_variant_type();
127 value_variant_type(
float v);
128 value_variant_type(int32_t v);
129 value_variant_type(ossia::vec2f v);
130 value_variant_type(ossia::vec3f v);
131 value_variant_type(ossia::vec4f v);
132 value_variant_type(ossia::impulse v);
133 value_variant_type(
bool v);
134 value_variant_type(
const std::string& v);
135 value_variant_type(std::string&& v);
137 value_variant_type(
const std::vector<ossia::value>& v);
138 value_variant_type(std::vector<ossia::value>&& v)
noexcept;
139 value_variant_type(
const value_map_type& v);
140 value_variant_type(value_map_type&& v);
141 value_variant_type(
const value_variant_type& other);
142 value_variant_type(value_variant_type&& other)
noexcept;
143 value_variant_type& operator=(
const value_variant_type& other);
144 value_variant_type& operator=(value_variant_type&& other)
noexcept;
146using value_variant = value_variant_type;
175 using value_type = value_variant;
180 template <
typename T>
182 value(
const char* txt)
183 : v{std::string(txt)}
187 OSSIA_INLINE
value(impulse val) noexcept
192 OSSIA_INLINE
value(
bool val) noexcept
196 OSSIA_INLINE
value(
int val) noexcept
200 OSSIA_INLINE
value(
long val) noexcept
204 OSSIA_INLINE
value(
float val) noexcept
208 OSSIA_INLINE
value(
double val) noexcept
212 OSSIA_INLINE
value(
const std::string& val) noexcept
217 OSSIA_INLINE
value(
const std::vector<ossia::value>& val) noexcept
222 OSSIA_INLINE
value(
const value_map_type& val) noexcept
226 OSSIA_INLINE
value(std::array<float, 2> val) noexcept
230 OSSIA_INLINE
value(std::array<float, 3> val) noexcept
234 OSSIA_INLINE
value(std::array<float, 4> val) noexcept
239 OSSIA_INLINE
value(std::string&& val) noexcept
243 OSSIA_INLINE
value(std::vector<ossia::value>&& val) noexcept
248 OSSIA_INLINE
value(value_map_type&& val) noexcept
253 template <
typename T,
typename... Args>
254 OSSIA_INLINE
value(detail::dummy<T> t, Args&&... args) noexcept
255 : v(T(std::forward<Args>(args)...))
260 template <
typename T,
typename... Args>
261 OSSIA_INLINE
static ossia::value make(Args&&... args)
noexcept
263 return ossia::value{detail::dummy<T>{}, std::forward<Args>(args)...};
267 OSSIA_INLINE
value& operator=(ossia::impulse val)
noexcept
272 OSSIA_INLINE
value& operator=(
const char* c)
noexcept
277 OSSIA_INLINE
value& operator=(
bool val)
noexcept
282 OSSIA_INLINE
value& operator=(int32_t val)
noexcept
287 OSSIA_INLINE
value& operator=(
float val)
noexcept
292 OSSIA_INLINE
value& operator=(
const std::string& val)
noexcept
297 OSSIA_INLINE
value& operator=(
const std::vector<ossia::value>& val)
noexcept
302 OSSIA_INLINE
value& operator=(
const value_map_type& val)
noexcept
307 OSSIA_INLINE
value& operator=(std::array<float, 2> val)
noexcept
312 OSSIA_INLINE
value& operator=(std::array<float, 3> val)
noexcept
317 OSSIA_INLINE
value& operator=(std::array<float, 4> val)
noexcept
323 OSSIA_INLINE
value& operator=(std::string&& val)
noexcept
328 OSSIA_INLINE
value& operator=(std::vector<ossia::value>&& val)
noexcept
333 OSSIA_INLINE
value& operator=(value_map_type&& val)
noexcept
339 OSSIA_INLINE
value()
noexcept { }
346 : v(std::move(other.v))
356 v = std::move(other.v);
360 operator value_type&() {
return v; }
361 operator const value_type&()
const {
return v; }
364 template <
typename T>
365 OSSIA_INLINE
const T& get()
const
370 template <
typename T>
371 OSSIA_INLINE T& get()
373 return v.get<
typename std::remove_const<T>::type>();
376 template <
typename T>
377 OSSIA_INLINE
const T* target()
const noexcept
379 using type =
typename std::remove_const<T>::type;
380 static_assert(!std::is_same<type, ossia::value>::value,
"");
381 return v.target<type>();
384 template <
typename T>
385 OSSIA_INLINE T* target()
noexcept
387 using type =
typename std::remove_const<T>::type;
388 static_assert(!std::is_same<type, ossia::value>::value,
"");
389 return v.target<type>();
403 bool valid()
const noexcept {
return bool(v); }
405 void reset()
noexcept { v = value_type{}; }
407 template <
typename Visitor>
408 auto apply(Visitor&& vis) ->
decltype(
auto);
410 template <
typename Visitor>
411 auto apply(Visitor&& vis)
const ->
decltype(
auto);
413 friend OSSIA_EXPORT
bool operator==(
const value& lhs,
const value& rhs);
414 friend OSSIA_EXPORT
bool operator!=(
const value& lhs,
const value& rhs);
415 friend OSSIA_EXPORT
bool operator>(
const value& lhs,
const value& rhs);
416 friend OSSIA_EXPORT
bool operator>=(
const value& lhs,
const value& rhs);
417 friend OSSIA_EXPORT
bool operator<(
const value& lhs,
const value& rhs);
418 friend OSSIA_EXPORT
bool operator<=(
const value& lhs,
const value& rhs);
439 return ossia::impulse{};
444 case val_type::FLOAT:
447 return value{std::string{}};
449 return value{std::vector<ossia::value>{}};
451 return value{value_map_type{}};
463 ossia_do_throw(invalid_value_type_error,
"init_value: Invalid type");
486#include <ossia/network/value/value_variant_impl.hpp>
488#if defined(OSSIA_HAS_CONCEPTS)
490concept ossia_visitor =
requires(T t) {
492 t(std::declval<float&>());
493 t(std::declval<int32_t&>());
494 t(std::declval<ossia::vec2f&>());
495 t(std::declval<ossia::vec3f&>());
496 t(std::declval<ossia::vec4f&>());
497 t(std::declval<ossia::impulse&>());
498 t(std::declval<bool&>());
499 t(std::declval<std::string&>());
500 t(std::declval<std::vector<ossia::value>&>());
501 t(std::declval<value_map_type&>());
505template <
typename Visitor>
506inline auto value::apply(Visitor&& vis) ->
decltype(
auto)
508#if defined(OSSIA_HAS_CONCEPTS)
509 static_assert(ossia_visitor<Visitor>,
"Not a valid ossia::value visitor");
511 return ossia::apply(std::forward<Visitor>(vis), this->v);
514template <
typename Visitor>
515inline auto value::apply(Visitor&& vis)
const ->
decltype(
auto)
517#if defined(OSSIA_HAS_CONCEPTS)
518 static_assert(ossia_visitor<Visitor>,
"Not a valid ossia::value visitor");
520 return ossia::apply(std::forward<Visitor>(vis), this->v);
526OSSIA_EXPORT std::ostream&
527operator<<(std::ostream&,
const std::vector<std::string>& list);
528OSSIA_EXPORT std::istream& operator>>(std::istream&, std::vector<std::string>& list);
The value class.
Definition value.hpp:173
val_type
Enum to represent the types that a value can take.
Definition parameter_properties.hpp:16
OSSIA_EXPORT std::string value_to_pretty_string(const ossia::value &val)
getValueAsString Returns a string corresponding to the value
val_type matching_type(const unit_t &u)
underlying_type Get the implementation type of an unit
Definition dataspace_visitors.cpp:198
ossia::small_vector< int32_t, 2 > destination_index
Definition destination_index.hpp:40
std::string to_pretty_string(const value_with_unit &v)
to_pretty_string Pretty string of unit & value
Definition dataspace_visitors.cpp:242
ossia::value get_value_at_index(const ossia::value &val, const ossia::destination_index &idx)
get_value_at_index
Definition value.cpp:596