46 friend struct oscquery_client;
47 friend class ossia::oscquery::query_answerer;
52 using connection_handler = std::weak_ptr<void>;
56 ossia::net::network_context_ptr ctx, uint16_t, uint16_t)
60 ossia::net::network_context_ptr ctx,
61 const std::vector<ossia::net::osc_server_configuration>& conf, uint16_t ws_port,
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(
83 int get_ws_port()
const noexcept {
return m_wsPort; }
85 bool force_ws()
const noexcept {
return m_forceWS.load(std::memory_order_relaxed); }
86 void set_force_ws(
bool forceWS)
noexcept;
88 const std::vector<ossia::net::osc_server_configuration>&
89 get_transports()
const noexcept
94 Nano::Signal<void(
const std::string&)> onClientConnected;
95 Nano::Signal<void(
const std::string&)> onClientDisconnected;
101 void on_osc_message(
const oscpack::ReceivedMessage& m);
102 void process_raw_osc_data(
const char* data, std::size_t sz);
105 oscquery_client* find_client(
const connection_handler& hdl);
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);
112 void on_connectionOpen(
const connection_handler& hdl);
113 void on_connectionClosed(
const connection_handler& hdl);
122 template <
typename T>
125 bool write_impl(std::string_view data,
bool critical);
127 void update_zeroconf();
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);
135 ossia::net::network_context_ptr m_context;
137 std::unique_ptr<ossia::net::websocket_server> m_websocketServer;
139 net::zeroconf_server m_zeroconfServerWS;
142 std::vector<ossia::net::osc_server_configuration> m_oscConf;
145 net::listened_parameters m_listening;
149 std::atomic_int m_clientCount{};
154 mutex_t m_clientsMutex;
160 std::atomic_bool m_forceWS{};