32d32f98879f8ddefcf16f7d19447085d5d873a6
[dcpomatic.git] / test / test.cc
1 /*
2     Copyright (C) 2012-2019 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/image.h"
34 #include "lib/ratio.h"
35 #include "lib/dcp_content_type.h"
36 #include "lib/log_entry.h"
37 #include "lib/compose.hpp"
38 #include "lib/file_log.h"
39 #include "lib/dcpomatic_log.h"
40 #include "test.h"
41 #include <dcp/dcp.h>
42 #include <dcp/cpl.h>
43 #include <dcp/reel.h>
44 #include <dcp/reel_picture_asset.h>
45 #include <dcp/mono_picture_frame.h>
46 #include <dcp/mono_picture_asset.h>
47 #include <dcp/openjpeg_image.h>
48 #include <asdcp/AS_DCP.h>
49 #include <sndfile.h>
50 #include <libxml++/libxml++.h>
51 #include <Magick++.h>
52 extern "C" {
53 #include <libavformat/avformat.h>
54 }
55 #define BOOST_TEST_DYN_LINK
56 #define BOOST_TEST_MODULE dcpomatic_test
57 #include <boost/test/unit_test.hpp>
58 #include <boost/algorithm/string.hpp>
59 #include <list>
60 #include <vector>
61 #include <iostream>
62
63 using std::string;
64 using std::vector;
65 using std::min;
66 using std::cout;
67 using std::cerr;
68 using std::list;
69 using std::abs;
70 using boost::shared_ptr;
71 using boost::scoped_array;
72 using boost::dynamic_pointer_cast;
73
74 boost::filesystem::path TestPaths::TestPaths::private_data = boost::filesystem::canonical(boost::filesystem::path ("..") / boost::filesystem::path ("dcpomatic-test-private"));
75 boost::filesystem::path TestPaths::xsd = boost::filesystem::canonical(boost::filesystem::path("..") / boost::filesystem::path("libdcp") / boost::filesystem::path("xsd"));
76
77 void
78 setup_test_config ()
79 {
80         Config::instance()->set_master_encoding_threads (boost::thread::hardware_concurrency());
81         Config::instance()->set_server_encoding_threads (1);
82         Config::instance()->set_server_port_base (61921);
83         Config::instance()->set_default_isdcf_metadata (ISDCFMetadata ());
84         Config::instance()->set_default_container (Ratio::from_id ("185"));
85         Config::instance()->set_default_dcp_content_type (static_cast<DCPContentType*> (0));
86         Config::instance()->set_default_audio_delay (0);
87         Config::instance()->set_default_j2k_bandwidth (100000000);
88         Config::instance()->set_default_interop (false);
89         Config::instance()->set_default_still_length (10);
90         Config::instance()->set_log_types (
91                 LogEntry::TYPE_GENERAL | LogEntry::TYPE_WARNING | LogEntry::TYPE_ERROR | LogEntry::TYPE_DEBUG_THREED | LogEntry::TYPE_DEBUG_ENCODE | LogEntry::TYPE_DEBUG_PLAYER
92                 );
93         Config::instance()->set_automatic_audio_analysis (false);
94 }
95
96 class TestSignalManager : public SignalManager
97 {
98 public:
99         /* No wakes in tests: we call ui_idle ourselves */
100         void wake_ui ()
101         {
102
103         }
104 };
105
106 struct TestConfig
107 {
108         TestConfig ()
109         {
110                 dcpomatic_setup ();
111                 setup_test_config ();
112
113                 EncodeServerFinder::instance()->stop ();
114
115                 signal_manager = new TestSignalManager ();
116
117                 char* env_private = getenv("DCPOMATIC_TEST_PRIVATE");
118                 if (env_private) {
119                         TestPaths::TestPaths::private_data = env_private;
120                 }
121
122                 dcpomatic_log.reset (new FileLog("build/test/log"));
123         }
124
125         ~TestConfig ()
126         {
127                 JobManager::drop ();
128         }
129 };
130
131 BOOST_GLOBAL_FIXTURE (TestConfig);
132
133 boost::filesystem::path
134 test_film_dir (string name)
135 {
136         boost::filesystem::path p;
137         p /= "build";
138         p /= "test";
139         p /= name;
140         return p;
141 }
142
143 shared_ptr<Film>
144 new_test_film (string name)
145 {
146         boost::filesystem::path p = test_film_dir (name);
147         if (boost::filesystem::exists (p)) {
148                 boost::filesystem::remove_all (p);
149         }
150
151         shared_ptr<Film> film = shared_ptr<Film> (new Film (p));
152         film->write_metadata ();
153         return film;
154 }
155
156 shared_ptr<Film>
157 new_test_film2 (string name)
158 {
159         boost::filesystem::path p = test_film_dir (name);
160         if (boost::filesystem::exists (p)) {
161                 boost::filesystem::remove_all (p);
162         }
163
164         shared_ptr<Film> film = shared_ptr<Film> (new Film (p));
165         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TST"));
166         film->set_container (Ratio::from_id ("185"));
167         film->write_metadata ();
168         return film;
169 }
170
171 void
172 check_wav_file (boost::filesystem::path ref, boost::filesystem::path check)
173 {
174         SF_INFO ref_info;
175         ref_info.format = 0;
176         SNDFILE* ref_file = sf_open (ref.string().c_str(), SFM_READ, &ref_info);
177         BOOST_CHECK (ref_file);
178
179         SF_INFO check_info;
180         check_info.format = 0;
181         SNDFILE* check_file = sf_open (check.string().c_str(), SFM_READ, &check_info);
182         BOOST_CHECK (check_file);
183
184         BOOST_CHECK_EQUAL (ref_info.frames, check_info.frames);
185         BOOST_CHECK_EQUAL (ref_info.samplerate, check_info.samplerate);
186         BOOST_CHECK_EQUAL (ref_info.channels, check_info.channels);
187         BOOST_CHECK_EQUAL (ref_info.format, check_info.format);
188
189         /* buffer_size is in frames */
190         sf_count_t const buffer_size = 65536 * ref_info.channels;
191         scoped_array<int32_t> ref_buffer (new int32_t[buffer_size]);
192         scoped_array<int32_t> check_buffer (new int32_t[buffer_size]);
193
194         sf_count_t N = ref_info.frames;
195         while (N) {
196                 sf_count_t this_time = min (buffer_size, N);
197                 sf_count_t r = sf_readf_int (ref_file, ref_buffer.get(), this_time);
198                 BOOST_CHECK_EQUAL (r, this_time);
199                 r = sf_readf_int (check_file, check_buffer.get(), this_time);
200                 BOOST_CHECK_EQUAL (r, this_time);
201
202                 for (sf_count_t i = 0; i < this_time; ++i) {
203                         BOOST_REQUIRE_MESSAGE (
204                                 abs (ref_buffer[i] - check_buffer[i]) <= 65536,
205                                 ref << " differs from " << check << " at " << (ref_info.frames - N + i) << " of " << ref_info.frames
206                                 << "(" << ref_buffer[i] << " vs " << check_buffer[i] << ")"
207                                 );
208                 }
209
210                 N -= this_time;
211         }
212 }
213
214 void
215 check_mxf_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
216 {
217         ASDCP::PCM::MXFReader ref_reader;
218         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.OpenRead (ref.string().c_str())));
219
220         ASDCP::PCM::AudioDescriptor ref_desc;
221         BOOST_REQUIRE (!ASDCP_FAILURE (ref_reader.FillAudioDescriptor (ref_desc)));
222
223         ASDCP::PCM::MXFReader check_reader;
224         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.OpenRead (check.string().c_str())));
225
226         ASDCP::PCM::AudioDescriptor check_desc;
227         BOOST_REQUIRE (!ASDCP_FAILURE (check_reader.FillAudioDescriptor (check_desc)));
228
229         BOOST_REQUIRE_EQUAL (ref_desc.ContainerDuration, check_desc.ContainerDuration);
230
231         ASDCP::PCM::FrameBuffer ref_buffer (Kumu::Megabyte);
232         ASDCP::PCM::FrameBuffer check_buffer (Kumu::Megabyte);
233         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
234                 ref_reader.ReadFrame (i, ref_buffer, 0);
235                 check_reader.ReadFrame (i, check_buffer, 0);
236                 BOOST_REQUIRE (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size()) == 0);
237         }
238 }
239
240
241 /** @return true if the files are the same, otherwise false */
242 bool
243 mxf_atmos_files_same (boost::filesystem::path ref, boost::filesystem::path check, bool verbose)
244 {
245         ASDCP::ATMOS::MXFReader ref_reader;
246         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.OpenRead(ref.string().c_str())));
247
248         ASDCP::ATMOS::AtmosDescriptor ref_desc;
249         BOOST_REQUIRE (!ASDCP_FAILURE(ref_reader.FillAtmosDescriptor(ref_desc)));
250
251         ASDCP::ATMOS::MXFReader check_reader;
252         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.OpenRead(check.string().c_str())));
253
254         ASDCP::ATMOS::AtmosDescriptor check_desc;
255         BOOST_REQUIRE (!ASDCP_FAILURE(check_reader.FillAtmosDescriptor(check_desc)));
256
257         if (ref_desc.EditRate.Numerator != check_desc.EditRate.Numerator) {
258                 if (verbose) {
259                         std::cout << "EditRate.Numerator differs.\n";
260                 }
261                 return false;
262         }
263         if (ref_desc.EditRate.Denominator != check_desc.EditRate.Denominator) {
264                 if (verbose) {
265                         std::cout << "EditRate.Denominator differs.\n";
266                 }
267                 return false;
268         }
269         if (ref_desc.ContainerDuration != check_desc.ContainerDuration) {
270                 if (verbose) {
271                         std::cout << "EditRate.ContainerDuration differs.\n";
272                 }
273                 return false;
274         }
275         if (ref_desc.FirstFrame != check_desc.FirstFrame) {
276                 if (verbose) {
277                         std::cout << "EditRate.FirstFrame differs.\n";
278                 }
279                 return false;
280         }
281         if (ref_desc.MaxChannelCount != check_desc.MaxChannelCount) {
282                 if (verbose) {
283                         std::cout << "EditRate.MaxChannelCount differs.\n";
284                 }
285                 return false;
286         }
287         if (ref_desc.MaxObjectCount != check_desc.MaxObjectCount) {
288                 if (verbose) {
289                         std::cout << "EditRate.MaxObjectCount differs.\n";
290                 }
291                 return false;
292         }
293         if (ref_desc.AtmosVersion != check_desc.AtmosVersion) {
294                 if (verbose) {
295                         std::cout << "EditRate.AtmosVersion differs.\n";
296                 }
297                 return false;
298         }
299
300         ASDCP::DCData::FrameBuffer ref_buffer (Kumu::Megabyte);
301         ASDCP::DCData::FrameBuffer check_buffer (Kumu::Megabyte);
302         for (size_t i = 0; i < ref_desc.ContainerDuration; ++i) {
303                 ref_reader.ReadFrame (i, ref_buffer, 0);
304                 check_reader.ReadFrame (i, check_buffer, 0);
305                 if (memcmp(ref_buffer.RoData(), check_buffer.RoData(), ref_buffer.Size())) {
306                         if (verbose) {
307                                 std::cout << "data differs.\n";
308                         }
309                         return false;
310                 }
311         }
312
313         return true;
314 }
315
316
317 void
318 check_image (boost::filesystem::path ref, boost::filesystem::path check, double threshold)
319 {
320         using namespace MagickCore;
321
322         Magick::Image ref_image;
323         ref_image.read (ref.string ());
324         Magick::Image check_image;
325         check_image.read (check.string ());
326         /* XXX: this is a hack; we really want the ImageMagick call but GraphicsMagick doesn't have it;
327            this may cause random test failures on platforms that use GraphicsMagick.
328         */
329         double const dist = ref_image.compare(check_image, Magick::RootMeanSquaredErrorMetric);
330         BOOST_CHECK_MESSAGE (dist < threshold, ref << " differs from " << check << " " << dist);
331 }
332
333 void
334 check_file (boost::filesystem::path ref, boost::filesystem::path check)
335 {
336         uintmax_t N = boost::filesystem::file_size (ref);
337         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
338         FILE* ref_file = fopen_boost (ref, "rb");
339         BOOST_CHECK (ref_file);
340         FILE* check_file = fopen_boost (check, "rb");
341         BOOST_CHECK (check_file);
342
343         int const buffer_size = 65536;
344         uint8_t* ref_buffer = new uint8_t[buffer_size];
345         uint8_t* check_buffer = new uint8_t[buffer_size];
346
347         string error = "File " + check.string() + " differs from reference " + ref.string();
348
349         while (N) {
350                 uintmax_t this_time = min (uintmax_t (buffer_size), N);
351                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
352                 BOOST_CHECK_EQUAL (r, this_time);
353                 r = fread (check_buffer, 1, this_time, check_file);
354                 BOOST_CHECK_EQUAL (r, this_time);
355
356                 BOOST_CHECK_MESSAGE (memcmp (ref_buffer, check_buffer, this_time) == 0, error);
357                 if (memcmp (ref_buffer, check_buffer, this_time)) {
358                         break;
359                 }
360
361                 N -= this_time;
362         }
363
364         delete[] ref_buffer;
365         delete[] check_buffer;
366
367         fclose (ref_file);
368         fclose (check_file);
369 }
370
371 static void
372 note (dcp::NoteType t, string n)
373 {
374         if (t == dcp::DCP_ERROR) {
375                 cerr << n << "\n";
376         }
377 }
378
379
380 void
381 check_dcp (boost::filesystem::path ref, shared_ptr<const Film> film)
382 {
383         check_dcp (ref, film->dir(film->dcp_name()));
384 }
385
386
387 void
388 check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
389 {
390         dcp::DCP ref_dcp (ref);
391         ref_dcp.read ();
392         dcp::DCP check_dcp (check);
393         check_dcp.read ();
394
395         dcp::EqualityOptions options;
396         options.max_mean_pixel_error = 5;
397         options.max_std_dev_pixel_error = 5;
398         options.max_audio_sample_error = 255;
399         options.cpl_annotation_texts_can_differ = true;
400         options.reel_annotation_texts_can_differ = true;
401         options.reel_hashes_can_differ = true;
402         options.issue_dates_can_differ = true;
403
404         BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));
405 }
406
407 void
408 check_xml (xmlpp::Element* ref, xmlpp::Element* test, list<string> ignore)
409 {
410         BOOST_CHECK_EQUAL (ref->get_name (), test->get_name ());
411         BOOST_CHECK_EQUAL (ref->get_namespace_prefix (), test->get_namespace_prefix ());
412
413         if (find (ignore.begin(), ignore.end(), ref->get_name()) != ignore.end ()) {
414                 return;
415         }
416
417         xmlpp::Element::NodeList ref_children = ref->get_children ();
418         xmlpp::Element::NodeList test_children = test->get_children ();
419         BOOST_REQUIRE_MESSAGE (
420                 ref_children.size() == test_children.size(),
421                 ref->get_name() << " has " << ref_children.size() << " or " << test_children.size() << " children"
422                 );
423
424         xmlpp::Element::NodeList::iterator k = ref_children.begin ();
425         xmlpp::Element::NodeList::iterator l = test_children.begin ();
426         while (k != ref_children.end ()) {
427
428                 /* XXX: should be doing xmlpp::EntityReference, xmlpp::XIncludeEnd, xmlpp::XIncludeStart */
429
430                 xmlpp::Element* ref_el = dynamic_cast<xmlpp::Element*> (*k);
431                 xmlpp::Element* test_el = dynamic_cast<xmlpp::Element*> (*l);
432                 BOOST_CHECK ((ref_el && test_el) || (!ref_el && !test_el));
433                 if (ref_el && test_el) {
434                         check_xml (ref_el, test_el, ignore);
435                 }
436
437                 xmlpp::ContentNode* ref_cn = dynamic_cast<xmlpp::ContentNode*> (*k);
438                 xmlpp::ContentNode* test_cn = dynamic_cast<xmlpp::ContentNode*> (*l);
439                 BOOST_CHECK ((ref_cn && test_cn) || (!ref_cn && !test_cn));
440                 if (ref_cn && test_cn) {
441                         BOOST_CHECK_EQUAL (ref_cn->get_content(), test_cn->get_content ());
442                 }
443
444                 ++k;
445                 ++l;
446         }
447
448         xmlpp::Element::AttributeList ref_attributes = ref->get_attributes ();
449         xmlpp::Element::AttributeList test_attributes = test->get_attributes ();
450         BOOST_CHECK_EQUAL (ref_attributes.size(), test_attributes.size ());
451
452         xmlpp::Element::AttributeList::const_iterator m = ref_attributes.begin();
453         xmlpp::Element::AttributeList::const_iterator n = test_attributes.begin();
454         while (m != ref_attributes.end ()) {
455                 BOOST_CHECK_EQUAL ((*m)->get_name(), (*n)->get_name());
456                 BOOST_CHECK_EQUAL ((*m)->get_value(), (*n)->get_value());
457
458                 ++m;
459                 ++n;
460         }
461 }
462
463 void
464 check_xml (boost::filesystem::path ref, boost::filesystem::path test, list<string> ignore)
465 {
466         xmlpp::DomParser* ref_parser = new xmlpp::DomParser (ref.string ());
467         xmlpp::Element* ref_root = ref_parser->get_document()->get_root_node ();
468         xmlpp::DomParser* test_parser = new xmlpp::DomParser (test.string ());
469         xmlpp::Element* test_root = test_parser->get_document()->get_root_node ();
470
471         check_xml (ref_root, test_root, ignore);
472 }
473
474 bool
475 wait_for_jobs ()
476 {
477         JobManager* jm = JobManager::instance ();
478         while (jm->work_to_do ()) {
479                 while (signal_manager->ui_idle ()) {}
480                 dcpomatic_sleep_seconds (1);
481         }
482
483         if (jm->errors ()) {
484                 int N = 0;
485                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
486                         if ((*i)->finished_in_error ()) {
487                                 ++N;
488                         }
489                 }
490                 cerr << N << " errors.\n";
491
492                 for (list<shared_ptr<Job> >::iterator i = jm->_jobs.begin(); i != jm->_jobs.end(); ++i) {
493                         if ((*i)->finished_in_error ()) {
494                                 cerr << (*i)->name() << ":\n"
495                                      << "\tsummary: " << (*i)->error_summary () << "\n"
496                                      << "\tdetails: " << (*i)->error_details () << "\n";
497                         }
498                 }
499         }
500
501         while (signal_manager->ui_idle ()) {}
502
503         if (jm->errors ()) {
504                 JobManager::drop ();
505                 return true;
506         }
507
508         return false;
509 }
510
511 void
512 write_image (shared_ptr<const Image> image, boost::filesystem::path file, string format, MagickCore::StorageType pixel_type)
513 {
514         using namespace MagickCore;
515
516         Magick::Image m (image->size().width, image->size().height, format.c_str(), pixel_type, (void *) image->data()[0]);
517         m.write (file.string ());
518 }
519
520 void
521 check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int audio_tolerance)
522 {
523         int const r = system (String::compose("ffcmp -t %1 %2 %3", audio_tolerance, ref.string(), check.string()).c_str());
524         BOOST_REQUIRE_EQUAL (WEXITSTATUS(r), 0);
525 }
526
527 void
528 check_one_frame (boost::filesystem::path dcp_dir, int64_t index, boost::filesystem::path ref)
529 {
530         dcp::DCP dcp (dcp_dir);
531         dcp.read ();
532         shared_ptr<dcp::MonoPictureAsset> asset = dynamic_pointer_cast<dcp::MonoPictureAsset> (dcp.cpls().front()->reels().front()->main_picture()->asset());
533         BOOST_REQUIRE (asset);
534         shared_ptr<const dcp::MonoPictureFrame> frame = asset->start_read()->get_frame(index);
535         shared_ptr<const dcp::MonoPictureFrame> ref_frame (new dcp::MonoPictureFrame (ref));
536
537         shared_ptr<dcp::OpenJPEGImage> image = frame->xyz_image ();
538         shared_ptr<dcp::OpenJPEGImage> ref_image = ref_frame->xyz_image ();
539
540         BOOST_REQUIRE (image->size() == ref_image->size());
541
542         int off = 0;
543         for (int y = 0; y < ref_image->size().height; ++y) {
544                 for (int x = 0; x < ref_image->size().width; ++x) {
545                         BOOST_REQUIRE_EQUAL (ref_image->data(0)[off], image->data(0)[off]);
546                         BOOST_REQUIRE_EQUAL (ref_image->data(1)[off], image->data(1)[off]);
547                         BOOST_REQUIRE_EQUAL (ref_image->data(2)[off], image->data(2)[off]);
548                         ++off;
549                 }
550         }
551 }
552
553 boost::filesystem::path
554 dcp_file (shared_ptr<const Film> film, string prefix)
555 {
556         boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (film->dir(film->dcp_name()));
557         while (i != boost::filesystem::directory_iterator() && !boost::algorithm::starts_with (i->path().leaf().string(), prefix)) {
558                 ++i;
559         }
560
561         BOOST_REQUIRE (i != boost::filesystem::directory_iterator());
562         return i->path();
563 }
564
565 boost::filesystem::path
566 subtitle_file (shared_ptr<Film> film)
567 {
568         for (
569                 boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (film->directory().get() / film->dcp_name (false));
570                 i != boost::filesystem::directory_iterator ();
571                 ++i) {
572
573                 if (boost::filesystem::is_directory (i->path ())) {
574                         for (
575                                 boost::filesystem::directory_iterator j = boost::filesystem::directory_iterator (i->path ());
576                                 j != boost::filesystem::directory_iterator ();
577                                 ++j) {
578
579                                 if (boost::algorithm::starts_with (j->path().leaf().string(), "sub_")) {
580                                         return j->path();
581                                 }
582                         }
583                 }
584         }
585
586         BOOST_REQUIRE (false);
587         /* Remove warning */
588         return boost::filesystem::path("/");
589 }
590
591 void
592 make_random_file (boost::filesystem::path path, size_t size)
593 {
594         size_t const chunk = 128 * 1024;
595         uint8_t* buffer = static_cast<uint8_t*> (malloc(chunk));
596         BOOST_REQUIRE (buffer);
597         FILE* r = fopen("/dev/urandom", "rb");
598         BOOST_REQUIRE (r);
599         FILE* t = fopen_boost(path, "wb");
600         BOOST_REQUIRE (t);
601         while (size) {
602                 size_t this_time = min (size, chunk);
603                 size_t N = fread (buffer, 1, this_time, r);
604                 BOOST_REQUIRE (N == this_time);
605                 N = fwrite (buffer, 1, this_time, t);
606                 BOOST_REQUIRE (N == this_time);
607                 size -= this_time;
608         }
609         fclose (t);
610         fclose (r);
611         free (buffer);
612 }
613
614
615 LogSwitcher::LogSwitcher (shared_ptr<Log> log)
616         : _old (dcpomatic_log)
617 {
618         dcpomatic_log = log;
619 }
620
621
622 LogSwitcher::~LogSwitcher ()
623 {
624         dcpomatic_log = _old;
625 }
626