2#include <ossia/detail/mutex.hpp>
4#include <ossia/network/common/network_logger.hpp>
5#include <ossia/network/osc/detail/sender.hpp>
6#include <ossia/network/oscquery/detail/outbound_visitor.hpp>
7#include <ossia/network/oscquery/oscquery_server.hpp>
8#include <ossia/network/sockets/websocket_server.hpp>
25 ossia::net::websocket_server::connection_handler connection;
26 mutex_t listeningMutex;
27 string_map<ossia::net::parameter_base*> listening TS_GUARDED_BY(listeningMutex);
29 std::string client_ip;
30 std::unique_ptr<osc::sender<oscquery::osc_outbound_visitor>> sender;
31 int remote_sender_port{};
34 oscquery_client() =
delete;
35 oscquery_client(
const oscquery_client& other)
noexcept =
delete;
36 oscquery_client& operator=(
const oscquery_client& other)
noexcept =
delete;
37 oscquery_client(oscquery_client&& other)
noexcept =
delete;
38 oscquery_client& operator=(oscquery_client&& other)
noexcept =
delete;
40 explicit oscquery_client(ossia::net::websocket_server::connection_handler h)
41 : connection{std::move(h)}
49 std::lock_guard lck{listeningMutex};
50 listening.insert(std::make_pair(std::move(path), addr));
54 void stop_listen(
const std::string& path)
56 std::lock_guard lck{listeningMutex};
57 listening.erase(path);
60 bool operator==(
const ossia::net::websocket_server::connection_handler& h)
const
62 return !connection.expired() && connection.lock() == h.lock();
68 sender = std::make_unique<osc::sender<oscquery::osc_outbound_visitor>>(
69 proto.get_logger(), client_ip, port);
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
Implementation of an oscquery server.
Definition oscquery_server.hpp:38