3#include <ossia/network/local/local.hpp>
4#include <ossia/network/oscquery/oscquery_mirror.hpp>
5#include <ossia/network/zeroconf/zeroconf.hpp>
7#include <ossia-max/src/device_base.hpp>
15#pragma mark t_client structure declaration
17class client :
public device_base
20 using is_client = std::true_type;
22 static void register_children(client*);
23 void unregister_children();
24 static void loadbang(client*);
26 static void print_protocol_help()
28 post(
"connect <protocol> <args> ...");
29 post(
"Available protocols (case sensitive): Minuit, oscquery");
30 post(
"Protocols parameters :");
32 "Minuit <remoteip> <remoteport> <localport> :\n"
33 "\tremoteip (symbol): ip of target device\n"
34 "\tremoteport (float): port on which packet should be send\n"
35 "\tlocalport (float): port to which this device is listening");
37 "oscquery <oscport> <wsurl> :\n"
38 "\twsurl (symbol) : url to connect to (default : "
39 "ws://127.0.0.1:5678)\n");
41 "osc <remoteip> <remoteport> <localport> :\n"
42 "\tremoteip (symbol): ip of target device\n"
43 "\tremoteport (float): port on which packet should be send\n"
44 "\tlocalport (float): port to which this device is listening");
47 std::vector<ossia::net::minuit_connection_data> m_minuit_devices;
48 std::vector<ossia::net::oscquery_connection_data> m_oscq_devices;
52 ossia::oscquery::oscquery_mirror_protocol* m_oscq_protocol{};
54 bool m_zeroconf{
true};
55 bool is_zeroconf()
const {
return m_zeroconf; }
56 std::string get_name()
const {
return m_name ? std::string(m_name->s_name) :
""; }
58 void set_feedback(
bool b);
60 static t_max_err do_notify(client *x, t_symbol *, t_symbol *msg,
void *,
void *data);
62 static void refresh(client*);
63 static void connect(client*);
64 static void connect_mess_cb(client* x, t_symbol*,
int argc, t_atom* argv);
65 static void disconnect(client*);
66 static void get_devices(client* x);
67 static void check_thread_status(client* x);
68 static void update(client* x);
69 static void poll_message(client* x);
72 static void find_devices_async(client* x);
73 static void assist(client*,
void*,
long,
long,
char*);
74 static void get_mess_cb(client*, t_symbol*);
76 static void* create(t_symbol*,
long, t_atom*);
77 static void destroy(ossia::max_binding::client*);