Partial addition of DCP audio channel count to Film.
[dcpomatic.git] / src / lib / server.cc
1 /*
2     Copyright (C) 2012 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 <string>
26 #include <vector>
27 #include <sstream>
28 #include <iostream>
29 #include <boost/algorithm/string.hpp>
30 #include <boost/lexical_cast.hpp>
31 #include <boost/scoped_array.hpp>
32 #include <libcxml/cxml.h>
33 #include "server.h"
34 #include "util.h"
35 #include "scaler.h"
36 #include "image.h"
37 #include "dcp_video_frame.h"
38 #include "config.h"
39 #include "subtitle.h"
40
41 #include "i18n.h"
42
43 using std::string;
44 using std::stringstream;
45 using std::multimap;
46 using std::vector;
47 using boost::shared_ptr;
48 using boost::algorithm::is_any_of;
49 using boost::algorithm::split;
50 using boost::thread;
51 using boost::bind;
52 using boost::scoped_array;
53 using libdcp::Size;
54
55 ServerDescription::ServerDescription (shared_ptr<const cxml::Node> node)
56 {
57         _host_name = node->string_child ("HostName");
58         _threads = node->number_child<int> ("Threads");
59 }
60
61 void
62 ServerDescription::as_xml (xmlpp::Node* root) const
63 {
64         root->add_child("HostName")->add_child_text (_host_name);
65         root->add_child("Threads")->add_child_text (boost::lexical_cast<string> (_threads));
66 }
67
68 /** Create a server description from a string of metadata returned from as_metadata().
69  *  @param v Metadata.
70  *  @return ServerDescription, or 0.
71  */
72 ServerDescription *
73 ServerDescription::create_from_metadata (string v)
74 {
75         vector<string> b;
76         split (b, v, is_any_of (N_(" ")));
77
78         if (b.size() != 2) {
79                 return 0;
80         }
81
82         return new ServerDescription (b[0], atoi (b[1].c_str ()));
83 }
84
85 Server::Server (shared_ptr<Log> log)
86         : _log (log)
87 {
88
89 }
90
91 int
92 Server::process (shared_ptr<Socket> socket)
93 {
94         uint32_t length = socket->read_uint32 ();
95         scoped_array<char> buffer (new char[length]);
96         socket->read (reinterpret_cast<uint8_t*> (buffer.get()), length);
97         
98         stringstream s (buffer.get());
99         multimap<string, string> kv = read_key_value (s);
100
101         if (get_required_string (kv, N_("encode")) != N_("please")) {
102                 return -1;
103         }
104
105         libdcp::Size in_size (get_required_int (kv, N_("input_width")), get_required_int (kv, N_("input_height")));
106         int pixel_format_int = get_required_int (kv, N_("input_pixel_format"));
107         libdcp::Size out_size (get_required_int (kv, N_("output_width")), get_required_int (kv, N_("output_height")));
108         int padding = get_required_int (kv, N_("padding"));
109         int subtitle_offset = get_required_int (kv, N_("subtitle_offset"));
110         float subtitle_scale = get_required_float (kv, N_("subtitle_scale"));
111         string scaler_id = get_required_string (kv, N_("scaler"));
112         int frame = get_required_int (kv, N_("frame"));
113         int frames_per_second = get_required_int (kv, N_("frames_per_second"));
114         string post_process = get_optional_string (kv, N_("post_process"));
115         int colour_lut_index = get_required_int (kv, N_("colour_lut"));
116         int j2k_bandwidth = get_required_int (kv, N_("j2k_bandwidth"));
117         Position subtitle_position (get_optional_int (kv, N_("subtitle_x")), get_optional_int (kv, N_("subtitle_y")));
118         libdcp::Size subtitle_size (get_optional_int (kv, N_("subtitle_width")), get_optional_int (kv, N_("subtitle_height")));
119
120         /* This checks that colour_lut_index is within range */
121         colour_lut_index_to_name (colour_lut_index);
122
123         PixelFormat pixel_format = (PixelFormat) pixel_format_int;
124         Scaler const * scaler = Scaler::from_id (scaler_id);
125         
126         shared_ptr<Image> image (new SimpleImage (pixel_format, in_size, true));
127
128         image->read_from_socket (socket);
129
130         shared_ptr<Subtitle> sub;
131         if (subtitle_size.width && subtitle_size.height) {
132                 shared_ptr<Image> subtitle_image (new SimpleImage (PIX_FMT_RGBA, subtitle_size, true));
133                 subtitle_image->read_from_socket (socket);
134                 sub.reset (new Subtitle (subtitle_position, subtitle_image));
135         }
136
137         DCPVideoFrame dcp_video_frame (
138                 image, sub, out_size, padding, subtitle_offset, subtitle_scale,
139                 scaler, frame, frames_per_second, post_process, colour_lut_index, j2k_bandwidth, _log
140                 );
141         
142         shared_ptr<EncodedData> encoded = dcp_video_frame.encode_locally ();
143         try {
144                 encoded->send (socket);
145         } catch (std::exception& e) {
146                 _log->log (String::compose (
147                                    N_("Send failed; frame %1, data size %2, pixel format %3, image size %4x%5, %6 components"),
148                                    frame, encoded->size(), image->pixel_format(), image->size().width, image->size().height, image->components()
149                                    )
150                         );
151                 throw;
152         }
153
154         return frame;
155 }
156
157 void
158 Server::worker_thread ()
159 {
160         while (1) {
161                 boost::mutex::scoped_lock lock (_worker_mutex);
162                 while (_queue.empty ()) {
163                         _worker_condition.wait (lock);
164                 }
165
166                 shared_ptr<Socket> socket = _queue.front ();
167                 _queue.pop_front ();
168                 
169                 lock.unlock ();
170
171                 int frame = -1;
172
173                 struct timeval start;
174                 gettimeofday (&start, 0);
175                 
176                 try {
177                         frame = process (socket);
178                 } catch (std::exception& e) {
179                         _log->log (String::compose (N_("Error: %1"), e.what()));
180                 }
181                 
182                 socket.reset ();
183                 
184                 lock.lock ();
185
186                 if (frame >= 0) {
187                         struct timeval end;
188                         gettimeofday (&end, 0);
189                         _log->log (String::compose (N_("Encoded frame %1 in %2"), frame, seconds (end) - seconds (start)));
190                 }
191                 
192                 _worker_condition.notify_all ();
193         }
194 }
195
196 void
197 Server::run (int num_threads)
198 {
199         _log->log (String::compose (N_("Server starting with %1 threads"), num_threads));
200         
201         for (int i = 0; i < num_threads; ++i) {
202                 _worker_threads.push_back (new thread (bind (&Server::worker_thread, this)));
203         }
204
205         boost::asio::io_service io_service;
206         boost::asio::ip::tcp::acceptor acceptor (io_service, boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), Config::instance()->server_port ()));
207         while (1) {
208                 shared_ptr<Socket> socket (new Socket);
209                 acceptor.accept (socket->socket ());
210
211                 boost::mutex::scoped_lock lock (_worker_mutex);
212                 
213                 /* Wait until the queue has gone down a bit */
214                 while (int (_queue.size()) >= num_threads * 2) {
215                         _worker_condition.wait (lock);
216                 }
217                 
218                 _queue.push_back (socket);
219                 _worker_condition.notify_all ();
220         }
221 }