OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
node_attributes.hpp
Go to the documentation of this file.
1#pragma once
2#include <ossia/detail/config.hpp>
3
5#include <ossia/detail/hash_map.hpp>
6#include <ossia/detail/optional.hpp>
8#include <ossia/network/base/parameter.hpp>
9#include <ossia/network/common/extended_types.hpp>
10#include <ossia/network/common/parameter_properties.hpp>
11#include <ossia/network/value/value.hpp>
12
13#include <string>
14#include <vector>
15
27namespace ossia
28{
29namespace net
30{
31class node_base;
32struct parameter_data;
33
35struct OSSIA_EXPORT instance_bounds
36{
37 instance_bounds() = default;
38 instance_bounds(const instance_bounds&) = default;
40 instance_bounds& operator=(const instance_bounds&) = default;
41 instance_bounds& operator=(instance_bounds&&) = default;
42
43 instance_bounds(int32_t min, int32_t max)
44 : min_instances{min}
45 , max_instances{max}
46 {
47 }
48
49 int32_t min_instances = 0;
50 int32_t max_instances = std::numeric_limits<int32_t>::max();
51
52 friend bool operator==(const instance_bounds& lhs, const instance_bounds& rhs)
53 {
54 return lhs.min_instances == rhs.min_instances
55 && lhs.max_instances == rhs.max_instances;
56 }
57 friend bool operator!=(const instance_bounds& lhs, const instance_bounds& rhs)
58 {
59 return !(lhs == rhs);
60 }
61
62 // TODO, currently only here for ossia::any
63 friend std::ostream& operator<<(std::ostream& os, const instance_bounds& c)
64 {
65 return os;
66 }
67 friend std::istream& operator>>(std::istream& is, instance_bounds& c) { return is; }
68};
69
71using tags = std::vector<std::string>;
72
74using description = std::string;
75
77using priority = float;
78
80using refresh_rate = int32_t;
81
83using recall_safe = bool;
84
86using value_step_size = double;
87
90
92using critical = bool;
93
95using disabled = bool;
96
98using zombie = bool;
99
101using hidden = bool;
102
104using muted = bool;
105
107using app_name = std::string;
108
110using app_version = std::string;
111
113using app_creator = std::string;
114
115OSSIA_EXPORT std::string_view text_instance_bounds();
116OSSIA_EXPORT std::optional<instance_bounds>
117get_instance_bounds(const extended_attributes& n);
118OSSIA_EXPORT void
119set_instance_bounds(extended_attributes& n, std::optional<instance_bounds>);
120OSSIA_EXPORT void
121set_instance_bounds(ossia::net::node_base& n, std::optional<instance_bounds>);
122
123OSSIA_EXPORT std::string_view text_tags();
124OSSIA_EXPORT std::optional<tags> get_tags(const extended_attributes& n);
125OSSIA_EXPORT void set_tags(extended_attributes& n, std::optional<tags> v);
126OSSIA_EXPORT void set_tags(ossia::net::node_base& n, std::optional<tags> v);
127
128OSSIA_EXPORT std::string_view text_description();
129OSSIA_EXPORT std::optional<description> get_description(const extended_attributes& n);
130OSSIA_EXPORT void set_description(extended_attributes& n, std::optional<description> v);
131OSSIA_EXPORT void set_description(extended_attributes& n, const char* v);
132OSSIA_EXPORT void
133set_description(ossia::net::node_base& n, std::optional<description> v);
134OSSIA_EXPORT void set_description(ossia::net::node_base& n, const char* v);
135
136OSSIA_EXPORT std::string_view text_priority();
137OSSIA_EXPORT std::optional<priority> get_priority(const extended_attributes& n);
138OSSIA_EXPORT void set_priority(extended_attributes& n, std::optional<priority> v);
139OSSIA_EXPORT void set_priority(ossia::net::node_base& n, std::optional<priority> v);
140
141OSSIA_EXPORT std::string_view text_refresh_rate();
142OSSIA_EXPORT std::optional<refresh_rate> get_refresh_rate(const extended_attributes& n);
143OSSIA_EXPORT void
144set_refresh_rate(extended_attributes& n, std::optional<refresh_rate> v);
145OSSIA_EXPORT void
146set_refresh_rate(ossia::net::node_base& n, std::optional<refresh_rate> v);
147
148OSSIA_EXPORT std::string_view text_value_step_size();
149OSSIA_EXPORT std::optional<value_step_size>
150get_value_step_size(const extended_attributes& n);
151OSSIA_EXPORT void
152set_value_step_size(extended_attributes& n, std::optional<value_step_size> v);
153OSSIA_EXPORT void
154set_value_step_size(ossia::net::node_base& n, std::optional<value_step_size> v);
155
156OSSIA_EXPORT std::string_view text_zombie();
157OSSIA_EXPORT zombie get_zombie(const extended_attributes& n);
158OSSIA_EXPORT void set_zombie(extended_attributes& n, zombie v);
159OSSIA_EXPORT void set_zombie(ossia::net::node_base& n, zombie v);
160
161OSSIA_EXPORT std::string_view text_hidden();
162OSSIA_EXPORT hidden get_hidden(const extended_attributes& n);
163OSSIA_EXPORT void set_hidden(extended_attributes& n, hidden v);
164OSSIA_EXPORT void set_hidden(ossia::net::node_base& n, hidden v);
165
166OSSIA_EXPORT std::string_view text_recall_safe();
167OSSIA_EXPORT recall_safe get_recall_safe(const extended_attributes& n);
168OSSIA_EXPORT void set_recall_safe(extended_attributes& n, recall_safe v);
169OSSIA_EXPORT void set_recall_safe(ossia::net::node_base& n, recall_safe v);
170
171OSSIA_EXPORT std::string_view text_extended_type();
172OSSIA_EXPORT std::optional<extended_type>
173get_extended_type(const ossia::net::node_base& n);
174OSSIA_EXPORT std::optional<extended_type>
175get_extended_type(const ossia::net::parameter_base& n);
176OSSIA_EXPORT std::optional<extended_type>
177get_extended_type(const extended_attributes& n);
178OSSIA_EXPORT void
179set_extended_type(extended_attributes& n, std::optional<extended_type> v);
180OSSIA_EXPORT void
181set_extended_type(ossia::net::node_base& n, std::optional<extended_type> v);
182
183OSSIA_EXPORT std::string_view text_app_name();
184OSSIA_EXPORT std::optional<app_name> get_app_name(const extended_attributes& n);
185OSSIA_EXPORT void set_app_name(extended_attributes& n, std::optional<app_name> v);
186OSSIA_EXPORT void set_app_name(ossia::net::node_base& n, std::optional<app_name> v);
187OSSIA_EXPORT void set_app_name(extended_attributes& n, const char* v); // to please clang
188OSSIA_EXPORT void set_app_name(ossia::net::node_base& n, const char* v);
189
190OSSIA_EXPORT std::string_view text_app_version();
191OSSIA_EXPORT std::optional<app_version> get_app_version(const extended_attributes& n);
192OSSIA_EXPORT void set_app_version(extended_attributes& n, std::optional<app_version> v);
193OSSIA_EXPORT void
194set_app_version(ossia::net::node_base& n, std::optional<app_version> v);
195OSSIA_EXPORT void
196set_app_version(extended_attributes& n, const char* v); // to please clang
197OSSIA_EXPORT void set_app_version(ossia::net::node_base& n, const char* v);
198
199OSSIA_EXPORT std::string_view text_app_creator();
200OSSIA_EXPORT std::optional<app_creator> get_app_creator(const extended_attributes& n);
201OSSIA_EXPORT void set_app_creator(extended_attributes& n, std::optional<app_creator> v);
202OSSIA_EXPORT void
203set_app_creator(ossia::net::node_base& n, std::optional<app_creator> v);
204OSSIA_EXPORT void
205set_app_creator(extended_attributes& n, const char* v); // to please clang
206OSSIA_EXPORT void set_app_creator(ossia::net::node_base& n, const char* v);
207
208OSSIA_EXPORT std::string_view text_default_value();
209OSSIA_EXPORT std::optional<ossia::value> get_default_value(const extended_attributes& n);
210OSSIA_EXPORT void set_default_value(extended_attributes& n, const ossia::value& v);
211OSSIA_EXPORT void set_default_value(extended_attributes& n, ossia::value&& v);
212OSSIA_EXPORT void set_default_value(extended_attributes& n, int v);
213OSSIA_EXPORT void set_default_value(extended_attributes& n, long v);
214OSSIA_EXPORT void set_default_value(extended_attributes& n, bool v);
215OSSIA_EXPORT void set_default_value(extended_attributes& n, char v);
216OSSIA_EXPORT void set_default_value(extended_attributes& n, float v);
217OSSIA_EXPORT void set_default_value(extended_attributes& n, double v);
218OSSIA_EXPORT void set_default_value(extended_attributes& n, const char* v);
219OSSIA_EXPORT void set_default_value(extended_attributes& n, std::nullopt_t v);
220OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, const ossia::value& v);
221OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, ossia::value&& v);
222OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, int v);
223OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, long v);
224OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, bool v);
225OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, char v);
226OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, float v);
227OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, double v);
228OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, const char* v);
229OSSIA_EXPORT void set_default_value(ossia::net::node_base& n, std::nullopt_t v);
230
231// These attributes require a parameter
232OSSIA_EXPORT std::string_view text_value();
233OSSIA_EXPORT value clone_value(const ossia::net::node_base& n);
234OSSIA_EXPORT void set_value(ossia::net::node_base& n, value v);
235OSSIA_EXPORT void set_value(ossia::net::parameter_data& n, value v);
236
237OSSIA_EXPORT std::string_view text_value_type();
238OSSIA_EXPORT std::optional<val_type> get_value_type(const ossia::net::node_base& n);
239OSSIA_EXPORT void set_value_type(ossia::net::node_base& n, val_type v);
240
241OSSIA_EXPORT std::string_view text_domain();
242OSSIA_EXPORT domain get_domain(const ossia::net::node_base& n);
243OSSIA_EXPORT void set_domain(ossia::net::node_base& n, const domain& v);
244OSSIA_EXPORT void set_domain(ossia::net::parameter_data& n, const domain& v);
245
246OSSIA_EXPORT std::string_view text_access_mode();
247OSSIA_EXPORT std::optional<access_mode> get_access_mode(const ossia::net::node_base& n);
248OSSIA_EXPORT void set_access_mode(ossia::net::node_base& n, access_mode v);
249OSSIA_EXPORT void set_access_mode(ossia::net::parameter_data& n, access_mode v);
250
251OSSIA_EXPORT std::string_view text_bounding_mode();
252OSSIA_EXPORT std::optional<bounding_mode>
253get_bounding_mode(const ossia::net::node_base& n);
254OSSIA_EXPORT void set_bounding_mode(ossia::net::node_base& n, bounding_mode v);
255OSSIA_EXPORT void set_bounding_mode(ossia::net::parameter_data& n, bounding_mode v);
256
257OSSIA_EXPORT std::string_view text_repetition_filter();
258OSSIA_EXPORT repetition_filter get_repetition_filter(const ossia::net::node_base& n);
259OSSIA_EXPORT void set_repetition_filter(ossia::net::node_base& n, repetition_filter v);
260OSSIA_EXPORT void
261set_repetition_filter(ossia::net::parameter_data& n, repetition_filter v);
262
263OSSIA_EXPORT std::string_view text_unit();
264OSSIA_EXPORT unit_t get_unit(const ossia::net::node_base& n);
265OSSIA_EXPORT void set_unit(ossia::net::node_base& n, unit_t v);
266OSSIA_EXPORT void set_unit(ossia::net::parameter_data& n, unit_t v);
267
268OSSIA_EXPORT std::string_view text_muted();
269OSSIA_EXPORT muted get_muted(const ossia::net::node_base& n);
270OSSIA_EXPORT void set_muted(ossia::net::node_base& n, muted v);
271OSSIA_EXPORT void set_muted(ossia::net::parameter_data& n, muted v);
272
273OSSIA_EXPORT std::string_view text_disabled();
274OSSIA_EXPORT disabled get_disabled(const ossia::net::node_base& n);
275OSSIA_EXPORT void set_disabled(ossia::net::node_base& n, disabled v);
276OSSIA_EXPORT void set_disabled(ossia::net::parameter_data& n, disabled v);
277
278OSSIA_EXPORT std::string_view text_critical();
279OSSIA_EXPORT critical get_critical(const ossia::net::node_base& n);
280OSSIA_EXPORT void set_critical(ossia::net::node_base& n, critical v);
281OSSIA_EXPORT void set_critical(ossia::net::parameter_data& n, critical v);
282
283template <typename T>
284struct is_parameter_attribute : public std::false_type
285{
286};
287// Some macros to have minimal reflection facilities...
288#define OSSIA_ATTRIBUTE(Type, Name) \
289 struct OSSIA_EXPORT Name##_attribute \
290 { \
291 using type = Type; \
292 static auto text() \
293 { \
294 return ossia::net::text_##Name(); \
295 } \
296 template <typename... Args> \
297 static auto getter(Args&&... args) \
298 { \
299 return ossia::net::get_##Name(std::forward<Args>(args)...); \
300 } \
301 template <typename... Args> \
302 static auto setter(Args&&... args) \
303 { \
304 return ossia::net::set_##Name(std::forward<Args>(args)...); \
305 } \
306 };
307
308#define OSSIA_PARAM_ATTRIBUTE(Type, Name) \
309 OSSIA_ATTRIBUTE(Type, Name) \
310 template <> \
311 struct is_parameter_attribute<Name##_attribute> : public std::true_type \
312 { \
313 };
314
315#define OSSIA_ATTRIBUTE_2(Type, Name, Text, Get, Set) \
316 struct OSSIA_EXPORT Name##_attribute \
317 { \
318 using type = Type; \
319 static auto text() \
320 { \
321 return Text(); \
322 } \
323 template <typename... Args> \
324 static auto getter(Args&&... args) \
325 { \
326 return Get(std::forward<Args>(args)...); \
327 } \
328 template <typename... Args> \
329 static auto setter(Args&&... args) \
330 { \
331 return Set(std::forward<Args>(args)...); \
332 } \
333 };
334
335// Attributes of a parameter
336OSSIA_ATTRIBUTE_2(
337 ossia::value, value, ossia::net::text_value, ossia::net::clone_value,
338 ossia::net::push_value)
339
340template <>
341struct is_parameter_attribute<value_attribute> : public std::true_type
342{
343};
344
345OSSIA_PARAM_ATTRIBUTE(ossia::val_type, value_type)
346OSSIA_PARAM_ATTRIBUTE(ossia::domain, domain)
347OSSIA_PARAM_ATTRIBUTE(ossia::access_mode, access_mode)
348OSSIA_PARAM_ATTRIBUTE(ossia::bounding_mode, bounding_mode)
349OSSIA_PARAM_ATTRIBUTE(ossia::unit_t, unit)
350OSSIA_PARAM_ATTRIBUTE(ossia::value, default_value)
351OSSIA_PARAM_ATTRIBUTE(ossia::net::disabled, disabled)
352OSSIA_PARAM_ATTRIBUTE(ossia::net::muted, muted)
353OSSIA_PARAM_ATTRIBUTE(ossia::net::critical, critical)
354
355// Metadata attributes
356OSSIA_ATTRIBUTE(ossia::net::tags, tags)
357OSSIA_ATTRIBUTE(ossia::net::description, description)
358OSSIA_ATTRIBUTE(ossia::net::refresh_rate, refresh_rate)
359OSSIA_ATTRIBUTE(ossia::net::priority, priority)
360OSSIA_ATTRIBUTE(ossia::net::value_step_size, value_step_size)
361OSSIA_ATTRIBUTE(ossia::net::instance_bounds, instance_bounds)
362OSSIA_ATTRIBUTE(ossia::extended_type, extended_type)
364OSSIA_ATTRIBUTE(ossia::net::app_name, app_name)
365OSSIA_ATTRIBUTE(ossia::net::app_creator, app_creator)
366OSSIA_ATTRIBUTE(ossia::net::app_version, app_version)
367OSSIA_ATTRIBUTE(ossia::net::hidden, hidden)
368
369template <typename T, typename U>
370bool compare_optional(const T& t, const U& u)
371{
372 return !t || (t && *t != u);
373}
374inline bool compare_optional(const ossia::value& t, const ossia::value& u)
375{
376 return t != u;
377}
378template <typename U>
379inline bool compare_optional(const ossia::domain& t, const U& u)
380{
381 return t != u;
382}
383template <typename U>
384inline bool compare_optional(const ossia::unit_t& t, const U& u)
385{
386 return t != u;
387}
388inline bool compare_optional(bool t, bool u)
389{
390 return t != u;
391}
392inline bool compare_optional(ossia::repetition_filter t, ossia::repetition_filter u)
393{
394 return t != u;
395}
396
397inline bool valid(const ossia::value& v)
398{
399 return v.valid();
400}
401template <typename T>
402inline bool valid(const T& v)
403{
404 return bool(v);
405}
406}
407}
The node_base class.
Definition node.hpp:48
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The value class.
Definition value.hpp:173
Definition git_info.h:7
OSSIA_INLINE constexpr auto min(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
min function tailored for values
Definition math.hpp:125
val_type
Enum to represent the types that a value can take.
Definition parameter_properties.hpp:16
repetition_filter
If enabled, sending twice the same value will only send it once by network.
Definition parameter_properties.hpp:70
bounding_mode
Address behaviors at crossing domain boundaries.
Definition parameter_properties.hpp:56
std::string extended_type
How a low-level type should be interpreted.
Definition complex_type.hpp:9
access_mode
Address behaviors at crossing domain boundaries time.
Definition parameter_properties.hpp:46
OSSIA_INLINE constexpr auto max(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
max function tailored for values
Definition math.hpp:96
std::string description
Human-readable description of a node.
Definition node_attributes.hpp:74
std::string app_creator
Device attribute : the creator of the software managed by this device.
Definition node_attributes.hpp:113
bool disabled
A disabled node.
Definition node_attributes.hpp:95
bool recall_safe
Should the value be untouched on preset loading.
Definition node_attributes.hpp:83
int32_t refresh_rate
How often a node is refreshed.
Definition node_attributes.hpp:80
bool critical
Means that the node is very important, e.g. a "play" message.
Definition node_attributes.hpp:92
bool hidden
Means that the node should not be advertised by default.
Definition node_attributes.hpp:101
std::string app_name
Device attribute : the name of the software managed by this device.
Definition node_attributes.hpp:107
double value_step_size
Granularity of the space.
Definition node_attributes.hpp:86
std::vector< std::string > tags
Tags applied to a node: {"model", "interesting", ...}.
Definition node_attributes.hpp:71
float priority
When a node must be sent before other.
Definition node_attributes.hpp:77
bool zombie
Means that the node is not present on the "host" device.
Definition node_attributes.hpp:98
std::string app_version
Device attribute : the version of the software managed by this device.
Definition node_attributes.hpp:110
bool muted
Means that the node should not send / receives network messages.
Definition node_attributes.hpp:104
domain A domain of values
Definition domain_base.hpp:23
How many instances a node can have.
Definition node_attributes.hpp:36
The data that can be found inside a parameter.
Definition parameter_data.hpp:21
Definition dataspace.hpp:24