Merge branch '2.0' of git.carlh.net:git/dcpomatic into 2.0
[dcpomatic.git] / src / lib / server.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/server.cc
21  *  @brief Class to describe a server to which we can send
22  *  encoding work, and a class to implement such a server.
23  */
24
25 #include "server.h"
26 #include "dcpomatic_socket.h"
27 #include "scaler.h"
28 #include "image.h"
29 #include "dcp_video.h"
30 #include "config.h"
31 #include "cross.h"
32 #include "player_video.h"
33 #include "encoded_data.h"
34 #include "safe_stringstream.h"
35 #include <dcp/raw_convert.h>
36 #include <libcxml/cxml.h>
37 #include <boost/algorithm/string.hpp>
38 #include <boost/scoped_array.hpp>
39 #include <string>
40 #include <vector>
41 #include <iostream>
42
43 #include "i18n.h"
44
45 #define LOG_GENERAL(...)    _log->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
46 #define LOG_GENERAL_NC(...) _log->log (__VA_ARGS__, Log::TYPE_GENERAL);
47 #define LOG_ERROR(...)      _log->log (String::compose (__VA_ARGS__), Log::TYPE_ERROR);
48 #define LOG_ERROR_NC(...)   _log->log (__VA_ARGS__, Log::TYPE_ERROR);
49
50 using std::string;
51 using std::multimap;
52 using std::vector;
53 using std::list;
54 using std::cout;
55 using std::cerr;
56 using std::setprecision;
57 using std::fixed;
58 using boost::shared_ptr;
59 using boost::algorithm::is_any_of;
60 using boost::algorithm::split;
61 using boost::thread;
62 using boost::bind;
63 using boost::scoped_array;
64 using boost::optional;
65 using dcp::Size;
66 using dcp::raw_convert;
67
68 Server::Server (shared_ptr<Log> log, bool verbose)
69         : _terminate (false)
70         , _log (log)
71         , _verbose (verbose)
72         , _acceptor (_io_service, boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), Config::instance()->server_port_base()))
73 {
74
75 }
76
77 Server::~Server ()
78 {
79         {
80                 boost::mutex::scoped_lock lm (_worker_mutex);
81                 _terminate = true;
82                 _empty_condition.notify_all ();
83         }
84
85         for (vector<boost::thread*>::iterator i = _worker_threads.begin(); i != _worker_threads.end(); ++i) {
86                 (*i)->join ();
87                 delete *i;
88         }
89
90         _io_service.stop ();
91
92         _broadcast.io_service.stop ();
93         _broadcast.thread->join ();
94 }
95
96 /** @param after_read Filled in with gettimeofday() after reading the input from the network.
97  *  @param after_encode Filled in with gettimeofday() after encoding the image.
98  */
99 int
100 Server::process (shared_ptr<Socket> socket, struct timeval& after_read, struct timeval& after_encode)
101 {
102         uint32_t length = socket->read_uint32 ();
103         scoped_array<char> buffer (new char[length]);
104         socket->read (reinterpret_cast<uint8_t*> (buffer.get()), length);
105
106         string s (buffer.get());
107         shared_ptr<cxml::Document> xml (new cxml::Document ("EncodingRequest"));
108         xml->read_string (s);
109         if (xml->number_child<int> ("Version") != SERVER_LINK_VERSION) {
110                 cerr << "Mismatched server/client versions\n";
111                 LOG_ERROR_NC ("Mismatched server/client versions");
112                 return -1;
113         }
114
115         shared_ptr<PlayerVideo> pvf (new PlayerVideo (xml, socket));
116
117         DCPVideo dcp_video_frame (pvf, xml, _log);
118
119         gettimeofday (&after_read, 0);
120         
121         shared_ptr<EncodedData> encoded = dcp_video_frame.encode_locally (boost::bind (&Log::dcp_log, _log.get(), _1, _2));
122
123         gettimeofday (&after_encode, 0);
124         
125         try {
126                 encoded->send (socket);
127         } catch (std::exception& e) {
128                 cerr << "Send failed; frame " << dcp_video_frame.index() << "\n";
129                 LOG_ERROR ("Send failed; frame %1", dcp_video_frame.index());
130                 throw;
131         }
132
133         return dcp_video_frame.index ();
134 }
135
136 void
137 Server::worker_thread ()
138 {
139         while (true) {
140                 boost::mutex::scoped_lock lock (_worker_mutex);
141                 while (_queue.empty () && !_terminate) {
142                         _empty_condition.wait (lock);
143                 }
144
145                 if (_terminate) {
146                         return;
147                 }
148
149                 shared_ptr<Socket> socket = _queue.front ();
150                 _queue.pop_front ();
151                 
152                 lock.unlock ();
153
154                 int frame = -1;
155                 string ip;
156
157                 struct timeval start;
158                 struct timeval after_read;
159                 struct timeval after_encode;
160                 struct timeval end;
161                 
162                 gettimeofday (&start, 0);
163                 
164                 try {
165                         frame = process (socket, after_read, after_encode);
166                         ip = socket->socket().remote_endpoint().address().to_string();
167                 } catch (std::exception& e) {
168                         cerr << "Error: " << e.what() << "\n";
169                         LOG_ERROR ("Error: %1", e.what());
170                 }
171
172                 gettimeofday (&end, 0);
173
174                 socket.reset ();
175                 
176                 lock.lock ();
177
178                 if (frame >= 0) {
179                         struct timeval end;
180                         gettimeofday (&end, 0);
181
182                         SafeStringStream message;
183                         message.precision (2);
184                         message << fixed
185                                 << "Encoded frame " << frame << " from " << ip << ": "
186                                 << "receive " << (seconds(after_read) - seconds(start)) << "s "
187                                 << "encode " << (seconds(after_encode) - seconds(after_read)) << "s "
188                                 << "send " << (seconds(end) - seconds(after_encode)) << "s.";
189                                                    
190                         if (_verbose) {
191                                 cout << message.str() << "\n";
192                         }
193
194                         LOG_GENERAL_NC (message.str ());
195                 }
196                 
197                 _full_condition.notify_all ();
198         }
199 }
200
201 void
202 Server::run (int num_threads)
203 {
204         LOG_GENERAL ("Server starting with %1 threads", num_threads);
205         if (_verbose) {
206                 cout << "DCP-o-matic server starting with " << num_threads << " threads.\n";
207         }
208         
209         for (int i = 0; i < num_threads; ++i) {
210                 _worker_threads.push_back (new thread (bind (&Server::worker_thread, this)));
211         }
212
213         _broadcast.thread = new thread (bind (&Server::broadcast_thread, this));
214         
215         start_accept ();
216         _io_service.run ();
217 }
218
219 void
220 Server::broadcast_thread ()
221 try
222 {
223         boost::asio::ip::address address = boost::asio::ip::address_v4::any ();
224         boost::asio::ip::udp::endpoint listen_endpoint (address, Config::instance()->server_port_base() + 1);
225
226         _broadcast.socket = new boost::asio::ip::udp::socket (_broadcast.io_service);
227         _broadcast.socket->open (listen_endpoint.protocol ());
228         _broadcast.socket->bind (listen_endpoint);
229
230         _broadcast.socket->async_receive_from (
231                 boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
232                 _broadcast.send_endpoint,
233                 boost::bind (&Server::broadcast_received, this)
234                 );
235
236         _broadcast.io_service.run ();
237 }
238 catch (...)
239 {
240         store_current ();
241 }
242
243 void
244 Server::broadcast_received ()
245 {
246         _broadcast.buffer[sizeof(_broadcast.buffer) - 1] = '\0';
247
248         if (strcmp (_broadcast.buffer, DCPOMATIC_HELLO) == 0) {
249                 /* Reply to the client saying what we can do */
250                 xmlpp::Document doc;
251                 xmlpp::Element* root = doc.create_root_node ("ServerAvailable");
252                 root->add_child("Threads")->add_child_text (raw_convert<string> (_worker_threads.size ()));
253                 string xml = doc.write_to_string ("UTF-8");
254
255                 if (_verbose) {
256                         cout << "Offering services to master " << _broadcast.send_endpoint.address().to_string () << "\n";
257                 }
258                 shared_ptr<Socket> socket (new Socket);
259                 try {
260                         socket->connect (boost::asio::ip::tcp::endpoint (_broadcast.send_endpoint.address(), Config::instance()->server_port_base() + 1));
261                         socket->write (xml.length() + 1);
262                         socket->write ((uint8_t *) xml.c_str(), xml.length() + 1);
263                 } catch (...) {
264
265                 }
266         }
267                 
268         _broadcast.socket->async_receive_from (
269                 boost::asio::buffer (_broadcast.buffer, sizeof (_broadcast.buffer)),
270                 _broadcast.send_endpoint, boost::bind (&Server::broadcast_received, this)
271                 );
272 }
273
274 void
275 Server::start_accept ()
276 {
277         if (_terminate) {
278                 return;
279         }
280
281         shared_ptr<Socket> socket (new Socket);
282         _acceptor.async_accept (socket->socket (), boost::bind (&Server::handle_accept, this, socket, boost::asio::placeholders::error));
283 }
284
285 void
286 Server::handle_accept (shared_ptr<Socket> socket, boost::system::error_code const & error)
287 {
288         if (error) {
289                 return;
290         }
291
292         boost::mutex::scoped_lock lock (_worker_mutex);
293         
294         /* Wait until the queue has gone down a bit */
295         while (_queue.size() >= _worker_threads.size() * 2 && !_terminate) {
296                 _full_condition.wait (lock);
297         }
298         
299         _queue.push_back (socket);
300         _empty_condition.notify_all ();
301
302         start_accept ();
303 }
304