20 using string_t = rapidjson::StringBuffer;
21 using writer_t = ossia::json_writer;
24 static string_t device_info(
int port);
26 static string_t query_host_info(
27 std::string_view name,
28 const std::vector<ossia::net::osc_server_configuration>& osc_port,
29 std::string_view local_ip,
int ws_port);
37 template <
typename StringVec_T>
48 for(
auto& method : methods)
52 write_json_key(wr, method);
53 p.writeAttribute(node, method);
61 static string_t listen(std::string_view address);
62 static string_t ignore(std::string_view address);
65 static string_t start_osc_streaming(
int local_server_port,
int local_sender_port);
75 static string_t path_removed(std::string_view path);
78 static string_t path_renamed(std::string_view old_path, std::string_view new_path);
83 static string_t attributes_changed(
86 static string_t paths_added(
const std::vector<const ossia::net::node_base*>& vec);
88 static string_t paths_changed(
const std::vector<const ossia::net::node_base*>& vec);
90 static string_t paths_removed(
const std::vector<std::string>& vec);
92 static string_t attributes_changed_array(
101 static void path_removed_impl(writer_t& wr, std::string_view path);
102 static void path_renamed_impl(
103 json_writer::writer_t& wr, std::string_view path, std::string_view old);
104 static void attribute_changed_impl(
106 std::string_view attribute);
107 static void attributes_changed_impl(
109 const std::vector<std::string_view>& attributes);
static string_t query_attributes(const ossia::net::node_base &node, const StringVec_T &methods)
Reply to a query of attributes : /foo/bar?VALUE&RANGE.
Definition json_writer.hpp:39