-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy patheventsstreamthread.cpp
More file actions
494 lines (403 loc) · 10.9 KB
/
Copy patheventsstreamthread.cpp
File metadata and controls
494 lines (403 loc) · 10.9 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
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
#include "eventsstreamthread.h"
#include "changestatetracker.h"
#include <vdr/tools.h>
#include <algorithm>
#include <arpa/inet.h>
#include <errno.h>
#include <netinet/in.h>
#include <sstream>
#include <string.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <unistd.h>
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif
namespace
{
std::string jsonDomainArray(const std::vector<std::string>& domains)
{
std::ostringstream out;
out << "[";
for (std::size_t i = 0; i < domains.size(); ++i)
{
if (i > 0)
{
out << ",";
}
out << "\"" << domains[i] << "\"";
}
out << "]";
return out.str();
}
uint64_t maxChangeId(
uint64_t channels,
uint64_t recordings,
uint64_t timers,
uint64_t events)
{
return std::max(std::max(channels, recordings), std::max(timers, events));
}
bool pathMatchesEventStream(const std::string& path)
{
return path == "/eventstream" || path == "/eventstream/";
}
}
EventsStreamThread::EventsStreamThread()
: active(false),
serverFd(-1),
listenPort(0)
{
}
EventsStreamThread::~EventsStreamThread()
{
Stop();
}
void EventsStreamThread::Initialize(const std::string& ip, unsigned short port)
{
SetDescription("Restfulapi EventStreamThread");
listenIp = ip;
listenPort = port;
}
void EventsStreamThread::Stop()
{
active.store(false);
const int fd = serverFd.exchange(-1);
if (fd >= 0)
{
shutdown(fd, SHUT_RDWR);
close(fd);
}
Cancel(1);
}
void EventsStreamThread::Action(void)
{
active.store(true);
if (!createServerSocket())
{
active.store(false);
return;
}
isyslog(
"restfulapi: eventstream listening on %s:%u",
listenIp.c_str(),
static_cast<unsigned int>(listenPort));
while (active.load())
{
const int fd = serverFd.load();
if (fd < 0)
{
break;
}
fd_set readSet;
FD_ZERO(&readSet);
FD_SET(fd, &readSet);
timeval timeout;
timeout.tv_sec = 1;
timeout.tv_usec = 0;
const int result = select(fd + 1, &readSet, NULL, NULL, &timeout);
if (!active.load())
{
break;
}
if (result < 0)
{
if (errno == EINTR)
{
continue;
}
esyslog("restfulapi: eventstream select failed: %s", strerror(errno));
break;
}
if (result == 0)
{
continue;
}
sockaddr_in clientAddress;
socklen_t clientLength = sizeof(clientAddress);
const int clientFd = accept(fd, reinterpret_cast<sockaddr*>(&clientAddress), &clientLength);
if (clientFd < 0)
{
if (active.load())
{
esyslog("restfulapi: eventstream accept failed: %s", strerror(errno));
}
continue;
}
handleClient(clientFd);
close(clientFd);
}
const int fd = serverFd.exchange(-1);
if (fd >= 0)
{
close(fd);
}
isyslog("restfulapi: eventstream stopped");
}
bool EventsStreamThread::createServerSocket()
{
const int fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0)
{
esyslog("restfulapi: eventstream socket failed: %s", strerror(errno));
return false;
}
int reuse = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
sockaddr_in address;
memset(&address, 0, sizeof(address));
address.sin_family = AF_INET;
address.sin_port = htons(listenPort);
if (listenIp.empty() || listenIp == "0.0.0.0")
{
address.sin_addr.s_addr = htonl(INADDR_ANY);
}
else if (inet_pton(AF_INET, listenIp.c_str(), &address.sin_addr) != 1)
{
esyslog("restfulapi: eventstream invalid listen ip: %s", listenIp.c_str());
close(fd);
return false;
}
if (bind(fd, reinterpret_cast<sockaddr*>(&address), sizeof(address)) < 0)
{
esyslog(
"restfulapi: eventstream bind failed on %s:%u: %s",
listenIp.c_str(),
static_cast<unsigned int>(listenPort),
strerror(errno));
close(fd);
return false;
}
if (listen(fd, 4) < 0)
{
esyslog("restfulapi: eventstream listen failed: %s", strerror(errno));
close(fd);
return false;
}
serverFd.store(fd);
return true;
}
void EventsStreamThread::handleClient(int clientFd)
{
std::string requestData;
if (!readHttpRequest(clientFd, requestData))
{
return;
}
std::istringstream requestStream(requestData);
std::string method;
std::string path;
std::string protocol;
requestStream >> method >> path >> protocol;
if (method == "OPTIONS")
{
sendOptionsResponse(clientFd);
return;
}
if (method != "GET")
{
sendMethodNotAllowedResponse(clientFd);
return;
}
if (!pathMatchesEventStream(path))
{
sendNotFoundResponse(clientFd);
return;
}
isyslog("restfulapi: eventstream client connected");
if (!sendStreamHeaders(clientFd))
{
return;
}
uint64_t lastChannels = StateChangeTracker::LastChannelsUpdate();
uint64_t lastRecordings = StateChangeTracker::LastRecordingsUpdate();
uint64_t lastTimers = StateChangeTracker::LastTimersUpdate();
uint64_t lastEvents = StateChangeTracker::LastEventsUpdate();
if (!sendHello(clientFd))
{
return;
}
int heartbeatTicks = 0;
while (active.load())
{
for (int i = 0; i < 10 && active.load(); ++i)
{
usleep(100000);
}
if (!active.load())
{
break;
}
const uint64_t currentChannels = StateChangeTracker::LastChannelsUpdate();
const uint64_t currentRecordings = StateChangeTracker::LastRecordingsUpdate();
const uint64_t currentTimers = StateChangeTracker::LastTimersUpdate();
const uint64_t currentEvents = StateChangeTracker::LastEventsUpdate();
std::vector<std::string> domains;
if (currentChannels != lastChannels)
{
domains.push_back("channels");
lastChannels = currentChannels;
}
if (currentRecordings != lastRecordings)
{
domains.push_back("recordings");
lastRecordings = currentRecordings;
}
if (currentTimers != lastTimers)
{
domains.push_back("timers");
lastTimers = currentTimers;
}
if (currentEvents != lastEvents)
{
domains.push_back("events");
lastEvents = currentEvents;
}
if (!domains.empty())
{
heartbeatTicks = 0;
if (!sendChange(
clientFd,
maxChangeId(currentChannels, currentRecordings, currentTimers, currentEvents),
domains))
{
break;
}
continue;
}
++heartbeatTicks;
if (heartbeatTicks >= 5)
{
heartbeatTicks = 0;
if (!sendHeartbeat(clientFd))
{
break;
}
}
}
isyslog("restfulapi: eventstream client disconnected");
}
bool EventsStreamThread::readHttpRequest(int clientFd, std::string& requestData)
{
timeval timeout;
timeout.tv_sec = 3;
timeout.tv_usec = 0;
setsockopt(clientFd, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(timeout));
char buffer[1024];
while (requestData.size() < 8192)
{
const ssize_t received = recv(clientFd, buffer, sizeof(buffer), 0);
if (received < 0)
{
if (errno == EINTR)
{
continue;
}
return !requestData.empty();
}
if (received == 0)
{
return !requestData.empty();
}
requestData.append(buffer, static_cast<std::size_t>(received));
if (requestData.find("\r\n\r\n") != std::string::npos ||
requestData.find("\n\n") != std::string::npos)
{
return true;
}
}
return true;
}
void EventsStreamThread::sendOptionsResponse(int clientFd)
{
sendAll(
clientFd,
"HTTP/1.1 200 OK\r\n"
"Access-Control-Allow-Origin: *\r\n"
"Access-Control-Allow-Methods: GET, OPTIONS\r\n"
"Access-Control-Allow-Headers: accept, authorization\r\n"
"Content-Length: 0\r\n"
"Connection: close\r\n"
"\r\n");
}
void EventsStreamThread::sendNotFoundResponse(int clientFd)
{
sendAll(
clientFd,
"HTTP/1.1 404 Not Found\r\n"
"Access-Control-Allow-Origin: *\r\n"
"Content-Length: 0\r\n"
"Connection: close\r\n"
"\r\n");
}
void EventsStreamThread::sendMethodNotAllowedResponse(int clientFd)
{
sendAll(
clientFd,
"HTTP/1.1 405 Method Not Allowed\r\n"
"Access-Control-Allow-Origin: *\r\n"
"Allow: GET, OPTIONS\r\n"
"Content-Length: 0\r\n"
"Connection: close\r\n"
"\r\n");
}
bool EventsStreamThread::sendAll(int clientFd, const std::string& data)
{
const char* cursor = data.c_str();
std::size_t remaining = data.size();
while (remaining > 0)
{
const ssize_t sent = send(clientFd, cursor, remaining, MSG_NOSIGNAL);
if (sent <= 0)
{
return false;
}
cursor += sent;
remaining -= static_cast<std::size_t>(sent);
}
return true;
}
bool EventsStreamThread::sendStreamHeaders(int clientFd)
{
return sendAll(
clientFd,
"HTTP/1.1 200 OK\r\n"
"Access-Control-Allow-Origin: *\r\n"
"Access-Control-Allow-Methods: GET, OPTIONS\r\n"
"Access-Control-Allow-Headers: accept, authorization\r\n"
"Content-Type: text/event-stream; charset=utf-8\r\n"
"Cache-Control: no-cache\r\n"
"Connection: keep-alive\r\n"
"X-Accel-Buffering: no\r\n"
"\r\n");
}
bool EventsStreamThread::sendHello(int clientFd)
{
std::ostringstream out;
out
<< "event: hello\n"
<< "data: {\"source\":\"restfulapi\",\"bootID\":\""
<< StateChangeTracker::bootID
<< "\",\"domains\":[]}\n"
<< "\n";
return sendAll(clientFd, out.str());
}
bool EventsStreamThread::sendHeartbeat(int clientFd)
{
return sendAll(clientFd, ": heartbeat\n\n");
}
bool EventsStreamThread::sendChange(
int clientFd,
uint64_t eventId,
const std::vector<std::string>& domains)
{
std::ostringstream out;
out
<< "event: vdr-change\n"
<< "id: " << eventId << "\n"
<< "data: {\"source\":\"restfulapi\",\"domains\":"
<< jsonDomainArray(domains)
<< "}\n"
<< "\n";
return sendAll(clientFd, out.str());
}