OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
json_writer.hpp
1#pragma once
2#include <ossia/detail/for_each.hpp>
4#include <ossia/network/oscquery/detail/json_writer_detail.hpp>
5#include <ossia/protocols/osc/osc_factory.hpp>
6namespace ossia
7{
8namespace net
9{
10class network_logger;
11}
12namespace oscquery
13{
14class oscquery_server_protocol;
16class OSSIA_EXPORT json_writer
17{
18public:
19 // Initialisation
20 using string_t = rapidjson::StringBuffer;
21 using writer_t = ossia::json_writer;
22
24 static string_t device_info(int port);
25
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);
30
31 // Format interface
32 // Queries
34 static string_t query_namespace(const ossia::net::node_base& node);
35
37 template <typename StringVec_T>
38 static string_t
39 query_attributes(const ossia::net::node_base& node, const StringVec_T& methods)
40 {
41 string_t buf;
42 writer_t wr(buf);
43
45
46 // Here we just write the attributes in the object directly
47 wr.StartObject();
48 for(auto& method : methods)
49 {
50 // Here we reply to the query which already has
51 // the key in the "oscquery" format so no need to convert
52 write_json_key(wr, method);
53 p.writeAttribute(node, method);
54 }
55 wr.EndObject();
56
57 return buf;
58 }
59
60 // Listen messages
61 static string_t listen(std::string_view address);
62 static string_t ignore(std::string_view address);
63
64 // Extensions
65 static string_t start_osc_streaming(int local_server_port, int local_sender_port);
66
67 // Update messages
69 static string_t path_added(const ossia::net::node_base& n);
70
72 static string_t path_changed(const ossia::net::node_base& n);
73
75 static string_t path_removed(std::string_view path);
76
78 static string_t path_renamed(std::string_view old_path, std::string_view new_path);
79
80 static string_t
81 attributes_changed(const ossia::net::node_base& n, std::string_view attribute);
82
83 static string_t attributes_changed(
84 const ossia::net::node_base& n, const std::vector<std::string_view>& attributes);
85
86 static string_t paths_added(const std::vector<const ossia::net::node_base*>& vec);
87
88 static string_t paths_changed(const std::vector<const ossia::net::node_base*>& vec);
89
90 static string_t paths_removed(const std::vector<std::string>& vec);
91
92 static string_t attributes_changed_array(
93 const std::vector<
94 std::pair<const ossia::net::node_base*, std::vector<std::string_view>>>& vec);
95
96private:
97 static void
98 path_added_impl(detail::json_writer_impl& p, const ossia::net::node_base& n);
99 static void
100 path_changed_impl(detail::json_writer_impl& p, const ossia::net::node_base& n);
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);
110};
111
112}
113}
The node_base class.
Definition node.hpp:48
Creates the JSON message to send through OSCQuery.
Definition json_writer.hpp:17
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
Definition git_info.h:7
Implementation of the JSON serialisation mechanism for oscquery.
Definition json_writer_detail.hpp:9