Allow signals to be blocked and resumed, and so make sure that a set
[dcpomatic.git] / src / lib / dcp_content.cc
1 /*
2     Copyright (C) 2014-2023 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 #include "atmos_content.h"
23 #include "audio_content.h"
24 #include "compose.hpp"
25 #include "config.h"
26 #include "dcp_content.h"
27 #include "dcp_decoder.h"
28 #include "dcp_examiner.h"
29 #include "dcpomatic_log.h"
30 #include "film.h"
31 #include "job.h"
32 #include "log.h"
33 #include "overlaps.h"
34 #include "scope_guard.h"
35 #include "text_content.h"
36 #include "video_content.h"
37 #include <dcp/dcp.h>
38 #include <dcp/raw_convert.h>
39 #include <dcp/exceptions.h>
40 #include <dcp/reel_closed_caption_asset.h>
41 #include <dcp/reel_picture_asset.h>
42 #include <dcp/reel_subtitle_asset.h>
43 #include <dcp/reel.h>
44 #include <libxml++/libxml++.h>
45 #include <iterator>
46 #include <iostream>
47
48 #include "i18n.h"
49
50
51 using std::cout;
52 using std::dynamic_pointer_cast;
53 using std::function;
54 using std::list;
55 using std::make_shared;
56 using std::shared_ptr;
57 using std::string;
58 using std::vector;
59 using boost::optional;
60 using boost::scoped_ptr;
61 #if BOOST_VERSION >= 106100
62 using namespace boost::placeholders;
63 #endif
64 using dcp::raw_convert;
65 using namespace dcpomatic;
66
67
68 int const DCPContentProperty::NEEDS_ASSETS       = 600;
69 int const DCPContentProperty::NEEDS_KDM          = 601;
70 int const DCPContentProperty::REFERENCE_VIDEO    = 602;
71 int const DCPContentProperty::REFERENCE_AUDIO    = 603;
72 int const DCPContentProperty::REFERENCE_TEXT     = 604;
73 int const DCPContentProperty::NAME               = 605;
74 int const DCPContentProperty::TEXTS              = 606;
75 int const DCPContentProperty::CPL                = 607;
76
77
78 DCPContent::DCPContent (boost::filesystem::path p)
79         : _encrypted (false)
80         , _needs_assets (false)
81         , _kdm_valid (false)
82         , _reference_video (false)
83         , _reference_audio (false)
84         , _three_d (false)
85 {
86         LOG_GENERAL ("Creating DCP content from %1", p.string());
87
88         read_directory (p);
89         set_default_colour_conversion ();
90 }
91
92 DCPContent::DCPContent (cxml::ConstNodePtr node, int version)
93         : Content (node)
94 {
95         video = VideoContent::from_xml (this, node, version, VideoRange::FULL);
96         audio = AudioContent::from_xml (this, node, version);
97         list<string> notes;
98         text = TextContent::from_xml (this, node, version, notes);
99         atmos = AtmosContent::from_xml (this, node);
100
101         if (video && audio) {
102                 audio->set_stream (
103                         make_shared<AudioStream> (
104                                 node->number_child<int> ("AudioFrameRate"),
105                                 /* AudioLength was not present in some old metadata versions */
106                                 node->optional_number_child<Frame>("AudioLength").get_value_or (
107                                         video->length() * node->number_child<int>("AudioFrameRate") / video_frame_rate().get()
108                                         ),
109                                 AudioMapping(node->node_child("AudioMapping"), version),
110                                 24
111                                 )
112                         );
113         }
114
115         _name = node->string_child ("Name");
116         _encrypted = node->bool_child ("Encrypted");
117         _needs_assets = node->optional_bool_child("NeedsAssets").get_value_or (false);
118         if (node->optional_node_child ("KDM")) {
119                 _kdm = dcp::EncryptedKDM (node->string_child ("KDM"));
120         }
121         _kdm_valid = node->bool_child ("KDMValid");
122         _reference_video = node->optional_bool_child ("ReferenceVideo").get_value_or (false);
123         _reference_audio = node->optional_bool_child ("ReferenceAudio").get_value_or (false);
124         if (version >= 37) {
125                 _reference_text[TextType::OPEN_SUBTITLE] = node->optional_bool_child("ReferenceOpenSubtitle").get_value_or(false);
126                 _reference_text[TextType::CLOSED_CAPTION] = node->optional_bool_child("ReferenceClosedCaption").get_value_or(false);
127         } else {
128                 _reference_text[TextType::OPEN_SUBTITLE] = node->optional_bool_child("ReferenceSubtitle").get_value_or(false);
129                 _reference_text[TextType::CLOSED_CAPTION] = false;
130         }
131         if (node->optional_string_child("Standard")) {
132                 auto const s = node->optional_string_child("Standard").get();
133                 if (s == "Interop") {
134                         _standard = dcp::Standard::INTEROP;
135                 } else if (s == "SMPTE") {
136                         _standard = dcp::Standard::SMPTE;
137                 } else {
138                         DCPOMATIC_ASSERT (false);
139                 }
140         }
141         _three_d = node->optional_bool_child("ThreeD").get_value_or (false);
142
143         auto ck = node->optional_string_child("ContentKind");
144         if (ck) {
145                 _content_kind = dcp::ContentKind::from_name(*ck);
146         }
147         _cpl = node->optional_string_child("CPL");
148         for (auto i: node->node_children("ReelLength")) {
149                 _reel_lengths.push_back (raw_convert<int64_t> (i->content ()));
150         }
151
152         for (auto i: node->node_children("Marker")) {
153                 _markers[dcp::marker_from_string(i->string_attribute("type"))] = ContentTime(raw_convert<int64_t>(i->content()));
154         }
155
156         for (auto i: node->node_children("Rating")) {
157                 _ratings.push_back (dcp::Rating(i));
158         }
159
160         for (auto i: node->node_children("ContentVersion")) {
161                 _content_versions.push_back (i->content());
162         }
163 }
164
165 void
166 DCPContent::read_directory (boost::filesystem::path p)
167 {
168         using namespace boost::filesystem;
169
170         bool have_assetmap = false;
171         bool have_metadata = false;
172
173         for (auto i: directory_iterator(p)) {
174                 if (i.path().filename() == "ASSETMAP" || i.path().filename() == "ASSETMAP.xml") {
175                         have_assetmap = true;
176                 } else if (i.path().filename() == "metadata.xml") {
177                         have_metadata = true;
178                 }
179         }
180
181         if (!have_assetmap) {
182                 if (!have_metadata) {
183                         throw DCPError ("No ASSETMAP or ASSETMAP.xml file found: is this a DCP?");
184                 } else {
185                         throw ProjectFolderError ();
186                 }
187         }
188
189         read_sub_directory (p);
190 }
191
192 void
193 DCPContent::read_sub_directory (boost::filesystem::path p)
194 {
195         LOG_GENERAL ("DCPContent::read_sub_directory reads %1", p.string());
196         for (auto i: boost::filesystem::directory_iterator(p)) {
197                 if (boost::filesystem::is_regular_file(i.path())) {
198                         LOG_GENERAL ("Inside there's regular file %1", i.path().string());
199                         add_path (i.path());
200                 } else if (boost::filesystem::is_directory(i.path()) && i.path().filename() != ".AppleDouble") {
201                         LOG_GENERAL ("Inside there's directory %1", i.path().string());
202                         read_sub_directory (i.path());
203                 } else {
204                         LOG_GENERAL("Ignoring %1 from inside: status is %2", i.path().string(), static_cast<int>(boost::filesystem::status(i.path()).type()));
205                 }
206         }
207 }
208
209 /** @param film Film, or 0 */
210 void
211 DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
212 {
213         bool const needed_assets = needs_assets ();
214         bool const needed_kdm = needs_kdm ();
215         string const old_name = name ();
216
217         ContentChangeSignalDespatcher::instance()->suspend();
218         ScopeGuard sg = []() {
219                 ContentChangeSignalDespatcher::instance()->resume();
220         };
221
222         ContentChangeSignaller cc_texts (this, DCPContentProperty::TEXTS);
223         ContentChangeSignaller cc_assets (this, DCPContentProperty::NEEDS_ASSETS);
224         ContentChangeSignaller cc_kdm (this, DCPContentProperty::NEEDS_KDM);
225         ContentChangeSignaller cc_name (this, DCPContentProperty::NAME);
226
227         if (job) {
228                 job->set_progress_unknown ();
229         }
230         Content::examine (film, job);
231
232         auto examiner = make_shared<DCPExaminer>(shared_from_this(), film ? film->tolerant() : true);
233
234         if (examiner->has_video()) {
235                 {
236                         boost::mutex::scoped_lock lm (_mutex);
237                         video = make_shared<VideoContent>(this);
238                 }
239                 video->take_from_examiner(film, examiner);
240                 set_default_colour_conversion ();
241         }
242
243         if (examiner->has_audio()) {
244                 {
245                         boost::mutex::scoped_lock lm (_mutex);
246                         audio = make_shared<AudioContent>(this);
247                 }
248                 auto as = make_shared<AudioStream>(examiner->audio_frame_rate(), examiner->audio_length(), examiner->audio_channels(), 24);
249                 audio->set_stream (as);
250                 auto m = as->mapping ();
251                 m.make_default (film ? film->audio_processor() : 0);
252                 as->set_mapping (m);
253         }
254
255         if (examiner->has_atmos()) {
256                 {
257                         boost::mutex::scoped_lock lm (_mutex);
258                         atmos = make_shared<AtmosContent>(this);
259                 }
260                 /* Setting length will cause calculations to be made based on edit rate, so that must
261                  * be set up first otherwise hard-to-spot exceptions will be thrown.
262                  */
263                 atmos->set_edit_rate (examiner->atmos_edit_rate());
264                 atmos->set_length (examiner->atmos_length());
265         }
266
267         vector<shared_ptr<TextContent>> new_text;
268
269         for (int i = 0; i < examiner->text_count(TextType::OPEN_SUBTITLE); ++i) {
270                 auto c = make_shared<TextContent>(this, TextType::OPEN_SUBTITLE, TextType::OPEN_SUBTITLE);
271                 c->set_language (examiner->open_subtitle_language());
272                 add_fonts_from_examiner(c, examiner->fonts());
273                 new_text.push_back (c);
274         }
275
276         for (int i = 0; i < examiner->text_count(TextType::CLOSED_CAPTION); ++i) {
277                 auto c = make_shared<TextContent>(this, TextType::CLOSED_CAPTION, TextType::CLOSED_CAPTION);
278                 c->set_dcp_track (examiner->dcp_text_track(i));
279                 new_text.push_back (c);
280         }
281
282         {
283                 boost::mutex::scoped_lock lm (_mutex);
284                 text = new_text;
285                 _name = examiner->name ();
286                 _encrypted = examiner->encrypted ();
287                 _needs_assets = examiner->needs_assets ();
288                 _kdm_valid = examiner->kdm_valid ();
289                 _standard = examiner->standard ();
290                 _three_d = examiner->three_d ();
291                 _content_kind = examiner->content_kind ();
292                 _cpl = examiner->cpl ();
293                 _reel_lengths = examiner->reel_lengths ();
294                 for (auto const& i: examiner->markers()) {
295                         _markers[i.first] = ContentTime(i.second.as_editable_units_ceil(DCPTime::HZ));
296                 }
297                 _ratings = examiner->ratings ();
298                 _content_versions = examiner->content_versions ();
299         }
300
301         if (needed_assets == needs_assets()) {
302                 cc_assets.abort ();
303         }
304
305         if (needed_kdm == needs_kdm()) {
306                 cc_kdm.abort ();
307         }
308
309         if (old_name == name()) {
310                 cc_name.abort ();
311         }
312
313         if (video) {
314                 video->set_frame_type (_three_d ? VideoFrameType::THREE_D : VideoFrameType::TWO_D);
315         }
316 }
317
318 string
319 DCPContent::summary () const
320 {
321         boost::mutex::scoped_lock lm (_mutex);
322         return String::compose (_("%1 [DCP]"), _name);
323 }
324
325 string
326 DCPContent::technical_summary () const
327 {
328         string s = Content::technical_summary() + " - ";
329         if (video) {
330                 s += video->technical_summary() + " - ";
331         }
332         if (audio) {
333                 s += audio->technical_summary() + " - ";
334         }
335         return s;
336 }
337
338 void
339 DCPContent::as_xml (xmlpp::Node* node, bool with_paths) const
340 {
341         node->add_child("Type")->add_child_text ("DCP");
342
343         Content::as_xml (node, with_paths);
344
345         if (video) {
346                 video->as_xml (node);
347         }
348
349         if (audio) {
350                 audio->as_xml (node);
351                 node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio->stream()->frame_rate()));
352                 node->add_child("AudioLength")->add_child_text (raw_convert<string> (audio->stream()->length()));
353                 audio->stream()->mapping().as_xml (node->add_child("AudioMapping"));
354         }
355
356         for (auto i: text) {
357                 i->as_xml (node);
358         }
359
360         if (atmos) {
361                 atmos->as_xml (node);
362         }
363
364         boost::mutex::scoped_lock lm (_mutex);
365         node->add_child("Name")->add_child_text (_name);
366         node->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
367         node->add_child("NeedsAssets")->add_child_text (_needs_assets ? "1" : "0");
368         if (_kdm) {
369                 node->add_child("KDM")->add_child_text (_kdm->as_xml ());
370         }
371         node->add_child("KDMValid")->add_child_text (_kdm_valid ? "1" : "0");
372         node->add_child("ReferenceVideo")->add_child_text (_reference_video ? "1" : "0");
373         node->add_child("ReferenceAudio")->add_child_text (_reference_audio ? "1" : "0");
374         node->add_child("ReferenceOpenSubtitle")->add_child_text(_reference_text[TextType::OPEN_SUBTITLE] ? "1" : "0");
375         node->add_child("ReferenceClosedCaption")->add_child_text(_reference_text[TextType::CLOSED_CAPTION] ? "1" : "0");
376         if (_standard) {
377                 switch (_standard.get ()) {
378                 case dcp::Standard::INTEROP:
379                         node->add_child("Standard")->add_child_text ("Interop");
380                         break;
381                 case dcp::Standard::SMPTE:
382                         node->add_child("Standard")->add_child_text ("SMPTE");
383                         break;
384                 default:
385                         DCPOMATIC_ASSERT (false);
386                 }
387         }
388         node->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
389         if (_content_kind) {
390                 node->add_child("ContentKind")->add_child_text(_content_kind->name());
391         }
392         if (_cpl) {
393                 node->add_child("CPL")->add_child_text (_cpl.get ());
394         }
395         for (auto i: _reel_lengths) {
396                 node->add_child("ReelLength")->add_child_text (raw_convert<string> (i));
397         }
398
399         for (auto const& i: _markers) {
400                 auto marker = node->add_child("Marker");
401                 marker->set_attribute("type", dcp::marker_to_string(i.first));
402                 marker->add_child_text(raw_convert<string>(i.second.get()));
403         }
404
405         for (auto i: _ratings) {
406                 auto rating = node->add_child("Rating");
407                 i.as_xml (rating);
408         }
409
410         for (auto i: _content_versions) {
411                 node->add_child("ContentVersion")->add_child_text(i);
412         }
413 }
414
415 DCPTime
416 DCPContent::full_length (shared_ptr<const Film> film) const
417 {
418         if (!video) {
419                 return {};
420         }
421         FrameRateChange const frc (film, shared_from_this());
422         return DCPTime::from_frames (llrint(video->length() * frc.factor()), film->video_frame_rate());
423 }
424
425 DCPTime
426 DCPContent::approximate_length () const
427 {
428         if (!video) {
429                 return {};
430         }
431         return DCPTime::from_frames (video->length(), 24);
432 }
433
434 string
435 DCPContent::identifier () const
436 {
437         string s = Content::identifier() + "_";
438
439         if (video) {
440                 s += video->identifier() + "_";
441         }
442
443         for (auto i: text) {
444                 s += i->identifier () + " ";
445         }
446
447         s += string (_reference_video ? "1" : "0");
448         for (auto text: _reference_text) {
449                 s += string(text ? "1" : "0");
450         }
451         return s;
452 }
453
454 void
455 DCPContent::add_kdm (dcp::EncryptedKDM k)
456 {
457         _kdm = k;
458 }
459
460 void
461 DCPContent::add_ov (boost::filesystem::path ov)
462 {
463         read_directory (ov);
464 }
465
466 bool
467 DCPContent::can_be_played () const
468 {
469         return !needs_kdm() && !needs_assets();
470 }
471
472 bool
473 DCPContent::needs_kdm () const
474 {
475         boost::mutex::scoped_lock lm (_mutex);
476         return _encrypted && !_kdm_valid;
477 }
478
479 bool
480 DCPContent::needs_assets () const
481 {
482         boost::mutex::scoped_lock lm (_mutex);
483         return _needs_assets;
484 }
485
486 vector<boost::filesystem::path>
487 DCPContent::directories () const
488 {
489         return dcp::DCP::directories_from_files (paths());
490 }
491
492 void
493 DCPContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const
494 {
495         Content::add_properties (film, p);
496         if (video) {
497                 video->add_properties (p);
498         }
499         if (audio) {
500                 audio->add_properties (film, p);
501         }
502 }
503
504 void
505 DCPContent::set_default_colour_conversion ()
506 {
507         /* Default to no colour conversion for DCPs */
508         if (video) {
509                 video->unset_colour_conversion ();
510         }
511 }
512
513 void
514 DCPContent::set_reference_video (bool r)
515 {
516         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_VIDEO);
517
518         {
519                 boost::mutex::scoped_lock lm (_mutex);
520                 _reference_video = r;
521         }
522 }
523
524 void
525 DCPContent::set_reference_audio (bool r)
526 {
527         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_AUDIO);
528
529         {
530                 boost::mutex::scoped_lock lm (_mutex);
531                 _reference_audio = r;
532         }
533 }
534
535 void
536 DCPContent::set_reference_text (TextType type, bool r)
537 {
538         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_TEXT);
539
540         {
541                 boost::mutex::scoped_lock lm (_mutex);
542                 _reference_text[type] = r;
543         }
544 }
545
546 list<DCPTimePeriod>
547 DCPContent::reels (shared_ptr<const Film> film) const
548 {
549         auto reel_lengths = _reel_lengths;
550         if (reel_lengths.empty()) {
551                 /* Old metadata with no reel lengths; get them here instead */
552                 try {
553                         scoped_ptr<DCPExaminer> examiner (new DCPExaminer(shared_from_this(), film->tolerant()));
554                         reel_lengths = examiner->reel_lengths ();
555                 } catch (...) {
556                         /* Could not examine the DCP; guess reels */
557                         reel_lengths.push_back (length_after_trim(film).frames_round(film->video_frame_rate()));
558                 }
559         }
560
561         list<DCPTimePeriod> p;
562
563         /* This content's frame rate must be the same as the output DCP rate, so we can
564            convert `directly' from ContentTime to DCPTime.
565         */
566
567         /* The starting point of this content on the timeline */
568         auto pos = position() - DCPTime (trim_start().get());
569
570         for (auto i: reel_lengths) {
571                 /* This reel runs from `pos' to `to' */
572                 DCPTime const to = pos + DCPTime::from_frames (i, film->video_frame_rate());
573                 if (to > position()) {
574                         p.push_back (DCPTimePeriod(max(position(), pos), min(end(film), to)));
575                         if (to > end(film)) {
576                                 break;
577                         }
578                 }
579                 pos = to;
580         }
581
582         return p;
583 }
584
585 list<DCPTime>
586 DCPContent::reel_split_points (shared_ptr<const Film> film) const
587 {
588         list<DCPTime> s;
589         for (auto i: reels(film)) {
590                 s.push_back (i.from);
591         }
592         return s;
593 }
594
595 bool
596 DCPContent::can_reference (shared_ptr<const Film> film, function<bool (shared_ptr<const Content>)> part, string overlapping, string& why_not) const
597 {
598         /* We must be using the same standard as the film */
599         if (_standard) {
600                 if (_standard.get() == dcp::Standard::INTEROP && !film->interop()) {
601                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
602                         why_not = _("it is Interop and the film is set to SMPTE.");
603                         return false;
604                 } else if (_standard.get() == dcp::Standard::SMPTE && film->interop()) {
605                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
606                         why_not = _("it is SMPTE and the film is set to Interop.");
607                         return false;
608                 }
609         }
610
611         /* And the same frame rate */
612         if (!video_frame_rate() || (lrint(video_frame_rate().get()) != film->video_frame_rate())) {
613                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
614                 why_not = _("it has a different frame rate to the film.");
615                 return false;
616         }
617
618         auto const fr = film->reels ();
619
620         list<DCPTimePeriod> reel_list;
621         try {
622                 reel_list = reels (film);
623         } catch (dcp::ReadError &) {
624                 /* We couldn't read the DCP; it's probably missing */
625                 return false;
626         } catch (dcp::KDMDecryptionError &) {
627                 /* We have an incorrect KDM */
628                 return false;
629         }
630
631         /* fr must contain reels().  It can also contain other reels, but it must at
632            least contain reels().
633         */
634         for (auto i: reel_list) {
635                 if (find (fr.begin(), fr.end(), i) == fr.end ()) {
636                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
637                         why_not = _("its reel lengths differ from those in the film; set the reel mode to 'split by video content'.");
638                         return false;
639                 }
640         }
641
642         auto a = overlaps (film, film->content(), part, position(), end(film));
643         if (a.size() != 1 || a.front().get() != this) {
644                 why_not = overlapping;
645                 return false;
646         }
647
648         return true;
649 }
650
651 static
652 bool check_video (shared_ptr<const Content> c)
653 {
654         return static_cast<bool>(c->video) && c->video->use();
655 }
656
657 bool
658 DCPContent::can_reference_video (shared_ptr<const Film> film, string& why_not) const
659 {
660         if (!video) {
661                 why_not = _("There is no video in this DCP");
662                 return false;
663         }
664
665         if (film->resolution() != resolution()) {
666                 if (resolution() == Resolution::FOUR_K) {
667                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
668                         why_not = _("it is 4K and the film is 2K.");
669                 } else {
670                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
671                         why_not = _("it is 2K and the film is 4K.");
672                 }
673                 return false;
674         } else if (film->frame_size() != video->size()) {
675                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
676                 why_not = _("its video frame size differs from the film's.");
677                 return false;
678         }
679
680         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
681         return can_reference (film, bind (&check_video, _1), _("it overlaps other video content; remove the other content."), why_not);
682 }
683
684 static
685 bool check_audio (shared_ptr<const Content> c)
686 {
687         return static_cast<bool>(c->audio) && !c->audio->mapping().mapped_output_channels().empty();
688 }
689
690 bool
691 DCPContent::can_reference_audio (shared_ptr<const Film> film, string& why_not) const
692 {
693         shared_ptr<DCPDecoder> decoder;
694         try {
695                 decoder = make_shared<DCPDecoder>(film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>());
696         } catch (dcp::ReadError &) {
697                 /* We couldn't read the DCP, so it's probably missing */
698                 return false;
699         } catch (DCPError &) {
700                 /* We couldn't read the DCP, so it's probably missing */
701                 return false;
702         } catch (dcp::KDMDecryptionError &) {
703                 /* We have an incorrect KDM */
704                 return false;
705         }
706
707         for (auto i: decoder->reels()) {
708                 if (!i->main_sound()) {
709                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
710                         why_not = _("it does not have sound in all its reels.");
711                         return false;
712                 }
713         }
714
715         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
716         return can_reference (film, bind (&check_audio, _1), _("it overlaps other audio content; remove the other content."), why_not);
717 }
718
719 static
720 bool check_text (shared_ptr<const Content> c)
721 {
722         return !c->text.empty();
723 }
724
725 bool
726 DCPContent::can_reference_text (shared_ptr<const Film> film, TextType type, string& why_not) const
727 {
728         shared_ptr<DCPDecoder> decoder;
729         try {
730                 decoder = make_shared<DCPDecoder>(film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>());
731         } catch (dcp::ReadError &) {
732                 /* We couldn't read the DCP, so it's probably missing */
733                 return false;
734         } catch (dcp::KDMDecryptionError &) {
735                 /* We have an incorrect KDM */
736                 return false;
737         }
738
739         for (auto i: decoder->reels()) {
740                 if (type == TextType::OPEN_SUBTITLE) {
741                         if (!i->main_subtitle()) {
742                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
743                                 why_not = _("it does not have open subtitles in all its reels.");
744                                 return false;
745                         } else if (i->main_subtitle()->entry_point().get_value_or(0) != 0) {
746                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
747                                 why_not = _("one of its subtitle reels has a non-zero entry point so it must be re-written.");
748                                 return false;
749                         }
750                 }
751                 if (type == TextType::CLOSED_CAPTION) {
752                         if (i->closed_captions().empty()) {
753                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
754                                 why_not = _("it does not have closed captions in all its reels.");
755                                 return false;
756                         }
757                         for (auto j: i->closed_captions()) {
758                                 if (j->entry_point().get_value_or(0) != 0) {
759                                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
760                                         why_not = _("one of its closed caption has a non-zero entry point so it must be re-written.");
761                                         return false;
762                                 }
763                         }
764                 }
765         }
766
767         if (trim_start() != dcpomatic::ContentTime()) {
768                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
769                 why_not = _("it has a start trim so its subtitles or closed captions must be re-written.");
770                 return false;
771         }
772
773         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
774         return can_reference (film, bind (&check_text, _1), _("it overlaps other text content; remove the other content."), why_not);
775 }
776
777 void
778 DCPContent::take_settings_from (shared_ptr<const Content> c)
779 {
780         auto dc = dynamic_pointer_cast<const DCPContent>(c);
781         if (!dc) {
782                 return;
783         }
784
785         _reference_video = dc->_reference_video;
786         _reference_audio = dc->_reference_audio;
787         _reference_text = dc->_reference_text;
788 }
789
790 void
791 DCPContent::set_cpl (string id)
792 {
793         ContentChangeSignaller cc (this, DCPContentProperty::CPL);
794
795         {
796                 boost::mutex::scoped_lock lm (_mutex);
797                 _cpl = id;
798         }
799 }
800
801 bool
802 DCPContent::kdm_timing_window_valid () const
803 {
804         if (!_kdm) {
805                 return true;
806         }
807
808         dcp::LocalTime now;
809         return _kdm->not_valid_before() < now && now < _kdm->not_valid_after();
810 }
811
812
813 Resolution
814 DCPContent::resolution () const
815 {
816         if (video->size().width > 2048 || video->size().height > 1080) {
817                 return Resolution::FOUR_K;
818         }
819
820         return Resolution::TWO_K;
821 }
822
823
824 void
825 add_fonts_from_examiner(shared_ptr<TextContent> text, vector<vector<shared_ptr<Font>>> const & all_fonts)
826 {
827         int reel_number = 0;
828         for (auto reel_fonts: all_fonts) {
829                 for (auto font: reel_fonts) {
830                         /* Each reel could have its own font with the same ID, so we disambiguate them here
831                          * by prepending the reel number.  We do the same disambiguation when emitting the
832                          * subtitles in the DCP decoder.
833                          */
834                         font->set_id(id_for_font_in_reel(font->id(), reel_number));
835                         text->add_font(font);
836                 }
837                 ++reel_number;
838         }
839
840 }
841
842
843 string
844 id_for_font_in_reel(string id, int reel)
845 {
846         return String::compose("%1_%2", reel, id);
847 }
848
849
850 void
851 DCPContent::check_font_ids()
852 {
853         if (text.empty()) {
854                 return;
855         }
856
857         DCPExaminer examiner(shared_from_this(), true);
858         add_fonts_from_examiner(text.front(), examiner.fonts());
859 }
860