forked from sccn/liblsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream_info_impl.cpp
More file actions
372 lines (340 loc) · 13.5 KB
/
stream_info_impl.cpp
File metadata and controls
372 lines (340 loc) · 13.5 KB
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
361
362
363
364
365
366
367
368
369
370
371
#include <boost/thread/lock_guard.hpp>
#include "cast.h"
#include "stream_info_impl.h"
#include "api_config.h"
// === implementation of the stream_info_impl class ===
using namespace lsl;
using namespace pugi;
using std::string;
/// Default Constructor.
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_);
}
/// Constructor.
stream_info_impl::stream_info_impl(const string &name, const string &type, int channel_count, double nominal_srate, lsl_channel_format_t channel_format, const string &source_id):
name_(name), type_(type), channel_count_(channel_count), nominal_srate_(nominal_srate), channel_format_(channel_format), source_id_(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.");
// initialize XML document
write_xml(doc_);
}
/// Helper function to add a child node with only a single text node
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());
}
/// Initialize the XML DOM structure (leaving .desc unchanged) from the data.
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");
}
/// Read & assign the object's fields from an XML DOM structure.
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");
// channel_count
channel_count_ = from_string<int>(info.child_value("channel_count"));
if (channel_count_ < 0)
throw std::runtime_error("The channel count of the given stream info is smaller than 0.");
// nominal_srate
nominal_srate_ = from_string<double>(info.child_value("nominal_srate"));
if (nominal_srate_ < 0.0)
throw std::runtime_error("The sampling rate of the given stream info is negative.");
// channel_format
channel_format_ = cft_undefined;
string fmt(info.child_value("channel_format"));
if (fmt == "float32")
channel_format_ = cft_float32;
if (fmt == "double64")
channel_format_ = cft_double64;
if (fmt == "string")
channel_format_ = cft_string;
if (fmt == "int32")
channel_format_ = cft_int32;
if (fmt == "int16")
channel_format_ = cft_int16;
if (fmt == "int8")
channel_format_ = cft_int8;
if (fmt == "int64")
channel_format_ = cft_int64;
// source_id
source_id_ = info.child_value("source_id");
// version
version_ = (int)(from_string<double>(info.child_value("version")) * 100.0);
if (version_ <= 0)
throw std::runtime_error("The version of the given stream info is invalid.");
// created_at
created_at_ = from_string<double>(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");
// address
v4address_ = info.child_value("v4address");
// data_port
v4data_port_ = from_string<int>(info.child_value("v4data_port"));
// service_port
v4service_port_ = from_string<int>(info.child_value("v4service_port"));
// address
v6address_ = info.child_value("v6address");
// data_port
v6data_port_ = from_string<int>(info.child_value("v6data_port"));
// service_port
v6service_port_ = from_string<int>(info.child_value("v6service_port"));
} catch(std::exception &e) {
// reset the stream info to blank state
*this = stream_info_impl();
name_ = (string("(invalid: ") += e.what()) += ")";
}
}
//
// === Protocol Support Operations Implementation ===
//
/**
* Get the short-info message according to this stream_info.
* The short-info message is a shortened xml representation of the stream_info, excluding the .desc field (which can be megabytes in size).
* This message is sent by a stream outlet in response to a variety of queries.
*/
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();
}
/**
* Initialize a stream_info from a short-info message .
* This functions resets all fields of the stream_info accoridng to the message. The .desc field will be empty.
*/
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_);
}
/**
* Get the full-info message for this stream_info.
* This is a complete XML representation of the stream_info.
*/
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();
}
/**
* Initialize a stream_info from a full-info message.
* This functions resets all fields of the stream_info accoridng to the message.
*/
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_);
}
/**
* Test whether this stream info matches the given query string.
*/
bool stream_info_impl::matches_query(const string &query) {
lslboost::lock_guard<lslboost::mutex> lock(cache_mut_);
query_cache::left_iterator it = cached_.left.find(query);
if (it != cached_.left.end()) {
// found in cache
bool is_match = it->second.second;
// update the last-use time stamp
cached_.left.replace_data(it,std::make_pair(lsl_clock(),is_match));
return is_match;
} else {
// not found in cache
try {
// compute whether it matches
string fullquery = (string("/info[") += query) += "]";
bool result = !doc_.select_nodes(fullquery.c_str()).empty();
// insert result into cache
cached_.left.insert(std::make_pair(query,std::make_pair(lsl_clock(),result)));
// remove oldest results until we're within capacity
while ((int)cached_.size() > api_config::get_instance()->max_cached_queries())
cached_.right.erase(cached_.right.begin());
// return result
return result;
} catch(...) {
return false; // error: unsupported query
}
}
}
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_];
}
/**
* Return a handle to the info/desc element.
*/
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"); }
/**
* Set the info / protocol version used by the stream.
*/
void stream_info_impl::version(int v) {
version_ = v;
doc_.child("info").child("version").first_child().set_value(to_string(version_ / 100.).c_str());
}
/**
* Set the creation time stamp of a stream.
* This is the time stamp (via now()) of when the stream was first created
* (in the time domain of the providing machine).
*/
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());
}
/**
* Set the UID of a stream instance (once assigned).
* This is a unique identifier of the stream instance, and is guaranteed to be different
* across multiple instantiations of the same stream (e.g., after a re-start).
*/
void stream_info_impl::uid(const std::string &v) {
uid_ = v;
doc_.child("info").child("uid").first_child().set_value(uid_.c_str());
}
/**
* Set the session id for the given stream.
* The session ID is an optional human-assigned identifier of the recording session; only
* inlets and outlets that have the same session id can be paired with each other to avoid
* accidentally recording from an unrelated concurrent session on the same network.
* The session id can be set via the configuration file (see Network Connectivity in the LSL wiki).
*/
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());
}
/**
* Set the provider hostname for the given stream.
*/
void stream_info_impl::hostname(const std::string &v) {
hostname_ = v;
doc_.child("info").child("hostname").first_child().set_value(hostname_.c_str());
}
/**
* Set the host name or IP address where the stream is hosted.
*/
void stream_info_impl::v4address(const std::string &v) {
v4address_ = v;
doc_.child("info").child("v4address").first_child().set_value(v4address_.c_str());
}
/**
* Set the TCP data port where the stream is hosted (once assigned).
* This port is internally used to obtain data and meta-data from a stream.
*/
void stream_info_impl::v4data_port(uint16_t v) {
v4data_port_ = v;
doc_.child("info").child("v4data_port").first_child().text().set(v4data_port_);
}
/**
* Set the UDP service port where the stream is hosted (once assigned).
* This port is internally used to obtain time correction information for a stream.
*/
void stream_info_impl::v4service_port(uint16_t v) {
v4service_port_ = v;
doc_.child("info").child("v4service_port").first_child().text().set(v4service_port_);
}
/**
* Set the host name or IP address where the stream is hosted.
*/
void stream_info_impl::v6address(const std::string &v) {
v6address_ = v;
doc_.child("info").child("v6address").first_child().set_value(v6address_.c_str());
}
/**
* Set the TCP data port where the stream is hosted (once assigned).
* This port is internally used to obtain data and meta-data from a stream.
*/
void stream_info_impl::v6data_port(uint16_t v) {
v6data_port_ = v;
doc_.child("info").child("v6data_port").first_child().text().set(v6data_port_);
}
/**
* Set the UDP service port where the stream is hosted (once assigned).
* This port is internally used to obtain time correction information for a stream.
*/
void stream_info_impl::v6service_port(uint16_t v) {
v6service_port_ = v;
doc_.child("info").child("v6service_port").first_child().text().set(v6service_port_);
}
/**
* Assignment operator.
* Needs special handling because xml_document is non-copyable.
*/
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;
}
/**
* Copy constructor.
* Needs special handling because xml_document is non-copyable.
*/
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_);
}