2#include <ossia/network/local/local.hpp>
3#include <ossia/network/oscquery/oscquery_mirror.hpp>
4#include <ossia/network/zeroconf/zeroconf.hpp>
6#include <ossia-pd/src/device_base.hpp>
11class client :
public device_base
16 using is_client = std::true_type;
18 static void register_children(client* x);
19 void unregister_children();
21 static void print_protocol_help()
23 post(
"connect <protocol> <args> ...");
25 post(
"connect <device_name>");
26 post(
"the later will look for a device with that name on the network");
27 post(
"Available protocols (case insensitive): minuit, oscquery");
28 post(
"Protocols parameters :");
30 "minuit <remoteip> <remoteport> <localport> :\n"
31 "\tremoteip (symbol): ip of target device\n"
32 "\tremoteport (float): port on which packet should be send\n"
33 "\tlocalport (float): port to which this device is listening");
35 "oscquery <oscport> <wsurl> :\n"
36 "\twsurl (symbol) : url to connect to (default : "
37 "ws://127.0.0.1:5678)\n");
40 "\tip (string) : ip to connect to"
41 "\toscport (float) : port to connect to");
44 std::vector<ossia::net::minuit_connection_data> m_minuit_devices{};
45 std::vector<ossia::net::oscquery_connection_data> m_oscq_devices{};
47 ossia::oscquery::oscquery_mirror_protocol* m_oscq_protocol{};
49 bool m_zeroconf{
true};
51 bool is_zeroconf()
const {
return m_zeroconf; }
52 std::string get_name()
const {
return m_name ? std::string(m_name->s_name) :
""; }
54 static void get_mess_cb(client* x, t_symbol* s);
56 static void disconnect(client* x);
57 static void connect(client* x);
58 static void connect_mess_cb(client* x, t_symbol*,
int argc, t_atom* argv);
59 static void update(client* x);
60 static void poll_message(client* x);
61 static void destroy(client* x);
62 static void* create(t_symbol* name,
int argc, t_atom* argv);