db198e79c3ebd9d26ab310a74dbf8e8bbb4c01ac
[dcpomatic.git] / test / client_server_test.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  test/client_server_test.cc
21  *  @brief Test the server class.
22  *
23  *  Create a test image and then encode it using the standard mechanism
24  *  and also using a Server object running on localhost.  Compare the resulting
25  *  encoded data to check that they are the same.
26  */
27
28 #include <boost/test/unit_test.hpp>
29 #include <boost/thread.hpp>
30 #include "lib/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/data.h"
37
38 using std::list;
39 using boost::shared_ptr;
40 using boost::thread;
41 using boost::optional;
42
43 void
44 do_remote_encode (shared_ptr<DCPVideo> frame, ServerDescription description, Data locally_encoded)
45 {
46         Data remotely_encoded;
47         BOOST_CHECK_NO_THROW (remotely_encoded = frame->encode_remotely (description));
48
49         BOOST_CHECK_EQUAL (locally_encoded.size(), remotely_encoded.size());
50         BOOST_CHECK_EQUAL (memcmp (locally_encoded.data().get(), remotely_encoded.data().get(), locally_encoded.size()), 0);
51 }
52
53 BOOST_AUTO_TEST_CASE (client_server_test_rgb)
54 {
55         shared_ptr<Image> image (new Image (PIX_FMT_RGB24, dcp::Size (1998, 1080), true));
56         uint8_t* p = image->data()[0];
57
58         for (int y = 0; y < 1080; ++y) {
59                 uint8_t* q = p;
60                 for (int x = 0; x < 1998; ++x) {
61                         *q++ = x % 256;
62                         *q++ = y % 256;
63                         *q++ = (x + y) % 256;
64                 }
65                 p += image->stride()[0];
66         }
67
68         shared_ptr<Image> sub_image (new Image (PIX_FMT_RGBA, dcp::Size (100, 200), true));
69         p = sub_image->data()[0];
70         for (int y = 0; y < 200; ++y) {
71                 uint8_t* q = p;
72                 for (int x = 0; x < 100; ++x) {
73                         *q++ = y % 256;
74                         *q++ = x % 256;
75                         *q++ = (x + y) % 256;
76                         *q++ = 1;
77                 }
78                 p += sub_image->stride()[0];
79         }
80
81         shared_ptr<FileLog> log (new FileLog ("build/test/client_server_test_rgb.log"));
82
83         shared_ptr<PlayerVideo> pvf (
84                 new PlayerVideo (
85                         shared_ptr<ImageProxy> (new RawImageProxy (image)),
86                         DCPTime (),
87                         Crop (),
88                         optional<double> (),
89                         dcp::Size (1998, 1080),
90                         dcp::Size (1998, 1080),
91                         EYES_BOTH,
92                         PART_WHOLE,
93                         ColourConversion ()
94                         )
95                 );
96
97         pvf->set_subtitle (PositionImage (sub_image, Position<int> (50, 60)));
98
99         shared_ptr<DCPVideo> frame (
100                 new DCPVideo (
101                         pvf,
102                         0,
103                         24,
104                         200000000,
105                         RESOLUTION_2K,
106                         log
107                         )
108                 );
109
110         Data locally_encoded = frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
111
112         Server* server = new Server (log, true);
113
114         new thread (boost::bind (&Server::run, server, 2));
115
116         /* Let the server get itself ready */
117         dcpomatic_sleep (1);
118
119         ServerDescription description ("localhost", 2);
120
121         list<thread*> threads;
122         for (int i = 0; i < 8; ++i) {
123                 threads.push_back (new thread (boost::bind (do_remote_encode, frame, description, locally_encoded)));
124         }
125
126         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
127                 (*i)->join ();
128         }
129
130         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
131                 delete *i;
132         }
133
134         delete server;
135 }
136
137 BOOST_AUTO_TEST_CASE (client_server_test_yuv)
138 {
139         shared_ptr<Image> image (new Image (PIX_FMT_YUV420P, dcp::Size (1998, 1080), true));
140         uint8_t* p = image->data()[0];
141
142         for (int i = 0; i < image->planes(); ++i) {
143                 uint8_t* p = image->data()[i];
144                 for (int j = 0; j < image->line_size()[i]; ++j) {
145                         *p++ = j % 256;
146                 }
147         }
148
149         shared_ptr<Image> sub_image (new Image (PIX_FMT_RGBA, dcp::Size (100, 200), true));
150         p = sub_image->data()[0];
151         for (int y = 0; y < 200; ++y) {
152                 uint8_t* q = p;
153                 for (int x = 0; x < 100; ++x) {
154                         *q++ = y % 256;
155                         *q++ = x % 256;
156                         *q++ = (x + y) % 256;
157                         *q++ = 1;
158                 }
159                 p += sub_image->stride()[0];
160         }
161
162         shared_ptr<FileLog> log (new FileLog ("build/test/client_server_test_yuv.log"));
163
164         shared_ptr<PlayerVideo> pvf (
165                 new PlayerVideo (
166                         shared_ptr<ImageProxy> (new RawImageProxy (image)),
167                         DCPTime (),
168                         Crop (),
169                         optional<double> (),
170                         dcp::Size (1998, 1080),
171                         dcp::Size (1998, 1080),
172                         EYES_BOTH,
173                         PART_WHOLE,
174                         ColourConversion ()
175                         )
176                 );
177
178         pvf->set_subtitle (PositionImage (sub_image, Position<int> (50, 60)));
179
180         shared_ptr<DCPVideo> frame (
181                 new DCPVideo (
182                         pvf,
183                         0,
184                         24,
185                         200000000,
186                         RESOLUTION_2K,
187                         log
188                         )
189                 );
190
191         Data locally_encoded = frame->encode_locally (boost::bind (&Log::dcp_log, log.get(), _1, _2));
192
193         Server* server = new Server (log, true);
194
195         new thread (boost::bind (&Server::run, server, 2));
196
197         /* Let the server get itself ready */
198         dcpomatic_sleep (1);
199
200         ServerDescription description ("localhost", 2);
201
202         list<thread*> threads;
203         for (int i = 0; i < 8; ++i) {
204                 threads.push_back (new thread (boost::bind (do_remote_encode, frame, description, locally_encoded)));
205         }
206
207         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
208                 (*i)->join ();
209         }
210
211         for (list<thread*>::iterator i = threads.begin(); i != threads.end(); ++i) {
212                 delete *i;
213         }
214
215         delete server;
216 }
217