C++11-ification.
[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)
180 {
181         auto p = test_film_dir (name);
182         if (boost::filesystem::exists (p)) {
183                 boost::filesystem::remove_all (p);
184         }
185
186         auto film = make_shared<Film>(p);
187         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
188         film->set_container (Ratio::from_id ("185"));
189         film->write_metadata ();
190         return film;
191 }
192
193 void
194 check_wav_file (boost::filesystem::path ref, boost::filesystem::path check)
195 {
196         SF_INFO ref_info;
197         ref_info.format = 0;
198         auto ref_file = sf_open (ref.string().c_str(), SFM_READ, &ref_info);
199         BOOST_CHECK (ref_file);
200
201         SF_INFO check_info;
202         check_info.format = 0;
203         auto check_file = sf_open (check.string().c_str(), SFM_READ, &check_info);
204         BOOST_CHECK (check_file);
205
206         BOOST_CHECK_EQUAL (ref_info.frames, check_info.frames);
207         BOOST_CHECK_EQUAL (ref_info.samplerate, check_info.samplerate);
208         BOOST_CHECK_EQUAL (ref_info.channels, check_info.channels);
209         BOOST_CHECK_EQUAL (ref_info.format, check_info.format);
210
211         /* buffer_size is in frames */
212         sf_count_t const buffer_size = 65536 * ref_info.channels;
213         scoped_array<int32_t> ref_buffer (new int32_t[buffer_size]);
214         scoped_array<int32_t> check_buffer (new int32_t[buffer_size]);
215
216         sf_count_t N = ref_info.frames;
217         while (N) {
218                 sf_count_t this_time = min (buffer_size, N);
219                 sf_count_t r = sf_readf_int (ref_file, ref_buffer.get(), this_time);
220                 BOOST_CHECK_EQUAL (r, this_time);
221                 r = sf_readf_int (check_file, check_buffer.get(), this_time);
222                 BOOST_CHECK_EQUAL (r, this_time);
223
224                 for (sf_count_t i = 0; i < this_time; ++i) {
225                         BOOST_REQUIRE_MESSAGE (
226                                 abs (ref_buffer[i] - check_buffer[i]) <= 65536,
227                                 ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames
228                                 << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")"
229                                 );
230                 }
231
232                 N -= this_time;
233         }
234 }
235
236 void
237 check_mxf_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
238 {
239         ASDCP::PCM::MXFReader ref_reader;
240         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.OpenRead (ref.string().c_str())));
241
242         ASDCP::PCM::AudioDescriptor ref_desc;
243         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.FillAudioDescriptor (ref_desc)));
244
245         ASDCP::PCM::MXFReader check_reader;
246         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.OpenRead (check.string().c_str())));
247
248         ASDCP::PCM::AudioDescriptor check_desc;
249         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.FillAudioDescriptor (check_desc)));
250
251         BOOST_REQUIRE_EQUAL (ref_desc.ContainerDuration, check_desc.ContainerDuration);
252
253         ASDCP::PCM::FrameBuffer ref_buffer (Kumu::Megabyte);
254         ASDCP::PCM::FrameBuffer check_buffer (Kumu::Megabyte);
255         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
256                 ref_reader.ReadFrame (i, ref_buffer, 0);
257                 check_reader.ReadFrame (i, check_buffer, 0);
258                 BOOST_REQUIRE (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size()) == 0);
259         }
260 }
261
262
263 /** @return true if the files are the same, otherwise false */
264 bool
265 mxf_atmos_files_same (boost::filesystem::path ref, boost::filesystem::path check, bool verbose)
266 {
267         ASDCP::ATMOS::MXFReader ref_reader;
268         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.OpenRead(ref.string().c_str())));
269
270         ASDCP::ATMOS::AtmosDescriptor ref_desc;
271         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.FillAtmosDescriptor(ref_desc)));
272
273         ASDCP::ATMOS::MXFReader check_reader;
274         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.OpenRead(check.string().c_str())));
275
276         ASDCP::ATMOS::AtmosDescriptor check_desc;
277         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.FillAtmosDescriptor(check_desc)));
278
279         if (ref_desc.EditRate.Numerator != check_desc.EditRate.Numerator) {
280                 if (verbose) {
281                         std::cout << "EditRate.Numerator differs.\n";
282                 }
283                 return false;
284         }
285         if (ref_desc.EditRate.Denominator != check_desc.EditRate.Denominator) {
286                 if (verbose) {
287                         std::cout << "EditRate.Denominator differs.\n";
288                 }
289                 return false;
290         }
291         if (ref_desc.ContainerDuration != check_desc.ContainerDuration) {
292                 if (verbose) {
293                         std::cout << "EditRate.ContainerDuration differs.\n";
294                 }
295                 return false;
296         }
297         if (ref_desc.FirstFrame != check_desc.FirstFrame) {
298                 if (verbose) {
299                         std::cout << "EditRate.FirstFrame differs.\n";
300                 }
301                 return false;
302         }
303         if (ref_desc.MaxChannelCount != check_desc.MaxChannelCount) {
304                 if (verbose) {
305                         std::cout << "EditRate.MaxChannelCount differs.\n";
306                 }
307                 return false;
308         }
309         if (ref_desc.MaxObjectCount != check_desc.MaxObjectCount) {
310                 if (verbose) {
311                         std::cout << "EditRate.MaxObjectCount differs.\n";
312                 }
313                 return false;
314         }
315         if (ref_desc.AtmosVersion != check_desc.AtmosVersion) {
316                 if (verbose) {
317                         std::cout << "EditRate.AtmosVersion differs.\n";
318                 }
319                 return false;
320         }
321
322         ASDCP::DCData::FrameBuffer ref_buffer (Kumu::Megabyte);
323         ASDCP::DCData::FrameBuffer check_buffer (Kumu::Megabyte);
324         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
325                 ref_reader.ReadFrame (i, ref_buffer, 0);
326                 check_reader.ReadFrame (i, check_buffer, 0);
327                 if (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size())) {
328                         if (verbose) {
329                                 std::cout << "data differs.\n";
330                         }
331                         return false;
332                 }
333         }
334
335         return true;
336 }
337
338
339 static
340 double
341 rms_error (boost::filesystem::path ref, boost::filesystem::path check)
342 {
343         FFmpegImageProxy ref_proxy (ref, VideoRange::FULL);
344         auto ref_image = ref_proxy.image().image;
345         FFmpegImageProxy check_proxy (check, VideoRange::FULL);
346         auto check_image = check_proxy.image().image;
347
348         BOOST_REQUIRE_EQUAL (ref_image->pixel_format(), check_image->pixel_format());
349         AVPixelFormat const format = ref_image->pixel_format();
350
351         BOOST_REQUIRE (ref_image->size() == check_image->size());
352         int const width = ref_image->size().width;
353         int const height = ref_image->size().height;
354
355         double sum_square = 0;
356         switch (format) {
357                 case AV_PIX_FMT_RGBA:
358                 {
359                         for (int y = 0; y < height; ++y) {
360                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
361                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
362                                 for (int x = 0; x < width; ++x) {
363                                         for (int c = 0; c < 4; ++c) {
364                                                 sum_square += pow((*p++ - *q++), 2);
365                                         }
366                                 }
367                         }
368                         break;
369                 }
370                 case AV_PIX_FMT_RGB24:
371                 {
372                         for (int y = 0; y < height; ++y) {
373                                 uint8_t* p = ref_image->data()[0] + y * ref_image->stride()[0];
374                                 uint8_t* q = check_image->data()[0] + y * check_image->stride()[0];
375                                 for (int x = 0; x < width; ++x) {
376                                         for (int c = 0; c < 3; ++c) {
377                                                 sum_square += pow((*p++ - *q++), 2);
378                                         }
379                                 }
380                         }
381                         break;
382                 }
383                 case AV_PIX_FMT_RGB48BE:
384                 {
385                         for (int y = 0; y < height; ++y) {
386                                 uint16_t* p = reinterpret_cast<uint16_t*>(ref_image->data()[0] + y * ref_image->stride()[0]);
387                                 uint16_t* q = reinterpret_cast<uint16_t*>(check_image->data()[0] + y * check_image->stride()[0]);
388                                 for (int x = 0; x < width; ++x) {
389                                         for (int c = 0; c < 3; ++c) {
390                                                 sum_square += pow((*p++ - *q++), 2);
391                                         }
392                                 }
393                         }
394                         break;
395                 }
396                 default:
397                         BOOST_REQUIRE_MESSAGE (false, "unrecognised pixel format " << format);
398         }
399
400         return sqrt(sum_square / (height * width));
401 }
402
403
404 BOOST_AUTO_TEST_CASE (rms_error_test)
405 {
406         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image0.png"), 0, 0.001);
407         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image1.png"), 2.2778, 0.001);
408         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image2.png"), 59.8896, 0.001);
409         BOOST_CHECK_CLOSE (rms_error("test/data/check_image0.png", "test/data/check_image3.png"), 0.89164, 0.001);
410 }
411
412
413 void
414 check_image (boost::filesystem::path ref, boost::filesystem::path check, double threshold)
415 {
416         double const e = rms_error (ref, check);
417         BOOST_CHECK_MESSAGE (e < threshold, ref << " differs from " << check << " " << e);
418 }
419
420
421 void
422 check_file (boost::filesystem::path ref, boost::filesystem::path check)
423 {
424         auto N = boost::filesystem::file_size (ref);
425         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
426         auto ref_file = fopen_boost (ref, "rb");
427         BOOST_CHECK (ref_file);
428         auto check_file = fopen_boost (check, "rb");
429         BOOST_CHECK (check_file);
430
431         int const buffer_size = 65536;
432         uint8_t* ref_buffer = new uint8_t[buffer_size];
433         uint8_t* check_buffer = new uint8_t[buffer_size];
434
435         string error = "File " + check.string() + " differs from reference " + ref.string();
436
437         while (N) {
438                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
439                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
440                 BOOST_CHECK_EQUAL (r, this_time);
441                 r = fread (check_buffer, 1, this_time, check_file);
442                 BOOST_CHECK_EQUAL (r, this_time);
443
444                 BOOST_CHECK_MESSAGE (memcmp (ref_buffer, check_buffer, this_time) == 0, error);
445                 if (memcmp (ref_buffer, check_buffer, this_time)) {
446                         break;
447                 }
448
449                 N -= this_time;
450         }
451
452         delete[] ref_buffer;
453         delete[] check_buffer;
454
455         fclose (ref_file);
456         fclose (check_file);
457 }
458
459 static void
460 note (dcp::NoteType t, string n)
461 {
462         if (t == dcp::NoteType::ERROR) {
463                 cerr << n << "\n";
464         }
465 }
466
467
468 void
469 check_dcp (boost::filesystem::path ref, shared_ptr<const Film> film)
470 {
471         check_dcp (ref, film->dir(film->dcp_name()));
472 }
473
474
475 void
476 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
477 {
478         dcp::DCP ref_dcp (ref);
479         ref_dcp.read ();
480         dcp::DCP check_dcp (check);
481         check_dcp.read ();
482
483         dcp::EqualityOptions options;
484         options.max_mean_pixel_error = 5;
485         options.max_std_dev_pixel_error = 5;
486         options.max_audio_sample_error = 255;
487         options.cpl_annotation_texts_can_differ = true;
488         options.reel_annotation_texts_can_differ = true;
489         options.reel_hashes_can_differ = true;
490         options.issue_dates_can_differ = true;
491
492         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
493 }
494
495 void
496 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
497 {
498         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
499         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
500
501         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
502                 return;
503         }
504
505         auto ref_children = ref->get_children ();
506         auto test_children = test->get_children ();
507         BOOST_REQUIRE_MESSAGE (
508                 ref_children.size() == test_children.size(),
509                 ref->get_name() << " has " << ref_children.size() << " or " << test_children.size() << " children"
510                 );
511
512         auto k = ref_children.begin ();
513         auto l = test_children.begin ();
514         while (k != ref_children.end ()) {
515
516                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
517
518                 auto ref_el = dynamic_cast<xmlpp::Element*>(*k);
519                 auto test_el = dynamic_cast<xmlpp::Element*>(*l);
520                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
521                 if (ref_el && test_el) {
522                         check_xml (ref_el, test_el, ignore);
523                 }
524
525                 auto ref_cn = dynamic_cast<xmlpp::ContentNode*>(*k);
526                 auto test_cn = dynamic_cast<xmlpp::ContentNode*>(*l);
527                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
528                 if (ref_cn && test_cn) {
529                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
530                 }
531
532                 ++k;
533                 ++l;
534         }
535
536         auto ref_attributes = ref->get_attributes ();
537         auto test_attributes = test->get_attributes ();
538         BOOST_CHECK_EQUAL (ref_attributes.size(), test_attributes.size ());
539
540         auto m = ref_attributes.begin();
541         auto n = test_attributes.begin();
542         while (m != ref_attributes.end ()) {
543                 BOOST_CHECK_EQUAL ((*m)->get_name(), (*n)->get_name());
544                 BOOST_CHECK_EQUAL ((*m)->get_value(), (*n)->get_value());
545
546                 ++m;
547                 ++n;
548         }
549 }
550
551 void
552 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
553 {
554         auto ref_parser = new xmlpp::DomParser(ref.string());
555         auto ref_root = ref_parser->get_document()->get_root_node();
556         auto test_parser = new xmlpp::DomParser(test.string());
557         auto test_root = test_parser->get_document()->get_root_node();
558
559         check_xml (ref_root, test_root, ignore);
560 }
561
562 bool
563 wait_for_jobs ()
564 {
565         auto jm = JobManager::instance ();
566         while (jm->work_to_do()) {
567                 while (signal_manager->ui_idle()) {}
568                 dcpomatic_sleep_seconds (1);
569         }
570
571         if (jm->errors ()) {
572                 int N = 0;
573                 for (auto i: jm->_jobs) {
574                         if (i->finished_in_error()) {
575                                 ++N;
576                         }
577                 }
578                 cerr << N << " errors.\n";
579
580                 for (auto i: jm->_jobs) {
581                         if (i->finished_in_error()) {
582                                 cerr << i->name() << ":\n"
583                                      << "\tsummary: " << i->error_summary() << "\n"
584                                      << "\tdetails: " << i->error_details() << "\n";
585                         }
586                 }
587         }
588
589         while (signal_manager->ui_idle ()) {}
590
591         if (jm->errors ()) {
592                 JobManager::drop ();
593                 return true;
594         }
595
596         return false;
597 }
598
599
600 class Memory
601 {
602 public:
603         Memory () {}
604
605         ~Memory ()
606         {
607                 free (data);
608         }
609
610         Memory (Memory const&) = delete;
611         Memory& operator= (Memory const&) = delete;
612
613         uint8_t* data = nullptr;
614         size_t size = 0;
615 };
616
617
618 static void
619 png_write_data (png_structp png_ptr, png_bytep data, png_size_t length)
620 {
621         auto mem = reinterpret_cast<Memory*>(png_get_io_ptr(png_ptr));
622         size_t size = mem->size + length;
623
624         if (mem->data) {
625                 mem->data = reinterpret_cast<uint8_t*>(realloc(mem->data, size));
626         } else {
627                 mem->data = reinterpret_cast<uint8_t*>(malloc(size));
628         }
629
630         BOOST_REQUIRE (mem->data);
631
632         memcpy (mem->data + mem->size, data, length);
633         mem->size += length;
634 }
635
636
637 static void
638 png_flush (png_structp)
639 {
640
641 }
642
643
644 static void
645 png_error_fn (png_structp png_ptr, char const * message)
646 {
647         reinterpret_cast<Image*>(png_get_error_ptr(png_ptr))->png_error (message);
648 }
649
650
651 void
652 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
653 {
654         int png_color_type = 0;
655         int bits_per_pixel = 0;
656         switch (image->pixel_format()) {
657         case AV_PIX_FMT_RGB24:
658                 png_color_type = PNG_COLOR_TYPE_RGB;
659                 bits_per_pixel = 8;
660                 break;
661         case AV_PIX_FMT_XYZ12LE:
662                 png_color_type = PNG_COLOR_TYPE_RGB;
663                 bits_per_pixel = 16;
664                 break;
665         default:
666                 BOOST_REQUIRE_MESSAGE (false, "unexpected pixel format " << image->pixel_format());
667         }
668
669         /* error handling? */
670         png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, reinterpret_cast<void*>(const_cast<Image*>(image.get())), png_error_fn, 0);
671         BOOST_REQUIRE (png_ptr);
672
673         Memory state;
674
675         png_set_write_fn (png_ptr, &state, png_write_data, png_flush);
676
677         png_infop info_ptr = png_create_info_struct(png_ptr);
678         BOOST_REQUIRE (info_ptr);
679
680         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);
681
682         png_byte ** row_pointers = reinterpret_cast<png_byte **>(png_malloc(png_ptr, image->size().height * sizeof(png_byte *)));
683         for (int i = 0; i < image->size().height; ++i) {
684                 row_pointers[i] = (png_byte *) (image->data()[0] + i * image->stride()[0]);
685         }
686
687         png_write_info (png_ptr, info_ptr);
688         png_write_image (png_ptr, row_pointers);
689         png_write_end (png_ptr, info_ptr);
690
691         png_destroy_write_struct (&png_ptr, &info_ptr);
692         png_free (png_ptr, row_pointers);
693
694         dcp::ArrayData(state.data, state.size).write(file);
695 }
696
697
698 void
699 check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int audio_tolerance)
700 {
701         int const r = system (String::compose("ffcmp -t %1 %2 %3", audio_tolerance, ref.string(), check.string()).c_str());
702         BOOST_REQUIRE_EQUAL (WEXITSTATUS(r), 0);
703 }
704
705 void
706 check_one_frame (boost::filesystem::path dcp_dir, int64_t index, boost::filesystem::path ref)
707 {
708         dcp::DCP dcp (dcp_dir);
709         dcp.read ();
710         auto asset = dynamic_pointer_cast<dcp::MonoPictureAsset> (dcp.cpls().front()->reels().front()->main_picture()->asset());
711         BOOST_REQUIRE (asset);
712         auto frame = asset->start_read()->get_frame(index);
713         auto ref_frame (new dcp::MonoPictureFrame (ref));
714
715         auto image = frame->xyz_image ();
716         auto ref_image = ref_frame->xyz_image ();
717
718         BOOST_REQUIRE (image->size() == ref_image->size());
719
720         int off = 0;
721         for (int y = 0; y < ref_image->size().height; ++y) {
722                 for (int x = 0; x < ref_image->size().width; ++x) {
723                         BOOST_REQUIRE_EQUAL (ref_image->data(0)[off], image->data(0)[off]);
724                         BOOST_REQUIRE_EQUAL (ref_image->data(1)[off], image->data(1)[off]);
725                         BOOST_REQUIRE_EQUAL (ref_image->data(2)[off], image->data(2)[off]);
726                         ++off;
727                 }
728         }
729 }
730
731 boost::filesystem::path
732 dcp_file (shared_ptr<const Film> film, string prefix)
733 {
734         auto i = boost::filesystem::directory_iterator (film->dir(film->dcp_name()));
735         while (i != boost::filesystem::directory_iterator() && !boost::algorithm::starts_with (i->path().leaf().string(), prefix)) {
736                 ++i;
737         }
738
739         BOOST_REQUIRE (i != boost::filesystem::directory_iterator());
740         return i->path();
741 }
742
743 boost::filesystem::path
744 subtitle_file (shared_ptr<Film> film)
745 {
746         for (auto i: boost::filesystem::directory_iterator(film->directory().get() / film->dcp_name (false))) {
747                 if (boost::filesystem::is_directory(i.path())) {
748                         for (auto j: boost::filesystem::directory_iterator(i.path())) {
749                                 if (boost::algorithm::starts_with(j.path().leaf().string(), "sub_")) {
750                                         return j.path();
751                                 }
752                         }
753                 }
754         }
755
756         BOOST_REQUIRE (false);
757         /* Remove warning */
758         return boost::filesystem::path("/");
759 }
760
761 void
762 make_random_file (boost::filesystem::path path, size_t size)
763 {
764         auto t = fopen_boost(path, "wb");
765         BOOST_REQUIRE (t);
766         for (size_t i = 0; i < size; ++i) {
767                 uint8_t r = rand() & 0xff;
768                 fwrite (&r, 1, 1, t);
769         }
770         fclose (t);
771 }
772
773
774 LogSwitcher::LogSwitcher (shared_ptr<Log> log)
775         : _old (dcpomatic_log)
776 {
777         dcpomatic_log = log;
778 }
779
780
781 LogSwitcher::~LogSwitcher ()
782 {
783         dcpomatic_log = _old;
784 }
785
786 std::ostream&
787 dcp::operator<< (std::ostream& s, dcp::Size i)
788 {
789         s << i.width << "x" << i.height;
790         return s;
791 }
792
793 std::ostream&
794 dcp::operator<< (std::ostream& s, dcp::Standard t)
795 {
796         switch (t) {
797         case Standard::INTEROP:
798                 s << "interop";
799                 break;
800         case Standard::SMPTE:
801                 s << "smpte";
802                 break;
803         }
804         return s;
805 }
806
807 std::ostream&
808 operator<< (std::ostream&s, VideoFrameType f)
809 {
810         s << video_frame_type_to_string(f);
811         return s;
812 }
813