Allow repeat-frame to work with 3D.
[dcpomatic.git] / test / client_server_test.cc
1 /*
2     Copyright (C) 2012-2014 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 /** @file  test/client_server_test.cc
22  *  @brief Test the server class.
23  *  @ingroup specific
24  *
25  *  Create a test image and then encode it using the standard mechanism
26  *  and also using a EncodeServer object running on localhost.  Compare the resulting
27  *  encoded data to check that they are the same.
28  */
29
30 #include "lib/encode_server.h"
31 #include "lib/image.h"
32 #include "lib/cross.h"
33 #include "lib/dcp_video.h"
34 #include "lib/player_video.h"
35 #include "lib/raw_image_proxy.h"
36 #include "lib/j2k_image_proxy.h"
37 #include "lib/encode_server_description.h"
38 #include "lib/file_log.h"
39 #include <boost/test/unit_test.hpp>
40 #include <boost/thread.hpp>
41
42 using std::list;
43 using boost::shared_ptr;
44 using boost::thread;
45 using boost::optional;
46 using dcp::Data;
47
48 void
49 do_remote_encode (shared_ptr<DCPVideo> frame, EncodeServerDescription description, Data locally_encoded)
50 {
51         Data remotely_encoded;
52         BOOST_CHECK_NO_THROW (remotely_encoded = frame->encode_remotely (description, 60));
53
54         BOOST_CHECK_EQUAL (locally_encoded.size(), remotely_encoded.size());
55         BOOST_CHECK_EQUAL (memcmp (locally_encoded.data().get(), remotely_encoded.data().get(), locally_encoded.size()), 0);
56 }
57
58 BOOST_AUTO_TEST_CASE (client_server_test_rgb)
59 {
60         shared_ptr<Image> image (new Image (AV_PIX_FMT_RGB24, dcp::Size (1998, 1080), true));
61         uint8_t* p = image->data()[0];
62
63         for (int y = 0; y < 1080; ++y) {
64                 uint8_t* q = p;
65                 for (int x = 0; x < 1998; ++x) {
66                         *q++ = x % 256;
67                         *q++ = y % 256;
68                         *q++ = (x + y) % 256;
69                 }
70                 p += image->stride()[0];
71         }
72
73         shared_ptr<Image> sub_image (new Image (AV_PIX_FMT_RGBA, dcp::Size (100, 200), true));
74         p = sub_image->data()[0];
75         for (int y = 0; y < 200; ++y) {
76                 uint8_t* q = p;
77                 for (int x = 0; x < 100; ++x) {
78                         *q++ = y % 256;
79                         *q++ = x % 256;
80                         *q++ = (x + y) % 256;
81                         *q++ = 1;
82                 }
83                 p += sub_image->stride()[0];
84         }
85
86         shared_ptr<FileLog> log (new FileLog ("build/test/client_server_test_rgb.log"));
87
88         shared_ptr<PlayerVideo> pvf (
89                 new PlayerVideo (
90                         shared_ptr<ImageProxy> (new RawImageProxy (image)),
91                         Crop (),
92                         optional<double> (),
93                         dcp::Size (1998, 1080),
94                         dcp::Size (1998, 1080),
95                         EYES_BOTH,
96                         PART_WHOLE,
97                         ColourConversion ()
98                         )
99                 );
100
101         pvf->set_subtitle (PositionImage (sub_image, Position<int> (50, 60)));
102
103         shared_ptr<DCPVideo> frame (
104                 new DCPVideo (
105                         pvf,
106                         0,
107                         24,
108                         200000000,
109                         RESOLUTION_2K,
110                         log
111                         )
112                 );
113
114         Data locally_encoded = frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
115
116         EncodeServer* server = new EncodeServer (log, true, 2);
117
118         thread* server_thread = new thread (boost::bind (&EncodeServer::run, server));
119
120         /* Let the server get itself ready */
121         dcpomatic_sleep (1);
122
123         EncodeServerDescription description ("localhost", 2);
124
125         list<thread*> threads;
126         for (int i = 0; i < 8; ++i) {
127                 threads.push_back (new thread (boost::bind (do_remote_encode, frame, description, locally_encoded)));
128         }
129
130         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
131                 (*i)->join ();
132         }
133
134         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
135                 delete *i;
136         }
137
138         server->stop ();
139         server_thread->join ();
140         delete server_thread;
141         delete server;
142 }
143
144 BOOST_AUTO_TEST_CASE (client_server_test_yuv)
145 {
146         shared_ptr<Image> image (new Image (AV_PIX_FMT_YUV420P, dcp::Size (1998, 1080), true));
147
148         for (int i = 0; i < image->planes(); ++i) {
149                 uint8_t* p = image->data()[i];
150                 for (int j = 0; j < image->line_size()[i]; ++j) {
151                         *p++ = j % 256;
152                 }
153         }
154
155         shared_ptr<Image> sub_image (new Image (AV_PIX_FMT_RGBA, dcp::Size (100, 200), true));
156         uint8_t* p = sub_image->data()[0];
157         for (int y = 0; y < 200; ++y) {
158                 uint8_t* q = p;
159                 for (int x = 0; x < 100; ++x) {
160                         *q++ = y % 256;
161                         *q++ = x % 256;
162                         *q++ = (x + y) % 256;
163                         *q++ = 1;
164                 }
165                 p += sub_image->stride()[0];
166         }
167
168         shared_ptr<FileLog> log (new FileLog ("build/test/client_server_test_yuv.log"));
169
170         shared_ptr<PlayerVideo> pvf (
171                 new PlayerVideo (
172                         shared_ptr<ImageProxy> (new RawImageProxy (image)),
173                         Crop (),
174                         optional<double> (),
175                         dcp::Size (1998, 1080),
176                         dcp::Size (1998, 1080),
177                         EYES_BOTH,
178                         PART_WHOLE,
179                         ColourConversion ()
180                         )
181                 );
182
183         pvf->set_subtitle (PositionImage (sub_image, Position<int> (50, 60)));
184
185         shared_ptr<DCPVideo> frame (
186                 new DCPVideo (
187                         pvf,
188                         0,
189                         24,
190                         200000000,
191                         RESOLUTION_2K,
192                         log
193                         )
194                 );
195
196         Data locally_encoded = frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
197
198         EncodeServer* server = new EncodeServer (log, true, 2);
199
200         thread* server_thread = new thread (boost::bind (&EncodeServer::run, server));
201
202         /* Let the server get itself ready */
203         dcpomatic_sleep (1);
204
205         EncodeServerDescription description ("localhost", 2);
206
207         list<thread*> threads;
208         for (int i = 0; i < 8; ++i) {
209                 threads.push_back (new thread (boost::bind (do_remote_encode, frame, description, locally_encoded)));
210         }
211
212         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
213                 (*i)->join ();
214         }
215
216         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
217                 delete *i;
218         }
219
220         server->stop ();
221         server_thread->join ();
222         delete server_thread;
223         delete server;
224 }
225
226 BOOST_AUTO_TEST_CASE (client_server_test_j2k)
227 {
228         shared_ptr<Image> image (new Image (AV_PIX_FMT_YUV420P, dcp::Size (1998, 1080), true));
229
230         for (int i = 0; i < image->planes(); ++i) {
231                 uint8_t* p = image->data()[i];
232                 for (int j = 0; j < image->line_size()[i]; ++j) {
233                         *p++ = j % 256;
234                 }
235         }
236
237         shared_ptr<FileLog> log (new FileLog ("build/test/client_server_test_j2k.log"));
238
239         shared_ptr<PlayerVideo> raw_pvf (
240                 new PlayerVideo (
241                         shared_ptr<ImageProxy> (new RawImageProxy (image)),
242                         Crop (),
243                         optional<double> (),
244                         dcp::Size (1998, 1080),
245                         dcp::Size (1998, 1080),
246                         EYES_BOTH,
247                         PART_WHOLE,
248                         ColourConversion ()
249                         )
250                 );
251
252         shared_ptr<DCPVideo> raw_frame (
253                 new DCPVideo (
254                         raw_pvf,
255                         0,
256                         24,
257                         200000000,
258                         RESOLUTION_2K,
259                         log
260                         )
261                 );
262
263         Data raw_locally_encoded = raw_frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
264
265         shared_ptr<PlayerVideo> j2k_pvf (
266                 new PlayerVideo (
267                         shared_ptr<ImageProxy> (new J2KImageProxy (raw_locally_encoded, dcp::Size (1998, 1080), AV_PIX_FMT_XYZ12LE)),
268                         Crop (),
269                         optional<double> (),
270                         dcp::Size (1998, 1080),
271                         dcp::Size (1998, 1080),
272                         EYES_BOTH,
273                         PART_WHOLE,
274                         PresetColourConversion::all().front().conversion
275                         )
276                 );
277
278         shared_ptr<DCPVideo> j2k_frame (
279                 new DCPVideo (
280                         j2k_pvf,
281                         0,
282                         24,
283                         200000000,
284                         RESOLUTION_2K,
285                         log
286                         )
287                 );
288
289         Data j2k_locally_encoded = j2k_frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
290
291         EncodeServer* server = new EncodeServer (log, true, 2);
292
293         thread* server_thread = new thread (boost::bind (&EncodeServer::run, server));
294
295         /* Let the server get itself ready */
296         dcpomatic_sleep (1);
297
298         EncodeServerDescription description ("localhost", 2);
299
300         list<thread*> threads;
301         for (int i = 0; i < 8; ++i) {
302                 threads.push_back (new thread (boost::bind (do_remote_encode, j2k_frame, description, j2k_locally_encoded)));
303         }
304
305         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
306                 (*i)->join ();
307         }
308
309         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
310                 delete *i;
311         }
312
313         server->stop ();
314         server_thread->join ();
315         delete server_thread;
316         delete server;
317 }