Write annotation text and language to CCAP nodes correctly.
[dcpomatic.git] / src / lib / reel_writer.cc
1 /*
2     Copyright (C) 2012-2018 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 #include "reel_writer.h"
22 #include "film.h"
23 #include "cross.h"
24 #include "job.h"
25 #include "log.h"
26 #include "digester.h"
27 #include "font.h"
28 #include "compose.hpp"
29 #include "audio_buffers.h"
30 #include "image.h"
31 #include <dcp/mono_picture_asset.h>
32 #include <dcp/stereo_picture_asset.h>
33 #include <dcp/sound_asset.h>
34 #include <dcp/sound_asset_writer.h>
35 #include <dcp/reel.h>
36 #include <dcp/reel_mono_picture_asset.h>
37 #include <dcp/reel_stereo_picture_asset.h>
38 #include <dcp/reel_sound_asset.h>
39 #include <dcp/reel_subtitle_asset.h>
40 #include <dcp/reel_closed_caption_asset.h>
41 #include <dcp/dcp.h>
42 #include <dcp/cpl.h>
43 #include <dcp/certificate_chain.h>
44 #include <dcp/interop_subtitle_asset.h>
45 #include <dcp/smpte_subtitle_asset.h>
46 #include <dcp/raw_convert.h>
47 #include <dcp/subtitle_image.h>
48 #include <boost/foreach.hpp>
49
50 #include "i18n.h"
51
52 #define LOG_GENERAL(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
53 #define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
54 #define LOG_WARNING_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_WARNING);
55 #define LOG_ERROR(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_ERROR);
56
57 using std::list;
58 using std::string;
59 using std::cout;
60 using std::map;
61 using boost::shared_ptr;
62 using boost::optional;
63 using boost::dynamic_pointer_cast;
64 using dcp::Data;
65 using dcp::raw_convert;
66
67 int const ReelWriter::_info_size = 48;
68
69 ReelWriter::ReelWriter (
70         shared_ptr<const Film> film, DCPTimePeriod period, shared_ptr<Job> job, int reel_index, int reel_count, optional<string> content_summary
71         )
72         : _film (film)
73         , _period (period)
74         , _last_written_video_frame (-1)
75         , _last_written_eyes (EYES_RIGHT)
76         , _reel_index (reel_index)
77         , _reel_count (reel_count)
78         , _content_summary (content_summary)
79 {
80         /* Create our picture asset in a subdirectory, named according to those
81            film's parameters which affect the video output.  We will hard-link
82            it into the DCP later.
83         */
84
85         dcp::Standard const standard = _film->interop() ? dcp::INTEROP : dcp::SMPTE;
86
87         if (_film->three_d ()) {
88                 _picture_asset.reset (new dcp::StereoPictureAsset (dcp::Fraction (_film->video_frame_rate(), 1), standard));
89         } else {
90                 _picture_asset.reset (new dcp::MonoPictureAsset (dcp::Fraction (_film->video_frame_rate(), 1), standard));
91         }
92
93         _picture_asset->set_size (_film->frame_size ());
94
95         if (_film->encrypted ()) {
96                 _picture_asset->set_key (_film->key ());
97                 _picture_asset->set_context_id (_film->context_id ());
98         }
99
100         _picture_asset->set_file (
101                 _film->internal_video_asset_dir() / _film->internal_video_asset_filename(_period)
102                 );
103
104         job->sub (_("Checking existing image data"));
105         _first_nonexistant_frame = check_existing_picture_asset ();
106
107         _picture_asset_writer = _picture_asset->start_write (
108                 _film->internal_video_asset_dir() / _film->internal_video_asset_filename(_period),
109                 _first_nonexistant_frame > 0
110                 );
111
112         if (_film->audio_channels ()) {
113                 _sound_asset.reset (
114                         new dcp::SoundAsset (dcp::Fraction (_film->video_frame_rate(), 1), _film->audio_frame_rate (), _film->audio_channels (), standard)
115                         );
116
117                 if (_film->encrypted ()) {
118                         _sound_asset->set_key (_film->key ());
119                 }
120
121                 DCPOMATIC_ASSERT (_film->directory());
122
123                 /* Write the sound asset into the film directory so that we leave the creation
124                    of the DCP directory until the last minute.
125                 */
126                 _sound_asset_writer = _sound_asset->start_write (
127                         _film->directory().get() / audio_asset_filename (_sound_asset, _reel_index, _reel_count, _content_summary)
128                         );
129         }
130 }
131
132 /** @param frame reel-relative frame */
133 void
134 ReelWriter::write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const
135 {
136         FILE* file = 0;
137         boost::filesystem::path info_file = _film->info_file (_period);
138
139         bool const read = boost::filesystem::exists (info_file);
140
141         if (read) {
142                 file = fopen_boost (info_file, "r+b");
143         } else {
144                 file = fopen_boost (info_file, "wb");
145         }
146         if (!file) {
147                 throw OpenFileError (info_file, errno, read);
148         }
149         dcpomatic_fseek (file, frame_info_position (frame, eyes), SEEK_SET);
150         fwrite (&info.offset, sizeof (info.offset), 1, file);
151         fwrite (&info.size, sizeof (info.size), 1, file);
152         fwrite (info.hash.c_str(), 1, info.hash.size(), file);
153         fclose (file);
154 }
155
156 dcp::FrameInfo
157 ReelWriter::read_frame_info (FILE* file, Frame frame, Eyes eyes) const
158 {
159         dcp::FrameInfo info;
160         dcpomatic_fseek (file, frame_info_position (frame, eyes), SEEK_SET);
161         fread (&info.offset, sizeof (info.offset), 1, file);
162         fread (&info.size, sizeof (info.size), 1, file);
163
164         char hash_buffer[33];
165         fread (hash_buffer, 1, 32, file);
166         hash_buffer[32] = '\0';
167         info.hash = hash_buffer;
168
169         return info;
170 }
171
172 long
173 ReelWriter::frame_info_position (Frame frame, Eyes eyes) const
174 {
175         switch (eyes) {
176         case EYES_BOTH:
177                 return frame * _info_size;
178         case EYES_LEFT:
179                 return frame * _info_size * 2;
180         case EYES_RIGHT:
181                 return frame * _info_size * 2 + _info_size;
182         default:
183                 DCPOMATIC_ASSERT (false);
184         }
185
186         DCPOMATIC_ASSERT (false);
187 }
188
189 Frame
190 ReelWriter::check_existing_picture_asset ()
191 {
192         DCPOMATIC_ASSERT (_picture_asset->file());
193         boost::filesystem::path asset = _picture_asset->file().get();
194
195         /* If there is an existing asset, break any hard links to it as we are about to change its contents
196            (if only by changing the IDs); see #1126.
197         */
198
199         if (boost::filesystem::exists(asset) && boost::filesystem::hard_link_count(asset) > 1) {
200                 boost::filesystem::copy_file (asset, asset.string() + ".tmp");
201                 boost::filesystem::remove (asset);
202                 boost::filesystem::rename (asset.string() + ".tmp", asset);
203         }
204
205         /* Try to open the existing asset */
206         FILE* asset_file = fopen_boost (asset, "rb");
207         if (!asset_file) {
208                 LOG_GENERAL ("Could not open existing asset at %1 (errno=%2)", asset.string(), errno);
209                 return 0;
210         } else {
211                 LOG_GENERAL ("Opened existing asset at %1", asset.string());
212         }
213
214         /* Offset of the last dcp::FrameInfo in the info file */
215         int const n = (boost::filesystem::file_size (_film->info_file(_period)) / _info_size) - 1;
216         LOG_GENERAL ("The last FI is %1; info file is %2, info size %3", n, boost::filesystem::file_size (_film->info_file(_period)), _info_size);
217
218         FILE* info_file = fopen_boost (_film->info_file(_period), "rb");
219         if (!info_file) {
220                 LOG_GENERAL_NC ("Could not open film info file");
221                 fclose (asset_file);
222                 return 0;
223         }
224
225         Frame first_nonexistant_frame;
226         if (_film->three_d ()) {
227                 /* Start looking at the last left frame */
228                 first_nonexistant_frame = n / 2;
229         } else {
230                 first_nonexistant_frame = n;
231         }
232
233         while (!existing_picture_frame_ok(asset_file, info_file, first_nonexistant_frame) && first_nonexistant_frame > 0) {
234                 --first_nonexistant_frame;
235         }
236
237         if (!_film->three_d() && first_nonexistant_frame > 0) {
238                 /* If we are doing 3D we might have found a good L frame with no R, so only
239                    do this if we're in 2D and we've just found a good B(oth) frame.
240                 */
241                 ++first_nonexistant_frame;
242         }
243
244         LOG_GENERAL ("Proceeding with first nonexistant frame %1", first_nonexistant_frame);
245
246         fclose (asset_file);
247         fclose (info_file);
248
249         return first_nonexistant_frame;
250 }
251
252 void
253 ReelWriter::write (optional<Data> encoded, Frame frame, Eyes eyes)
254 {
255         dcp::FrameInfo fin = _picture_asset_writer->write (encoded->data().get (), encoded->size());
256         write_frame_info (frame, eyes, fin);
257         _last_written[eyes] = encoded;
258         _last_written_video_frame = frame;
259         _last_written_eyes = eyes;
260 }
261
262 void
263 ReelWriter::fake_write (Frame frame, Eyes eyes, int size)
264 {
265         _picture_asset_writer->fake_write (size);
266         _last_written_video_frame = frame;
267         _last_written_eyes = eyes;
268 }
269
270 void
271 ReelWriter::repeat_write (Frame frame, Eyes eyes)
272 {
273         dcp::FrameInfo fin = _picture_asset_writer->write (
274                 _last_written[eyes]->data().get(),
275                 _last_written[eyes]->size()
276                 );
277         write_frame_info (frame, eyes, fin);
278         _last_written_video_frame = frame;
279         _last_written_eyes = eyes;
280 }
281
282 void
283 ReelWriter::finish ()
284 {
285         if (!_picture_asset_writer->finalize ()) {
286                 /* Nothing was written to the picture asset */
287                 LOG_GENERAL ("Nothing was written to reel %1 of %2", _reel_index, _reel_count);
288                 _picture_asset.reset ();
289         }
290
291         if (_sound_asset_writer && !_sound_asset_writer->finalize ()) {
292                 /* Nothing was written to the sound asset */
293                 _sound_asset.reset ();
294         }
295
296         /* Hard-link any video asset file into the DCP */
297         if (_picture_asset) {
298                 DCPOMATIC_ASSERT (_picture_asset->file());
299                 boost::filesystem::path video_from = _picture_asset->file().get();
300                 boost::filesystem::path video_to;
301                 video_to /= _film->dir (_film->dcp_name());
302                 video_to /= video_asset_filename (_picture_asset, _reel_index, _reel_count, _content_summary);
303
304                 boost::system::error_code ec;
305                 boost::filesystem::create_hard_link (video_from, video_to, ec);
306                 if (ec) {
307                         LOG_WARNING_NC ("Hard-link failed; copying instead");
308                         boost::filesystem::copy_file (video_from, video_to, ec);
309                         if (ec) {
310                                 LOG_ERROR ("Failed to copy video file from %1 to %2 (%3)", video_from.string(), video_to.string(), ec.message ());
311                                 throw FileError (ec.message(), video_from);
312                         }
313                 }
314
315                 _picture_asset->set_file (video_to);
316         }
317
318         /* Move the audio asset into the DCP */
319         if (_sound_asset) {
320                 boost::filesystem::path audio_to;
321                 audio_to /= _film->dir (_film->dcp_name ());
322                 string const aaf = audio_asset_filename (_sound_asset, _reel_index, _reel_count, _content_summary);
323                 audio_to /= aaf;
324
325                 boost::system::error_code ec;
326                 boost::filesystem::rename (_film->file (aaf), audio_to, ec);
327                 if (ec) {
328                         throw FileError (
329                                 String::compose (_("could not move audio asset into the DCP (%1)"), ec.value ()), aaf
330                                 );
331                 }
332
333                 _sound_asset->set_file (audio_to);
334         }
335 }
336
337 template <class T>
338 shared_ptr<T>
339 maybe_add_text (
340         shared_ptr<dcp::SubtitleAsset> asset,
341         int64_t picture_duration,
342         shared_ptr<dcp::Reel> reel,
343         list<ReferencedReelAsset> const & refs,
344         list<shared_ptr<Font> > const & fonts,
345         shared_ptr<const Film> film,
346         DCPTimePeriod period
347         )
348 {
349         Frame const period_duration = period.duration().frames_round(film->video_frame_rate());
350
351         shared_ptr<T> reel_asset;
352
353         if (asset) {
354                 boost::filesystem::path liberation_normal;
355                 try {
356                         liberation_normal = shared_path() / "LiberationSans-Regular.ttf";
357                         if (!boost::filesystem::exists (liberation_normal)) {
358                                 /* Hack for unit tests */
359                                 liberation_normal = shared_path() / "fonts" / "LiberationSans-Regular.ttf";
360                         }
361                 } catch (boost::filesystem::filesystem_error& e) {
362
363                 }
364
365                 if (!boost::filesystem::exists(liberation_normal)) {
366                         liberation_normal = "/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf";
367                 }
368
369                 /* Add all the fonts to the subtitle content */
370                 BOOST_FOREACH (shared_ptr<Font> j, fonts) {
371                         asset->add_font (j->id(), j->file(FontFiles::NORMAL).get_value_or(liberation_normal));
372                 }
373
374                 if (dynamic_pointer_cast<dcp::InteropSubtitleAsset> (asset)) {
375                         boost::filesystem::path directory = film->dir (film->dcp_name ()) / asset->id ();
376                         boost::filesystem::create_directories (directory);
377                         asset->write (directory / ("sub_" + asset->id() + ".xml"));
378                 } else {
379                         /* All our assets should be the same length; use the picture asset length here
380                            as a reference to set the subtitle one.  We'll use the duration rather than
381                            the intrinsic duration; we don't care if the picture asset has been trimmed, we're
382                            just interested in its presentation length.
383                         */
384                         dynamic_pointer_cast<dcp::SMPTESubtitleAsset>(asset)->set_intrinsic_duration (picture_duration);
385
386                         asset->write (
387                                 film->dir(film->dcp_name()) / ("sub_" + asset->id() + ".mxf")
388                                 );
389                 }
390
391                 reel_asset.reset (
392                         new T (
393                                 asset,
394                                 dcp::Fraction (film->video_frame_rate(), 1),
395                                 picture_duration,
396                                 0
397                                 )
398                         );
399         } else {
400                 /* We don't have a subtitle asset of our own; hopefully we have one to reference */
401                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
402                         shared_ptr<T> k = dynamic_pointer_cast<T> (j.asset);
403                         if (k && j.period == period) {
404                                 reel_asset = k;
405                                 /* If we have a hash for this asset in the CPL, assume that it is correct */
406                                 if (k->hash()) {
407                                         k->asset_ref()->set_hash (k->hash().get());
408                                 }
409                         }
410                 }
411         }
412
413         if (reel_asset) {
414                 if (reel_asset->duration() != period_duration) {
415                         throw ProgrammingError (
416                                 __FILE__, __LINE__,
417                                 String::compose ("%1 vs %2", reel_asset->duration(), period_duration)
418                                 );
419                 }
420                 reel->add (reel_asset);
421         }
422
423         return reel_asset;
424 }
425
426 shared_ptr<dcp::Reel>
427 ReelWriter::create_reel (list<ReferencedReelAsset> const & refs, list<shared_ptr<Font> > const & fonts)
428 {
429         shared_ptr<dcp::Reel> reel (new dcp::Reel ());
430
431         shared_ptr<dcp::ReelPictureAsset> reel_picture_asset;
432
433         if (_picture_asset) {
434                 /* We have made a picture asset of our own.  Put it into the reel */
435                 shared_ptr<dcp::MonoPictureAsset> mono = dynamic_pointer_cast<dcp::MonoPictureAsset> (_picture_asset);
436                 if (mono) {
437                         reel_picture_asset.reset (new dcp::ReelMonoPictureAsset (mono, 0));
438                 }
439
440                 shared_ptr<dcp::StereoPictureAsset> stereo = dynamic_pointer_cast<dcp::StereoPictureAsset> (_picture_asset);
441                 if (stereo) {
442                         reel_picture_asset.reset (new dcp::ReelStereoPictureAsset (stereo, 0));
443                 }
444         } else {
445                 LOG_GENERAL ("no picture asset of our own; look through %1", refs.size());
446                 /* We don't have a picture asset of our own; hopefully we have one to reference */
447                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
448                         shared_ptr<dcp::ReelPictureAsset> k = dynamic_pointer_cast<dcp::ReelPictureAsset> (j.asset);
449                         if (k) {
450                                 LOG_GENERAL ("candidate picture asset period is %1-%2", j.period.from.get(), j.period.to.get());
451                         }
452                         if (k && j.period == _period) {
453                                 reel_picture_asset = k;
454                         }
455                 }
456         }
457
458         LOG_GENERAL ("create_reel for %1-%2; %3 of %4", _period.from.get(), _period.to.get(), _reel_index, _reel_count);
459
460         Frame const period_duration = _period.duration().frames_round(_film->video_frame_rate());
461
462         DCPOMATIC_ASSERT (reel_picture_asset);
463         if (reel_picture_asset->duration() != period_duration) {
464                 throw ProgrammingError (
465                         __FILE__, __LINE__,
466                         String::compose ("%1 vs %2", reel_picture_asset->duration(), period_duration)
467                         );
468         }
469         reel->add (reel_picture_asset);
470
471         /* If we have a hash for this asset in the CPL, assume that it is correct */
472         if (reel_picture_asset->hash()) {
473                 reel_picture_asset->asset_ref()->set_hash (reel_picture_asset->hash().get());
474         }
475
476         shared_ptr<dcp::ReelSoundAsset> reel_sound_asset;
477
478         if (_sound_asset) {
479                 /* We have made a sound asset of our own.  Put it into the reel */
480                 reel_sound_asset.reset (new dcp::ReelSoundAsset (_sound_asset, 0));
481         } else {
482                 /* We don't have a sound asset of our own; hopefully we have one to reference */
483                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
484                         shared_ptr<dcp::ReelSoundAsset> k = dynamic_pointer_cast<dcp::ReelSoundAsset> (j.asset);
485                         if (k && j.period == _period) {
486                                 reel_sound_asset = k;
487                                 /* If we have a hash for this asset in the CPL, assume that it is correct */
488                                 if (k->hash()) {
489                                         k->asset_ref()->set_hash (k->hash().get());
490                                 }
491                         }
492                 }
493         }
494
495         DCPOMATIC_ASSERT (reel_sound_asset);
496         if (reel_sound_asset->duration() != period_duration) {
497                 LOG_ERROR (
498                         "Reel sound asset has length %1 but reel period is %2",
499                         reel_sound_asset->duration(),
500                         period_duration
501                         );
502                 if (reel_sound_asset->duration() != period_duration) {
503                         throw ProgrammingError (
504                                 __FILE__, __LINE__,
505                                 String::compose ("%1 vs %2", reel_sound_asset->duration(), period_duration)
506                                 );
507                 }
508
509         }
510         reel->add (reel_sound_asset);
511
512         maybe_add_text<dcp::ReelSubtitleAsset> (_subtitle_asset, reel_picture_asset->duration(), reel, refs, fonts, _film, _period);
513         for (map<DCPTextTrack, shared_ptr<dcp::SubtitleAsset> >::const_iterator i = _closed_caption_assets.begin(); i != _closed_caption_assets.end(); ++i) {
514                 shared_ptr<dcp::ReelClosedCaptionAsset> a = maybe_add_text<dcp::ReelClosedCaptionAsset> (
515                         i->second, reel_picture_asset->duration(), reel, refs, fonts, _film, _period
516                         );
517                 a->set_annotation_text (i->first.name);
518                 a->set_language (i->first.language);
519         }
520
521         return reel;
522 }
523
524 void
525 ReelWriter::calculate_digests (boost::function<void (float)> set_progress)
526 {
527         if (_picture_asset) {
528                 _picture_asset->hash (set_progress);
529         }
530
531         if (_sound_asset) {
532                 _sound_asset->hash (set_progress);
533         }
534 }
535
536 Frame
537 ReelWriter::start () const
538 {
539         return _period.from.frames_floor (_film->video_frame_rate());
540 }
541
542
543 void
544 ReelWriter::write (shared_ptr<const AudioBuffers> audio)
545 {
546         if (!_sound_asset_writer) {
547                 return;
548         }
549
550         DCPOMATIC_ASSERT (audio);
551         _sound_asset_writer->write (audio->data(), audio->frames());
552 }
553
554 void
555 ReelWriter::write (PlayerText subs, TextType type, optional<DCPTextTrack> track, DCPTimePeriod period)
556 {
557         shared_ptr<dcp::SubtitleAsset> asset;
558
559         switch (type) {
560         case TEXT_OPEN_SUBTITLE:
561                 asset = _subtitle_asset;
562                 break;
563         case TEXT_CLOSED_CAPTION:
564                 DCPOMATIC_ASSERT (track);
565                 asset = _closed_caption_assets[*track];
566                 break;
567         default:
568                 DCPOMATIC_ASSERT (false);
569         }
570
571         if (!asset) {
572                 string lang = _film->subtitle_language ();
573                 if (lang.empty ()) {
574                         lang = "Unknown";
575                 }
576                 if (_film->interop ()) {
577                         shared_ptr<dcp::InteropSubtitleAsset> s (new dcp::InteropSubtitleAsset ());
578                         s->set_movie_title (_film->name ());
579                         s->set_language (lang);
580                         s->set_reel_number (raw_convert<string> (_reel_index + 1));
581                         asset = s;
582                 } else {
583                         shared_ptr<dcp::SMPTESubtitleAsset> s (new dcp::SMPTESubtitleAsset ());
584                         s->set_content_title_text (_film->name ());
585                         s->set_language (lang);
586                         s->set_edit_rate (dcp::Fraction (_film->video_frame_rate (), 1));
587                         s->set_reel_number (_reel_index + 1);
588                         s->set_time_code_rate (_film->video_frame_rate ());
589                         s->set_start_time (dcp::Time ());
590                         if (_film->encrypted ()) {
591                                 s->set_key (_film->key ());
592                         }
593                         asset = s;
594                 }
595         }
596
597         switch (type) {
598         case TEXT_OPEN_SUBTITLE:
599                 _subtitle_asset = asset;
600                 break;
601         case TEXT_CLOSED_CAPTION:
602                 DCPOMATIC_ASSERT (track);
603                 _closed_caption_assets[*track] = asset;
604                 break;
605         default:
606                 DCPOMATIC_ASSERT (false);
607         }
608
609         BOOST_FOREACH (StringText i, subs.string) {
610                 /* XXX: couldn't / shouldn't we use period here rather than getting time from the subtitle? */
611                 i.set_in  (i.in()  - dcp::Time (_period.from.seconds(), i.in().tcr));
612                 i.set_out (i.out() - dcp::Time (_period.from.seconds(), i.out().tcr));
613                 asset->add (shared_ptr<dcp::Subtitle>(new dcp::SubtitleString(i)));
614         }
615
616         BOOST_FOREACH (BitmapText i, subs.bitmap) {
617                 asset->add (
618                         shared_ptr<dcp::Subtitle>(
619                                 new dcp::SubtitleImage(
620                                         i.image->as_png(),
621                                         dcp::Time(period.from.seconds(), _film->video_frame_rate()),
622                                         dcp::Time(period.to.seconds(), _film->video_frame_rate()),
623                                         i.rectangle.x, dcp::HALIGN_LEFT, i.rectangle.y, dcp::VALIGN_TOP,
624                                         dcp::Time(), dcp::Time()
625                                         )
626                                 )
627                         );
628         }
629 }
630
631 bool
632 ReelWriter::existing_picture_frame_ok (FILE* asset_file, FILE* info_file, Frame frame) const
633 {
634         LOG_GENERAL ("Checking existing picture frame %1", frame);
635
636         /* Read the data from the info file; for 3D we just check the left
637            frames until we find a good one.
638         */
639         dcp::FrameInfo const info = read_frame_info (info_file, frame, _film->three_d () ? EYES_LEFT : EYES_BOTH);
640
641         bool ok = true;
642
643         /* Read the data from the asset and hash it */
644         dcpomatic_fseek (asset_file, info.offset, SEEK_SET);
645         Data data (info.size);
646         size_t const read = fread (data.data().get(), 1, data.size(), asset_file);
647         LOG_GENERAL ("Read %1 bytes of asset data; wanted %2", read, info.size);
648         if (read != static_cast<size_t> (data.size ())) {
649                 LOG_GENERAL ("Existing frame %1 is incomplete", frame);
650                 ok = false;
651         } else {
652                 Digester digester;
653                 digester.add (data.data().get(), data.size());
654                 LOG_GENERAL ("Hash %1 vs %2", digester.get(), info.hash);
655                 if (digester.get() != info.hash) {
656                         LOG_GENERAL ("Existing frame %1 failed hash check", frame);
657                         ok = false;
658                 }
659         }
660
661         return ok;
662 }