OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
oscquery_server_asio.hpp
1#pragma once
2#include <ossia/detail/hash_map.hpp>
3#include <ossia/detail/lockfree_queue.hpp>
4#include <ossia/detail/mutex.hpp>
5#include <ossia/network/base/listening.hpp>
6#include <ossia/network/base/protocol.hpp>
7#include <ossia/network/context_functions.hpp>
8#include <ossia/network/generic/generic_device.hpp>
9#include <ossia/network/sockets/websocket_reply.hpp>
10#include <ossia/network/zeroconf/zeroconf.hpp>
11#include <ossia/protocols/osc/osc_factory.hpp>
12
13#include <nano_signal_slot.hpp>
14
15#include <atomic>
16namespace osc
17{
18template <typename T>
19class sender;
20class receiver;
21}
22namespace oscpack
23{
24class ReceivedMessage;
25class IpEndpointName;
26}
27namespace ossia
28{
29namespace net
30{
31class websocket_server;
32}
33namespace oscquery
34{
35class query_answerer;
36class get_query_answerer;
37struct json_query_answerer;
38}
39namespace oscquery_asio
40{
41struct oscquery_client;
42using clients = std::vector<std::unique_ptr<oscquery_client>>;
45{
46 friend struct oscquery_client;
47 friend class ossia::oscquery::query_answerer;
50
51public:
52 using connection_handler = std::weak_ptr<void>;
53
54 // Use oscquery_server_protocol_with_osc
56 ossia::net::network_context_ptr ctx, uint16_t, uint16_t)
57 = delete;
58
60 ossia::net::network_context_ptr ctx,
61 const std::vector<ossia::net::osc_server_configuration>& conf, uint16_t ws_port,
62 bool forceWS);
64
65 bool pull(net::parameter_base&) override;
66 std::future<void> pull_async(net::parameter_base&) override;
67 void request(net::parameter_base&) override;
68 bool push(const net::parameter_base&, const ossia::value& v) override;
69 bool push_raw(const ossia::net::full_parameter_data& parameter_base) override;
70 bool push_bundle(const std::vector<const ossia::net::parameter_base*>&) override;
71 bool push_raw_bundle(const std::vector<ossia::net::full_parameter_data>&) override;
72 bool echo_incoming_message(
73 const ossia::net::message_origin_identifier&, const ossia::net::parameter_base&,
74 const ossia::value& v) override;
75 bool observe(net::parameter_base&, bool) override;
76 bool observe_quietly(net::parameter_base&, bool) override;
77 bool update(net::node_base& b) override;
78
79 void set_device(net::device_base& dev) override;
80 void stop() override;
81 ossia::net::device_base& get_device() const noexcept { return *m_device; }
82
83 int get_ws_port() const noexcept { return m_wsPort; }
84
85 bool force_ws() const noexcept { return m_forceWS.load(std::memory_order_relaxed); }
86 void set_force_ws(bool forceWS) noexcept;
87
88 const std::vector<ossia::net::osc_server_configuration>&
89 get_transports() const noexcept
90 {
91 return m_oscConf;
92 }
93
94 Nano::Signal<void(const std::string&)> onClientConnected;
95 Nano::Signal<void(const std::string&)> onClientDisconnected;
96
97protected:
98 explicit oscquery_server_protocol_base(ossia::net::network_context_ptr ctx) = delete;
99
100 // OSC callback
101 void on_osc_message(const oscpack::ReceivedMessage& m);
102 void process_raw_osc_data(const char* data, std::size_t sz);
103
104 // List of connected clients
105 oscquery_client* find_client(const connection_handler& hdl);
106
107 void add_node(std::string_view path, const string_map<std::string>& parameters);
108 void remove_node(std::string_view path, const std::string& node);
109 void rename_node(std::string_view node, const std::string& new_name);
110
111 // Websocket callbacks
112 void on_connectionOpen(const connection_handler& hdl);
113 void on_connectionClosed(const connection_handler& hdl);
114
115 // Local device callback
116 void on_nodeCreated(const ossia::net::node_base&);
117 void on_nodeRemoved(const ossia::net::node_base&);
118 void on_parameterChanged(const ossia::net::parameter_base&);
119 void on_attributeChanged(const ossia::net::node_base&, std::string_view attr);
120 void on_nodeRenamed(const ossia::net::node_base& n, std::string oldname);
121
122 template <typename T>
123 bool push_impl(const T& addr, const ossia::value& v);
124
125 bool write_impl(std::string_view data, bool critical);
126
127 void update_zeroconf();
128 // Exceptions here will be catched by the server
129 // which will set appropriate error codes.
130 ossia::net::server_reply
131 on_text_ws_message(const connection_handler& hdl, const std::string& message);
132 ossia::net::server_reply
133 on_binary_ws_message(const connection_handler& hdl, const std::string& message);
134
135 ossia::net::network_context_ptr m_context;
136
137 std::unique_ptr<ossia::net::websocket_server> m_websocketServer;
138
139 net::zeroconf_server m_zeroconfServerWS;
140
141 // What we expose over OSC
142 std::vector<ossia::net::osc_server_configuration> m_oscConf;
143
144 // Listening status of the local software
145 net::listened_parameters m_listening;
146
147 // The clients connected to this server
148 clients m_clients;
149 std::atomic_int m_clientCount{};
150
151 ossia::net::device_base* m_device{};
152
153 // To lock m_clients
154 mutex_t m_clientsMutex;
155
156 // The local ports
157 uint16_t m_wsPort{};
158
159 // Will only send changes through WS
160 std::atomic_bool m_forceWS{};
161};
162
163class OSSIA_EXPORT oscquery_server_protocol : public oscquery_server_protocol_base
164{
165public:
166 struct osc_receiver_impl;
167 explicit oscquery_server_protocol(
168 ossia::net::network_context_ptr ctx, uint16_t osc_port = 1234,
169 uint16_t ws_port = 5678, bool forceWS = false);
170 ~oscquery_server_protocol();
171
172 void update_zeroconf();
173 void set_device(net::device_base& dev) override;
174 void stop() override;
175 int get_osc_port() const noexcept { return m_oscPort; }
176
177private:
178 uint16_t m_oscPort{};
179 std::unique_ptr<osc_receiver_impl> m_oscServer;
180
181 net::zeroconf_server m_zeroconfServerOSC;
182};
183}
184}
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The protocol_base class.
Definition protocol.hpp:40
OSCQuery get query-answering logic.
Definition get_query_parser.hpp:26
Implementation of an oscquery server.
Definition oscquery_server_asio.hpp:45
The value class.
Definition value.hpp:173
Definition git_info.h:7
The message struct.
Definition message.hpp:29
Full information about a parameter.
Definition parameter_data.hpp:61
OSCQuery JSON query-answering logic.
Definition json_query_parser.hpp:16