2#include <ossia/detail/config.hpp>
4#include <ossia/network/base/node.hpp>
7#include <nano_signal_slot.hpp>
27struct message_origin_identifier;
60 device_base(std::unique_ptr<ossia::net::protocol_base> proto);
77 void set_name(
const std::string& str) { get_root_node().set_name(str); }
78 std::string get_name()
const {
return get_root_node().get_name(); }
80 bool has_echo() {
return m_echo; }
82 void set_echo(
bool echo) { m_echo = echo; }
84 void apply_incoming_message(
88 void apply_incoming_message_quiet(
92 Nano::Signal<void(
node_base&)> on_node_created;
93 Nano::Signal<void(
node_base&)> on_node_removing;
94 Nano::Signal<void(
node_base&, std::string)>
97 Nano::Signal<void(
node_base&,
const std::string&)>
98 on_attribute_modified;
100 on_parameter_created;
102 on_parameter_removing;
104 Nano::Signal<void(
const std::string,
const ossia::value& val)>
105 on_unhandled_message;
120 std::unique_ptr<ossia::net::protocol_base> m_protocol;
126void node_base::set(std::string_view str,
const T& value)
128 static_assert(!is_parameter_attribute<T>::value,
"No parameter");
129 auto opt = ossia::get_optional_attribute<T>(*
this, str);
130 if((opt && *opt != value) || !opt)
133 get_device().on_attribute_modified(*
this, std::string(str));
138void node_base::set(std::string_view str, T&& value)
140 static_assert(!is_parameter_attribute<T>::value,
"No parameter");
141 auto opt = ossia::get_optional_attribute<T>(*
this, str);
142 if((opt && *opt != value) || !opt)
145 get_device().on_attribute_modified(*
this, std::string(str));
150void node_base::set(std::string_view str,
const std::optional<T>& value)
152 static_assert(!is_parameter_attribute<T>::value,
"No parameter");
153 auto opt = ossia::get_optional_attribute<T>(*
this, str);
157 get_device().on_attribute_modified(*
this, std::string(str));
162void node_base::set(std::string_view str, std::optional<T>&& value)
164 static_assert(!is_parameter_attribute<T>::value,
"No parameter");
165 auto opt = ossia::get_optional_attribute<T>(*
this, str);
169 get_device().on_attribute_modified(*
this, std::string(str));
173template <
typename Attribute,
typename T>
174void node_base::set(Attribute a,
const T& value)
178 typename Attribute::type val = value;
179 a.setter(*
this, std::move(val));
182template <
typename Attribute,
typename T>
183void node_base::set(Attribute a, T& value)
185 set(a,
const_cast<const T&
>(value));
188template <
typename Attribute,
typename T>
189void node_base::set(Attribute a, T&& value)
191 typename Attribute::type val = std::move(value);
192 a.setter(*
this, std::move(val));
Root of a device tree.
Definition ossia/network/base/device.hpp:58
Nano::Signal< void(std::string, const parameter_data &)> on_add_node_requested
Definition ossia/network/base/device.hpp:109
Nano::Signal< void(std::string, std::string)> on_remove_node_requested
Definition ossia/network/base/device.hpp:113
Nano::Signal< void(std::string, std::string)> on_rename_node_requested
Definition ossia/network/base/device.hpp:117
The node_base class.
Definition node.hpp:48
virtual device_base & get_device() const =0
The device in which this node is.
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The protocol_base class.
Definition protocol.hpp:40
The value class.
Definition value.hpp:173
void set_optional_attribute(any_map &e, std::string_view str, const std::optional< T > &opt)
Sets an attribute if opt has a value, else remove the attribute.
Definition any_map.hpp:140
void set_attribute(any_map &e, std::string_view str)
Sets a bool-like attribute. It should be checked for with has_attribute.
Definition any_map.cpp:11
What a device is able to do.
Definition ossia/network/base/device.hpp:20
bool change_tree
change_tree : nodes can be added and removed externally.
Definition ossia/network/base/device.hpp:24
The data that can be found inside a parameter.
Definition parameter_data.hpp:21