OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
attributes.hpp
Go to the documentation of this file.
1#pragma once
2#include <ossia/detail/string_view.hpp>
3#include <ossia/network/base/node.hpp>
5#include <ossia/network/base/parameter.hpp>
6#include <ossia/network/common/parameter_properties.hpp>
7#include <ossia/network/oscquery/detail/typetag.hpp>
8
9#include <boost/mp11/list.hpp>
10
17namespace ossia::oscquery
18{
19namespace detail
20{
21
22// Attributes
23constexpr auto name()
24{
25 return "NAME";
26}
27constexpr auto osc_ip()
28{
29 return "OSC_IP";
30}
31constexpr auto osc_port()
32{
33 return "OSC_PORT";
34}
35constexpr auto ws_ip()
36{
37 return "WS_IP";
38}
39constexpr auto ws_port()
40{
41 return "WS_PORT";
42}
43constexpr auto transport()
44{
45 return "TRANSPORT";
46}
47constexpr auto attribute_full_path()
48{
49 return "FULL_PATH";
50}
51
52constexpr auto attribute_typetag()
53{
54 return "TYPE";
55}
56constexpr auto contents()
57{
58 return "CONTENTS";
59}
60
61constexpr auto attribute_value()
62{
63 return "VALUE";
64}
65constexpr auto attribute_range()
66{
67 return "RANGE";
68}
69constexpr auto attribute_clipmode()
70{
71 return "CLIPMODE";
72}
73constexpr auto attribute_accessmode()
74{
75 return "ACCESS";
76}
77constexpr auto attribute_description()
78{
79 return "DESCRIPTION";
80}
81constexpr auto attribute_tags()
82{
83 return "TAGS";
84}
85
86// Not part of the OSCQuery spec :
87constexpr auto attribute_unit()
88{
89 return "UNIT";
90}
91constexpr auto attribute_refresh_rate()
92{
93 return "REFRESH_RATE";
94}
95constexpr auto attribute_priority()
96{
97 return "PRIORITY";
98}
99constexpr auto attribute_step_size()
100{
101 return "STEP_SIZE";
102}
103constexpr auto attribute_instance_bounds()
104{
105 return "INSTANCE_BOUNDS";
106}
107constexpr auto attribute_critical()
108{
109 return "CRITICAL";
110}
111constexpr auto attribute_hidden()
112{
113 return "HIDDEN";
114}
115constexpr auto attribute_disabled()
116{
117 return "DISABLED";
118}
119constexpr auto attribute_extended_type()
120{
121 return "EXTENDED_TYPE";
122}
123constexpr auto attribute_repetition_filter()
124{
125 return "REPETITION_FILTER";
126}
127constexpr auto attribute_default_value()
128{
129 return "DEFAULT_VALUE";
130}
131constexpr auto attribute_app_name()
132{
133 return "APP_NAME";
134}
135constexpr auto attribute_app_version()
136{
137 return "APP_VERSION";
138}
139constexpr auto attribute_app_creator()
140{
141 return "APP_CREATOR";
142}
143
144// Commands
145constexpr auto command()
146{
147 return "COMMAND";
148}
149constexpr auto data()
150{
151 return "DATA";
152}
153
154constexpr auto path_added()
155{
156 return "PATH_ADDED";
157}
158constexpr auto path_removed()
159{
160 return "PATH_REMOVED";
161}
162constexpr auto path_renamed()
163{
164 return "PATH_RENAMED";
165}
166constexpr auto path_changed()
167{
168 return "PATH_CHANGED";
169}
170constexpr auto attributes_changed()
171{
172 return "ATTRIBUTES_CHANGED";
173}
174
175// Queries
176constexpr auto add_node()
177{
178 constexpr_return(ossia::make_string_view("ADD_NODE"));
179}
180constexpr auto remove_node()
181{
182 constexpr_return(ossia::make_string_view("REMOVE_NODE"));
183}
184constexpr auto rename_node()
185{
186 constexpr_return(ossia::make_string_view("RENAME_NODE"));
187}
188constexpr auto node_name()
189{
190 constexpr_return(ossia::make_string_view("NAME"));
191}
192constexpr auto start_osc_streaming()
193{
194 constexpr_return(ossia::make_string_view("START_OSC_STREAMING"));
195}
196constexpr auto local_server_port()
197{
198 constexpr_return(ossia::make_string_view("LOCAL_SERVER_PORT"));
199}
200constexpr auto local_sender_port()
201{
202 constexpr_return(ossia::make_string_view("LOCAL_SENDER_PORT"));
203}
204constexpr auto listen()
205{
206 constexpr_return(ossia::make_string_view("LISTEN"));
207}
208constexpr auto ignore()
209{
210 constexpr_return(ossia::make_string_view("IGNORE"));
211}
212constexpr auto text_true()
213{
214 constexpr_return(ossia::make_string_view("TRUE"));
215}
216constexpr auto text_false()
217{
218 constexpr_return(ossia::make_string_view("FALSE"));
219}
220constexpr auto query_value()
221{
222 constexpr_return(ossia::make_string_view("?VALUE"));
223}
224
225struct OSSIA_EXPORT full_path_attribute
226{
227 using type = std::string;
228 static auto text() { return detail::attribute_full_path(); }
229 static auto getter(const ossia::net::node_base& n) { return n.osc_address(); }
230};
231
232struct OSSIA_EXPORT typetag_attribute
233{
234 using type = std::string;
235 static auto text() { return ossia::net::text_value_type(); }
236 static auto getter(const ossia::net::node_base& n)
237 {
238 return oscquery::get_osc_typetag(n);
239 }
240 static auto setter(ossia::net::node_base& n, const std::string& t)
241 {
242 return oscquery::set_osc_typetag(n, t);
243 }
244};
245
246template <typename Attr>
247struct metadata;
248
249// oscquery-specific
250template <>
251struct metadata<full_path_attribute>
252{
253 static constexpr auto key() { return detail::attribute_full_path(); }
254};
255template <>
256struct metadata<typetag_attribute>
257{
258 static constexpr auto key() { return detail::attribute_typetag(); }
259};
260
261// common attributes
262template <>
263struct metadata<net::value_attribute>
264{
265 static constexpr auto key() { return detail::attribute_value(); }
266};
267template <>
268struct metadata<net::domain_attribute>
269{
270 static constexpr auto key() { return detail::attribute_range(); }
271};
272template <>
273struct metadata<net::access_mode_attribute>
274{
275 static constexpr auto key() { return detail::attribute_accessmode(); }
276};
277template <>
278struct metadata<net::bounding_mode_attribute>
279{
280 static constexpr auto key() { return detail::attribute_clipmode(); }
281};
282template <>
283struct metadata<net::unit_attribute>
284{
285 static constexpr auto key() { return detail::attribute_unit(); }
286};
287template <>
288struct metadata<net::default_value_attribute>
289{
290 static constexpr auto key() { return detail::attribute_default_value(); }
291};
292template <>
293struct metadata<net::tags_attribute>
294{
295 static constexpr auto key() { return detail::attribute_tags(); }
296};
297template <>
298struct metadata<net::refresh_rate_attribute>
299{
300 static constexpr auto key() { return detail::attribute_refresh_rate(); }
301};
302template <>
303struct metadata<net::priority_attribute>
304{
305 static constexpr auto key() { return detail::attribute_priority(); }
306};
307template <>
308struct metadata<net::value_step_size_attribute>
309{
310 static constexpr auto key() { return detail::attribute_step_size(); }
311};
312template <>
313struct metadata<net::instance_bounds_attribute>
314{
315 static constexpr auto key() { return detail::attribute_instance_bounds(); }
316};
317template <>
318struct metadata<net::critical_attribute>
319{
320 static constexpr auto key() { return detail::attribute_critical(); }
321};
322template <>
323struct metadata<net::hidden_attribute>
324{
325 static constexpr auto key() { return detail::attribute_hidden(); }
326};
327template <>
328struct metadata<net::disabled_attribute>
329{
330 static constexpr auto key() { return detail::attribute_disabled(); }
331};
332template <>
333struct metadata<net::extended_type_attribute>
334{
335 static constexpr auto key() { return detail::attribute_extended_type(); }
336};
337template <>
338struct metadata<net::description_attribute>
339{
340 static constexpr auto key() { return detail::attribute_description(); }
341};
342template <>
343struct metadata<net::repetition_filter_attribute>
344{
345 static constexpr auto key() { return detail::attribute_repetition_filter(); }
346};
347template <>
348struct metadata<net::app_version_attribute>
349{
350 static constexpr auto key() { return detail::attribute_app_version(); }
351};
352template <>
353struct metadata<net::app_creator_attribute>
354{
355 static constexpr auto key() { return detail::attribute_app_creator(); }
356};
357template <>
358struct metadata<net::app_name_attribute>
359{
360 static constexpr auto key() { return detail::attribute_app_name(); }
361};
362
363using base_attributes = boost::mp11::mp_list<
364 typetag_attribute, net::value_attribute, net::domain_attribute,
365 net::access_mode_attribute, net::bounding_mode_attribute,
366 net::repetition_filter_attribute, net::unit_attribute, net::default_value_attribute>;
367
368using base_attributes_without_type = boost::mp11::mp_list<
369 net::value_attribute, net::domain_attribute, net::access_mode_attribute,
370 net::bounding_mode_attribute, net::repetition_filter_attribute, net::unit_attribute,
371 net::default_value_attribute>;
372
373using extended_attributes = boost::mp11::mp_list<
374 net::tags_attribute, net::refresh_rate_attribute, net::priority_attribute,
375 net::value_step_size_attribute, net::instance_bounds_attribute,
376 net::critical_attribute, net::hidden_attribute, net::disabled_attribute,
377 net::extended_type_attribute, net::description_attribute, net::app_name_attribute,
378 net::app_creator_attribute, net::app_version_attribute>;
379
380using attributes_when_reading = boost::mp11::mp_list<
381 net::domain_attribute, net::access_mode_attribute, net::bounding_mode_attribute,
382 net::repetition_filter_attribute, net::tags_attribute, net::refresh_rate_attribute,
383 net::priority_attribute, net::value_step_size_attribute,
384 net::instance_bounds_attribute, net::critical_attribute, net::hidden_attribute,
385 net::disabled_attribute, net::description_attribute, net::app_name_attribute,
386 net::app_creator_attribute, net::app_version_attribute>;
387
388using all_attributes = boost::mp11::mp_list<
389 typetag_attribute, net::unit_attribute, net::extended_type_attribute,
390
391 net::value_attribute, net::default_value_attribute,
392
393 net::domain_attribute, net::access_mode_attribute, net::bounding_mode_attribute,
394 net::repetition_filter_attribute, net::tags_attribute, net::refresh_rate_attribute,
395 net::priority_attribute, net::value_step_size_attribute,
396 net::instance_bounds_attribute, net::critical_attribute, net::hidden_attribute,
397 net::disabled_attribute, net::description_attribute, net::app_name_attribute,
398 net::app_creator_attribute, net::app_version_attribute>;
399}
400enum class message_type
401{
402 Device,
403 Namespace,
404 Value,
405 PathChanged,
406 PathAdded,
407 PathRemoved,
408 PathRenamed,
409 AttributesChanged,
410 HostInfo,
411 StartOscStreaming,
412 Listen,
413 Ignore
414};
415
416using key_map_type = string_view_map<std::string_view>;
417
419OSSIA_EXPORT const key_map_type& ossia_to_oscquery_key();
420
422OSSIA_EXPORT const key_map_type& oscquery_to_ossia_key();
423
425OSSIA_EXPORT std::optional<std::string_view> ossia_to_oscquery_key(std::string_view);
426
428OSSIA_EXPORT std::optional<std::string_view> oscquery_to_ossia_key(std::string_view);
429}
The node_base class.
Definition node.hpp:48