Reduce the disk space needed when running tests.
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012-2020 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/test.cc
22  *  @brief Overall test stuff and useful methods for tests.
23  */
24
25 #include "lib/compose.hpp"
26 #include "lib/config.h"
27 #include "lib/cross.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/dcpomatic_log.h"
30 #include "lib/encode_server_finder.h"
31 #include "lib/ffmpeg_image_proxy.h"
32 #include "lib/file_log.h"
33 #include "lib/film.h"
34 #include "lib/image.h"
35 #include "lib/job.h"
36 #include "lib/job_manager.h"
37 #include "lib/log_entry.h"
38 #include "lib/ratio.h"
39 #include "lib/signal_manager.h"
40 #include "lib/util.h"
41 #include "test.h"
42 #include <dcp/cpl.h>
43 #include <dcp/dcp.h>
44 #include <dcp/mono_picture_asset.h>
45 #include <dcp/mono_picture_frame.h>
46 #include <dcp/openjpeg_image.h>
47 #include <dcp/reel.h>
48 #include <dcp/reel_picture_asset.h>
49 #include <asdcp/AS_DCP.h>
50 #include <png.h>
51 #include <sndfile.h>
52 #include <libxml++/libxml++.h>
53 extern "C" {
54 #include <libavformat/avformat.h>
55 }
56 #define BOOST_TEST_DYN_LINK
57 #define BOOST_TEST_MODULE dcpomatic_test
58 #include <boost/test/unit_test.hpp>
59 #include <boost/algorithm/string.hpp>
60 #include <iostream>
61 #include <list>
62 #include <vector>
63
64 using std::abs;
65 using std::cerr;
66 using std::cout;
67 using std::list;
68 using std::make_shared;
69 using std::min;
70 using std::shared_ptr;
71 using std::string;
72 using std::vector;
73 using boost::scoped_array;
74 using std::dynamic_pointer_cast;
75 #if BOOST_VERSION >= 106100
76 using namespace boost::placeholders;
77 #endif
78
79
80 boost::filesystem::path
81 TestPaths::TestPaths::private_data ()
82 {
83         char* env = getenv("DCPOMATIC_TEST_PRIVATE");
84         if (env) {
85                 return boost::filesystem::path(env);
86         }
87
88         return boost::filesystem::canonical(boost::filesystem::path ("..") / boost::filesystem::path ("dcpomatic-test-private"));
89 }
90
91
92 boost::filesystem::path TestPaths::xsd ()
93 {
94         return boost::filesystem::canonical(boost::filesystem::path("..") / boost::filesystem::path("libdcp") / boost::filesystem::path("xsd"));
95 }
96
97
98 void
99 setup_test_config ()
100 {
101         Config::instance()->set_master_encoding_threads (boost::thread::hardware_concurrency());
102         Config::instance()->set_server_encoding_threads (1);
103         Config::instance()->set_server_port_base (61921);
104         Config::instance()->set_default_isdcf_metadata (ISDCFMetadata ());
105         Config::instance()->set_default_container (Ratio::from_id ("185"));
106         Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
107         Config::instance()->set_default_audio_delay (0);
108         Config::instance()->set_default_j2k_bandwidth (100000000);
109         Config::instance()->set_default_interop (false);
110         Config::instance()->set_default_still_length (10);
111         Config::instance()->set_log_types (
112                 LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING |
113                 LogEntry::TYPE_ERROR | LogEntry::TYPE_DEBUG_THREE_D |
114                 LogEntry::TYPE_DEBUG_ENCODE | LogEntry::TYPE_DEBUG_PLAYER |
115                 LogEntry::TYPE_DISK
116                 );
117         Config::instance()->set_automatic_audio_analysis (false);
118 }
119
120 class TestSignalManager : public SignalManager
121 {
122 public:
123         /* No wakes in tests: we call ui_idle ourselves */
124         void wake_ui ()
125         {
126
127         }
128 };
129
130 struct TestConfig
131 {
132         TestConfig ()
133         {
134                 State::override_path = "build/test/state";
135                 boost::filesystem::remove_all (*State::override_path);
136
137                 dcpomatic_setup ();
138                 setup_test_config ();
139
140                 EncodeServerFinder::instance()->stop ();
141
142                 signal_manager = new TestSignalManager ();
143
144                 dcpomatic_log.reset (new FileLog("build/test/log"));
145         }
146
147         ~TestConfig ()
148         {
149                 JobManager::drop ();
150         }
151 };
152
153 BOOST_GLOBAL_FIXTURE (TestConfig);
154
155 boost::filesystem::path
156 test_film_dir (string name)
157 {
158         boost::filesystem::path p;
159         p /= "build";
160         p /= "test";
161         p /= name;
162         return p;
163 }
164
165 shared_ptr<Film>
166 new_test_film (string name)
167 {
168         auto p = test_film_dir (name);
169         if (boost::filesystem::exists (p)) {
170                 boost::filesystem::remove_all (p);
171         }
172
173         auto film = make_shared<Film>(p);
174         film->write_metadata ();
175         return film;
176 }
177
178 shared_ptr<Film>
179 new_test_film2 (string name, Cleanup* cleanup)
180 {
181         auto p = test_film_dir (name);
182         if (boost::filesystem::exists (p)) {
183                 boost::filesystem::remove_all (p);
184         }
185         if (cleanup) {
186                 cleanup->add (p);
187         }
188
189         auto film = make_shared<Film>(p);
190         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
191         film->set_container (Ratio::from_id ("185"));
192         film->write_metadata ();
193         return film;
194 }
195
196 void
197 check_wav_file (boost::filesystem::path ref, boost::filesystem::path check)
198 {
199         SF_INFO ref_info;
200         ref_info.format = 0;
201         auto ref_file = sf_open (ref.string().c_str(), SFM_READ, &ref_info);
202         BOOST_CHECK (ref_file);
203
204         SF_INFO check_info;
205         check_info.format = 0;
206         auto check_file = sf_open (check.string().c_str(), SFM_READ, &check_info);
207         BOOST_CHECK (check_file);
208
209         BOOST_CHECK_EQUAL (ref_info.frames, check_info.frames);
210         BOOST_CHECK_EQUAL (ref_info.samplerate, check_info.samplerate);
211         BOOST_CHECK_EQUAL (ref_info.channels, check_info.channels);
212         BOOST_CHECK_EQUAL (ref_info.format, check_info.format);
213
214         /* buffer_size is in frames */
215         sf_count_t const buffer_size = 65536 * ref_info.channels;
216         scoped_array<int32_t> ref_buffer (new int32_t[buffer_size]);
217         scoped_array<int32_t> check_buffer (new int32_t[buffer_size]);
218
219         sf_count_t N = ref_info.frames;
220         while (N) {
221                 sf_count_t this_time = min (buffer_size, N);
222                 sf_count_t r = sf_readf_int (ref_file, ref_buffer.get(), this_time);
223                 BOOST_CHECK_EQUAL (r, this_time);
224                 r = sf_readf_int (check_file, check_buffer.get(), this_time);
225                 BOOST_CHECK_EQUAL (r, this_time);
226
227                 for (sf_count_t i = 0; i < this_time; ++i) {
228                         BOOST_REQUIRE_MESSAGE (
229                                 abs (ref_buffer[i] - check_buffer[i]) <= 65536,
230                                 ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames
231                                 << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")"
232                                 );
233                 }
234
235                 N -= this_time;
236         }
237 }
238
239 void
240 check_mxf_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
241 {
242         ASDCP::PCM::MXFReader ref_reader;
243         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.OpenRead (ref.string().c_str())));
244
245         ASDCP::PCM::AudioDescriptor ref_desc;
246         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.FillAudioDescriptor (ref_desc)));
247
248         ASDCP::PCM::MXFReader check_reader;
249         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.OpenRead (check.string().c_str())));
250
251         ASDCP::PCM::AudioDescriptor check_desc;
252         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.FillAudioDescriptor (check_desc)));
253
254         BOOST_REQUIRE_EQUAL (ref_desc.ContainerDuration, check_desc.ContainerDuration);
255
256         ASDCP::PCM::FrameBuffer ref_buffer (Kumu::Megabyte);
257         ASDCP::PCM::FrameBuffer check_buffer (Kumu::Megabyte);
258         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
259                 ref_reader.ReadFrame (i, ref_buffer, 0);
260                 check_reader.ReadFrame (i, check_buffer, 0);
261                 BOOST_REQUIRE (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size()) == 0);
262         }
263 }
264
265
266 /** @return true if the files are the same, otherwise false */
267 bool
268 mxf_atmos_files_same (boost::filesystem::path ref, boost::filesystem::path check, bool verbose)
269 {
270         ASDCP::ATMOS::MXFReader ref_reader;
271         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.OpenRead(ref.string().c_str())));
272
273         ASDCP::ATMOS::AtmosDescriptor ref_desc;
274         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.FillAtmosDescriptor(ref_desc)));
275
276         ASDCP::ATMOS::MXFReader check_reader;
277         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.OpenRead(check.string().c_str())));
278
279         ASDCP::ATMOS::AtmosDescriptor check_desc;
280         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.FillAtmosDescriptor(check_desc)));
281
282         if (ref_desc.EditRate.Numerator != check_desc.EditRate.Numerator) {
283                 if (verbose) {
284                         std::cout << "EditRate.Numerator differs.\n";
285                 }
286                 return false;
287         }
288         if (ref_desc.EditRate.Denominator != check_desc.EditRate.Denominator) {
289                 if (verbose) {
290                         std::cout << "EditRate.Denominator differs.\n";
291                 }
292                 return false;
293         }
294         if (ref_desc.ContainerDuration != check_desc.ContainerDuration) {
295                 if (verbose) {
296                         std::cout << "EditRate.ContainerDuration differs.\n";
297                 }
298                 return false;
299         }
300         if (ref_desc.FirstFrame != check_desc.FirstFrame) {
301                 if (verbose) {
302                         std::cout << "EditRate.FirstFrame differs.\n";
303                 }
304                 return false;
305         }
306         if (ref_desc.MaxChannelCount != check_desc.MaxChannelCount) {
307                 if (verbose) {
308                         std::cout << "EditRate.MaxChannelCount differs.\n";
309                 }
310                 return false;
311         }
312         if (ref_desc.MaxObjectCount != check_desc.MaxObjectCount) {
313                 if (verbose) {
314                         std::cout << "EditRate.MaxObjectCount differs.\n";
315                 }
316                 return false;
317         }
318         if (ref_desc.AtmosVersion != check_desc.AtmosVersion) {
319                 if (verbose) {
320                         std::cout << "EditRate.AtmosVersion differs.\n";
321                 }
322                 return false;
323         }
324
325         ASDCP::DCData::FrameBuffer ref_buffer (Kumu::Megabyte);
326         ASDCP::DCData::FrameBuffer check_buffer (Kumu::Megabyte);
327         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
328                 ref_reader.ReadFrame (i, ref_buffer, 0);
329                 check_reader.ReadFrame (i, check_buffer, 0);
330                 if (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size())) {
331                         if (verbose) {
332                                 std::cout << "data differs.\n";
333                         }
334                         return false;
335                 }
336         }
337
338         return true;
339 }
340
341
342 static
343 double
344 rms_error (boost::filesystem::path ref, boost::filesystem::path check)
345 {
346         FFmpegImageProxy ref_proxy (ref, VideoRange::FULL);
347         auto ref_image = ref_proxy.image().image;
348         FFmpegImageProxy check_proxy (check, VideoRange::FULL);
349         auto check_image = check_proxy.image().image;
350
351         BOOST_REQUIRE_EQUAL (ref_image->pixel_format(), check_image->pixel_format());
352         AVPixelFormat const format = ref_image->pixel_format();
353
354         BOOST_REQUIRE (ref_image->size() == check_image->size());
355         int const width = ref_image->size().width;
356         int const height = ref_image->size().height;
357
358         double sum_square = 0;
359         switch (format) {
360                 case AV_PIX_FMT_RGBA:
361                 {
362                         for (int y = 0; y < height; ++y) {
363                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
364                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
365                                 for (int x = 0; x < width; ++x) {
366                                         for (int c = 0; c < 4; ++c) {
367                                                 sum_square += pow((*p++ - *q++), 2);
368                                         }
369                                 }
370                         }
371                         break;
372                 }
373                 case AV_PIX_FMT_RGB24:
374                 {
375                         for (int y = 0; y < height; ++y) {
376                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
377                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
378                                 for (int x = 0; x < width; ++x) {
379                                         for (int c = 0; c < 3; ++c) {
380                                                 sum_square += pow((*p++ - *q++), 2);
381                                         }
382                                 }
383                         }
384                         break;
385                 }
386                 case AV_PIX_FMT_RGB48BE:
387                 {
388                         for (int y = 0; y < height; ++y) {
389                                 uint16_t* p = reinterpret_cast<uint16_t*>(ref_image->data()[0] + y * ref_image->stride()[0]);
390                                 uint16_t* q = reinterpret_cast<uint16_t*>(check_image->data()[0] + y * check_image->stride()[0]);
391                                 for (int x = 0; x < width; ++x) {
392                                         for (int c = 0; c < 3; ++c) {
393                                                 sum_square += pow((*p++ - *q++), 2);
394                                         }
395                                 }
396                         }
397                         break;
398                 }
399                 default:
400                         BOOST_REQUIRE_MESSAGE (false, "unrecognised pixel format " << format);
401         }
402
403         return sqrt(sum_square / (height * width));
404 }
405
406
407 BOOST_AUTO_TEST_CASE (rms_error_test)
408 {
409         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image0.png"), 0, 0.001);
410         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image1.png"), 2.2778, 0.001);
411         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image2.png"), 59.8896, 0.001);
412         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image3.png"), 0.89164, 0.001);
413 }
414
415
416 void
417 check_image (boost::filesystem::path ref, boost::filesystem::path check, double threshold)
418 {
419         double const e = rms_error (ref, check);
420         BOOST_CHECK_MESSAGE (e < threshold, ref << " differs from " << check << " " << e);
421 }
422
423
424 void
425 check_file (boost::filesystem::path ref, boost::filesystem::path check)
426 {
427         auto N = boost::filesystem::file_size (ref);
428         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
429         auto ref_file = fopen_boost (ref, "rb");
430         BOOST_CHECK (ref_file);
431         auto check_file = fopen_boost (check, "rb");
432         BOOST_CHECK (check_file);
433
434         int const buffer_size = 65536;
435         uint8_t* ref_buffer = new uint8_t[buffer_size];
436         uint8_t* check_buffer = new uint8_t[buffer_size];
437
438         string error = "File " + check.string() + " differs from reference " + ref.string();
439
440         while (N) {
441                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
442                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
443                 BOOST_CHECK_EQUAL (r, this_time);
444                 r = fread (check_buffer, 1, this_time, check_file);
445                 BOOST_CHECK_EQUAL (r, this_time);
446
447                 BOOST_CHECK_MESSAGE (memcmp (ref_buffer, check_buffer, this_time) == 0, error);
448                 if (memcmp (ref_buffer, check_buffer, this_time)) {
449                         break;
450                 }
451
452                 N -= this_time;
453         }
454
455         delete[] ref_buffer;
456         delete[] check_buffer;
457
458         fclose (ref_file);
459         fclose (check_file);
460 }
461
462 static void
463 note (dcp::NoteType t, string n)
464 {
465         if (t == dcp::NoteType::ERROR) {
466                 cerr << n << "\n";
467         }
468 }
469
470
471 void
472 check_dcp (boost::filesystem::path ref, shared_ptr<const Film> film)
473 {
474         check_dcp (ref, film->dir(film->dcp_name()));
475 }
476
477
478 void
479 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
480 {
481         dcp::DCP ref_dcp (ref);
482         ref_dcp.read ();
483         dcp::DCP check_dcp (check);
484         check_dcp.read ();
485
486         dcp::EqualityOptions options;
487         options.max_mean_pixel_error = 5;
488         options.max_std_dev_pixel_error = 5;
489         options.max_audio_sample_error = 255;
490         options.cpl_annotation_texts_can_differ = true;
491         options.reel_annotation_texts_can_differ = true;
492         options.reel_hashes_can_differ = true;
493         options.issue_dates_can_differ = true;
494
495         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
496 }
497
498 void
499 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
500 {
501         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
502         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
503
504         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
505                 return;
506         }
507
508         auto ref_children = ref->get_children ();
509         auto test_children = test->get_children ();
510         BOOST_REQUIRE_MESSAGE (
511                 ref_children.size() == test_children.size(),
512                 ref->get_name() << " has " << ref_children.size() << " or " << test_children.size() << " children"
513                 );
514
515         auto k = ref_children.begin ();
516         auto l = test_children.begin ();
517         while (k != ref_children.end ()) {
518
519                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
520
521                 auto ref_el = dynamic_cast<xmlpp::Element*>(*k);
522                 auto test_el = dynamic_cast<xmlpp::Element*>(*l);
523                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
524                 if (ref_el && test_el) {
525                         check_xml (ref_el, test_el, ignore);
526                 }
527
528                 auto ref_cn = dynamic_cast<xmlpp::ContentNode*>(*k);
529                 auto test_cn = dynamic_cast<xmlpp::ContentNode*>(*l);
530                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
531                 if (ref_cn && test_cn) {
532                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
533                 }
534
535                 ++k;
536                 ++l;
537         }
538
539         auto ref_attributes = ref->get_attributes ();
540         auto test_attributes = test->get_attributes ();
541         BOOST_CHECK_EQUAL (ref_attributes.size(), test_attributes.size ());
542
543         auto m = ref_attributes.begin();
544         auto n = test_attributes.begin();
545         while (m != ref_attributes.end ()) {
546                 BOOST_CHECK_EQUAL ((*m)->get_name(), (*n)->get_name());
547                 BOOST_CHECK_EQUAL ((*m)->get_value(), (*n)->get_value());
548
549                 ++m;
550                 ++n;
551         }
552 }
553
554 void
555 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
556 {
557         auto ref_parser = new xmlpp::DomParser(ref.string());
558         auto ref_root = ref_parser->get_document()->get_root_node();
559         auto test_parser = new xmlpp::DomParser(test.string());
560         auto test_root = test_parser->get_document()->get_root_node();
561
562         check_xml (ref_root, test_root, ignore);
563 }
564
565 bool
566 wait_for_jobs ()
567 {
568         auto jm = JobManager::instance ();
569         while (jm->work_to_do()) {
570                 while (signal_manager->ui_idle()) {}
571                 dcpomatic_sleep_seconds (1);
572         }
573
574         if (jm->errors ()) {
575                 int N = 0;
576                 for (auto i: jm->_jobs) {
577                         if (i->finished_in_error()) {
578                                 ++N;
579                         }
580                 }
581                 cerr << N << " errors.\n";
582
583                 for (auto i: jm->_jobs) {
584                         if (i->finished_in_error()) {
585                                 cerr << i->name() << ":\n"
586                                      << "\tsummary: " << i->error_summary() << "\n"
587                                      << "\tdetails: " << i->error_details() << "\n";
588                         }
589                 }
590         }
591
592         while (signal_manager->ui_idle ()) {}
593
594         if (jm->errors ()) {
595                 JobManager::drop ();
596                 return true;
597         }
598
599         return false;
600 }
601
602
603 class Memory
604 {
605 public:
606         Memory () {}
607
608         ~Memory ()
609         {
610                 free (data);
611         }
612
613         Memory (Memory const&) = delete;
614         Memory& operator= (Memory const&) = delete;
615
616         uint8_t* data = nullptr;
617         size_t size = 0;
618 };
619
620
621 static void
622 png_write_data (png_structp png_ptr, png_bytep data, png_size_t length)
623 {
624         auto mem = reinterpret_cast<Memory*>(png_get_io_ptr(png_ptr));
625         size_t size = mem->size + length;
626
627         if (mem->data) {
628                 mem->data = reinterpret_cast<uint8_t*>(realloc(mem->data, size));
629         } else {
630                 mem->data = reinterpret_cast<uint8_t*>(malloc(size));
631         }
632
633         BOOST_REQUIRE (mem->data);
634
635         memcpy (mem->data + mem->size, data, length);
636         mem->size += length;
637 }
638
639
640 static void
641 png_flush (png_structp)
642 {
643
644 }
645
646
647 static void
648 png_error_fn (png_structp png_ptr, char const * message)
649 {
650         reinterpret_cast<Image*>(png_get_error_ptr(png_ptr))->png_error (message);
651 }
652
653
654 void
655 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
656 {
657         int png_color_type = 0;
658         int bits_per_pixel = 0;
659         switch (image->pixel_format()) {
660         case AV_PIX_FMT_RGB24:
661                 png_color_type = PNG_COLOR_TYPE_RGB;
662                 bits_per_pixel = 8;
663                 break;
664         case AV_PIX_FMT_XYZ12LE:
665                 png_color_type = PNG_COLOR_TYPE_RGB;
666                 bits_per_pixel = 16;
667                 break;
668         default:
669                 BOOST_REQUIRE_MESSAGE (false, "unexpected pixel format " << image->pixel_format());
670         }
671
672         /* error handling? */
673         png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, reinterpret_cast<void*>(const_cast<Image*>(image.get())), png_error_fn, 0);
674         BOOST_REQUIRE (png_ptr);
675
676         Memory state;
677
678         png_set_write_fn (png_ptr, &state, png_write_data, png_flush);
679
680         png_infop info_ptr = png_create_info_struct(png_ptr);
681         BOOST_REQUIRE (info_ptr);
682
683         png_set_IHDR (png_ptr, info_ptr, image->size().width, image->size().height, bits_per_pixel, png_color_type, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
684
685         png_byte ** row_pointers = reinterpret_cast<png_byte **>(png_malloc(png_ptr, image->size().height * sizeof(png_byte *)));
686         for (int i = 0; i < image->size().height; ++i) {
687                 row_pointers[i] = (png_byte *) (image->data()[0] + i * image->stride()[0]);
688         }
689
690         png_write_info (png_ptr, info_ptr);
691         png_write_image (png_ptr, row_pointers);
692         png_write_end (png_ptr, info_ptr);
693
694         png_destroy_write_struct (&png_ptr, &info_ptr);
695         png_free (png_ptr, row_pointers);
696
697         dcp::ArrayData(state.data, state.size).write(file);
698 }
699
700
701 void
702 check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int audio_tolerance)
703 {
704         int const r = system (String::compose("ffcmp -t %1 %2 %3", audio_tolerance, ref.string(), check.string()).c_str());
705         BOOST_REQUIRE_EQUAL (WEXITSTATUS(r), 0);
706 }
707
708 void
709 check_one_frame (boost::filesystem::path dcp_dir, int64_t index, boost::filesystem::path ref)
710 {
711         dcp::DCP dcp (dcp_dir);
712         dcp.read ();
713         auto asset = dynamic_pointer_cast<dcp::MonoPictureAsset> (dcp.cpls().front()->reels().front()->main_picture()->asset());
714         BOOST_REQUIRE (asset);
715         auto frame = asset->start_read()->get_frame(index);
716         auto ref_frame (new dcp::MonoPictureFrame (ref));
717
718         auto image = frame->xyz_image ();
719         auto ref_image = ref_frame->xyz_image ();
720
721         BOOST_REQUIRE (image->size() == ref_image->size());
722
723         int off = 0;
724         for (int y = 0; y < ref_image->size().height; ++y) {
725                 for (int x = 0; x < ref_image->size().width; ++x) {
726                         BOOST_REQUIRE_EQUAL (ref_image->data(0)[off], image->data(0)[off]);
727                         BOOST_REQUIRE_EQUAL (ref_image->data(1)[off], image->data(1)[off]);
728                         BOOST_REQUIRE_EQUAL (ref_image->data(2)[off], image->data(2)[off]);
729                         ++off;
730                 }
731         }
732 }
733
734 boost::filesystem::path
735 dcp_file (shared_ptr<const Film> film, string prefix)
736 {
737         auto i = boost::filesystem::directory_iterator (film->dir(film->dcp_name()));
738         while (i != boost::filesystem::directory_iterator() && !boost::algorithm::starts_with (i->path().leaf().string(), prefix)) {
739                 ++i;
740         }
741
742         BOOST_REQUIRE (i != boost::filesystem::directory_iterator());
743         return i->path();
744 }
745
746 boost::filesystem::path
747 subtitle_file (shared_ptr<Film> film)
748 {
749         for (auto i: boost::filesystem::directory_iterator(film->directory().get() / film->dcp_name (false))) {
750                 if (boost::filesystem::is_directory(i.path())) {
751                         for (auto j: boost::filesystem::directory_iterator(i.path())) {
752                                 if (boost::algorithm::starts_with(j.path().leaf().string(), "sub_")) {
753                                         return j.path();
754                                 }
755                         }
756                 }
757         }
758
759         BOOST_REQUIRE (false);
760         /* Remove warning */
761         return boost::filesystem::path("/");
762 }
763
764 void
765 make_random_file (boost::filesystem::path path, size_t size)
766 {
767         auto t = fopen_boost(path, "wb");
768         BOOST_REQUIRE (t);
769         for (size_t i = 0; i < size; ++i) {
770                 uint8_t r = rand() & 0xff;
771                 fwrite (&r, 1, 1, t);
772         }
773         fclose (t);
774 }
775
776
777 LogSwitcher::LogSwitcher (shared_ptr<Log> log)
778         : _old (dcpomatic_log)
779 {
780         dcpomatic_log = log;
781 }
782
783
784 LogSwitcher::~LogSwitcher ()
785 {
786         dcpomatic_log = _old;
787 }
788
789 std::ostream&
790 dcp::operator<< (std::ostream& s, dcp::Size i)
791 {
792         s << i.width << "x" << i.height;
793         return s;
794 }
795
796 std::ostream&
797 dcp::operator<< (std::ostream& s, dcp::Standard t)
798 {
799         switch (t) {
800         case Standard::INTEROP:
801                 s << "interop";
802                 break;
803         case Standard::SMPTE:
804                 s << "smpte";
805                 break;
806         }
807         return s;
808 }
809
810 std::ostream&
811 operator<< (std::ostream&s, VideoFrameType f)
812 {
813         s << video_frame_type_to_string(f);
814         return s;
815 }
816
817
818 void
819 Cleanup::add (boost::filesystem::path path)
820 {
821         _paths.push_back (path);
822 }
823
824
825 void
826 Cleanup::run ()
827 {
828         boost::system::error_code ec;
829         for (auto i: _paths) {
830                 boost::filesystem::remove_all (i, ec);
831         }
832 }