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
|
/*
Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file src/encode_server.cc
* @brief Class to describe a server to which we can send
* encoding work, and a class to implement such a server.
*/
#include "compose.hpp"
#include "config.h"
#include "constants.h"
#include "cross.h"
#include "dcp_video.h"
#include "dcpomatic_log.h"
#include "dcpomatic_socket.h"
#include "encode_server.h"
#include "encoded_log_entry.h"
#include "image.h"
#include "log.h"
#include "player_video.h"
#include "version.h"
#include <dcp/raw_convert.h>
#include <dcp/warnings.h>
#include <libcxml/cxml.h>
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
#include <boost/algorithm/string.hpp>
#include <boost/scoped_array.hpp>
#ifdef HAVE_VALGRIND_H
#include <valgrind/memcheck.h>
#endif
#include <string>
#include <vector>
#include <iostream>
#include "i18n.h"
using std::string;
using std::vector;
using std::list;
using std::cout;
using std::cerr;
using std::fixed;
using std::shared_ptr;
using std::make_shared;
using boost::thread;
using boost::bind;
using boost::scoped_array;
using boost::optional;
using dcp::ArrayData;
using dcp::Size;
using dcp::raw_convert;
EncodeServer::EncodeServer (bool verbose, int num_threads)
#if !defined(RUNNING_ON_VALGRIND) || RUNNING_ON_VALGRIND == 0
: Server (ENCODE_FRAME_PORT)
#else
: Server (ENCODE_FRAME_PORT, 2400)
#endif
, _verbose (verbose)
, _num_threads (num_threads)
{
}
EncodeServer::~EncodeServer ()
{
boost::this_thread::disable_interruption dis;
{
boost::mutex::scoped_lock lm (_mutex);
_terminate = true;
_empty_condition.notify_all ();
_full_condition.notify_all ();
}
try {
_worker_threads.join_all ();
} catch (...) {}
{
boost::mutex::scoped_lock lm (_broadcast.mutex);
if (_broadcast.socket) {
_broadcast.socket->close ();
delete _broadcast.socket;
_broadcast.socket = 0;
}
}
_broadcast.io_service.stop ();
try {
_broadcast.thread.join ();
} catch (...) {}
}
/** @param after_read Filled in with gettimeofday() after reading the input from the network.
* @param after_encode Filled in with gettimeofday() after encoding the image.
*/
int
EncodeServer::process (shared_ptr<Socket> socket, struct timeval& after_read, struct timeval& after_encode)
{
Socket::ReadDigestScope ds (socket);
auto length = socket->read_uint32 ();
if (length > 65536) {
throw NetworkError("Malformed encode request (too large)");
}
scoped_array<char> buffer (new char[length]);
socket->read (reinterpret_cast<uint8_t*>(buffer.get()), length);
string s (buffer.get());
auto xml = make_shared<cxml::Document>("EncodingRequest");
xml->read_string (s);
/* This is a double-check; the server shouldn't even be on the candidate list
if it is the wrong version, but it doesn't hurt to make sure here.
*/
if (xml->number_child<int> ("Version") != SERVER_LINK_VERSION) {
cerr << "Mismatched server/client versions\n";
LOG_ERROR_NC ("Mismatched server/client versions");
return -1;
}
auto pvf = make_shared<PlayerVideo>(xml, socket);
if (!ds.check()) {
throw NetworkError ("Checksums do not match");
}
DCPVideo dcp_video_frame (pvf, xml);
gettimeofday (&after_read, 0);
auto encoded = dcp_video_frame.encode_locally ();
gettimeofday (&after_encode, 0);
try {
Socket::WriteDigestScope ds (socket);
socket->write (encoded.size());
socket->write (encoded.data(), encoded.size());
} catch (std::exception& e) {
cerr << "Send failed; frame " << dcp_video_frame.index() << "\n";
LOG_ERROR ("Send failed; frame %1", dcp_video_frame.index());
throw;
}
return dcp_video_frame.index ();
}
void
EncodeServer::worker_thread ()
{
while (true) {
boost::mutex::scoped_lock lock (_mutex);
while (_queue.empty () && !_terminate) {
_empty_condition.wait (lock);
}
if (_terminate) {
return;
}
auto socket = _queue.front ();
_queue.pop_front ();
lock.unlock ();
int frame = -1;
string ip;
struct timeval start;
struct timeval after_read;
struct timeval after_encode;
struct timeval end;
gettimeofday (&start, 0);
try {
frame = process (socket, after_read, after_encode);
ip = socket->socket().remote_endpoint().address().to_string();
} catch (std::exception& e) {
cerr << "Error: " << e.what() << "\n";
LOG_ERROR ("Error: %1", e.what());
}
gettimeofday (&end, 0);
socket.reset ();
lock.lock ();
if (frame >= 0) {
struct timeval end;
gettimeofday (&end, 0);
auto e = make_shared<EncodedLogEntry>(
frame, ip,
seconds(after_read) - seconds(start),
seconds(after_encode) - seconds(after_read),
seconds(end) - seconds(after_encode)
);
if (_verbose) {
cout << e->get() << "\n";
}
dcpomatic_log->log (e);
}
_full_condition.notify_all ();
}
}
void
EncodeServer::run ()
{
LOG_GENERAL ("Server %1 (%2) starting with %3 threads", dcpomatic_version, dcpomatic_git_commit, _num_threads);
if (_verbose) {
cout << "DCP-o-matic server starting with " << _num_threads << " threads.\n";
}
for (int i = 0; i < _num_threads; ++i) {
#ifdef DCPOMATIC_LINUX
boost::thread* t = _worker_threads.create_thread (bind(&EncodeServer::worker_thread, this));
pthread_setname_np (t->native_handle(), "encode-server-worker");
#else
_worker_threads.create_thread (bind(&EncodeServer::worker_thread, this));
#endif
}
_broadcast.thread = thread (bind(&EncodeServer::broadcast_thread, this));
#ifdef DCPOMATIC_LINUX
pthread_setname_np (_broadcast.thread.native_handle(), "encode-server-broadcast");
#endif
Server::run ();
}
void
EncodeServer::broadcast_thread ()
try
{
auto address = boost::asio::ip::address_v4::any ();
boost::asio::ip::udp::endpoint listen_endpoint (address, HELLO_PORT);
_broadcast.socket = new boost::asio::ip::udp::socket (_broadcast.io_service);
_broadcast.socket->open (listen_endpoint.protocol ());
_broadcast.socket->bind (listen_endpoint);
_broadcast.socket->async_receive_from (
boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
_broadcast.send_endpoint,
boost::bind (&EncodeServer::broadcast_received, this)
);
_broadcast.io_service.run ();
}
catch (...)
{
store_current ();
}
void
EncodeServer::broadcast_received ()
{
_broadcast.buffer[sizeof(_broadcast.buffer) - 1] = '\0';
if (strcmp (_broadcast.buffer, DCPOMATIC_HELLO) == 0) {
/* Reply to the client saying what we can do */
xmlpp::Document doc;
auto root = doc.create_root_node ("ServerAvailable");
cxml::add_text_child(root, "Threads", raw_convert<string>(_worker_threads.size()));
cxml::add_text_child(root, "Version", raw_convert<string>(SERVER_LINK_VERSION));
auto xml = doc.write_to_string ("UTF-8");
if (_verbose) {
cout << "Offering services to master " << _broadcast.send_endpoint.address().to_string () << "\n";
}
try {
auto socket = make_shared<Socket>();
socket->connect (boost::asio::ip::tcp::endpoint (_broadcast.send_endpoint.address(), MAIN_SERVER_PRESENCE_PORT));
socket->write (xml.bytes() + 1);
socket->write ((uint8_t *) xml.c_str(), xml.bytes() + 1);
} catch (...) {
}
try {
auto socket = make_shared<Socket>();
socket->connect (boost::asio::ip::tcp::endpoint (_broadcast.send_endpoint.address(), BATCH_SERVER_PRESENCE_PORT));
socket->write (xml.bytes() + 1);
socket->write ((uint8_t *) xml.c_str(), xml.bytes() + 1);
} catch (...) {
}
}
boost::mutex::scoped_lock lm (_broadcast.mutex);
if (_broadcast.socket) {
_broadcast.socket->async_receive_from (
boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
_broadcast.send_endpoint, boost::bind (&EncodeServer::broadcast_received, this)
);
}
}
void
EncodeServer::handle (shared_ptr<Socket> socket)
{
boost::mutex::scoped_lock lock (_mutex);
_waker.nudge ();
/* Wait until the queue has gone down a bit */
while (_queue.size() >= _worker_threads.size() * 2 && !_terminate) {
_full_condition.wait (lock);
}
_queue.push_back (socket);
_empty_condition.notify_all ();
}
|