3#include <ossia/protocols/oscquery/oscquery_fwd.hpp>
5namespace ossia::oscquery_asio
7class oscquery_mirror_asio_protocol;
8struct oscquery_shared_async_state
10 oscquery_mirror_asio_protocol& self;
16 struct osc_sender_impl;
17 struct osc_receiver_impl;
18 using async_state = oscquery_shared_async_state;
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;
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;
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,
40 std::future<void> update_async(net::node_base& b)
override;
43 void set_device(net::device_base& dev)
override;
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; }
62 void request_remove_node(net::node_base&);
68 void request_rename_node(net::node_base& node,
const std::string& new_name);
75 void set_zombie_on_remove(
bool zombie_on_remove)
77 m_zombie_on_remove = zombie_on_remove;
84 bool get_zombie_on_remove() const noexcept {
return m_zombie_on_remove; }
88 bool connected() const noexcept
override {
return m_hasWS; }
89 void connect()
override;
91 void set_feedback(
bool fb)
override;
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>;
103 void on_ws_disconnected() { m_hasWS =
false; }
108 void start_websockets();
111 void cleanup_connections();
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);
121 void http_send_message(
const std::string& str);
122 void http_send_message(
const rapidjson::StringBuffer& str);
124 void ws_send_message(
const std::string& str);
125 void ws_send_message(
const rapidjson::StringBuffer& str);
128 bool query_connected();
133 ossia::net::network_context_ptr m_ctx;
135 std::unique_ptr<osc_sender_impl> m_oscSender;
136 std::unique_ptr<osc_receiver_impl> m_oscServer;
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{};
143 net::listened_parameters m_listening;
147 std::promise<void> m_namespacePromise;
149 std::string m_queryHost;
150 std::string m_queryPort;
151 std::string m_httpHost;
154 std::unique_ptr<http_async_client_context> m_http;
157 ossia::net::message_origin_identifier m_id;
158 std::atomic<bool> m_feedback{
true};
159 bool m_zombie_on_remove{
true};
165 } m_protocol_to_use{any_protocol};
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