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