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