OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
node.hpp
1#pragma once
5#include <ossia/detail/mutex.hpp>
7#include <ossia/detail/string_view.hpp>
8#include <ossia/network/base/name_validation.hpp>
9#include <ossia/network/common/parameter_properties.hpp>
10
11#include <nano_signal_slot.hpp>
12
13#include <functional>
14#include <memory>
15#include <string>
16#if defined(OSSIA_QT)
17class QString;
18#endif
19namespace ossia
20{
21namespace net
22{
23class device_base;
24class parameter_base;
25class node_base;
47class OSSIA_EXPORT node_base
48{
49public:
50 using children_t = std::vector<std::unique_ptr<node_base>>;
51 node_base() = default;
52 node_base(const node_base&) = delete;
53 node_base(node_base&&) = delete;
54 node_base& operator=(const node_base&) = delete;
55 node_base& operator=(node_base&&) = delete;
56
57 virtual ~node_base();
58
60 virtual device_base& get_device() const = 0;
61
63 virtual node_base* get_parent() const = 0;
64
70 const std::string& get_name() const { return m_name; }
71 virtual node_base& set_name(std::string) = 0;
72
74 virtual parameter_base* create_parameter(val_type = val_type::IMPULSE) = 0;
76 virtual void set_parameter(std::unique_ptr<ossia::net::parameter_base>);
77 virtual bool remove_parameter() = 0;
78 virtual parameter_base* get_parameter() const = 0;
79
84 const extended_attributes& get_extended_attributes() const;
85 void set_extended_attributes(const extended_attributes&);
86
99 ossia::any get_attribute(std::string_view str) const;
100
101 template <typename T>
102 void set(std::string_view str, const T& val);
103 template <typename T>
104 void set(std::string_view str, T&& val);
105
106 template <typename T>
107 void set(std::string_view str, const std::optional<T>& val);
108 template <typename T>
109 void set(std::string_view str, std::optional<T>&& val);
110
111 void set(std::string_view str, bool value);
112
113 template <typename Attribute, typename T>
114 void set(Attribute a, const T& value);
115 template <typename Attribute, typename T>
116 void set(Attribute a, T& value);
117 template <typename Attribute, typename T>
118 void set(Attribute a, T&& value);
119
132 node_base* create_child(std::string name);
133
140 node_base* add_child(std::unique_ptr<node_base>);
141
150 node_base* find_child(std::string_view name);
151#if defined(OSSIA_QT)
152 node_base* find_child(const QString& name);
153#endif
154
156 bool has_child(ossia::net::node_base&);
157
158 bool remove_child(const std::string& name);
159 bool remove_child(const node_base& name);
160
162 void clear_children();
163
164 operator const extended_attributes&() const
165 {
166 return m_extended;
167 }
168 operator extended_attributes&()
169 {
170 return m_extended;
171 }
172
174 {
175 return {m_children, m_mutex};
176 }
177
179 const auto& unsafe_children() const TS_REQUIRES(m_mutex)
180 {
181 return m_children;
182 }
183 mutable shared_mutex_t m_mutex;
184
186 std::vector<node_base*> children_copy() const;
187
189 std::vector<std::string> children_names() const;
190
192 int children_count() const;
193
195 bool is_root_instance(const ossia::net::node_base& child) const;
196
197 const std::string& osc_address() const
198 {
199 return m_oscAddressCache;
200 }
201 virtual void on_address_change();
202
204 mutable Nano::Signal<void(const node_base&)> about_to_be_deleted;
205
206protected:
208 virtual std::unique_ptr<node_base> make_child(const std::string& name) = 0;
209
212
213 std::string m_name;
214 children_t m_children TS_GUARDED_BY(m_mutex);
215 extended_attributes m_extended{0};
216 std::string m_oscAddressCache;
217};
218}
219}
Thread-safe read-only reference to a container.
Definition locked_container.hpp:15
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48
virtual void removing_child(node_base &node_base)=0
Reimplement for a specific removal action.
const auto & unsafe_children() const TS_REQUIRES(m_mutex)
Non mutex-protected version. With great powers, yada yada etc etc.
Definition node.hpp:179
virtual node_base * get_parent() const =0
Parent of this node. May be null if it is the device (i.e. root).
virtual parameter_base * create_parameter(val_type=val_type::IMPULSE)=0
Allows a node to carry a value.
virtual device_base & get_device() const =0
The device in which this node is.
Nano::Signal< void(const node_base &)> about_to_be_deleted
The node subclasses must call this in their destructor.
Definition node.hpp:204
virtual std::unique_ptr< node_base > make_child(const std::string &name)=0
Should return nullptr if no child is to be added.
const std::string & get_name() const
The name of this node, e.g. "foo".
Definition node.hpp:70
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The value class.
Definition value.hpp:173
Definition git_info.h:7
val_type
Enum to represent the types that a value can take.
Definition parameter_properties.hpp:16
auto get_attribute(const any_map &e, std::string_view name)
get_attribute Get an attribute of an any_map.
Definition any_map.hpp:29