Newer
Older
#define LOGURU_REPLACE_GLOG 1
#include <loguru.hpp>
using ftl::stream::Net;
using ftl::codecs::StreamPacket;
using ftl::codecs::Packet;
using ftl::codecs::Channel;
using ftl::codecs::codec_t;
using ftl::codecs::definition_t;
using ftl::codecs::kAllFrames;
using ftl::codecs::kAllFramesets;
using std::string;
using std::vector;
using std::optional;
static constexpr int kTallyScale = 10;
Net::Net(nlohmann::json &config, ftl::net::Universe *net) : Stream(config), active_(false), net_(net) {
// TODO: Install "find_stream" binding if not installed...
if (!net_->isBound("find_stream")) {
net_->bind("find_stream", [this](const std::string &uri) -> optional<ftl::UUID> {
LOG(INFO) << "REQUEST FIND STREAM: " << uri;
if (uri_ == uri) {
return net_->id();
} else {
return {};
}
});
}
if (!net_->isBound("list_streams")) {
net_->bind("list_streams", [this]() {
LOG(INFO) << "REQUEST LIST STREAMS";
vector<string> streams;
streams.push_back(uri_);
return streams;
});
}
last_frame_ = 0;
time_peer_ = ftl::UUID(0);
}
Net::~Net() {
end();
}
bool Net::onPacket(const std::function<void(const ftl::codecs::StreamPacket &, const ftl::codecs::Packet &)> &f) {
cb_ = f;
return true;
}
bool Net::post(const ftl::codecs::StreamPacket &spkt, const ftl::codecs::Packet &pkt) {
if (!active_) return false;
// Check if the channel has been requested recently enough. If not then disable it.
if (host_ && pkt.data.size() > 0 && spkt.frame_number == 0 && static_cast<int>(spkt.channel) >= 0 && static_cast<int>(spkt.channel) < 32) {
if (reqtally_[static_cast<int>(spkt.channel)] == 0) {
auto sel = selected(0);
sel -= spkt.channel;
select(0, sel);
LOG(INFO) << "Unselect Channel: " << (int)spkt.channel;
} else {
--reqtally_[static_cast<int>(spkt.channel)];
}
}
// Lock to prevent clients being added / removed
{
SHARED_LOCK(mutex_,lk);
available(spkt.frameSetID()) += spkt.channel;
if (host_) {
auto c = clients_.begin();
while (c != clients_.end()) {
auto &client = *c;
// Quality filter the packets
if (pkt.bitrate > 0 && pkt.bitrate != client.quality) {
LOG(INFO) << "Incorrect quality: " << (int)pkt.bitrate << " but requested " << (int)client.quality;
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
}
try {
// FIXME: This doesn't work for file sources with file relative timestamps...
short pre_transmit_latency = short(ftl::timer::get_time() - spkt.timestamp);
if (!net_->send(client.peerid,
uri_,
pre_transmit_latency, // Time since timestamp for tx
spkt,
pkt)) {
// Send failed so mark as client stream completed
client.txcount = client.txmax;
} else {
// Count frame as completed only if last block and channel is 0
if (spkt.streamID == 0 && spkt.frame_number == 0 && spkt.channel == Channel::Colour) ++client.txcount;
}
} catch(...) {
client.txcount = client.txmax;
}
++c;
}
} else {
try {
short pre_transmit_latency = short(ftl::timer::get_time() - spkt.timestamp);
if (!net_->send(peer_,
uri_,
pre_transmit_latency, // Time since timestamp for tx
spkt,
pkt)) {
} else {
// TODO: Some disconnect error
}
} catch(...) {
// TODO: Some disconnect error
}
}
}
_cleanUp();
return true;
}
bool Net::begin() {
if (!get<string>("uri")) return false;
active_ = true;
uri_ = *get<string>("uri");
if (net_->isBound(uri_)) {
LOG(ERROR) << "Stream already exists! - " << uri_;
active_ = false;
return false;
}
net_->bind(uri_, [this](ftl::net::Peer &p, short ttimeoff, const ftl::codecs::StreamPacket &spkt_raw, const ftl::codecs::Packet &pkt) {
int64_t now = std::chrono::time_point_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now()).time_since_epoch().count();
if (!active_) return;
StreamPacket spkt = spkt_raw;
spkt.version = 4;
// Manage recuring requests
if (!host_ && last_frame_ != spkt.timestamp) {
UNIQUE_LOCK(mutex_, lk);
if (last_frame_ != spkt.timestamp) {
last_frame_ = spkt.timestamp;
if (size() > 0) {
auto sel = selected(0);
// A change in channel selections, so send those requests now
if (sel != last_selected_) {
auto changed = sel - last_selected_;
last_selected_ = sel;
if (size() > 0) {
for (auto c : changed) {
_sendRequest(c, kAllFramesets, kAllFrames, 30, 0);
}
}
}
}
// Are we close to reaching the end of our frames request?
for (auto c : sel) {
_sendRequest(c, kAllFramesets, kAllFrames, 30, 0);
}
}
} else {
--tally_;
}
}
}
// If hosting and no data then it is a request for data
// Note: a non host can receive empty data, meaning data is available
// but that you did not request it
if (host_ && pkt.data.size() == 0) {
// FIXME: Allow unselecting ...?
if (spkt.frameSetID() == 255) {
select(i, selected(i) + spkt.channel);
}
reqtally_[static_cast<int>(spkt.channel)] = static_cast<int>(pkt.frame_count)*kTallyScale;
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
} else {
select(spkt.frameSetID(), selected(spkt.frameSetID()) + spkt.channel);
}
_processRequest(p, pkt);
} else {
// FIXME: Allow availability to change...
available(spkt.frameSetID()) += spkt.channel;
//LOG(INFO) << "AVAILABLE: " << (int)spkt.channel;
}
if (cb_) {
cb_(spkt, pkt);
if (pkt.data.size() > 0) _checkDataRate(pkt.data.size(), now-(spkt.timestamp+ttimeoff), spkt.timestamp);
}
});
auto p = net_->findOne<ftl::UUID>("find_stream", uri_);
if (!p) {
LOG(INFO) << "Hosting stream: " << uri_;
// TODO: Register URI as available.
host_ = true;
return true;
}
host_ = false;
peer_ = *p;
tally_ = 30*kTallyScale;
for (size_t i=0; i<reqtally_.size(); ++i) reqtally_[i] = 0;
// Initially send a colour request just to create the connection
_sendRequest(Channel::Colour, kAllFramesets, kAllFrames, 30, 0);
return true;
}
void Net::reset() {
UNIQUE_LOCK(mutex_, lk);
if (size() > 0) {
auto sel = selected(0);
for (auto c : sel) {
_sendRequest(c, kAllFramesets, kAllFrames, 30, 0);
}
}
tally_ = 30*kTallyScale;
}
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
bool Net::_sendRequest(Channel c, uint8_t frameset, uint8_t frames, uint8_t count, uint8_t bitrate) {
if (!active_ || host_) return false;
//LOG(INFO) << "SENDING REQUEST FOR " << (int)c;
Packet pkt = {
codec_t::Any, // TODO: Allow specific codec requests
definition_t::Any, // TODO: Allow specific definition requests
count,
bitrate
};
StreamPacket spkt = {
4,
ftl::timer::get_time(),
frameset,
frames,
c
};
net_->send(peer_, uri_, (short)0, spkt, pkt);
return true;
}
void Net::_cleanUp() {
UNIQUE_LOCK(mutex_,lk);
for (auto i=clients_.begin(); i!=clients_.end(); ++i) {
auto &client = *i;
if (client.txcount >= client.txmax) {
if (client.peerid == time_peer_) {
time_peer_ = ftl::UUID(0);
}
LOG(INFO) << "Remove peer: " << client.peerid.to_string();
i = clients_.erase(i);
}
}
}
/* Packets for specific framesets, frames and channels are requested in
* batches (max 255 unique frames by timestamp). Requests are in the form
* of packets that match the request except the data component is empty.
*/
bool Net::_processRequest(ftl::net::Peer &p, const ftl::codecs::Packet &pkt) {
{
UNIQUE_LOCK(mutex_,lk);
bool found = false;
// Does the client already exist
for (auto &c : clients_) {
if (c.peerid == p.id()) {
// Yes, so reset internal request counters
c.txcount = 0;
c.txmax = static_cast<int>(pkt.frame_count)*kTallyScale;
found = true;
}
}
// No existing client, so add a new one.
if (!found) {
auto &client = clients_.emplace_back();
client.peerid = p.id();
client.quality = 255; // TODO: Use quality given in packet
client.txmax = static_cast<int>(pkt.frame_count)*kTallyScale;
}
// First connected peer (or reconnecting peer) becomes a time server
if (time_peer_ == ftl::UUID(0)) {
time_peer_ = p.id();
DLOG(INFO) << "Adding time peer";
}
}
// Sync clocks!
if (ftl::timer::isClockSlave() && p.id() == time_peer_) {
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
auto start = std::chrono::high_resolution_clock::now();
int64_t mastertime;
try {
mastertime = net_->call<int64_t>(time_peer_, "__ping__");
} catch (...) {
LOG(ERROR) << "Ping failed";
// Reset time peer and remove timer
time_peer_ = ftl::UUID(0);
return false;
}
auto elapsed = std::chrono::high_resolution_clock::now() - start;
int64_t latency = std::chrono::duration_cast<std::chrono::milliseconds>(elapsed).count();
auto clock_adjust = mastertime - (ftl::timer::get_time() + (latency/2));
if (clock_adjust > 0) {
LOG(INFO) << "Clock adjustment: " << clock_adjust;
//LOG(INFO) << "Latency: " << (latency / 2);
//LOG(INFO) << "Local: " << std::chrono::time_point_cast<std::chrono::milliseconds>(start).time_since_epoch().count() << ", master: " << mastertime;
ftl::timer::setClockAdjustment(clock_adjust);
}
}
return false;
}
void Net::_checkDataRate(size_t tx_size, int64_t tx_latency, int64_t ts) {
float actual_mbps = (float(tx_size) * 8.0f * (1000.0f / float(tx_latency))) / 1048576.0f;
float min_mbps = (float(tx_size) * 8.0f * (1000.0f / float(ftl::timer::getInterval()))) / 1048576.0f;
if (actual_mbps > 0.0f && actual_mbps < min_mbps) LOG(WARNING) << "Bitrate = " << actual_mbps << "Mbps, min required = " << min_mbps << "Mbps";
UNIQUE_LOCK(msg_mtx_,lk);
req_bitrate_ += float(tx_size) * 8.0f;
sample_count_ += 1.0f;
if (ts - last_msg_ >= 1000) {
LOG(INFO) << "Required Bitrate = " << (req_bitrate_ / float(ts - last_msg_) * 1000.0f / 1048576.0f) << "Mbps";
last_msg_ = ts;
req_bitrate_ = 0.0f;
sample_count_ = 0.0f;
}
}
bool Net::end() {
if (!active_) return false;
active_ = false;
net_->unbind(uri_);
return true;
}
bool Net::active() {
return active_;
}