56774a5ca76e4cc50298f5030257a010608715b1
[dcpomatic.git] / src / lib / encode_server.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 /** @file src/encode_server.cc
23  *  @brief Class to describe a server to which we can send
24  *  encoding work, and a class to implement such a server.
25  */
26
27
28 #include "compose.hpp"
29 #include "config.h"
30 #include "cross.h"
31 #include "dcp_video.h"
32 #include "dcpomatic_log.h"
33 #include "dcpomatic_socket.h"
34 #include "encode_server.h"
35 #include "encoded_log_entry.h"
36 #include "image.h"
37 #include "j2k_encoder_cpu_backend.h"
38 #include "log.h"
39 #include "player_video.h"
40 #include "util.h"
41 #include "version.h"
42 #include "warnings.h"
43 #include <dcp/raw_convert.h>
44 #include <libcxml/cxml.h>
45 DCPOMATIC_DISABLE_WARNINGS
46 #include <libxml++/libxml++.h>
47 DCPOMATIC_ENABLE_WARNINGS
48 #include <boost/algorithm/string.hpp>
49 #include <boost/scoped_array.hpp>
50 #ifdef HAVE_VALGRIND_H
51 #include <valgrind/memcheck.h>
52 #endif
53 #include <string>
54 #include <vector>
55 #include <iostream>
56
57 #include "i18n.h"
58
59
60 using std::string;
61 using std::vector;
62 using std::list;
63 using std::cout;
64 using std::cerr;
65 using std::fixed;
66 using std::shared_ptr;
67 using std::make_shared;
68 using boost::thread;
69 using boost::bind;
70 using boost::scoped_array;
71 using boost::optional;
72 using dcp::ArrayData;
73 using dcp::Size;
74 using dcp::raw_convert;
75
76
77 EncodeServer::EncodeServer (bool verbose, int num_threads)
78 #if !defined(RUNNING_ON_VALGRIND) || RUNNING_ON_VALGRIND == 0
79         : Server (ENCODE_FRAME_PORT)
80 #else
81         : Server (ENCODE_FRAME_PORT, 2400)
82 #endif
83         , _verbose (verbose)
84         , _num_threads (num_threads)
85 {
86
87 }
88
89
90 EncodeServer::~EncodeServer ()
91 {
92         boost::this_thread::disable_interruption dis;
93
94         {
95                 boost::mutex::scoped_lock lm (_mutex);
96                 _terminate = true;
97                 _empty_condition.notify_all ();
98                 _full_condition.notify_all ();
99         }
100
101         try {
102                 _worker_threads.join_all ();
103         } catch (...) {}
104
105         {
106                 boost::mutex::scoped_lock lm (_broadcast.mutex);
107                 if (_broadcast.socket) {
108                         _broadcast.socket->close ();
109                         delete _broadcast.socket;
110                         _broadcast.socket = 0;
111                 }
112         }
113
114         _broadcast.io_service.stop ();
115         try {
116                 _broadcast.thread.join ();
117         } catch (...) {}
118 }
119
120
121 /** @param after_read Filled in with gettimeofday() after reading the input from the network.
122  *  @param after_encode Filled in with gettimeofday() after encoding the image.
123  */
124 int
125 EncodeServer::process (shared_ptr<Socket> socket, struct timeval& after_read, struct timeval& after_encode)
126 {
127         Socket::ReadDigestScope ds (socket);
128
129         auto length = socket->read_uint32 ();
130         scoped_array<char> buffer (new char[length]);
131         socket->read (reinterpret_cast<uint8_t*>(buffer.get()), length);
132
133         string s (buffer.get());
134         auto xml = make_shared<cxml::Document>("EncodingRequest");
135         xml->read_string (s);
136         /* This is a double-check; the server shouldn't even be on the candidate list
137            if it is the wrong version, but it doesn't hurt to make sure here.
138         */
139         if (xml->number_child<int> ("Version") != SERVER_LINK_VERSION) {
140                 cerr << "Mismatched server/client versions\n";
141                 LOG_ERROR_NC ("Mismatched server/client versions");
142                 return -1;
143         }
144
145         auto pvf = make_shared<PlayerVideo>(xml, socket);
146
147         if (!ds.check()) {
148                 throw NetworkError ("Checksums do not match");
149         }
150
151         DCPVideo dcp_video_frame (pvf, xml);
152
153         gettimeofday (&after_read, 0);
154
155         J2KEncoderCPUBackend cpu;
156         auto encoded = cpu.encode (dcp_video_frame);
157         DCPOMATIC_ASSERT (encoded);
158
159         gettimeofday (&after_encode, 0);
160
161         try {
162                 Socket::WriteDigestScope ds (socket);
163                 socket->write (encoded->size());
164                 socket->write (encoded->data(), encoded->size());
165         } catch (std::exception& e) {
166                 cerr << "Send failed; frame " << dcp_video_frame.index() << "\n";
167                 LOG_ERROR ("Send failed; frame %1", dcp_video_frame.index());
168                 throw;
169         }
170
171         return dcp_video_frame.index ();
172 }
173
174
175 void
176 EncodeServer::worker_thread ()
177 {
178         while (true) {
179                 boost::mutex::scoped_lock lock (_mutex);
180                 while (_queue.empty () && !_terminate) {
181                         _empty_condition.wait (lock);
182                 }
183
184                 if (_terminate) {
185                         return;
186                 }
187
188                 auto socket = _queue.front ();
189                 _queue.pop_front ();
190
191                 lock.unlock ();
192
193                 int frame = -1;
194                 string ip;
195
196                 struct timeval start;
197                 struct timeval after_read;
198                 struct timeval after_encode;
199                 struct timeval end;
200
201                 gettimeofday (&start, 0);
202
203                 try {
204                         frame = process (socket, after_read, after_encode);
205                         ip = socket->socket().remote_endpoint().address().to_string();
206                 } catch (std::exception& e) {
207                         cerr << "Error: " << e.what() << "\n";
208                         LOG_ERROR ("Error: %1", e.what());
209                 }
210
211                 gettimeofday (&end, 0);
212
213                 socket.reset ();
214
215                 lock.lock ();
216
217                 if (frame >= 0) {
218                         struct timeval end;
219                         gettimeofday (&end, 0);
220
221                         auto e = make_shared<EncodedLogEntry>(
222                                 frame, ip,
223                                 seconds(after_read) - seconds(start),
224                                 seconds(after_encode) - seconds(after_read),
225                                 seconds(end) - seconds(after_encode)
226                                 );
227
228                         if (_verbose) {
229                                 cout << e->get() << "\n";
230                         }
231
232                         dcpomatic_log->log (e);
233                 }
234
235                 _full_condition.notify_all ();
236         }
237 }
238
239
240 void
241 EncodeServer::run ()
242 {
243         LOG_GENERAL ("Server %1 (%2) starting with %3 threads", dcpomatic_version, dcpomatic_git_commit, _num_threads);
244         if (_verbose) {
245                 cout << "DCP-o-matic server starting with " << _num_threads << " threads.\n";
246         }
247
248         for (int i = 0; i < _num_threads; ++i) {
249 #ifdef DCPOMATIC_LINUX
250                 boost::thread* t = _worker_threads.create_thread (bind(&EncodeServer::worker_thread, this));
251                 pthread_setname_np (t->native_handle(), "encode-server-worker");
252 #else
253                 _worker_threads.create_thread (bind(&EncodeServer::worker_thread, this));
254 #endif
255         }
256
257         _broadcast.thread = thread (bind(&EncodeServer::broadcast_thread, this));
258 #ifdef DCPOMATIC_LINUX
259         pthread_setname_np (_broadcast.thread.native_handle(), "encode-server-broadcast");
260 #endif
261
262         Server::run ();
263 }
264
265
266 void
267 EncodeServer::broadcast_thread ()
268 try
269 {
270         auto address = boost::asio::ip::address_v4::any ();
271         boost::asio::ip::udp::endpoint listen_endpoint (address, HELLO_PORT);
272
273         _broadcast.socket = new boost::asio::ip::udp::socket (_broadcast.io_service);
274         _broadcast.socket->open (listen_endpoint.protocol ());
275         _broadcast.socket->bind (listen_endpoint);
276
277         _broadcast.socket->async_receive_from (
278                 boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
279                 _broadcast.send_endpoint,
280                 boost::bind (&EncodeServer::broadcast_received, this)
281                 );
282
283         _broadcast.io_service.run ();
284 }
285 catch (...)
286 {
287         store_current ();
288 }
289
290
291 void
292 EncodeServer::broadcast_received ()
293 {
294         _broadcast.buffer[sizeof(_broadcast.buffer) - 1] = '\0';
295
296         if (strcmp (_broadcast.buffer, DCPOMATIC_HELLO) == 0) {
297                 /* Reply to the client saying what we can do */
298                 xmlpp::Document doc;
299                 auto root = doc.create_root_node ("ServerAvailable");
300                 root->add_child("Threads")->add_child_text (raw_convert<string> (_worker_threads.size ()));
301                 root->add_child("Version")->add_child_text (raw_convert<string> (SERVER_LINK_VERSION));
302                 auto xml = doc.write_to_string ("UTF-8");
303
304                 if (_verbose) {
305                         cout << "Offering services to master " << _broadcast.send_endpoint.address().to_string () << "\n";
306                 }
307
308                 try {
309                         auto socket = make_shared<Socket>();
310                         socket->connect (boost::asio::ip::tcp::endpoint (_broadcast.send_endpoint.address(), MAIN_SERVER_PRESENCE_PORT));
311                         socket->write (xml.bytes() + 1);
312                         socket->write ((uint8_t *) xml.c_str(), xml.bytes() + 1);
313                 } catch (...) {
314
315                 }
316
317                 try {
318                         auto socket = make_shared<Socket>();
319                         socket->connect (boost::asio::ip::tcp::endpoint (_broadcast.send_endpoint.address(), BATCH_SERVER_PRESENCE_PORT));
320                         socket->write (xml.bytes() + 1);
321                         socket->write ((uint8_t *) xml.c_str(), xml.bytes() + 1);
322                 } catch (...) {
323
324                 }
325         }
326
327         boost::mutex::scoped_lock lm (_broadcast.mutex);
328         if (_broadcast.socket) {
329                 _broadcast.socket->async_receive_from (
330                         boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
331                         _broadcast.send_endpoint, boost::bind (&EncodeServer::broadcast_received, this)
332                         );
333         }
334 }
335
336
337 void
338 EncodeServer::handle (shared_ptr<Socket> socket)
339 {
340         boost::mutex::scoped_lock lock (_mutex);
341
342         Waker waker;
343         waker.nudge ();
344
345         /* Wait until the queue has gone down a bit */
346         while (_queue.size() >= _worker_threads.size() * 2 && !_terminate) {
347                 _full_condition.wait (lock);
348         }
349
350         _queue.push_back (socket);
351         _empty_condition.notify_all ();
352 }