forked from sccn/liblsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream_outlet_impl.cpp
More file actions
305 lines (274 loc) · 12.2 KB
/
Copy pathstream_outlet_impl.cpp
File metadata and controls
305 lines (274 loc) · 12.2 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
#include "stream_outlet_impl.h"
#include "api_config.h"
#include "sample.h"
#include "send_buffer.h"
#include "stream_info_impl.h"
#include "tcp_server.h"
#include "udp_server.h"
#include <algorithm>
#include <chrono>
#include <cstring>
#include <memory>
#include <type_traits>
namespace lsl {
stream_outlet_impl::stream_outlet_impl(const stream_info_impl &info, int32_t chunk_size,
int32_t requested_bufsize, lsl_transport_options_t flags)
: sample_factory_(std::make_shared<factory>(info.channel_format(), info.channel_count(),
static_cast<uint32_t>(
info.nominal_srate()
? info.nominal_srate() * api_config::get_instance()->outlet_buffer_reserve_ms() /
1000
: api_config::get_instance()->outlet_buffer_reserve_samples()))),
chunk_size_(info.calc_transport_buf_samples(requested_bufsize, flags)),
info_(std::make_shared<stream_info_impl>(info)),
send_buffer_(std::make_shared<send_buffer>(chunk_size_)),
io_ctx_data_(std::make_shared<asio::io_context>(1)),
io_ctx_service_(std::make_shared<asio::io_context>(1)),
sync_mode_((flags & transp_sync_blocking) != 0) {
ensure_lsl_initialized();
// Validate sync mode constraints
if (sync_mode_) {
if (info.channel_format() == cft_string) {
throw std::invalid_argument(
"Synchronous (zero-copy) mode is not supported for string-format streams");
}
LOG_F(INFO, "Creating outlet in synchronous (zero-copy) mode for stream '%s'",
info.name().c_str());
}
const api_config *cfg = api_config::get_instance();
// instantiate IPv4 and/or IPv6 stacks (depending on settings)
if (cfg->allow_ipv4()) try {
instantiate_stack(udp::v4());
} catch (std::exception &e) {
LOG_F(WARNING, "Could not instantiate IPv4 stack: %s", e.what());
}
if (cfg->allow_ipv6()) try {
instantiate_stack(udp::v6());
} catch (std::exception &e) {
LOG_F(WARNING, "Could not instantiate IPv6 stack: %s", e.what());
}
// create TCP data server
tcp_server_ = std::make_shared<tcp_server>(info_, io_ctx_data_, send_buffer_, sample_factory_,
chunk_size_, cfg->allow_ipv4(), cfg->allow_ipv6(), sync_mode_);
// fail if both stacks failed to instantiate
if (udp_servers_.empty())
throw std::runtime_error("Neither the IPv4 nor the IPv6 stack could be instantiated.");
// get the async request chains set up
tcp_server_->begin_serving();
for (auto &udp_server : udp_servers_) udp_server->begin_serving();
for (auto &responder : responders_) responder->begin_serving();
// and start the IO threads to handle them
const std::string name{"IO_" + this->info().name().substr(0, 11)};
for (const auto &io : {io_ctx_data_, io_ctx_service_})
io_threads_.emplace_back(std::make_shared<std::thread>([io, name]() {
loguru::set_thread_name(name.c_str());
while (!io->stopped()) {
try {
io->run();
return;
} catch (std::exception &e) {
LOG_F(ERROR, "Error during io_context processing: %s", e.what());
}
}
}));
}
void stream_outlet_impl::instantiate_stack(udp udp_protocol) {
// get api_config
const api_config *cfg = api_config::get_instance();
std::string listen_address = cfg->listen_address();
int multicast_ttl = cfg->multicast_ttl();
uint16_t multicast_port = cfg->multicast_port();
LOG_F(2, "%s: Trying to listen at address '%s'", info().name().c_str(), listen_address.c_str());
// create UDP time server
udp_servers_.push_back(std::make_shared<udp_server>(info_, *io_ctx_service_, udp_protocol));
// create UDP multicast responders
for (const auto &address : cfg->multicast_addresses()) {
try {
// use only addresses for the protocol that we're supposed to use here
if (udp_protocol == udp::v4() ? address.is_v4() : address.is_v6())
responders_.push_back(std::make_shared<udp_server>(
info_, *io_ctx_service_, address, multicast_port, multicast_ttl, listen_address));
} catch (std::exception &e) {
LOG_F(WARNING, "Couldn't create multicast responder for %s (%s)",
address.to_string().c_str(), e.what());
}
}
}
stream_outlet_impl::~stream_outlet_impl() {
try {
// cancel all request chains
tcp_server_->end_serving();
for (auto &udp_server : udp_servers_) udp_server->end_serving();
for (auto &responder : responders_) responder->end_serving();
// In theory, an io context should end quickly, but in practice it
// might take a while. So we
// 1. ask them to stop after they've finished their current task
// 2. wait a bit
// 3. stop the io contexts from our thread. Not ideal, but better than
// 4. waiting a bit and
// 5. detaching thread, i.e. letting it hang and continue tearing down
// the outlet
asio::post(*io_ctx_data_, [io = io_ctx_data_]() { io->stop(); });
asio::post(*io_ctx_service_, [io = io_ctx_service_]() { io->stop(); });
const char *name = this->info().name().c_str();
for (int try_nr = 0; try_nr <= 100; ++try_nr) {
switch (try_nr) {
case 0: DLOG_F(INFO, "Trying to join IO threads for %s", name); break;
case 20: LOG_F(INFO, "Waiting for %s's IO threads to end", name); break;
case 80:
LOG_F(WARNING, "Stopping io_contexts for %s", name);
io_ctx_data_->stop();
io_ctx_service_->stop();
for (std::size_t k = 0; k < io_threads_.size(); k++) {
if (!io_threads_[k]->joinable()) {
LOG_F(ERROR, "%s's io thread #%lu still running", name, k);
}
}
break;
case 100:
LOG_F(ERROR, "Detaching io_threads for %s", name);
for (auto &thread : io_threads_) thread->detach();
return;
default: break;
}
std::this_thread::sleep_for(std::chrono::milliseconds(25));
if (std::all_of(io_threads_.begin(), io_threads_.end(),
[](const thread_p &thread) { return thread->joinable(); })) {
for (auto &thread : io_threads_) thread->join();
DLOG_F(INFO, "All of %s's IO threads were joined succesfully", name);
break;
}
}
} catch (std::exception &e) {
LOG_F(WARNING, "Unexpected error during destruction of a stream outlet: %s", e.what());
} catch (...) { LOG_F(ERROR, "Severe error during stream outlet shutdown."); }
}
void stream_outlet_impl::push_numeric_raw(const void *data, double timestamp, bool pushthrough) {
if (lsl::api_config::get_instance()->force_default_timestamps()) timestamp = 0.0;
if (sync_mode_) {
// Sync path: directly use user's buffer (zero-copy)
enqueue_sync(asio::const_buffer(data, sample_factory_->datasize()),
timestamp == 0.0 ? lsl_clock() : timestamp, pushthrough);
} else {
// Async path: copy into sample
sample_p smp(
sample_factory_->new_sample(timestamp == 0.0 ? lsl_clock() : timestamp, pushthrough));
smp->assign_untyped(data);
send_buffer_->push_sample(smp);
}
}
bool stream_outlet_impl::have_consumers() {
// Check both async consumers (via send_buffer) and sync consumers (via tcp_server)
return send_buffer_->have_consumers() || tcp_server_->have_sync_consumers();
}
bool stream_outlet_impl::wait_for_consumers(double timeout) {
// For sync mode, we need to poll since sync consumers aren't registered with send_buffer
if (sync_mode_) {
auto start = std::chrono::steady_clock::now();
double elapsed = 0.0;
while (elapsed < timeout) {
if (tcp_server_->have_sync_consumers()) return true;
std::this_thread::sleep_for(std::chrono::milliseconds(10));
elapsed = std::chrono::duration<double>(std::chrono::steady_clock::now() - start).count();
}
return tcp_server_->have_sync_consumers();
}
return send_buffer_->wait_for_consumers(timeout);
}
template <class T>
void stream_outlet_impl::enqueue(const T *data, double timestamp, bool pushthrough) {
if (lsl::api_config::get_instance()->force_default_timestamps()) timestamp = 0.0;
// Sync mode only for non-string types (strings have variable size, can't do zero-copy)
if (sync_mode_ && !std::is_same<T, std::string>::value) {
// Sync path: directly use user's buffer (zero-copy)
enqueue_sync(asio::const_buffer(data, sample_factory_->datasize()),
timestamp == 0.0 ? lsl_clock() : timestamp, pushthrough);
} else {
// Async path: copy into sample
sample_p smp(
sample_factory_->new_sample(timestamp == 0.0 ? lsl_clock() : timestamp, pushthrough));
smp->assign_typed(data);
send_buffer_->push_sample(smp);
}
}
template void stream_outlet_impl::enqueue<char>(const char *data, double, bool);
template void stream_outlet_impl::enqueue<int16_t>(const int16_t *data, double, bool);
template void stream_outlet_impl::enqueue<int32_t>(const int32_t *data, double, bool);
template void stream_outlet_impl::enqueue<int64_t>(const int64_t *data, double, bool);
template void stream_outlet_impl::enqueue<float>(const float *data, double, bool);
template void stream_outlet_impl::enqueue<double>(const double *data, double, bool);
template void stream_outlet_impl::enqueue<std::string>(const std::string *data, double, bool);
// === Sync mode implementation ===
void stream_outlet_impl::push_timestamp_sync(double timestamp) {
// Encode one sample's timestamp into the wire format and append gather buffers that
// reference the stable deque storage. The tag is a single byte (sync_ts_entry::tag),
// so its address transmits the correct byte regardless of host endianness.
if (timestamp == DEDUCED_TIMESTAMP) {
// Deduced timestamp: just the 1-byte tag, no timestamp value
sync_timestamps_.push_back({TAG_DEDUCED_TIMESTAMP, 0.0});
auto &e = sync_timestamps_.back();
sync_buffers_.push_back(asio::const_buffer(&e.tag, 1));
} else {
// Transmitted timestamp: 1-byte tag + 8-byte timestamp value
sync_timestamps_.push_back({TAG_TRANSMITTED_TIMESTAMP, timestamp});
auto &e = sync_timestamps_.back();
sync_buffers_.push_back(asio::const_buffer(&e.tag, 1));
sync_buffers_.push_back(asio::const_buffer(&e.timestamp, sizeof(double)));
}
}
void stream_outlet_impl::flush_sync() {
if (sync_buffers_.empty()) return;
// Write all buffers to connected consumers
tcp_server_->write_all_blocking(sync_buffers_);
// Clear buffers and timestamp storage for next batch
sync_buffers_.clear();
sync_timestamps_.clear();
}
void stream_outlet_impl::enqueue_sync(asio::const_buffer buf, double timestamp, bool /*pushthrough*/) {
// Add timestamp
push_timestamp_sync(timestamp);
// Add sample data buffer (points to user's buffer - zero copy!)
sync_buffers_.push_back(buf);
// Sync mode always sends before returning, ignoring pushthrough: the gather buffers alias
// the caller's buffer, so deferring the write would leave dangling pointers once the caller
// reuses or frees that memory.
flush_sync();
}
template <class T>
void stream_outlet_impl::enqueue_chunk_sync(
const T *data, std::size_t num_samples, double timestamp, bool /*pushthrough*/) {
if (lsl::api_config::get_instance()->force_default_timestamps()) timestamp = 0.0;
if (timestamp == 0.0) timestamp = lsl_clock();
std::size_t sample_bytes = sample_factory_->datasize();
std::size_t num_chans = info_->channel_count();
// Reserve space upfront to avoid reallocations in sync_buffers_
// Each sample needs: 1-2 buffers for timestamp + 1 buffer for data
// Note: sync_timestamps_ is a deque (no reserve) to ensure pointer stability
sync_buffers_.reserve(sync_buffers_.size() + num_samples * 3);
// First sample: explicit timestamp
push_timestamp_sync(timestamp);
sync_buffers_.push_back(asio::const_buffer(data, sample_bytes));
// Remaining samples: deduced timestamps, contiguous data
for (std::size_t k = 1; k < num_samples; k++) {
push_timestamp_sync(DEDUCED_TIMESTAMP);
sync_buffers_.push_back(
asio::const_buffer(data + k * num_chans, sample_bytes));
}
// Always send the whole chunk before returning (see enqueue_sync): the gather buffers
// alias the caller's contiguous data, so the write must complete while it is still valid.
flush_sync();
}
// Explicit template instantiations for enqueue_chunk_sync
template void stream_outlet_impl::enqueue_chunk_sync<char>(
const char *, std::size_t, double, bool);
template void stream_outlet_impl::enqueue_chunk_sync<int16_t>(
const int16_t *, std::size_t, double, bool);
template void stream_outlet_impl::enqueue_chunk_sync<int32_t>(
const int32_t *, std::size_t, double, bool);
template void stream_outlet_impl::enqueue_chunk_sync<int64_t>(
const int64_t *, std::size_t, double, bool);
template void stream_outlet_impl::enqueue_chunk_sync<float>(
const float *, std::size_t, double, bool);
template void stream_outlet_impl::enqueue_chunk_sync<double>(
const double *, std::size_t, double, bool);
} // namespace lsl