-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJitterBuffer.cpp
525 lines (470 loc) · 22 KB
/
JitterBuffer.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#include "JitterBuffer.hh"
#include <algorithm>
#include <cassert>
#include <cmath>
#include <csignal>
#include <iostream>
#include <sstream>
#include <type_traits>
#ifdef __APPLE__
#include <mach/mach.h>
#elif _GNU_SOURCE
#include <sys/mman.h>
#endif
using namespace std::chrono;
JitterBuffer::JitterBuffer(const std::size_t element_size,
const std::size_t packet_elements,
const std::uint32_t clock_rate,
const milliseconds max_length,
const milliseconds min_length,
const cantina::LoggerPointer &logger)
: logger(std::make_shared<cantina::Logger>("JTTR", logger)),
element_size(element_size),
packet_elements(packet_elements),
clock_rate(clock_rate),
min_length(min_length),
max_length(max_length),
read_offset(0),
write_offset(0),
written(0),
written_elements(0) {
memset(&metrics, 0, sizeof(metrics));
// Packets should be at least 1ms.
const milliseconds each_packet = milliseconds(packet_elements * 1000 / clock_rate);
if (each_packet.count() < 1) {
throw std::invalid_argument("Packets should be at least 1ms.");
}
// Ensure atomic variables are lock free.
static_assert(std::is_same<decltype(written), std::atomic<std::size_t>>::value);
static_assert(std::is_same<decltype(written_elements), std::atomic<std::size_t>>::value);
static_assert(std::atomic<std::size_t>::is_always_lock_free);
// VM Address trick for automatic wrap around.
const std::size_t buffer_size = max_length.count() * (clock_rate / 1000) * (element_size + METADATA_SIZE);
max_size_bytes = buffer_size;
#if _GNU_SOURCE
vm_user_data = calloc(1, sizeof(int));
#endif
buffer = reinterpret_cast<std::uint8_t *>(MakeVirtualMemory(max_size_bytes, vm_user_data));
// Done.
memset(buffer, 0, max_size_bytes);
last_written_sequence_number.reset();
logger->debug << "Allocated JitterBuffer with: " << max_size_bytes << " bytes" << std::flush;
}
JitterBuffer::~JitterBuffer() {
FreeVirtualMemory(buffer, max_size_bytes, vm_user_data);
}
std::size_t JitterBuffer::Prepare(const std::uint32_t sequence_number, const ConcealmentCallback &concealment_callback) {
if (!last_written_sequence_number.has_value()) {
// Nothing to do.
return 0;
}
const unsigned long last = last_written_sequence_number.value();
if (sequence_number <= last) {
// Might be an update, nothing to do.
return 0;
}
if (sequence_number == last + 1) {
// This is the next packet, nothing to do.
return 0;
}
// In all other cases, we're missing packets.
const std::size_t missing_packets = sequence_number - last - 1;
const std::size_t concealed_frames = GenerateConcealment(missing_packets, concealment_callback);
this->metrics.concealed_frames += concealed_frames;
return concealed_frames;
}
std::size_t JitterBuffer::Enqueue(const std::vector<Packet> &packets, const ConcealmentCallback &concealment_callback) {
std::size_t enqueued = 0;
for (const Packet &packet: packets) {
// TODO: Handle sequence rollover.
if (packet.sequence_number <= last_written_sequence_number) {
// This might be an update for an existing concealment packet.
// Update it and continue on.
enqueued += Update(packet);
continue;
} else if (last_written_sequence_number.has_value() && packet.sequence_number != last_written_sequence_number) {
const std::size_t last = last_written_sequence_number.value();
const std::size_t missing = packet.sequence_number - last - 1;
if (missing > 0) {
const auto concealed = GenerateConcealment(missing, concealment_callback);
enqueued += concealed;
this->metrics.concealed_frames += concealed;
}
}
// Enqueue this packet of real data.
if (packet.elements != packet_elements) {
std::ostringstream message;
message << "Supplied packet elements must match declared number of elements. Got: " << packet.elements << ", expected: " << packet_elements;
throw std::invalid_argument(message.str());
}
const std::size_t enqueued_elements = CopyIntoBuffer(packet);
if (enqueued_elements == 0 && packet.elements > 0) {
// There's no more space.
logger->warning << "Enqueue has no more space. This packet will be lost " << packet.sequence_number << std::flush;
break;
}
enqueued += enqueued_elements;
last_written_sequence_number = packet.sequence_number;
}
// Now that we've written, check the fill level.
// If it's below 1/2 the min fill level, we need to conceal.
const milliseconds gap_to_min = (min_length / 2) - GetCurrentDepth();
if (play && gap_to_min.count() > 0) {
// How many packets would cover this gap?
const milliseconds each_packet = milliseconds(packet_elements * 1000 / clock_rate.count());
assert(each_packet.count() > 0);
const std::size_t to_conceal = std::ceil((float) gap_to_min.count() / (float) each_packet.count());
const auto concealed = GenerateConcealment(to_conceal, concealment_callback);
enqueued += concealed;
this->metrics.filled_packets = concealed;
}
// If we're waiting to play, is it time to play?
if (!play && GetCurrentDepth() >= min_length) {
play = true;
}
return enqueued;
}
std::size_t JitterBuffer::Dequeue(std::uint8_t *destination, const std::size_t &destination_length, const std::size_t &elements) {
if (!play) {
return 0;
}
// Check the destination buffer is big enough.
const std::size_t required_bytes = elements * element_size;
if (destination_length < required_bytes) {
std::ostringstream message;
message << "Provided buffer too small. Was: " << destination_length << ", need: " << required_bytes;
throw std::invalid_argument(message.str());
}
std::size_t dequeued_bytes = 0;
std::size_t destination_offset = 0;
while (written >= METADATA_SIZE && dequeued_bytes < required_bytes) {
// Get the header.
Header header{};
[[maybe_unused]] const std::size_t copied = CopyOutOfBuffer((std::uint8_t *) &header, METADATA_SIZE, METADATA_SIZE, true);
assert(copied == METADATA_SIZE);
assert(header.elements > 0);
// If this is concealement, check the use flag.
if (header.concealment && header.in_use.test_and_set(std::memory_order::acquire)) {
// This packet is currently being updated from concealment data to real data.
// It's not safe for us to read it - skip to the next available packet.
logger->warning << "[" << header.sequence_number << "] Dequeue: Can't read concealment packet because it's being updated." << std::flush;
ForwardRead(header.elements * element_size);
written_elements -= header.elements;
continue;
}
const std::uint64_t now_ms = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
const std::uint64_t age = now_ms - header.timestamp;
if (age >= static_cast<std::uint64_t>(max_length.count())) {
// It's too old, throw this away and run to the next.
assert(header.elements <= packet_elements);
ForwardRead(header.elements * element_size);
skipped_frames += header.elements;
written_elements -= header.elements;
continue;
}
// Get as much real data as we can.
const std::size_t available_bytes = header.elements * element_size;
const std::size_t available_or_space = std::min(available_bytes, destination_length - destination_offset);
const std::size_t remaining_required_bytes = required_bytes - destination_offset;
const std::size_t to_dequeue = std::min(available_or_space, remaining_required_bytes);
const std::size_t bytes_dequeued = CopyOutOfBuffer(destination + destination_offset, destination_length - destination_offset, to_dequeue, true);
assert(bytes_dequeued <= to_dequeue); // We shouldn't get more than we asked for.
assert(bytes_dequeued > 0); // Because we got a header, we should get *something*.
assert(bytes_dequeued % element_size == 0);// We should only get whole elements out.
destination_offset += bytes_dequeued;
[[maybe_unused]] const std::size_t originally_available = header.elements;
bool clear_header = true;
if (bytes_dequeued < available_bytes) {
// We didn't fully empty a packet, update the header to reflect what's left.
UnwindRead(METADATA_SIZE);
const std::size_t remaining_bytes = available_bytes - bytes_dequeued;
assert(remaining_bytes % element_size == 0);// We should only get whole elements.
header.elements = remaining_bytes / element_size;
assert(header.elements > 0);
if (header.concealment) {
clear_header = false;
header.in_use.clear(std::memory_order::release);
}
memcpy(buffer + read_offset, &header, METADATA_SIZE);
// We need to update the next header's previous elements too.
if (written >= (METADATA_SIZE * 2) + header.elements * element_size) {
std::size_t next_header_offset = (read_offset + METADATA_SIZE + header.elements * element_size) % max_size_bytes;
Header *next_header = reinterpret_cast<Header *>(buffer + next_header_offset);
assert(next_header->sequence_number == header.sequence_number + 1);
if (next_header->in_use.test_and_set(std::memory_order::acquire)) {
// We can't alter this packet so we'll have to signal the walk to stop here in the future.
logger->error << "[" << header.sequence_number << "] [" << next_header->sequence_number << "] Dequeue: Can't update next header because it's being updated. Walks will stop here." << std::flush;
dont_walk_beyond = next_header->sequence_number;
} else {
// Update the next header for future walkers.
next_header->previous_elements = header.elements;
next_header->in_use.clear(std::memory_order::release);
}
}
}
if (header.concealment && clear_header) {
header.in_use.clear(std::memory_order::release);
}
[[maybe_unused]] const std::size_t dequeued_elements = bytes_dequeued / element_size;
assert(dequeued_elements <= originally_available);// We should not get more than available.
dequeued_bytes += bytes_dequeued;
}
assert(dequeued_bytes % element_size == 0);// We should only get whole elements.
const std::size_t dequeued_elements = dequeued_bytes / element_size;
assert(dequeued_elements <= elements);// We should not get more than asked for.
written_elements -= dequeued_elements;
return dequeued_elements;
}
std::size_t JitterBuffer::GenerateConcealment(const std::size_t packets, const ConcealmentCallback &callback) {
// Alter missing to be the smallest of the missing packets or what we can currently fit in the buffer.
const std::size_t space = max_size_bytes - written;
const std::size_t packet_size = (packet_elements * element_size) + METADATA_SIZE;
const std::size_t full_packets_fit = space / packet_size;
const std::size_t to_conceal = std::min(packets, full_packets_fit);
const unsigned long last = last_written_sequence_number.value();
if (packets != to_conceal) {
logger->warning << "Couldn't fit all missing. Asking for: " << to_conceal << "/" << packets << std::flush;
}
std::vector<Packet> concealment_packets = std::vector<Packet>(to_conceal);
std::size_t previous = latest_written_elements;
for (std::size_t sequence_offset = 0; sequence_offset < to_conceal; sequence_offset++) {
// We need to write the header for this packet.
const std::int64_t now_ms = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
Header header = {
.sequence_number = static_cast<uint32_t>(last + sequence_offset + 1),
.elements = packet_elements,
.timestamp = static_cast<uint64_t>(now_ms),
.concealment = true,
.previous_elements = previous,
};
previous = header.elements;
CopyIntoBuffer(reinterpret_cast<std::uint8_t *>(&header), METADATA_SIZE, true, 0);
write_offset = (write_offset + METADATA_SIZE) % max_size_bytes;
const std::size_t length = header.elements * element_size;
concealment_packets[sequence_offset] = {
.sequence_number = header.sequence_number,
.data = buffer + write_offset,
.length = length,
.elements = header.elements,
};
write_offset = (write_offset + length) % max_size_bytes;
}
callback(concealment_packets);
// Now that we've finished providing data, update values for the reader.
written += to_conceal * ((packet_elements * element_size) + METADATA_SIZE);
assert(written <= max_size_bytes);
written_elements += to_conceal * packet_elements;
last_written_sequence_number = last + to_conceal;
latest_written_elements = previous;
return packet_elements * to_conceal;
}
std::size_t JitterBuffer::Update(const Packet &packet) {
// Get a snapshot of the current state.
std::size_t local_write_offset = write_offset;
std::size_t written_at_start = written;
// Get the first header by moving back elements + metadata.
const std::size_t this_chunk = latest_written_elements * element_size + METADATA_SIZE;
if (this_chunk > written_at_start) {
logger->warning << "Wanted to go back " << this_chunk << " bytes, but only have " << written_at_start << " bytes." << std::flush;
this->metrics.update_missed_frames += packet.elements;
return 0;
}
written_at_start -= this_chunk;
local_write_offset = ((local_write_offset - this_chunk) + this_chunk * max_size_bytes) % max_size_bytes;
Header *header;
while (true) {
// Parse the header that should be located here.
header = reinterpret_cast<Header *>(buffer + local_write_offset);
if (header->sequence_number == packet.sequence_number) break;
if (header->in_use.test_and_set(std::memory_order::acquire)) {
logger->warning << "[" << packet.sequence_number << "] [" << header->sequence_number << "] Packet in use. Stopping walk." << std::flush;
return 0;
}
if (header->sequence_number <= dont_walk_beyond) {
logger->warning << "[" << packet.sequence_number << "] [" << header->sequence_number << "] Unwalkable." << std::flush;
return 0;
}
assert(header->previous_elements > 0);
std::size_t to_move = (header->previous_elements * element_size) + METADATA_SIZE;
if (to_move > written_at_start) {
// Couldn't find it, probably already read.
logger->warning << "[" << packet.sequence_number << "] Couldn't find target packet." << std::flush;
header->in_use.clear(std::memory_order::release);
this->metrics.update_missed_frames += packet.elements;
return 0;
}
local_write_offset = ((local_write_offset - to_move) + to_move * max_size_bytes) % max_size_bytes;
written_at_start -= to_move;
header->in_use.clear(std::memory_order::release);
}
// We found the target packet.
assert(header->concealment);
if (header->in_use.test_and_set(std::memory_order::acquire)) {
// It's being read, we can't update it.
logger->warning << "[" << packet.sequence_number << "] Update called on a packet that is currently being read" << std::flush;
return 0;
}
// Copy in the updated data.
const std::size_t source_offset_frames = packet.elements - header->elements;
memcpy(buffer + ((local_write_offset + METADATA_SIZE) % max_size_bytes), reinterpret_cast<std::uint8_t *>(packet.data) + (source_offset_frames * element_size), header->elements * element_size);
header->concealment = false;
header->in_use.clear(std::memory_order::release);
this->metrics.updated_frames += header->elements;
return header->elements;
}
std::size_t JitterBuffer::CopyIntoBuffer(const Packet &packet) {
// Prepare to write the header.
const std::size_t space = max_size_bytes - written;
if (space < METADATA_SIZE) {
return 0;
}
const std::int64_t now_ms = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count();
Header header = Header();
header.timestamp = now_ms;
header.sequence_number = packet.sequence_number;
const std::size_t header_offset = write_offset;
const std::size_t enqueued = CopyIntoBuffer(static_cast<std::uint8_t *>(packet.data), element_size * packet.elements, true, METADATA_SIZE);
if (enqueued == 0) {
// There was space for 0 frames, so write nothing.
return 0;
}
const std::size_t remainder = enqueued % element_size;
const std::size_t enqueued_element_bytes = enqueued - remainder;
assert(enqueued_element_bytes % element_size == 0);// We should write whole elements.
header.elements = enqueued_element_bytes / element_size;
assert(header.elements > 0);
header.previous_elements = latest_written_elements;
latest_written_elements = header.elements;
memcpy(buffer + header_offset, &header, METADATA_SIZE);
ForwardWrite(enqueued_element_bytes + METADATA_SIZE);
assert(written <= max_size_bytes);
written_elements += header.elements;
return header.elements;
}
std::size_t JitterBuffer::CopyIntoBuffer(const std::uint8_t *src, const std::size_t length, const bool manual_increment, const std::size_t offset_offset_bytes) {
assert(written <= max_size_bytes);
// Ensure we have enough space.
const std::size_t space = max_size_bytes - written;
if (length > space) {
logger->error << "No space! Wanted: " << length << " space: " << space << std::flush;
return 0;
}
// Copy data into the buffer.
const std::size_t offset = (write_offset + offset_offset_bytes) % max_size_bytes;
memcpy(buffer + offset, src, length);
if (!manual_increment) ForwardWrite(length);
assert(written <= max_size_bytes);
return length;
}
std::size_t JitterBuffer::CopyOutOfBuffer(std::uint8_t *destination, const std::size_t length, const std::size_t required_bytes, const bool strict) {
if (required_bytes > length) {
// Destination not big enough.
logger->error << "Provided buffer not big enough" << std::flush;
return -1;
}
// How much data is actually available?
const std::size_t currently_written = written;
if (strict && required_bytes > currently_written) {
return 0;
}
const std::size_t available = std::min(required_bytes, currently_written);
if (available == 0) {
return 0;
}
// Copy the available data into the destination buffer.
memcpy(destination, buffer + read_offset, available);
ForwardRead(available);
return available;
}
std::uint8_t *JitterBuffer::GetReadPointerAtPacketOffset(const std::size_t read_offset_packets) const {
const std::size_t read_offset_bytes = METADATA_SIZE + (read_offset_packets * (METADATA_SIZE + (packet_elements * element_size)));
if (read_offset_bytes >= max_size_bytes) {
throw std::runtime_error("Offset cannot be greater than the size of the buffer");
}
return buffer + read_offset_bytes;
}
void JitterBuffer::UnwindRead(const std::size_t unwind_bytes) {
assert(unwind_bytes > 0);
written += unwind_bytes;
assert(written <= max_size_bytes);
read_offset = ((read_offset - unwind_bytes) + unwind_bytes * max_size_bytes) % max_size_bytes;
}
void JitterBuffer::ForwardRead(const std::size_t forward_bytes) {
assert(forward_bytes > 0);
assert(forward_bytes <= written);
assert(written <= max_size_bytes);
written -= forward_bytes;
read_offset = (read_offset + forward_bytes) % max_size_bytes;
}
void JitterBuffer::UnwindWrite(const std::size_t unwind_bytes) {
assert(unwind_bytes > 0);
assert(unwind_bytes <= written);
assert(written <= max_size_bytes);
written -= unwind_bytes;
write_offset = ((write_offset - unwind_bytes) + unwind_bytes * max_size_bytes) % max_size_bytes;
}
void JitterBuffer::ForwardWrite(const std::size_t forward_bytes) {
assert(forward_bytes > 0);
written += forward_bytes;
assert(written <= max_size_bytes);
write_offset = (write_offset + forward_bytes) % max_size_bytes;
}
milliseconds JitterBuffer::GetCurrentDepth() const {
const float ms = written_elements * 1000 / clock_rate.count();
return milliseconds(static_cast<std::int64_t>(ms));
}
Metrics JitterBuffer::GetMetrics() const {
// Get current copy of metrics, updating skipped from other thread's atomic value.
auto result = this->metrics;
result.skipped_frames = skipped_frames;
return result;
}
void *JitterBuffer::MakeVirtualMemory(std::size_t &length, [[maybe_unused]] void *user_data) {
// Get buffer length as multiple of page size.
#ifdef __APPLE__
length = round_page(length);
#elif _GNU_SOURCE
const int page_size = getpagesize();
length = length + page_size - (length % page_size);
#endif
void *address;
#if __APPLE__
vm_address_t buffer_address;
[[maybe_unused]] kern_return_t result = vm_allocate(mach_task_self(), &buffer_address, length * 2, VM_FLAGS_ANYWHERE);
assert(result == ERR_SUCCESS);
result = vm_deallocate(mach_task_self(), buffer_address + length, length);
assert(result == ERR_SUCCESS);
vm_address_t virtual_address = buffer_address + length;
vm_prot_t current;
vm_prot_t max;
result = vm_remap(mach_task_self(), &virtual_address, length, 0, 0, mach_task_self(), buffer_address, 0, ¤t, &max, VM_INHERIT_DEFAULT);
assert(result == ERR_SUCCESS);
assert(virtual_address == buffer_address + length);
address = reinterpret_cast<void *>(buffer_address);
#elif _GNU_SOURCE
int fd = memfd_create("buffer", 0);
memcpy(user_data, &fd, sizeof(fd));
[[maybe_unused]] int truncated = ftruncate(fd, length);
assert(truncated == 0);
address = mmap(nullptr, 2 * length, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
mmap(address, length, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, 0);
auto typed_address = reinterpret_cast<std::uint8_t *>(address);
mmap(reinterpret_cast<void *>(typed_address + length), length, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, 0);
#else
throw std::runtime_error("No virtual memory implementation");
#endif
return address;
}
void JitterBuffer::FreeVirtualMemory(void *address, const std::size_t length, [[maybe_unused]] void *user_data) {
#ifdef __APPLE__
vm_deallocate(mach_task_self(), reinterpret_cast<vm_address_t>(address), length * 2);
#elif _GNU_SOURCE
auto typed_address = reinterpret_cast<std::uint8_t *>(address);
munmap(typed_address + length, length);
munmap(address, length);
close(*reinterpret_cast<int *>(user_data));
free(user_data);
#else
throw std::runtime_error("No virtual memory implementation");
#endif
}