OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
oscquery_mirror_asio.hpp
1#pragma once
2
3#include <ossia/protocols/oscquery/oscquery_fwd.hpp>
4
5namespace ossia::oscquery_asio
6{
7class oscquery_mirror_asio_protocol;
8struct oscquery_shared_async_state
9{
10 oscquery_mirror_asio_protocol& self;
11 bool active = true;
12};
13
14class OSSIA_EXPORT oscquery_mirror_asio_protocol final : public ossia::net::protocol_base
15{
16 struct osc_sender_impl;
17 struct osc_receiver_impl;
18 using async_state = oscquery_shared_async_state;
19
20public:
21 oscquery_mirror_asio_protocol(
22 ossia::net::network_context_ptr ctx, std::string host,
23 uint16_t local_osc_port = 0);
24 ~oscquery_mirror_asio_protocol() override;
25
26 bool pull(net::parameter_base&) override;
27 std::future<void> pull_async(net::parameter_base&) override;
28 void request(net::parameter_base&) override;
29 bool push(const net::parameter_base&, const ossia::value& v) override;
30 bool push_raw(const ossia::net::full_parameter_data& parameter_base) override;
31 bool push_bundle(const std::vector<const ossia::net::parameter_base*>&) override;
32 bool push_raw_bundle(const std::vector<ossia::net::full_parameter_data>&) override;
33 bool observe(net::parameter_base&, bool) override;
34 bool observe_quietly(net::parameter_base&, bool) override;
35 bool update(net::node_base& b) override;
36 bool echo_incoming_message(
37 const ossia::net::message_origin_identifier& id,
38 const ossia::net::parameter_base& addr, const value& val) override;
39
40 std::future<void> update_async(net::node_base& b) override;
41
42 void stop() override;
43 void set_device(net::device_base& dev) override;
44 ossia::net::device_base& get_device() const { return *m_device; }
45
46 bool ws_connected() const noexcept { return m_hasWS; }
47 bool osc_connected() const noexcept { return bool(m_oscSender); }
48 osc_sender_impl& osc_sender() const noexcept { return *m_oscSender; }
49 ossia::net::websocket_client& ws_client() const noexcept { return *m_websocketClient; }
50
56 void request_add_node(net::node_base&, const ossia::net::parameter_data&);
57
62 void request_remove_node(net::node_base&);
63
68 void request_rename_node(net::node_base& node, const std::string& new_name);
69
75 void set_zombie_on_remove(bool zombie_on_remove)
76 {
77 m_zombie_on_remove = zombie_on_remove;
78 }
79
84 bool get_zombie_on_remove() const noexcept { return m_zombie_on_remove; }
85
86 ossia::oscquery::host_info get_host_info() const noexcept;
87
88 bool connected() const noexcept override { return m_hasWS; }
89 void connect() override;
90
91 void set_feedback(bool fb) override;
92private:
93 friend struct http_async_answer<async_state>;
94 friend struct http_async_value_answer<async_state>;
95 using http_async_request = ossia::oscquery_asio::http_async_request<async_state>;
96 using http_async_value_request
97 = ossia::oscquery_asio::http_async_value_request<async_state>;
98 using http_async_answer = ossia::oscquery_asio::http_async_answer<async_state>;
99 using http_async_value_answer
100 = ossia::oscquery_asio::http_async_value_answer<async_state>;
101 using connection_handler = std::weak_ptr<void>;
102
103 void on_ws_disconnected() { m_hasWS = false; }
104
105 void init();
106
107 void start_http();
108 void start_websockets();
109 void start_osc();
110
111 void cleanup_connections();
112
113 // Input
114 bool on_text_ws_message(connection_handler hdl, const std::string& message);
115 bool on_binary_ws_message(connection_handler hdl, const std::string& message);
116 bool on_value_http_message(const std::string& address, const std::string& message);
117 void on_osc_message(const oscpack::ReceivedMessage& m);
118 void process_raw_osc_data(const char* data, std::size_t sz);
119
120 // Output
121 void http_send_message(const std::string& str);
122 void http_send_message(const rapidjson::StringBuffer& str);
123
124 void ws_send_message(const std::string& str);
125 void ws_send_message(const rapidjson::StringBuffer& str);
126
127 // ZeroConf
128 bool query_connected();
129 void query_stop();
130
131 void on_nodeRenamed(const ossia::net::node_base& n, std::string oldname);
132
133 ossia::net::network_context_ptr m_ctx;
134
135 std::unique_ptr<osc_sender_impl> m_oscSender;
136 std::unique_ptr<osc_receiver_impl> m_oscServer;
137
138 std::unique_ptr<ossia::net::websocket_client> m_websocketClient;
139 std::shared_ptr<async_state> m_async_state;
140 std::atomic_bool m_hasWS{};
141
142 // Listening status of the local software
143 net::listened_parameters m_listening;
144
145 ossia::net::device_base* m_device{};
146
147 std::promise<void> m_namespacePromise;
148
149 std::string m_queryHost;
150 std::string m_queryPort;
151 std::string m_httpHost;
152 int m_osc_port{};
153
154 std::unique_ptr<http_async_client_context> m_http;
155 ossia::oscquery::host_info m_host_info;
156
157 ossia::net::message_origin_identifier m_id;
158 std::atomic<bool> m_feedback{true};
159 bool m_zombie_on_remove{true};
160 enum
161 {
162 any_protocol,
163 http,
164 websockets
165 } m_protocol_to_use{any_protocol};
166};
167}
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
Low-level Websocket client.
Definition websocket_client.hpp:18
The value class.
Definition value.hpp:173
Full information about a parameter.
Definition parameter_data.hpp:61
The data that can be found inside a parameter.
Definition parameter_data.hpp:21
Represents the capabilities of an OSCQuery server.
Definition host_info.hpp:12