-
Notifications
You must be signed in to change notification settings - Fork 69
/
stream_info_impl.cpp
360 lines (316 loc) · 12.5 KB
/
stream_info_impl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#include "stream_info_impl.h"
#include "api_config.h"
#include "util/cast.hpp"
#include "util/uuid.hpp"
#include <algorithm>
#include <cstdlib>
#include <exception>
#include <loguru.hpp>
#include <sstream>
#include <stdexcept>
#include <vector>
#include <utility>
namespace lsl {
using namespace pugi;
using lsl::to_string;
stream_info_impl::stream_info_impl()
: channel_count_(0), nominal_srate_(0), channel_format_(cft_undefined), version_(0),
v4data_port_(0), v4service_port_(0), v6data_port_(0), v6service_port_(0), created_at_(0) {
// initialize XML document
write_xml(doc_);
}
stream_info_impl::stream_info_impl(const std::string &name, std::string type, int channel_count,
double nominal_srate, lsl_channel_format_t channel_format, std::string source_id)
: name_(name), type_(std::move(type)), channel_count_(channel_count),
nominal_srate_(nominal_srate), channel_format_(channel_format),
source_id_(std::move(source_id)),
version_(api_config::get_instance()->use_protocol_version()), v4data_port_(0),
v4service_port_(0), v6data_port_(0), v6service_port_(0), created_at_(0) {
if (name.empty()) throw std::invalid_argument("The name of a stream must be non-empty.");
if (channel_count < 0)
throw std::invalid_argument("The channel_count of a stream must be nonnegative.");
if (nominal_srate < 0)
throw std::invalid_argument("The nominal sampling rate of a stream must be nonnegative.");
if (channel_format < 0 || channel_format > 7)
throw std::invalid_argument("The stream info was created with an unknown channel format " +
to_string(static_cast<int>(channel_format)));
// initialize XML document
write_xml(doc_);
}
template <typename T> void append_text_node(xml_node &node, const char *name, const T &value) {
node.append_child(name).append_child(node_pcdata).text().set(value);
}
template <> void append_text_node(xml_node &node, const char *name, const std::string &value) {
node.append_child(name).append_child(node_pcdata).set_value(value.c_str());
}
void stream_info_impl::write_xml(xml_document &doc) {
const char *channel_format_strings[] = {
"undefined", "float32", "double64", "string", "int32", "int16", "int8", "int64"};
xml_node info = doc.append_child("info");
append_text_node(info, "name", name_);
append_text_node(info, "type", type_);
append_text_node(info, "channel_count", channel_count_);
append_text_node(info, "channel_format", channel_format_strings[channel_format_]);
append_text_node(info, "source_id", source_id_);
// floating point fields: use locale independent to_string function
append_text_node(info, "nominal_srate", to_string(nominal_srate_));
append_text_node(info, "version", to_string(version_ / 100.));
append_text_node(info, "created_at", to_string(created_at_));
append_text_node(info, "uid", uid_);
append_text_node(info, "session_id", session_id_);
append_text_node(info, "hostname", hostname_);
append_text_node(info, "v4address", v4address_);
append_text_node(info, "v4data_port", v4data_port_);
append_text_node(info, "v4service_port", v4service_port_);
append_text_node(info, "v6address", v6address_);
append_text_node(info, "v6data_port", v6data_port_);
append_text_node(info, "v6service_port", v6service_port_);
info.append_child("desc");
}
template <typename T>
void get_bounded_child_val(xml_node &node, const char *child_name, T &target, int min, int max = 0) {
const auto *value = node.child_value(child_name);
int intval = std::stoi(value);
if (intval < min || (max != 0 && intval > max)) {
std::string errmsg{child_name};
errmsg+=" must be >=";
errmsg+=std::to_string(min);
if(max) errmsg+= " and <=" + std::to_string(max);
throw std::runtime_error(errmsg);
}
target = static_cast<T>(intval);
}
void stream_info_impl::read_xml(xml_document &doc) {
try {
xml_node info = doc.child("info");
// name
name_ = info.child_value("name");
if (name_.empty())
throw std::runtime_error("Received a stream info with empty <name> field.");
// type
type_ = info.child_value("type");
get_bounded_child_val(info, "channel_count", channel_count_, 0);
get_bounded_child_val(info, "nominal_srate", nominal_srate_, 0);
nominal_srate_ = std::stod(info.child_value("nominal_srate"));
std::string fmt(info.child_value("channel_format"));
if (fmt == "float32")
channel_format_ = cft_float32;
else if (fmt == "double64")
channel_format_ = cft_double64;
else if (fmt == "string")
channel_format_ = cft_string;
else if (fmt == "int32")
channel_format_ = cft_int32;
else if (fmt == "int16")
channel_format_ = cft_int16;
else if (fmt == "int8")
channel_format_ = cft_int8;
else if (fmt == "int64")
channel_format_ = cft_int64;
else
throw std::runtime_error("Invalid channel format " + fmt);
// source_id
source_id_ = info.child_value("source_id");
version_ = (int)(std::stod(info.child_value("version")) * 100);
if (version_ <= 0)
throw std::runtime_error("The version of the given stream info is invalid.");
// created_at
created_at_ = std::stod(info.child_value("created_at"));
// uid
uid_ = info.child_value("uid");
if (uid_.empty()) throw std::runtime_error("The UID of the given stream info is empty.");
// session_id
session_id_ = info.child_value("session_id");
// hostname
hostname_ = info.child_value("hostname");
v4address_ = info.child_value("v4address");
get_bounded_child_val(info, "v4data_port", v4data_port_, 0, 65535);
get_bounded_child_val(info, "v4service_port", v4service_port_, 0, 65535);
v6address_ = info.child_value("v6address");
get_bounded_child_val(info, "v6data_port", v6data_port_, 0, 65535);
get_bounded_child_val(info, "v6service_port", v6service_port_, 0, 65535);
} catch (std::exception &e) {
// reset the stream info to blank state
*this = stream_info_impl();
name_ = (std::string("(invalid: ") += e.what()) += ')';
}
}
// === Protocol Support Operations Implementation ===
std::string stream_info_impl::to_shortinfo_message() {
// make a new document (with an empty <desc> field)
xml_document tmp;
write_xml(tmp);
// write it to a stream
std::ostringstream os;
tmp.save(os);
// and get the string
return os.str();
}
void stream_info_impl::from_shortinfo_message(const std::string &m) {
// load the doc from the message string
doc_.load_buffer(m.c_str(), m.size());
// and assign all the struct fields, too...
read_xml(doc_);
}
std::string stream_info_impl::to_fullinfo_message() {
// write the doc to a stream
std::ostringstream os;
doc_.save(os);
// and get the string
return os.str();
}
void stream_info_impl::from_fullinfo_message(const std::string &m) {
// load the doc from the message string
doc_.load_buffer(m.c_str(), m.size());
// and assign all the struct fields, too...
read_xml(doc_);
}
bool stream_info_impl::matches_query(const std::string &query, bool nocache) {
return cached_.matches_query(doc_, query, nocache);
}
bool query_cache::matches_query(const xml_document &doc, const std::string &query, bool nocache) {
if (query.empty()) return true;
std::lock_guard<std::mutex> lock(cache_mut_);
decltype(cache)::iterator it;
if (!nocache && (it = cache.find(query)) != cache.end()) {
// the sign bit encodes if the query matches or not
bool matches = it->second > 0;
// update the last-use time stamp
it->second = ++query_cache_age * (matches ? 1 : -1);
// return cached match
return matches;
}
// not found in cache
try {
// compute whether it matches
bool matched = pugi::xpath_query(query.c_str()).evaluate_boolean(doc.first_child());
auto max_cached = (std::size_t)api_config::get_instance()->max_cached_queries();
if (nocache || max_cached == 0) return matched;
cache.insert(std::make_pair(query, ++query_cache_age * (matched ? 1 : -1)));
// remove n/2 oldest results to make room for new entries
if (cache.size() > max_cached) {
// Find out the median cache entry age
std::vector<int> agevec;
agevec.reserve(cache.size());
for (auto &val : cache) agevec.push_back(std::abs(val.second));
auto middle = agevec.begin() + max_cached / 2;
std::nth_element(agevec.begin(), middle, agevec.end());
auto oldest_to_keep = *middle;
// Remove all elements older than the median age
for (auto it = cache.begin(); it != cache.end();)
if (abs(it->second) <= oldest_to_keep)
it = cache.erase(it);
else
++it;
}
return matched;
} catch (std::exception &e) {
LOG_F(WARNING, "Query \"%s\" error: %s", query.c_str(), e.what());
return false;
}
}
int stream_info_impl::channel_bytes() const {
const int channel_format_sizes[] = {0, sizeof(float), sizeof(double), sizeof(std::string),
sizeof(int32_t), sizeof(int16_t), sizeof(int8_t), 8};
return channel_format_sizes[channel_format_];
}
xml_node stream_info_impl::desc() { return doc_.child("info").child("desc"); }
xml_node stream_info_impl::desc() const { return doc_.child("info").child("desc"); }
uint32_t lsl::stream_info_impl::calc_transport_buf_samples(
int32_t requested_len, lsl_transport_options_t flags) const {
if ((flags & transp_bufsize_samples) && (flags & transp_bufsize_thousandths))
throw std::invalid_argument(
"transp_bufsize_samples and transp_bufsize_thousandths are mutually exclusive");
int32_t buf_samples;
if (flags & transp_bufsize_samples)
buf_samples = requested_len;
else if (nominal_srate() == LSL_IRREGULAR_RATE)
buf_samples = requested_len * 100;
else
buf_samples = static_cast<int32_t>(nominal_srate() * requested_len);
if (flags & transp_bufsize_thousandths) buf_samples /= 1000;
buf_samples = (buf_samples > 0) ? buf_samples : 1;
return buf_samples;
}
void stream_info_impl::version(int v) {
version_ = v;
doc_.child("info").child("version").first_child().set_value(to_string(version_ / 100.).c_str());
}
void stream_info_impl::created_at(double v) {
created_at_ = v;
doc_.child("info").child("created_at").first_child().set_value(to_string(created_at_).c_str());
}
void stream_info_impl::uid(const std::string &v) {
uid_ = v;
doc_.child("info").child("uid").first_child().set_value(uid_.c_str());
}
const std::string& stream_info_impl::reset_uid()
{
uid(UUID::random().to_string());
return uid_;
}
void stream_info_impl::session_id(const std::string &v) {
session_id_ = v;
doc_.child("info").child("session_id").first_child().set_value(session_id_.c_str());
}
void stream_info_impl::hostname(const std::string &v) {
hostname_ = v;
doc_.child("info").child("hostname").first_child().set_value(hostname_.c_str());
}
void stream_info_impl::v4address(const std::string &v) {
v4address_ = v;
doc_.child("info").child("v4address").first_child().set_value(v4address_.c_str());
}
void stream_info_impl::v4data_port(uint16_t v) {
v4data_port_ = v;
doc_.child("info").child("v4data_port").first_child().text().set(v4data_port_);
}
void stream_info_impl::v4service_port(uint16_t v) {
v4service_port_ = v;
doc_.child("info").child("v4service_port").first_child().text().set(v4service_port_);
}
void stream_info_impl::v6address(const std::string &v) {
v6address_ = v;
doc_.child("info").child("v6address").first_child().set_value(v6address_.c_str());
}
void stream_info_impl::v6data_port(uint16_t v) {
v6data_port_ = v;
doc_.child("info").child("v6data_port").first_child().text().set(v6data_port_);
}
void stream_info_impl::v6service_port(uint16_t v) {
v6service_port_ = v;
doc_.child("info").child("v6service_port").first_child().text().set(v6service_port_);
}
stream_info_impl &stream_info_impl::operator=(stream_info_impl const &rhs) {
if (this == &rhs) return *this;
name_ = rhs.name_;
type_ = rhs.type_;
channel_count_ = rhs.channel_count_;
nominal_srate_ = rhs.nominal_srate_;
channel_format_ = rhs.channel_format_;
source_id_ = rhs.source_id_;
version_ = rhs.version_;
v4address_ = rhs.v4address_;
v4data_port_ = rhs.v4data_port_;
v4service_port_ = rhs.v4service_port_;
v6address_ = rhs.v6address_;
v6data_port_ = rhs.v6data_port_;
v6service_port_ = rhs.v6service_port_;
uid_ = rhs.uid_;
created_at_ = rhs.created_at_;
session_id_ = rhs.session_id_;
hostname_ = rhs.hostname_;
doc_.reset(rhs.doc_);
return *this;
}
stream_info_impl::stream_info_impl(const stream_info_impl &rhs)
: name_(rhs.name_), type_(rhs.type_), channel_count_(rhs.channel_count_),
nominal_srate_(rhs.nominal_srate_), channel_format_(rhs.channel_format_),
source_id_(rhs.source_id_), version_(rhs.version_), v4address_(rhs.v4address_),
v4data_port_(rhs.v4data_port_), v4service_port_(rhs.v4service_port_),
v6address_(rhs.v6address_), v6data_port_(rhs.v6data_port_),
v6service_port_(rhs.v6service_port_), uid_(rhs.uid_), created_at_(rhs.created_at_),
session_id_(rhs.session_id_), hostname_(rhs.hostname_) {
doc_.reset(rhs.doc_);
}
} // namespace lsl