6dc1b6b6c65b9d0bfd8d4908671f250252848815
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 /** @file  src/film.cc
23  *  @brief A representation of some audio, video and subtitle content, and details of
24  *  how they should be presented in a DCP.
25  */
26
27
28 #include "atmos_content.h"
29 #include "audio_content.h"
30 #include "audio_processor.h"
31 #include "change_signaller.h"
32 #include "cinema.h"
33 #include "compose.hpp"
34 #include "config.h"
35 #include "constants.h"
36 #include "cross.h"
37 #include "dcp_content.h"
38 #include "dcp_content_type.h"
39 #include "dcp_film_encoder.h"
40 #include "dcpomatic_log.h"
41 #include "digester.h"
42 #include "environment_info.h"
43 #include "examine_content_job.h"
44 #include "exceptions.h"
45 #include "ffmpeg_content.h"
46 #include "ffmpeg_subtitle_stream.h"
47 #include "file_log.h"
48 #include "film.h"
49 #include "font.h"
50 #include "job.h"
51 #include "job_manager.h"
52 #include "kdm_with_metadata.h"
53 #include "null_log.h"
54 #include "playlist.h"
55 #include "ratio.h"
56 #include "screen.h"
57 #include "text_content.h"
58 #include "transcode_job.h"
59 #include "upload_job.h"
60 #include "variant.h"
61 #include "video_content.h"
62 #include "version.h"
63 #include <libcxml/cxml.h>
64 #include <dcp/certificate_chain.h>
65 #include <dcp/cpl.h>
66 #include <dcp/decrypted_kdm.h>
67 #include <dcp/filesystem.h>
68 #include <dcp/local_time.h>
69 #include <dcp/raw_convert.h>
70 #include <dcp/reel_asset.h>
71 #include <dcp/reel_file_asset.h>
72 #include <dcp/util.h>
73 #include <libxml++/libxml++.h>
74 #include <boost/algorithm/string.hpp>
75 #include <boost/filesystem.hpp>
76 #include <boost/regex.hpp>
77 #include <unistd.h>
78 #include <algorithm>
79 #include <cstdlib>
80 #include <iomanip>
81 #include <iostream>
82 #include <set>
83 #include <stdexcept>
84
85 #include "i18n.h"
86
87
88 using std::back_inserter;
89 using std::copy;
90 using std::cout;
91 using std::dynamic_pointer_cast;
92 using std::exception;
93 using std::find;
94 using std::list;
95 using std::make_pair;
96 using std::make_shared;
97 using std::map;
98 using std::max;
99 using std::min;
100 using std::pair;
101 using std::runtime_error;
102 using std::set;
103 using std::setfill;
104 using std::shared_ptr;
105 using std::string;
106 using std::vector;
107 using std::weak_ptr;
108 using boost::optional;
109 using boost::is_any_of;
110 #if BOOST_VERSION >= 106100
111 using namespace boost::placeholders;
112 #endif
113 using dcp::raw_convert;
114 using namespace dcpomatic;
115
116
117 static constexpr char metadata_file[] = "metadata.xml";
118 static constexpr char ui_state_file[] = "ui.xml";
119
120
121 /* 5 -> 6
122  * AudioMapping XML changed.
123  * 6 -> 7
124  * Subtitle offset changed to subtitle y offset, and subtitle x offset added.
125  * 7 -> 8
126  * Use <Scale> tag in <VideoContent> rather than <Ratio>.
127  * 8 -> 9
128  * DCI -> ISDCF
129  * 9 -> 10
130  * Subtitle X and Y scale.
131  *
132  * Bumped to 32 for 2.0 branch; some times are expressed in Times rather
133  * than frames now.
134  *
135  * 32 -> 33
136  * Changed <Period> to <Subtitle> in FFmpegSubtitleStream
137  * 33 -> 34
138  * Content only contains audio/subtitle-related tags if those things
139  * are present.
140  * 34 -> 35
141  * VideoFrameType in VideoContent is a string rather than an integer.
142  * 35 -> 36
143  * EffectColour rather than OutlineColour in Subtitle.
144  * 36 -> 37
145  * TextContent can be in a Caption tag, and some of the tag names
146  * have had Subtitle prefixes or suffixes removed.
147  * 37 -> 38
148  * VideoContent scale expressed just as "guess" or "custom"
149  */
150 int const Film::current_state_version = 38;
151
152
153 /** Construct a Film object in a given directory.
154  *
155  *  @param dir Film directory.
156  */
157
158 Film::Film (optional<boost::filesystem::path> dir)
159         : _playlist (new Playlist)
160         , _use_isdcf_name (Config::instance()->use_isdcf_name_by_default())
161         , _dcp_content_type (Config::instance()->default_dcp_content_type ())
162         , _container(Ratio::from_id("185"))
163         , _resolution (Resolution::TWO_K)
164         , _encrypted (false)
165         , _context_id (dcp::make_uuid ())
166         , _video_bit_rate(Config::instance()->default_video_bit_rate())
167         , _video_frame_rate (24)
168         , _audio_channels (Config::instance()->default_dcp_audio_channels ())
169         , _three_d (false)
170         , _sequence (true)
171         , _interop (Config::instance()->default_interop ())
172         , _video_encoding(VideoEncoding::JPEG2000)
173         , _limit_to_smpte_bv20(false)
174         , _audio_processor (0)
175         , _reel_type (ReelType::SINGLE)
176         , _reel_length (2000000000)
177         , _reencode_j2k (false)
178         , _user_explicit_video_frame_rate (false)
179         , _user_explicit_container (false)
180         , _user_explicit_resolution (false)
181         , _name_language (dcp::LanguageTag("en-US"))
182         , _release_territory(Config::instance()->default_territory())
183         , _version_number (1)
184         , _status (dcp::Status::FINAL)
185         , _audio_language(Config::instance()->default_audio_language())
186         , _state_version (current_state_version)
187         , _dirty (false)
188         , _tolerant (false)
189 {
190         set_isdcf_date_today ();
191
192         auto metadata = Config::instance()->default_metadata();
193         if (metadata.find("chain") != metadata.end()) {
194                 _chain = metadata["chain"];
195         }
196         if (metadata.find("distributor") != metadata.end()) {
197                 _distributor = metadata["distributor"];
198         }
199         if (metadata.find("facility") != metadata.end()) {
200                 _facility = metadata["facility"];
201         }
202         if (metadata.find("studio") != metadata.end()) {
203                 _studio = metadata["studio"];
204         }
205
206         _playlist_change_connection = _playlist->Change.connect (bind (&Film::playlist_change, this, _1));
207         _playlist_order_changed_connection = _playlist->OrderChange.connect (bind (&Film::playlist_order_changed, this));
208         _playlist_content_change_connection = _playlist->ContentChange.connect (bind (&Film::playlist_content_change, this, _1, _2, _3, _4));
209         _playlist_length_change_connection = _playlist->LengthChange.connect (bind(&Film::playlist_length_change, this));
210
211         if (dir) {
212                 set_directory(dcp::filesystem::weakly_canonical(*dir));
213         }
214
215         if (_directory) {
216                 _log = make_shared<FileLog>(file("log"));
217         } else {
218                 _log = make_shared<NullLog>();
219         }
220
221         _playlist->set_sequence (_sequence);
222 }
223
224 Film::~Film ()
225 {
226         for (auto& i: _job_connections) {
227                 i.disconnect ();
228         }
229
230         for (auto& i: _audio_analysis_connections) {
231                 i.disconnect ();
232         }
233 }
234
235 string
236 Film::video_identifier () const
237 {
238         DCPOMATIC_ASSERT (container ());
239
240         string s = container()->id()
241                 + "_" + resolution_to_string (_resolution)
242                 + "_" + _playlist->video_identifier()
243                 + "_" + raw_convert<string>(_video_frame_rate)
244                 + "_" + raw_convert<string>(video_bit_rate());
245
246         if (encrypted ()) {
247                 /* This is insecure but hey, the key is in plaintext in metadata.xml */
248                 s += "_E" + _key.hex();
249         } else {
250                 s += "_P";
251         }
252
253         if (_interop) {
254                 s += "_I";
255                 if (_video_encoding == VideoEncoding::MPEG2) {
256                         s += "_M";
257                 }
258         } else {
259                 s += "_S";
260                 if (_limit_to_smpte_bv20) {
261                         s += "_L20";
262                 } else {
263                         s += "_L21";
264                 }
265         }
266
267         if (_three_d) {
268                 s += "_3D";
269         }
270
271         if (_reencode_j2k) {
272                 s += "_R";
273         }
274
275         return s;
276 }
277
278 /** @return The file to write video frame info to */
279 boost::filesystem::path
280 Film::info_file (DCPTimePeriod period) const
281 {
282         boost::filesystem::path p;
283         p /= "info";
284         p /= video_identifier () + "_" + raw_convert<string> (period.from.get()) + "_" + raw_convert<string> (period.to.get());
285         return file (p);
286 }
287
288 boost::filesystem::path
289 Film::internal_video_asset_dir () const
290 {
291         return dir ("video");
292 }
293
294 boost::filesystem::path
295 Film::internal_video_asset_filename (DCPTimePeriod p) const
296 {
297         return video_identifier() + "_" + raw_convert<string> (p.from.get()) + "_" + raw_convert<string> (p.to.get()) + ".mxf";
298 }
299
300 boost::filesystem::path
301 Film::audio_analysis_path (shared_ptr<const Playlist> playlist) const
302 {
303         auto p = dir ("analysis");
304
305         Digester digester;
306         for (auto content: playlist->content()) {
307                 if (!content->audio) {
308                         continue;
309                 }
310
311                 digester.add(content->digest());
312                 digester.add(content->audio->mapping().digest());
313                 if (playlist->content().size() != 1) {
314                         /* Analyses should be considered equal regardless of gain
315                            if they were made from just one piece of content.  This
316                            is because we can fake any gain change in a single-content
317                            analysis at the plotting stage rather than having to
318                            recompute it.
319                         */
320                         digester.add(content->audio->gain());
321
322                         /* Likewise we only care about position if we're looking at a
323                          * whole-project view.
324                          */
325                         digester.add(content->position().get());
326                         digester.add(content->trim_start().get());
327                         digester.add(content->trim_end().get());
328                 }
329         }
330
331         if (audio_processor ()) {
332                 digester.add (audio_processor()->id ());
333         }
334
335         digester.add (audio_channels());
336
337         p /= digester.get ();
338         return p;
339 }
340
341
342 boost::filesystem::path
343 Film::subtitle_analysis_path (shared_ptr<const Content> content) const
344 {
345         auto p = dir ("analysis");
346
347         Digester digester;
348         digester.add (content->digest());
349         digester.add(_interop ? "1" : "0");
350
351         if (!content->text.empty()) {
352                 auto tc = content->text.front();
353                 digester.add (tc->x_scale());
354                 digester.add (tc->y_scale());
355                 for (auto i: tc->fonts()) {
356                         digester.add (i->id());
357                 }
358                 if (tc->effect()) {
359                         digester.add (tc->effect().get());
360                 }
361                 digester.add (tc->line_spacing());
362                 digester.add (tc->outline_width());
363         }
364
365         auto fc = dynamic_pointer_cast<const FFmpegContent>(content);
366         if (fc) {
367                 digester.add (fc->subtitle_stream()->identifier());
368         }
369
370         p /= digester.get ();
371         return p;
372 }
373
374
375 /** Start a job to send our DCP to the configured TMS */
376 void
377 Film::send_dcp_to_tms ()
378 {
379         JobManager::instance()->add(make_shared<UploadJob>(shared_from_this()));
380 }
381
382 shared_ptr<xmlpp::Document>
383 Film::metadata (bool with_content_paths) const
384 {
385         auto doc = make_shared<xmlpp::Document>();
386         auto root = doc->create_root_node ("Metadata");
387
388         cxml::add_text_child(root, "Version", raw_convert<string>(current_state_version));
389         auto last_write = cxml::add_child(root, "LastWrittenBy");
390         last_write->add_child_text (dcpomatic_version);
391         last_write->set_attribute("git", dcpomatic_git_commit);
392         cxml::add_text_child(root, "Name", _name);
393         cxml::add_text_child(root, "UseISDCFName", _use_isdcf_name ? "1" : "0");
394
395         if (_dcp_content_type) {
396                 cxml::add_text_child(root, "DCPContentType", _dcp_content_type->isdcf_name());
397         }
398
399         if (_container) {
400                 cxml::add_text_child(root, "Container", _container->id());
401         }
402
403         cxml::add_text_child(root, "Resolution", resolution_to_string(_resolution));
404         cxml::add_text_child(root, "VideoBitRate", raw_convert<string>(_video_bit_rate));
405         cxml::add_text_child(root, "VideoFrameRate", raw_convert<string>(_video_frame_rate));
406         cxml::add_text_child(root, "AudioFrameRate", raw_convert<string>(_audio_frame_rate));
407         cxml::add_text_child(root, "ISDCFDate", boost::gregorian::to_iso_string(_isdcf_date));
408         cxml::add_text_child(root, "AudioChannels", raw_convert<string>(_audio_channels));
409         cxml::add_text_child(root, "ThreeD", _three_d ? "1" : "0");
410         cxml::add_text_child(root, "Sequence", _sequence ? "1" : "0");
411         cxml::add_text_child(root, "Interop", _interop ? "1" : "0");
412         cxml::add_text_child(root, "VideoEncoding", video_encoding_to_string(_video_encoding));
413         cxml::add_text_child(root, "LimitToSMPTEBv20", _limit_to_smpte_bv20 ? "1" : "0");
414         cxml::add_text_child(root, "Encrypted", _encrypted ? "1" : "0");
415         cxml::add_text_child(root, "Key", _key.hex ());
416         cxml::add_text_child(root, "ContextID", _context_id);
417         if (_audio_processor) {
418                 cxml::add_text_child(root, "AudioProcessor", _audio_processor->id());
419         }
420         cxml::add_text_child(root, "ReelType", raw_convert<string>(static_cast<int> (_reel_type)));
421         cxml::add_text_child(root, "ReelLength", raw_convert<string>(_reel_length));
422         for (auto boundary: _custom_reel_boundaries) {
423                 cxml::add_text_child(root, "CustomReelBoundary", raw_convert<string>(boundary.get()));
424         }
425         cxml::add_text_child(root, "ReencodeJ2K", _reencode_j2k ? "1" : "0");
426         cxml::add_text_child(root, "UserExplicitVideoFrameRate", _user_explicit_video_frame_rate ? "1" : "0");
427         for (auto const& marker: _markers) {
428                 auto m = cxml::add_child(root, "Marker");
429                 m->set_attribute("type", dcp::marker_to_string(marker.first));
430                 m->add_child_text(raw_convert<string>(marker.second.get()));
431         }
432         for (auto i: _ratings) {
433                 i.as_xml(cxml::add_child(root, "Rating"));
434         }
435         for (auto i: _content_versions) {
436                 cxml::add_text_child(root, "ContentVersion", i);
437         }
438         cxml::add_text_child(root, "NameLanguage", _name_language.to_string());
439         cxml::add_text_child(root, "TerritoryType", territory_type_to_string(_territory_type));
440         if (_release_territory) {
441                 cxml::add_text_child(root, "ReleaseTerritory", _release_territory->subtag());
442         }
443         if (_sign_language_video_language) {
444                 cxml::add_text_child(root, "SignLanguageVideoLanguage", _sign_language_video_language->to_string());
445         }
446         cxml::add_text_child(root, "VersionNumber", raw_convert<string>(_version_number));
447         cxml::add_text_child(root, "Status", dcp::status_to_string(_status));
448         if (_chain) {
449                 cxml::add_text_child(root, "Chain", *_chain);
450         }
451         if (_distributor) {
452                 cxml::add_text_child(root, "Distributor", *_distributor);
453         }
454         if (_facility) {
455                 cxml::add_text_child(root, "Facility", *_facility);
456         }
457         if (_studio) {
458                 cxml::add_text_child(root, "Studio", *_studio);
459         }
460         cxml::add_text_child(root, "TempVersion", _temp_version ? "1" : "0");
461         cxml::add_text_child(root, "PreRelease", _pre_release ? "1" : "0");
462         cxml::add_text_child(root, "RedBand", _red_band ? "1" : "0");
463         cxml::add_text_child(root, "TwoDVersionOfThreeD", _two_d_version_of_three_d ? "1" : "0");
464         if (_luminance) {
465                 cxml::add_text_child(root, "LuminanceValue", raw_convert<string>(_luminance->value()));
466                 cxml::add_text_child(root, "LuminanceUnit", dcp::Luminance::unit_to_string(_luminance->unit()));
467         }
468         cxml::add_text_child(root, "UserExplicitContainer", _user_explicit_container ? "1" : "0");
469         cxml::add_text_child(root, "UserExplicitResolution", _user_explicit_resolution ? "1" : "0");
470         if (_audio_language) {
471                 cxml::add_text_child(root, "AudioLanguage", _audio_language->to_string());
472         }
473         _playlist->as_xml(cxml::add_child(root, "Playlist"), with_content_paths);
474
475         return doc;
476 }
477
478 void
479 Film::write_metadata (boost::filesystem::path path) const
480 {
481         metadata()->write_to_file_formatted(path.string());
482 }
483
484 /** Write state to our `metadata' file */
485 void
486 Film::write_metadata ()
487 {
488         DCPOMATIC_ASSERT (directory());
489         dcp::filesystem::create_directories(directory().get());
490         auto const filename = file(metadata_file);
491         try {
492                 metadata()->write_to_file_formatted(filename.string());
493         } catch (xmlpp::exception& e) {
494                 throw FileError(String::compose("Could not write metadata file (%1)", e.what()), filename);
495         }
496         set_dirty (false);
497 }
498
499 /** Write a template from this film */
500 void
501 Film::write_template (boost::filesystem::path path) const
502 {
503         dcp::filesystem::create_directories(path.parent_path());
504         shared_ptr<xmlpp::Document> doc = metadata (false);
505         metadata(false)->write_to_file_formatted(path.string());
506 }
507
508 /** Read state from our metadata file.
509  *  @return Notes about things that the user should know about, or empty.
510  */
511 list<string>
512 Film::read_metadata (optional<boost::filesystem::path> path)
513 {
514         if (!path) {
515                 if (dcp::filesystem::exists(file("metadata")) && !dcp::filesystem::exists(file(metadata_file))) {
516                         throw runtime_error(
517                                 variant::insert_dcpomatic(
518                                         _("This film was created with an older version of %1, and unfortunately it cannot "
519                                           "be loaded into this version.  You will need to create a new Film, re-add your "
520                                           "content and set it up again.  Sorry!")
521                                         )
522                                 );
523                 }
524
525                 path = file (metadata_file);
526         }
527
528         if (!dcp::filesystem::exists(*path)) {
529                 throw FileNotFoundError(*path);
530         }
531
532         cxml::Document f ("Metadata");
533         f.read_file(dcp::filesystem::fix_long_path(path.get()));
534
535         _state_version = f.number_child<int> ("Version");
536         if (_state_version > current_state_version) {
537                 throw runtime_error(variant::insert_dcpomatic(_("This film was created with a newer version of %1, and it cannot be loaded into this version.  Sorry!")));
538         } else if (_state_version < current_state_version) {
539                 /* This is an older version; save a copy (if we haven't already) */
540                 auto const older = path->parent_path() / String::compose("metadata.%1.xml", _state_version);
541                 if (!dcp::filesystem::is_regular_file(older)) {
542                         try {
543                                 dcp::filesystem::copy_file(*path, older);
544                         } catch (...) {
545                                 /* Never mind; at least we tried */
546                         }
547                 }
548         }
549
550         _last_written_by = f.optional_string_child("LastWrittenBy");
551
552         _name = f.string_child ("Name");
553         if (_state_version >= 9) {
554                 _use_isdcf_name = f.bool_child ("UseISDCFName");
555                 _isdcf_date = boost::gregorian::from_undelimited_string (f.string_child ("ISDCFDate"));
556         } else {
557                 _use_isdcf_name = f.bool_child ("UseDCIName");
558                 _isdcf_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
559         }
560
561
562         {
563                 auto c = f.optional_string_child("DCPContentType");
564                 if (c) {
565                         _dcp_content_type = DCPContentType::from_isdcf_name (c.get ());
566                 }
567         }
568
569         {
570                 auto c = f.optional_string_child("Container");
571                 if (c) {
572                         _container = Ratio::from_id (c.get ());
573                 }
574         }
575
576         _resolution = string_to_resolution (f.string_child ("Resolution"));
577         if (auto j2k = f.optional_number_child<int>("J2KBandwidth")) {
578                 _video_bit_rate = *j2k;
579         } else {
580                 _video_bit_rate = f.number_child<int64_t>("VideoBitRate");
581         }
582         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
583         _audio_frame_rate = f.optional_number_child<int>("AudioFrameRate").get_value_or(48000);
584         _encrypted = f.bool_child ("Encrypted");
585         _audio_channels = f.number_child<int> ("AudioChannels");
586         /* We used to allow odd numbers (and zero) channels, but it's just not worth
587            the pain.
588         */
589         if (_audio_channels == 0) {
590                 _audio_channels = 2;
591         } else if ((_audio_channels % 2) == 1) {
592                 _audio_channels++;
593         }
594
595         if (f.optional_bool_child("SequenceVideo")) {
596                 _sequence = f.bool_child("SequenceVideo");
597         } else {
598                 _sequence = f.bool_child("Sequence");
599         }
600
601         _three_d = f.bool_child ("ThreeD");
602         _interop = f.bool_child ("Interop");
603         if (auto encoding = f.optional_string_child("VideoEncoding")) {
604                 _video_encoding = video_encoding_from_string(*encoding);
605         }
606         _limit_to_smpte_bv20 = f.optional_bool_child("LimitToSMPTEBv20").get_value_or(false);
607         _key = dcp::Key (f.string_child ("Key"));
608         _context_id = f.optional_string_child("ContextID").get_value_or (dcp::make_uuid ());
609
610         if (f.optional_string_child ("AudioProcessor")) {
611                 _audio_processor = AudioProcessor::from_id (f.string_child ("AudioProcessor"));
612         } else {
613                 _audio_processor = 0;
614         }
615
616         if (_audio_processor && !Config::instance()->show_experimental_audio_processors()) {
617                 auto ap = AudioProcessor::visible();
618                 if (find(ap.begin(), ap.end(), _audio_processor) == ap.end()) {
619                         Config::instance()->set_show_experimental_audio_processors(true);
620                 }
621         }
622
623         _reel_type = static_cast<ReelType> (f.optional_number_child<int>("ReelType").get_value_or (static_cast<int>(ReelType::SINGLE)));
624         _reel_length = f.optional_number_child<int64_t>("ReelLength").get_value_or (2000000000);
625         for (auto boundary: f.node_children("CustomReelBoundary")) {
626                 _custom_reel_boundaries.push_back(DCPTime(raw_convert<int64_t>(boundary->content())));
627         }
628         _reencode_j2k = f.optional_bool_child("ReencodeJ2K").get_value_or(false);
629         _user_explicit_video_frame_rate = f.optional_bool_child("UserExplicitVideoFrameRate").get_value_or(false);
630
631         for (auto i: f.node_children("Marker")) {
632                 auto type = i->optional_string_attribute("Type");
633                 if (!type) {
634                         type = i->string_attribute("type");
635                 }
636                 _markers[dcp::marker_from_string(*type)] = DCPTime(dcp::raw_convert<DCPTime::Type>(i->content()));
637         }
638
639         for (auto i: f.node_children("Rating")) {
640                 _ratings.push_back (dcp::Rating(i));
641         }
642
643         for (auto i: f.node_children("ContentVersion")) {
644                 _content_versions.push_back (i->content());
645         }
646
647         auto name_language = f.optional_string_child("NameLanguage");
648         if (name_language) {
649                 _name_language = dcp::LanguageTag (*name_language);
650         }
651         auto territory_type = f.optional_string_child("TerritoryType");
652         if (territory_type) {
653                 _territory_type = string_to_territory_type(*territory_type);
654         }
655         auto release_territory = f.optional_string_child("ReleaseTerritory");
656         if (release_territory) {
657                 _release_territory = dcp::LanguageTag::RegionSubtag (*release_territory);
658         }
659
660         auto sign_language_video_language = f.optional_string_child("SignLanguageVideoLanguage");
661         if (sign_language_video_language) {
662                 _sign_language_video_language = dcp::LanguageTag(*sign_language_video_language);
663         }
664
665         _version_number = f.optional_number_child<int>("VersionNumber").get_value_or(1);
666
667         auto status = f.optional_string_child("Status");
668         if (status) {
669                 _status = dcp::string_to_status (*status);
670         }
671
672         _chain = f.optional_string_child("Chain");
673         _distributor = f.optional_string_child("Distributor");
674         _facility = f.optional_string_child("Facility");
675         _studio = f.optional_string_child("Studio");
676         _temp_version = f.optional_bool_child("TempVersion").get_value_or(false);
677         _pre_release = f.optional_bool_child("PreRelease").get_value_or(false);
678         _red_band = f.optional_bool_child("RedBand").get_value_or(false);
679         _two_d_version_of_three_d = f.optional_bool_child("TwoDVersionOfThreeD").get_value_or(false);
680
681         auto value = f.optional_number_child<float>("LuminanceValue");
682         auto unit = f.optional_string_child("LuminanceUnit");
683         if (value && unit) {
684                 _luminance = dcp::Luminance (*value, dcp::Luminance::string_to_unit(*unit));
685         }
686
687         /* Disable guessing for files made in previous DCP-o-matic versions */
688         _user_explicit_container = f.optional_bool_child("UserExplicitContainer").get_value_or(true);
689         _user_explicit_resolution = f.optional_bool_child("UserExplicitResolution").get_value_or(true);
690
691         auto audio_language = f.optional_string_child("AudioLanguage");
692         if (audio_language) {
693                 _audio_language = dcp::LanguageTag(*audio_language);
694         }
695
696         /* Read the old ISDCFMetadata tag from 2.14.x metadata */
697         auto isdcf = f.optional_node_child("ISDCFMetadata");
698         if (isdcf) {
699                 if (auto territory = isdcf->optional_string_child("Territory")) {
700                         try {
701                                 _release_territory = dcp::LanguageTag::RegionSubtag(*territory);
702                         } catch (...) {
703                                 /* Invalid region subtag; just ignore it */
704                         }
705                 }
706                 if (auto audio_language = isdcf->optional_string_child("AudioLanguage")) {
707                         try {
708                                 _audio_language = dcp::LanguageTag(*audio_language);
709                         } catch (...) {
710                                 /* Invalid language tag; just ignore it */
711                         }
712                 }
713                 if (auto content_version = isdcf->optional_string_child("ContentVersion")) {
714                         _content_versions.push_back (*content_version);
715                 }
716                 if (auto rating = isdcf->optional_string_child("Rating")) {
717                         _ratings.push_back (dcp::Rating("", *rating));
718                 }
719                 if (auto mastered_luminance = isdcf->optional_number_child<float>("MasteredLuminance")) {
720                         if (*mastered_luminance > 0) {
721                                 _luminance = dcp::Luminance(*mastered_luminance, dcp::Luminance::Unit::FOOT_LAMBERT);
722                         }
723                 }
724                 _studio = isdcf->optional_string_child("Studio");
725                 _facility = isdcf->optional_string_child("Facility");
726                 _temp_version = isdcf->optional_bool_child("TempVersion").get_value_or(false);
727                 _pre_release = isdcf->optional_bool_child("PreRelease").get_value_or(false);
728                 _red_band = isdcf->optional_bool_child("RedBand").get_value_or(false);
729                 _two_d_version_of_three_d = isdcf->optional_bool_child("TwoDVersionOfThreeD").get_value_or(false);
730                 _chain = isdcf->optional_string_child("Chain");
731         }
732
733         list<string> notes;
734         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"), _state_version, notes);
735
736         /* Write backtraces to this film's directory, until another film is loaded */
737         if (_directory) {
738                 set_backtrace_file (file ("backtrace.txt"));
739         }
740
741         set_dirty (false);
742         return notes;
743 }
744
745 /** Given a directory name, return its full path within the Film's directory.
746  *  @param d directory name within the Film's directory.
747  *  @param create true to create the directory (and its parents) if they do not exist.
748  */
749 boost::filesystem::path
750 Film::dir (boost::filesystem::path d, bool create) const
751 {
752         DCPOMATIC_ASSERT (_directory);
753
754         boost::filesystem::path p;
755         p /= _directory.get();
756         p /= d;
757
758         if (create) {
759                 dcp::filesystem::create_directories(p);
760         }
761
762         return p;
763 }
764
765 /** Given a file or directory name, return its full path within the Film's directory.
766  *  Any required parent directories will be created.
767  */
768 boost::filesystem::path
769 Film::file (boost::filesystem::path f) const
770 {
771         DCPOMATIC_ASSERT (_directory);
772
773         boost::filesystem::path p;
774         p /= _directory.get();
775         p /= f;
776
777         dcp::filesystem::create_directories(p.parent_path());
778
779         return p;
780 }
781
782 list<int>
783 Film::mapped_audio_channels () const
784 {
785         list<int> mapped;
786
787         if (audio_processor ()) {
788                 /* Processors are mapped 1:1 to DCP outputs so we can work out mappings from there */
789                 for (int i = 0; i < audio_processor()->out_channels(); ++i) {
790                         mapped.push_back (i);
791                 }
792         } else {
793                 for (auto i: content()) {
794                         if (i->audio) {
795                                 auto c = i->audio->mapping().mapped_output_channels();
796                                 copy (c.begin(), c.end(), back_inserter(mapped));
797                         }
798                 }
799
800                 mapped.sort ();
801                 mapped.unique ();
802         }
803
804         return mapped;
805 }
806
807
808 pair<optional<dcp::LanguageTag>, vector<dcp::LanguageTag>>
809 Film::subtitle_languages(bool* burnt_in) const
810 {
811         if (burnt_in) {
812                 *burnt_in = true;
813         }
814
815         pair<optional<dcp::LanguageTag>, vector<dcp::LanguageTag>> result;
816         for (auto i: content()) {
817                 auto dcp = dynamic_pointer_cast<DCPContent>(i);
818                 for (auto const& text: i->text) {
819                         auto const use = text->use() || (dcp && dcp->reference_text(TextType::OPEN_SUBTITLE));
820                         if (use && text->type() == TextType::OPEN_SUBTITLE) {
821                                 if (!text->burn() && burnt_in) {
822                                         *burnt_in = false;
823                                 }
824                                 if (text->language()) {
825                                         if (text->language_is_additional()) {
826                                                 result.second.push_back(text->language().get());
827                                         } else {
828                                                 result.first = text->language().get();
829                                         }
830                                 }
831                         }
832                 }
833                 if (i->video && i->video->burnt_subtitle_language()) {
834                         result.first = i->video->burnt_subtitle_language();
835                 }
836         }
837
838         std::sort (result.second.begin(), result.second.end());
839         auto last = std::unique (result.second.begin(), result.second.end());
840         result.second.erase (last, result.second.end());
841         return result;
842 }
843
844
845 vector<dcp::LanguageTag>
846 Film::closed_caption_languages() const
847 {
848         vector<dcp::LanguageTag> result;
849         for (auto i: content()) {
850                 for (auto text: i->text) {
851                         if (text->use() && text->type() == TextType::CLOSED_CAPTION && text->dcp_track() && text->dcp_track()->language) {
852                                 result.push_back(*text->dcp_track()->language);
853                         }
854                 }
855         }
856
857         return result;
858 }
859
860
861 /** @return a ISDCF-compliant name for a DCP of this film */
862 string
863 Film::isdcf_name (bool if_created_now) const
864 {
865         string isdcf_name;
866
867         auto raw_name = name ();
868
869         auto to_upper = [](string s) {
870                 transform(s.begin(), s.end(), s.begin(), ::toupper);
871                 return s;
872         };
873
874         /* Split the raw name up into words */
875         vector<string> words;
876         split (words, raw_name, is_any_of (" _-"));
877
878         string fixed_name;
879
880         /* Add each word to fixed_name */
881         for (auto i: words) {
882                 string w = i;
883
884                 /* First letter is always capitalised */
885                 w[0] = toupper (w[0]);
886
887                 /* Count caps in w */
888                 size_t caps = 0;
889                 for (size_t j = 0; j < w.size(); ++j) {
890                         if (isupper (w[j])) {
891                                 ++caps;
892                         }
893                 }
894
895                 /* If w is all caps make the rest of it lower case, otherwise
896                    leave it alone.
897                 */
898                 if (caps == w.size ()) {
899                         for (size_t j = 1; j < w.size(); ++j) {
900                                 w[j] = tolower (w[j]);
901                         }
902                 }
903
904                 for (size_t j = 0; j < w.size(); ++j) {
905                         fixed_name += w[j];
906                 }
907         }
908
909         fixed_name = fixed_name.substr(0, Config::instance()->isdcf_name_part_length());
910
911         isdcf_name += fixed_name;
912
913         if (dcp_content_type()) {
914                 isdcf_name += "_" + dcp_content_type()->isdcf_name();
915                 string version = "1";
916                 if (_interop) {
917                         if (!_content_versions.empty()) {
918                                 auto cv = _content_versions[0];
919                                 if (!cv.empty() && std::all_of(cv.begin(), cv.end(), isdigit)) {
920                                         version = cv;
921                                 }
922                         }
923                 } else {
924                         version = dcp::raw_convert<string>(_version_number);
925                 }
926                 isdcf_name += "-" + version;
927         }
928
929         if (_temp_version) {
930                 isdcf_name += "-Temp";
931         }
932
933         if (_pre_release) {
934                 isdcf_name += "-Pre";
935         }
936
937         if (_red_band) {
938                 isdcf_name += "-RedBand";
939         }
940
941         if (_chain && !_chain->empty()) {
942                 isdcf_name += "-" + *_chain;
943         }
944
945         if (three_d ()) {
946                 isdcf_name += "-3D";
947         }
948
949         if (_two_d_version_of_three_d) {
950                 isdcf_name += "-2D";
951         }
952
953         if (_luminance) {
954                 auto fl = _luminance->value_in_foot_lamberts();
955                 char buffer[64];
956                 snprintf (buffer, sizeof(buffer), "%.1f", fl);
957                 isdcf_name += String::compose("-%1fl", buffer);
958         }
959
960         if (video_frame_rate() != 24) {
961                 isdcf_name += "-" + raw_convert<string>(video_frame_rate());
962         }
963
964         if (container()) {
965                 isdcf_name += "_" + container()->isdcf_name();
966         }
967
968         auto content_list = content();
969
970         /* XXX: this uses the first bit of content only */
971
972         /* Interior aspect ratio.  The standard says we don't do this for trailers, for some strange reason */
973         if (dcp_content_type() && dcp_content_type()->libdcp_kind() != dcp::ContentKind::TRAILER) {
974                 auto first_video = std::find_if(content_list.begin(), content_list.end(), [](shared_ptr<Content> c) { return static_cast<bool>(c->video); });
975                 if (first_video != content_list.end()) {
976                         if (auto scaled_size = (*first_video)->video->scaled_size(frame_size())) {
977                                 auto first_ratio = lrintf(scaled_size->ratio() * 100);
978                                 auto container_ratio = lrintf(container()->ratio() * 100);
979                                 if (first_ratio != container_ratio) {
980                                         isdcf_name += "-" + dcp::raw_convert<string>(first_ratio);
981                                 }
982                         }
983                 }
984         }
985
986         auto entry_for_language = [](dcp::LanguageTag const& tag) {
987                 /* Look up what we should be using for this tag in the DCNC name */
988                 for (auto const& dcnc: dcp::dcnc_tags()) {
989                         if (tag.to_string() == dcnc.first) {
990                                 return dcnc.second;
991                         }
992                 }
993                 /* Fallback to the language subtag, if there is one */
994                 return tag.language() ? tag.language()->subtag() : "XX";
995         };
996
997         auto audio_language = _audio_language ? entry_for_language(*_audio_language) : "XX";
998
999         isdcf_name += "_" + to_upper (audio_language);
1000
1001         bool burnt_in;
1002         auto sub_langs = subtitle_languages(&burnt_in);
1003         auto ccap_langs = closed_caption_languages();
1004         if (sub_langs.first && sub_langs.first->language()) {
1005                 auto lang = entry_for_language(*sub_langs.first);
1006                 if (burnt_in) {
1007                         transform (lang.begin(), lang.end(), lang.begin(), ::tolower);
1008                 } else {
1009                         lang = to_upper (lang);
1010                 }
1011
1012                 isdcf_name += "-" + lang;
1013         } else if (!ccap_langs.empty()) {
1014                 isdcf_name += "-" + to_upper(entry_for_language(ccap_langs[0])) + "-CCAP";
1015         } else {
1016                 /* No subtitles */
1017                 isdcf_name += "-XX";
1018         }
1019
1020         if (_territory_type == TerritoryType::INTERNATIONAL_TEXTED) {
1021                 isdcf_name += "_INT-TD";
1022         } else if (_territory_type == TerritoryType::INTERNATIONAL_TEXTLESS) {
1023                 isdcf_name += "_INT-TL";
1024         } else if (_release_territory) {
1025                 auto territory = _release_territory->subtag();
1026                 isdcf_name += "_" + to_upper (territory);
1027                 if (!_ratings.empty()) {
1028                         auto label = _ratings[0].label;
1029                         boost::erase_all(label, "+");
1030                         boost::erase_all(label, "-");
1031                         isdcf_name += "-" + label;
1032                 }
1033         }
1034
1035         /* Count mapped audio channels */
1036
1037         auto mapped = mapped_audio_channels ();
1038
1039         auto ch = audio_channel_types (mapped, audio_channels());
1040         if (!ch.first && !ch.second) {
1041                 isdcf_name += "_MOS";
1042         } else if (ch.first) {
1043                 isdcf_name += String::compose("_%1%2", ch.first, ch.second);
1044         }
1045
1046         if (audio_channels() > static_cast<int>(dcp::Channel::HI) && find(mapped.begin(), mapped.end(), static_cast<int>(dcp::Channel::HI)) != mapped.end()) {
1047                 isdcf_name += "-HI";
1048         }
1049         if (audio_channels() > static_cast<int>(dcp::Channel::VI) && find(mapped.begin(), mapped.end(), static_cast<int>(dcp::Channel::VI)) != mapped.end()) {
1050                 isdcf_name += "-VI";
1051         }
1052
1053         if (find_if(content_list.begin(), content_list.end(), [](shared_ptr<Content> c) { return static_cast<bool>(c->atmos); }) != content_list.end()) {
1054                 isdcf_name += "-IAB";
1055         }
1056
1057         isdcf_name += "_" + resolution_to_string (_resolution);
1058
1059         if (_studio && _studio->length() >= 2) {
1060                 isdcf_name += "_" + to_upper (_studio->substr(0, 4));
1061         }
1062
1063         if (if_created_now) {
1064                 isdcf_name += "_" + boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
1065         } else {
1066                 isdcf_name += "_" + boost::gregorian::to_iso_string (_isdcf_date);
1067         }
1068
1069         if (_facility && _facility->length() >= 3) {
1070                 isdcf_name += "_" + to_upper(_facility->substr(0, 3));
1071         }
1072
1073         if (_interop) {
1074                 isdcf_name += "_IOP";
1075         } else {
1076                 isdcf_name += "_SMPTE";
1077         }
1078
1079         if (three_d ()) {
1080                 isdcf_name += "-3D";
1081         }
1082
1083         auto vf = false;
1084         for (auto content: content_list) {
1085                 auto dcp = dynamic_pointer_cast<const DCPContent>(content);
1086                 if (!dcp) {
1087                         continue;
1088                 }
1089
1090                 bool any_text = false;
1091                 for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
1092                         if (dcp->reference_text(static_cast<TextType>(i))) {
1093                                 any_text = true;
1094                         }
1095                 }
1096                 if (dcp->reference_video() || dcp->reference_audio() || any_text) {
1097                         vf = true;
1098                 }
1099         }
1100
1101         if (vf) {
1102                 isdcf_name += "_VF";
1103         } else {
1104                 isdcf_name += "_OV";
1105         }
1106
1107         return isdcf_name;
1108 }
1109
1110 /** @return name to give the DCP */
1111 string
1112 Film::dcp_name (bool if_created_now) const
1113 {
1114         string unfiltered;
1115         if (use_isdcf_name()) {
1116                 return careful_string_filter (isdcf_name (if_created_now));
1117         }
1118
1119         return careful_string_filter (name ());
1120 }
1121
1122 void
1123 Film::set_directory (boost::filesystem::path d)
1124 {
1125         _directory = d;
1126         set_dirty (true);
1127 }
1128
1129 void
1130 Film::set_name (string n)
1131 {
1132         FilmChangeSignaller ch(this, FilmProperty::NAME);
1133         _name = n;
1134 }
1135
1136 void
1137 Film::set_use_isdcf_name (bool u)
1138 {
1139         FilmChangeSignaller ch(this, FilmProperty::USE_ISDCF_NAME);
1140         _use_isdcf_name = u;
1141 }
1142
1143 void
1144 Film::set_dcp_content_type (DCPContentType const * t)
1145 {
1146         FilmChangeSignaller ch(this, FilmProperty::DCP_CONTENT_TYPE);
1147         _dcp_content_type = t;
1148 }
1149
1150
1151 /** @param explicit_user true if this is being set because of
1152  *  a direct user request, false if it is being done because
1153  *  DCP-o-matic is guessing the best container to use.
1154  */
1155 void
1156 Film::set_container (Ratio const * c, bool explicit_user)
1157 {
1158         FilmChangeSignaller ch(this, FilmProperty::CONTAINER);
1159         _container = c;
1160
1161         if (explicit_user) {
1162                 _user_explicit_container = true;
1163         }
1164 }
1165
1166
1167 /** @param explicit_user true if this is being set because of
1168  *  a direct user request, false if it is being done because
1169  *  DCP-o-matic is guessing the best resolution to use.
1170  */
1171 void
1172 Film::set_resolution (Resolution r, bool explicit_user)
1173 {
1174         FilmChangeSignaller ch(this, FilmProperty::RESOLUTION);
1175         _resolution = r;
1176
1177         if (explicit_user) {
1178                 _user_explicit_resolution = true;
1179         }
1180 }
1181
1182
1183 void
1184 Film::set_video_bit_rate(int64_t bit_rate)
1185 {
1186         FilmChangeSignaller ch(this, FilmProperty::VIDEO_BIT_RATE);
1187         _video_bit_rate = bit_rate;
1188 }
1189
1190 /** @param f New frame rate.
1191  *  @param user_explicit true if this comes from a direct user instruction, false if it is from
1192  *  DCP-o-matic being helpful.
1193  */
1194 void
1195 Film::set_video_frame_rate (int f, bool user_explicit)
1196 {
1197         FilmChangeSignaller ch(this, FilmProperty::VIDEO_FRAME_RATE);
1198         _video_frame_rate = f;
1199         if (user_explicit) {
1200                 _user_explicit_video_frame_rate = true;
1201         }
1202 }
1203
1204 void
1205 Film::set_audio_channels (int c)
1206 {
1207         FilmChangeSignaller ch(this, FilmProperty::AUDIO_CHANNELS);
1208         _audio_channels = c;
1209 }
1210
1211 void
1212 Film::set_three_d (bool t)
1213 {
1214         FilmChangeSignaller ch(this, FilmProperty::THREE_D);
1215         _three_d = t;
1216
1217         if (_three_d && _two_d_version_of_three_d) {
1218                 set_two_d_version_of_three_d (false);
1219         }
1220 }
1221
1222 void
1223 Film::set_interop (bool i)
1224 {
1225         FilmChangeSignaller ch(this, FilmProperty::INTEROP);
1226         _interop = i;
1227 }
1228
1229
1230 void
1231 Film::set_video_encoding(VideoEncoding encoding)
1232 {
1233         FilmChangeSignaller ch(this, FilmProperty::VIDEO_ENCODING);
1234         _video_encoding = encoding;
1235         check_settings_consistency();
1236 }
1237
1238
1239 void
1240 Film::set_limit_to_smpte_bv20(bool limit)
1241 {
1242         FilmChangeSignaller ch(this, FilmProperty::LIMIT_TO_SMPTE_BV20);
1243         _limit_to_smpte_bv20 = limit;
1244 }
1245
1246
1247 void
1248 Film::set_audio_processor (AudioProcessor const * processor)
1249 {
1250         FilmChangeSignaller ch1(this, FilmProperty::AUDIO_PROCESSOR);
1251         FilmChangeSignaller ch2(this, FilmProperty::AUDIO_CHANNELS);
1252         _audio_processor = processor;
1253 }
1254
1255 void
1256 Film::set_reel_type (ReelType t)
1257 {
1258         FilmChangeSignaller ch(this, FilmProperty::REEL_TYPE);
1259         _reel_type = t;
1260 }
1261
1262 /** @param r Desired reel length in bytes */
1263 void
1264 Film::set_reel_length (int64_t r)
1265 {
1266         FilmChangeSignaller ch(this, FilmProperty::REEL_LENGTH);
1267         _reel_length = r;
1268 }
1269
1270
1271 void
1272 Film::set_custom_reel_boundaries(vector<DCPTime> boundaries)
1273 {
1274         FilmChangeSignaller ch(this, FilmProperty::CUSTOM_REEL_BOUNDARIES);
1275         std::sort(boundaries.begin(), boundaries.end());
1276         _custom_reel_boundaries = std::move(boundaries);
1277 }
1278
1279
1280 void
1281 Film::set_reencode_j2k (bool r)
1282 {
1283         FilmChangeSignaller ch(this, FilmProperty::REENCODE_J2K);
1284         _reencode_j2k = r;
1285 }
1286
1287 void
1288 Film::signal_change (ChangeType type, int p)
1289 {
1290         signal_change(type, static_cast<FilmProperty>(p));
1291 }
1292
1293 void
1294 Film::signal_change(ChangeType type, FilmProperty p)
1295 {
1296         if (type == ChangeType::DONE) {
1297                 set_dirty (true);
1298
1299                 if (p == FilmProperty::CONTENT) {
1300                         if (!_user_explicit_video_frame_rate) {
1301                                 set_video_frame_rate (best_video_frame_rate());
1302                         }
1303                 }
1304
1305                 emit (boost::bind (boost::ref (Change), type, p));
1306
1307                 if (p == FilmProperty::VIDEO_FRAME_RATE || p == FilmProperty::SEQUENCE) {
1308                         /* We want to call Playlist::maybe_sequence but this must happen after the
1309                            main signal emission (since the butler will see that emission and un-suspend itself).
1310                         */
1311                         emit (boost::bind(&Playlist::maybe_sequence, _playlist.get(), shared_from_this()));
1312                 }
1313         } else {
1314                 Change (type, p);
1315         }
1316 }
1317
1318 void
1319 Film::set_isdcf_date_today ()
1320 {
1321         _isdcf_date = boost::gregorian::day_clock::local_day ();
1322 }
1323
1324
1325 boost::filesystem::path
1326 Film::j2c_path (int reel, Frame frame, Eyes eyes, bool tmp) const
1327 {
1328         boost::filesystem::path p;
1329         p /= "j2c";
1330         p /= video_identifier ();
1331
1332         char buffer[256];
1333         snprintf(buffer, sizeof(buffer), "%08d_%08" PRId64, reel, frame);
1334         string s (buffer);
1335
1336         if (eyes == Eyes::LEFT) {
1337                 s += ".L";
1338         } else if (eyes == Eyes::RIGHT) {
1339                 s += ".R";
1340         }
1341
1342         s += ".j2c";
1343
1344         if (tmp) {
1345                 s += ".tmp";
1346         }
1347
1348         p /= s;
1349         return file (p);
1350 }
1351
1352
1353 /** Find all the DCPs in our directory that can be dcp::DCP::read() and return details of their CPLs.
1354  *  The list will be returned in reverse order of timestamp (i.e. most recent first).
1355  */
1356 vector<CPLSummary>
1357 Film::cpls () const
1358 {
1359         if (!directory ()) {
1360                 return {};
1361         }
1362
1363         vector<CPLSummary> out;
1364
1365         auto const dir = directory().get();
1366         for (auto const& item: dcp::filesystem::directory_iterator(dir)) {
1367                 if (
1368                         dcp::filesystem::is_directory(item) &&
1369                         item.path().filename() != "j2c" && item.path().filename() != "video" && item.path().filename() != "info" && item.path().filename() != "analysis"
1370                         ) {
1371
1372                         try {
1373                                 out.push_back(CPLSummary(item));
1374                         } catch (...) {
1375
1376                         }
1377                 }
1378         }
1379
1380         sort(out.begin(), out.end(), [](CPLSummary const& a, CPLSummary const& b) {
1381                 return a.last_write_time > b.last_write_time;
1382         });
1383
1384         return out;
1385 }
1386
1387 void
1388 Film::set_encrypted (bool e)
1389 {
1390         FilmChangeSignaller ch(this, FilmProperty::ENCRYPTED);
1391         _encrypted = e;
1392 }
1393
1394 ContentList
1395 Film::content () const
1396 {
1397         return _playlist->content ();
1398 }
1399
1400 /** @param content Content to add.
1401  *  @param disable_audio_analysis true to never do automatic audio analysis, even if it is enabled in configuration.
1402  */
1403 void
1404 Film::examine_and_add_content (shared_ptr<Content> content, bool disable_audio_analysis)
1405 {
1406         if (dynamic_pointer_cast<FFmpegContent> (content) && _directory) {
1407                 run_ffprobe (content->path(0), file("ffprobe.log"));
1408         }
1409
1410         auto j = make_shared<ExamineContentJob>(shared_from_this(), content);
1411
1412         _job_connections.push_back (
1413                 j->Finished.connect (bind (&Film::maybe_add_content, this, weak_ptr<Job>(j), weak_ptr<Content>(content), disable_audio_analysis))
1414                 );
1415
1416         JobManager::instance()->add (j);
1417 }
1418
1419 void
1420 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c, bool disable_audio_analysis)
1421 {
1422         auto job = j.lock ();
1423         if (!job || !job->finished_ok ()) {
1424                 return;
1425         }
1426
1427         auto content = c.lock ();
1428         if (!content) {
1429                 return;
1430         }
1431
1432         add_content (content);
1433
1434         if (Config::instance()->automatic_audio_analysis() && content->audio && !disable_audio_analysis) {
1435                 auto playlist = make_shared<Playlist>();
1436                 playlist->add (shared_from_this(), content);
1437                 boost::signals2::connection c;
1438                 JobManager::instance()->analyse_audio (
1439                         shared_from_this(), playlist, false, c, bind (&Film::audio_analysis_finished, this)
1440                         );
1441                 _audio_analysis_connections.push_back (c);
1442         }
1443 }
1444
1445 void
1446 Film::add_content (shared_ptr<Content> c)
1447 {
1448         /* Add {video,subtitle} content after any existing {video,subtitle} content */
1449         if (c->video) {
1450                 c->set_position (shared_from_this(), _playlist->video_end(shared_from_this()));
1451         } else if (!c->text.empty()) {
1452                 c->set_position (shared_from_this(), _playlist->text_end(shared_from_this()));
1453         }
1454
1455         if (_template_film) {
1456                 /* Take settings from the first piece of content of c's type in _template */
1457                 for (auto i: _template_film->content()) {
1458                         c->take_settings_from (i);
1459                 }
1460         }
1461
1462         _playlist->add (shared_from_this(), c);
1463
1464         maybe_set_container_and_resolution ();
1465         if (c->atmos) {
1466                 if (_audio_channels < 14) {
1467                         set_audio_channels(14);
1468                 }
1469                 set_interop (false);
1470         }
1471 }
1472
1473
1474 void
1475 Film::maybe_set_container_and_resolution ()
1476 {
1477         /* Get the only piece of video content, if there is only one */
1478         shared_ptr<VideoContent> video;
1479         for (auto content: _playlist->content()) {
1480                 if (content->video) {
1481                         if (!video) {
1482                                 video = content->video;
1483                         } else {
1484                                 video.reset ();
1485                         }
1486                 }
1487         }
1488
1489         if (video && video->size()) {
1490                 /* This is the only piece of video content in this Film.  Use it to make a guess for
1491                  * DCP container size and resolution, unless the user has already explicitly set these
1492                  * things.
1493                  */
1494                 if (!_user_explicit_container) {
1495                         if (video->size()->ratio() > 2.3) {
1496                                 set_container (Ratio::from_id("239"), false);
1497                         } else {
1498                                 set_container (Ratio::from_id("185"), false);
1499                         }
1500                 }
1501
1502                 if (!_user_explicit_resolution) {
1503                         if (video->size_after_crop()->width > 2048 || video->size_after_crop()->height > 1080) {
1504                                 set_resolution (Resolution::FOUR_K, false);
1505                         } else {
1506                                 set_resolution (Resolution::TWO_K, false);
1507                         }
1508                 }
1509         }
1510 }
1511
1512 void
1513 Film::remove_content (shared_ptr<Content> c)
1514 {
1515         _playlist->remove (c);
1516         maybe_set_container_and_resolution ();
1517 }
1518
1519 void
1520 Film::move_content_earlier (shared_ptr<Content> c)
1521 {
1522         _playlist->move_earlier (shared_from_this(), c);
1523 }
1524
1525 void
1526 Film::move_content_later (shared_ptr<Content> c)
1527 {
1528         _playlist->move_later (shared_from_this(), c);
1529 }
1530
1531 /** @return length of the film from time 0 to the last thing on the playlist,
1532  *  with a minimum length of 1 second.
1533  */
1534 DCPTime
1535 Film::length () const
1536 {
1537         return max(DCPTime::from_seconds(1), _playlist->length(shared_from_this()).ceil(video_frame_rate()));
1538 }
1539
1540 int
1541 Film::best_video_frame_rate () const
1542 {
1543         /* Don't default to anything above 30fps (make the user select that explicitly) */
1544         auto best = _playlist->best_video_frame_rate ();
1545         if (best > 30) {
1546                 best /= 2;
1547         }
1548         return best;
1549 }
1550
1551 FrameRateChange
1552 Film::active_frame_rate_change (DCPTime t) const
1553 {
1554         return _playlist->active_frame_rate_change (t, video_frame_rate ());
1555 }
1556
1557 void
1558 Film::playlist_content_change (ChangeType type, weak_ptr<Content> c, int p, bool frequent)
1559 {
1560         if (p == ContentProperty::VIDEO_FRAME_RATE) {
1561                 signal_change(type, FilmProperty::CONTENT);
1562         } else if (p == AudioContentProperty::STREAMS) {
1563                 signal_change(type, FilmProperty::NAME);
1564         }
1565
1566         if (type == ChangeType::DONE) {
1567                 emit (boost::bind (boost::ref (ContentChange), type, c, p, frequent));
1568                 if (!frequent) {
1569                         check_settings_consistency ();
1570                 }
1571         } else {
1572                 ContentChange (type, c, p, frequent);
1573         }
1574
1575         set_dirty (true);
1576 }
1577
1578 void
1579 Film::playlist_length_change ()
1580 {
1581         LengthChange ();
1582 }
1583
1584 void
1585 Film::playlist_change (ChangeType type)
1586 {
1587         signal_change(type, FilmProperty::CONTENT);
1588         signal_change(type, FilmProperty::NAME);
1589
1590         if (type == ChangeType::DONE) {
1591                 check_settings_consistency ();
1592         }
1593
1594         set_dirty (true);
1595 }
1596
1597 /** Check for (and if necessary fix) impossible settings combinations, like
1598  *  video set to being referenced when it can't be.
1599  */
1600 void
1601 Film::check_settings_consistency ()
1602 {
1603         optional<int> atmos_rate;
1604         for (auto i: content()) {
1605
1606                 if (i->atmos) {
1607                         int rate = lrintf (i->atmos->edit_rate().as_float());
1608                         if (atmos_rate && *atmos_rate != rate) {
1609                                 Message (_("You have more than one piece of Atmos content, and they do not have the same frame rate.  You must remove some Atmos content."));
1610                         } else if (!atmos_rate && rate != video_frame_rate()) {
1611                                 atmos_rate = rate;
1612                                 set_video_frame_rate (rate, false);
1613                                 Message(variant::insert_dcpomatic(_("%1 had to change your settings so that the film's frame rate is the same as that of your Atmos content.")));
1614                         }
1615                 }
1616         }
1617
1618         bool change_made = false;
1619         for (auto i: content()) {
1620                 auto d = dynamic_pointer_cast<DCPContent>(i);
1621                 if (!d) {
1622                         continue;
1623                 }
1624
1625                 string why_not;
1626                 if (d->reference_video() && !d->can_reference_video(shared_from_this(), why_not)) {
1627                         d->set_reference_video(false);
1628                         change_made = true;
1629                 }
1630                 if (d->reference_audio() && !d->can_reference_audio(shared_from_this(), why_not)) {
1631                         d->set_reference_audio(false);
1632                         change_made = true;
1633                 }
1634                 if (d->reference_text(TextType::OPEN_SUBTITLE) && !d->can_reference_text(shared_from_this(), TextType::OPEN_SUBTITLE, why_not)) {
1635                         d->set_reference_text(TextType::OPEN_SUBTITLE, false);
1636                         change_made = true;
1637                 }
1638                 if (d->reference_text(TextType::CLOSED_CAPTION) && !d->can_reference_text(shared_from_this(), TextType::CLOSED_CAPTION, why_not)) {
1639                         d->set_reference_text(TextType::CLOSED_CAPTION, false);
1640                         change_made = true;
1641                 }
1642         }
1643
1644         if (change_made) {
1645                 Message(variant::insert_dcpomatic(_("%1 had to change your settings for referring to DCPs as OV.  Please review those settings to make sure they are what you want.")));
1646         }
1647
1648         if (reel_type() == ReelType::CUSTOM) {
1649                 auto boundaries = custom_reel_boundaries();
1650                 auto too_late = std::find_if(boundaries.begin(), boundaries.end(), [this](dcpomatic::DCPTime const& time) {
1651                         return time >= length();
1652                 });
1653
1654                 if (too_late != boundaries.end()) {
1655                         if (std::distance(too_late, boundaries.end()) > 1) {
1656                                 Message(variant::insert_dcpomatic(_("%1 had to remove some of your custom reel boundaries as they no longer lie within the film.")));
1657                         } else {
1658                                 Message(variant::insert_dcpomatic(_("%1 had to remove one of your custom reel boundaries as it no longer lies within the film.")));
1659                         }
1660                         boundaries.erase(too_late, boundaries.end());
1661                         set_custom_reel_boundaries(boundaries);
1662                 }
1663         }
1664
1665         auto const hd = Ratio::from_id("178");
1666
1667         if (video_encoding() == VideoEncoding::MPEG2) {
1668                 if (container() != hd) {
1669                         set_container(hd);
1670                         Message(_("DCP-o-matic had to set your container to 1920x1080 as it's the only one that can be used with MPEG2 encoding."));
1671                 }
1672                 if (three_d()) {
1673                         set_three_d(false);
1674                         Message(_("DCP-o-matic had to set your film to 2D as 3D is not yet supported with MPEG2 encoding."));
1675                 }
1676         } else if (container() == hd && !Config::instance()->allow_any_container()) {
1677                 set_container(Ratio::from_id("185"));
1678                 Message(_("DCP-o-matic set your container to DCI Flat as it was previously 1920x1080 and that is not a standard ratio with JPEG2000 encoding."));
1679         }
1680 }
1681
1682 void
1683 Film::playlist_order_changed ()
1684 {
1685         /* XXX: missing PENDING */
1686         signal_change(ChangeType::DONE, FilmProperty::CONTENT_ORDER);
1687 }
1688
1689
1690 void
1691 Film::set_sequence (bool s)
1692 {
1693         if (s == _sequence) {
1694                 return;
1695         }
1696
1697         FilmChangeSignaller cc(this, FilmProperty::SEQUENCE);
1698         _sequence = s;
1699         _playlist->set_sequence (s);
1700 }
1701
1702 /** @return Size of the largest possible image in whatever resolution we are using */
1703 dcp::Size
1704 Film::full_frame () const
1705 {
1706         switch (_resolution) {
1707         case Resolution::TWO_K:
1708                 return dcp::Size (2048, 1080);
1709         case Resolution::FOUR_K:
1710                 return dcp::Size (4096, 2160);
1711         }
1712
1713         DCPOMATIC_ASSERT (false);
1714         return dcp::Size ();
1715 }
1716
1717 /** @return Size of the frame */
1718 dcp::Size
1719 Film::frame_size () const
1720 {
1721         return fit_ratio_within (container()->ratio(), full_frame ());
1722 }
1723
1724
1725 /** @return Area of Film::frame_size() that contains picture rather than pillar/letterboxing */
1726 dcp::Size
1727 Film::active_area () const
1728 {
1729         auto const frame = frame_size ();
1730         dcp::Size active;
1731
1732         for (auto i: content()) {
1733                 if (i->video) {
1734                         if (auto s = i->video->scaled_size(frame)) {
1735                                 active.width = max(active.width, s->width);
1736                                 active.height = max(active.height, s->height);
1737                         }
1738                 }
1739         }
1740
1741         return active;
1742 }
1743
1744
1745 /*  @param cpl_file CPL filename.
1746  *  @param from KDM from time expressed as a local time with an offset from UTC.
1747  *  @param until KDM to time expressed as a local time with an offset from UTC.
1748  */
1749 dcp::DecryptedKDM
1750 Film::make_kdm(boost::filesystem::path cpl_file, dcp::LocalTime from, dcp::LocalTime until) const
1751 {
1752         if (!_encrypted) {
1753                 throw runtime_error (_("Cannot make a KDM as this project is not encrypted."));
1754         }
1755
1756         auto cpl = make_shared<dcp::CPL>(cpl_file);
1757
1758         /* Find keys that have been added to imported, encrypted DCP content */
1759         list<dcp::DecryptedKDMKey> imported_keys;
1760         for (auto i: content()) {
1761                 auto d = dynamic_pointer_cast<DCPContent> (i);
1762                 if (d && d->kdm()) {
1763                         dcp::DecryptedKDM kdm (d->kdm().get(), Config::instance()->decryption_chain()->key().get());
1764                         auto keys = kdm.keys ();
1765                         copy (keys.begin(), keys.end(), back_inserter (imported_keys));
1766                 }
1767         }
1768
1769         map<shared_ptr<const dcp::ReelFileAsset>, dcp::Key> keys;
1770
1771         for (auto asset: cpl->reel_file_assets()) {
1772                 if (!asset->encrypted()) {
1773                         continue;
1774                 }
1775
1776                 /* Get any imported key for this ID */
1777                 bool done = false;
1778                 for (auto const& k: imported_keys) {
1779                         if (k.id() == asset->key_id().get()) {
1780                                 LOG_GENERAL("Using imported key for %1", asset->key_id().get());
1781                                 keys[asset] = k.key();
1782                                 done = true;
1783                         }
1784                 }
1785
1786                 if (!done) {
1787                         /* No imported key; it must be an asset that we encrypted */
1788                         LOG_GENERAL("Using our own key for %1", asset->key_id().get());
1789                         keys[asset] = key();
1790                 }
1791         }
1792
1793         return dcp::DecryptedKDM (
1794                 cpl->id(), keys, from, until, cpl->content_title_text(), cpl->content_title_text(), dcp::LocalTime().as_string()
1795                 );
1796 }
1797
1798
1799 /** @return The approximate disk space required to encode a DCP of this film with the
1800  *  current settings, in bytes.
1801  */
1802 uint64_t
1803 Film::required_disk_space () const
1804 {
1805         return _playlist->required_disk_space (shared_from_this(), video_bit_rate(), audio_channels(), audio_frame_rate());
1806 }
1807
1808 /** This method checks the disk that the Film is on and tries to decide whether or not
1809  *  there will be enough space to make a DCP for it.  If so, true is returned; if not,
1810  *  false is returned and required and available are filled in with the amount of disk space
1811  *  required and available respectively (in GB).
1812  *
1813  *  Note: the decision made by this method isn't, of course, 100% reliable.
1814  */
1815 bool
1816 Film::should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const
1817 {
1818         /* Create a test file and see if we can hard-link it */
1819         boost::filesystem::path test = internal_video_asset_dir() / "test";
1820         boost::filesystem::path test2 = internal_video_asset_dir() / "test2";
1821         can_hard_link = true;
1822         dcp::File f(test, "w");
1823         if (f) {
1824                 f.close();
1825                 boost::system::error_code ec;
1826                 dcp::filesystem::create_hard_link(test, test2, ec);
1827                 if (ec) {
1828                         can_hard_link = false;
1829                 }
1830                 dcp::filesystem::remove(test);
1831                 dcp::filesystem::remove(test2);
1832         }
1833
1834         auto s = dcp::filesystem::space(internal_video_asset_dir());
1835         required = double (required_disk_space ()) / 1073741824.0f;
1836         if (!can_hard_link) {
1837                 required *= 2;
1838         }
1839         available = double (s.available) / 1073741824.0f;
1840         return (available - required) > 1;
1841 }
1842
1843 /** @return The names of the channels that audio contents' outputs are passed into;
1844  *  this is either the DCP or a AudioProcessor.
1845  */
1846 vector<NamedChannel>
1847 Film::audio_output_names () const
1848 {
1849         if (audio_processor ()) {
1850                 return audio_processor()->input_names ();
1851         }
1852
1853         DCPOMATIC_ASSERT (MAX_DCP_AUDIO_CHANNELS == 16);
1854
1855         vector<NamedChannel> n;
1856
1857         for (int i = 0; i < audio_channels(); ++i) {
1858                 if (Config::instance()->use_all_audio_channels() || (i != 8 && i != 9 && i != 15)) {
1859                         n.push_back (NamedChannel(short_audio_channel_name(i), i));
1860                 }
1861         }
1862
1863         return n;
1864 }
1865
1866 void
1867 Film::repeat_content (ContentList c, int n)
1868 {
1869         _playlist->repeat (shared_from_this(), c, n);
1870 }
1871
1872 void
1873 Film::remove_content (ContentList c)
1874 {
1875         _playlist->remove (c);
1876 }
1877
1878 void
1879 Film::audio_analysis_finished ()
1880 {
1881         /* XXX */
1882 }
1883
1884
1885 vector<DCPTimePeriod>
1886 Film::reels () const
1887 {
1888         vector<DCPTimePeriod> periods;
1889         auto const len = length();
1890
1891         switch (reel_type ()) {
1892         case ReelType::SINGLE:
1893                 periods.emplace_back(DCPTime(), len);
1894                 break;
1895         case ReelType::BY_VIDEO_CONTENT:
1896         {
1897                 /* Collect all reel boundaries */
1898                 list<DCPTime> split_points;
1899                 split_points.push_back (DCPTime());
1900                 split_points.push_back (len);
1901                 for (auto c: content()) {
1902                         if (c->video) {
1903                                 for (auto t: c->reel_split_points(shared_from_this())) {
1904                                         split_points.push_back (t);
1905                                 }
1906                                 split_points.push_back (c->end(shared_from_this()));
1907                         }
1908                 }
1909
1910                 split_points.sort ();
1911                 split_points.unique ();
1912
1913                 /* Make them into periods, coalescing any that are less than 1 second long */
1914                 optional<DCPTime> last;
1915                 for (auto t: split_points) {
1916                         if (last && (t - *last) >= DCPTime::from_seconds(1)) {
1917                                 /* Period from *last to t is long enough; use it and start a new one */
1918                                 periods.emplace_back(*last, t);
1919                                 last = t;
1920                         } else if (!last) {
1921                                 /* That was the first time, so start a new period */
1922                                 last = t;
1923                         }
1924                 }
1925
1926                 if (!periods.empty()) {
1927                         periods.back().to = split_points.back();
1928                 }
1929                 break;
1930         }
1931         case ReelType::BY_LENGTH:
1932         {
1933                 DCPTime current;
1934                 /* Integer-divide reel length by the size of one frame to give the number of frames per reel,
1935                  * making sure we don't go less than 1s long.
1936                  */
1937                 Frame const reel_in_frames = max(_reel_length / ((video_bit_rate() / video_frame_rate()) / 8), static_cast<Frame>(video_frame_rate()));
1938                 while (current < len) {
1939                         DCPTime end = min (len, current + DCPTime::from_frames (reel_in_frames, video_frame_rate ()));
1940                         periods.emplace_back(current, end);
1941                         current = end;
1942                 }
1943                 break;
1944         }
1945         case ReelType::CUSTOM:
1946         {
1947                 DCPTimePeriod current;
1948                 for (auto boundary: _custom_reel_boundaries) {
1949                         current.to = boundary;
1950                         periods.push_back(current);
1951                         current.from = boundary;
1952                 }
1953                 current.to = len;
1954                 periods.push_back(current);
1955                 break;
1956         }
1957         }
1958
1959         return periods;
1960 }
1961
1962
1963 /** @param period A period within the DCP
1964  *  @return Name of the content which most contributes to the given period.
1965  */
1966 string
1967 Film::content_summary (DCPTimePeriod period) const
1968 {
1969         return _playlist->content_summary (shared_from_this(), period);
1970 }
1971
1972 void
1973 Film::use_template (string name)
1974 {
1975         _template_film.reset (new Film (optional<boost::filesystem::path>()));
1976         _template_film->read_metadata (Config::instance()->template_read_path(name));
1977         _use_isdcf_name = _template_film->_use_isdcf_name;
1978         _dcp_content_type = _template_film->_dcp_content_type;
1979         _container = _template_film->_container;
1980         _resolution = _template_film->_resolution;
1981         _video_bit_rate = _template_film->_video_bit_rate;
1982         _video_frame_rate = _template_film->_video_frame_rate;
1983         _encrypted = _template_film->_encrypted;
1984         _audio_channels = _template_film->_audio_channels;
1985         _sequence = _template_film->_sequence;
1986         _three_d = _template_film->_three_d;
1987         _interop = _template_film->_interop;
1988         _audio_processor = _template_film->_audio_processor;
1989         _reel_type = _template_film->_reel_type;
1990         _reel_length = _template_film->_reel_length;
1991 }
1992
1993 pair<double, double>
1994 Film::speed_up_range (int dcp_frame_rate) const
1995 {
1996         return _playlist->speed_up_range (dcp_frame_rate);
1997 }
1998
1999 void
2000 Film::copy_from (shared_ptr<const Film> film)
2001 {
2002         read_metadata (film->file (metadata_file));
2003 }
2004
2005 bool
2006 Film::references_dcp_video () const
2007 {
2008         for (auto i: _playlist->content()) {
2009                 auto d = dynamic_pointer_cast<DCPContent>(i);
2010                 if (d && d->reference_video()) {
2011                         return true;
2012                 }
2013         }
2014
2015         return false;
2016 }
2017
2018 bool
2019 Film::references_dcp_audio () const
2020 {
2021         for (auto i: _playlist->content()) {
2022                 auto d = dynamic_pointer_cast<DCPContent>(i);
2023                 if (d && d->reference_audio()) {
2024                         return true;
2025                 }
2026         }
2027
2028         return false;
2029 }
2030
2031
2032 bool
2033 Film::contains_atmos_content () const
2034 {
2035         auto const content = _playlist->content();
2036         return std::find_if(content.begin(), content.end(), [](shared_ptr<const Content> content) {
2037                 return static_cast<bool>(content->atmos);
2038         }) != content.end();
2039 }
2040
2041
2042 list<DCPTextTrack>
2043 Film::closed_caption_tracks () const
2044 {
2045         list<DCPTextTrack> tt;
2046         for (auto i: content()) {
2047                 for (auto text: i->text) {
2048                         /* XXX: Empty DCPTextTrack ends up being a magic value here - the "unknown" or "not specified" track */
2049                         auto dtt = text->dcp_track().get_value_or(DCPTextTrack());
2050                         if (text->type() == TextType::CLOSED_CAPTION && find(tt.begin(), tt.end(), dtt) == tt.end()) {
2051                                 tt.push_back (dtt);
2052                         }
2053                 }
2054         }
2055
2056         return tt;
2057 }
2058
2059 void
2060 Film::set_marker (dcp::Marker type, DCPTime time)
2061 {
2062         FilmChangeSignaller ch(this, FilmProperty::MARKERS);
2063         _markers[type] = time;
2064 }
2065
2066
2067 void
2068 Film::unset_marker (dcp::Marker type)
2069 {
2070         FilmChangeSignaller ch(this, FilmProperty::MARKERS);
2071         _markers.erase (type);
2072 }
2073
2074
2075 void
2076 Film::clear_markers ()
2077 {
2078         FilmChangeSignaller ch(this, FilmProperty::MARKERS);
2079         _markers.clear ();
2080 }
2081
2082
2083 void
2084 Film::set_ratings (vector<dcp::Rating> r)
2085 {
2086         FilmChangeSignaller ch(this, FilmProperty::RATINGS);
2087         _ratings = r;
2088 }
2089
2090 void
2091 Film::set_content_versions (vector<string> v)
2092 {
2093         FilmChangeSignaller ch(this, FilmProperty::CONTENT_VERSIONS);
2094         _content_versions = v;
2095 }
2096
2097
2098 void
2099 Film::set_name_language (dcp::LanguageTag lang)
2100 {
2101         FilmChangeSignaller ch(this, FilmProperty::NAME_LANGUAGE);
2102         _name_language = lang;
2103 }
2104
2105
2106 void
2107 Film::set_release_territory (optional<dcp::LanguageTag::RegionSubtag> region)
2108 {
2109         FilmChangeSignaller ch(this, FilmProperty::RELEASE_TERRITORY);
2110         _release_territory = region;
2111 }
2112
2113
2114 void
2115 Film::set_status (dcp::Status s)
2116 {
2117         FilmChangeSignaller ch(this, FilmProperty::STATUS);
2118         _status = s;
2119 }
2120
2121
2122 void
2123 Film::set_version_number (int v)
2124 {
2125         FilmChangeSignaller ch(this, FilmProperty::VERSION_NUMBER);
2126         _version_number = v;
2127 }
2128
2129
2130 void
2131 Film::set_chain (optional<string> c)
2132 {
2133         FilmChangeSignaller ch(this, FilmProperty::CHAIN);
2134         _chain = c;
2135 }
2136
2137
2138 void
2139 Film::set_distributor (optional<string> d)
2140 {
2141         FilmChangeSignaller ch(this, FilmProperty::DISTRIBUTOR);
2142         _distributor = d;
2143 }
2144
2145
2146 void
2147 Film::set_luminance (optional<dcp::Luminance> l)
2148 {
2149         FilmChangeSignaller ch(this, FilmProperty::LUMINANCE);
2150         _luminance = l;
2151 }
2152
2153
2154 void
2155 Film::set_facility (optional<string> f)
2156 {
2157         FilmChangeSignaller ch(this, FilmProperty::FACILITY);
2158         _facility = f;
2159 }
2160
2161
2162 void
2163 Film::set_studio (optional<string> s)
2164 {
2165         FilmChangeSignaller ch(this, FilmProperty::STUDIO);
2166         _studio = s;
2167 }
2168
2169
2170 optional<DCPTime>
2171 Film::marker (dcp::Marker type) const
2172 {
2173         auto i = _markers.find (type);
2174         if (i == _markers.end()) {
2175                 return {};
2176         }
2177         return i->second;
2178 }
2179
2180 shared_ptr<InfoFileHandle>
2181 Film::info_file_handle (DCPTimePeriod period, bool read) const
2182 {
2183         return std::make_shared<InfoFileHandle>(_info_file_mutex, info_file(period), read);
2184 }
2185
2186 InfoFileHandle::InfoFileHandle (boost::mutex& mutex, boost::filesystem::path path, bool read)
2187         : _lock (mutex)
2188         , _file(path, read ? "rb" : (dcp::filesystem::exists(path) ? "r+b" : "wb"))
2189 {
2190         if (!_file) {
2191                 throw OpenFileError(path, errno, read ? OpenFileError::READ : (dcp::filesystem::exists(path) ? OpenFileError::READ_WRITE : OpenFileError::WRITE));
2192         }
2193 }
2194
2195
2196 /** Add FFOC and LFOC markers to a list if they are not already there */
2197 void
2198 Film::add_ffoc_lfoc (Markers& markers) const
2199 {
2200         if (markers.find(dcp::Marker::FFOC) == markers.end()) {
2201                 markers[dcp::Marker::FFOC] = dcpomatic::DCPTime::from_frames(1, video_frame_rate());
2202         }
2203
2204         if (markers.find(dcp::Marker::LFOC) == markers.end()) {
2205                 markers[dcp::Marker::LFOC] = length() - DCPTime::from_frames(1, video_frame_rate());
2206         }
2207 }
2208
2209
2210 void
2211 Film::set_temp_version (bool t)
2212 {
2213         FilmChangeSignaller ch(this, FilmProperty::TEMP_VERSION);
2214         _temp_version = t;
2215 }
2216
2217
2218 void
2219 Film::set_pre_release (bool p)
2220 {
2221         FilmChangeSignaller ch(this, FilmProperty::PRE_RELEASE);
2222         _pre_release = p;
2223 }
2224
2225
2226 void
2227 Film::set_red_band (bool r)
2228 {
2229         FilmChangeSignaller ch(this, FilmProperty::RED_BAND);
2230         _red_band = r;
2231 }
2232
2233
2234 void
2235 Film::set_two_d_version_of_three_d (bool t)
2236 {
2237         FilmChangeSignaller ch(this, FilmProperty::TWO_D_VERSION_OF_THREE_D);
2238         _two_d_version_of_three_d = t;
2239 }
2240
2241
2242 void
2243 Film::set_audio_language (optional<dcp::LanguageTag> language)
2244 {
2245         FilmChangeSignaller ch(this, FilmProperty::AUDIO_LANGUAGE);
2246         _audio_language = language;
2247 }
2248
2249
2250 void
2251 Film::set_audio_frame_rate (int rate)
2252 {
2253         FilmChangeSignaller ch(this, FilmProperty::AUDIO_FRAME_RATE);
2254         _audio_frame_rate = rate;
2255 }
2256
2257
2258 bool
2259 Film::has_sign_language_video_channel () const
2260 {
2261         return _audio_channels >= static_cast<int>(dcp::Channel::SIGN_LANGUAGE);
2262 }
2263
2264
2265 void
2266 Film::set_sign_language_video_language (optional<dcp::LanguageTag> lang)
2267 {
2268         FilmChangeSignaller ch(this, FilmProperty::SIGN_LANGUAGE_VIDEO_LANGUAGE);
2269         _sign_language_video_language = lang;
2270 }
2271
2272
2273 void
2274 Film::set_dirty (bool dirty)
2275 {
2276         auto const changed = dirty != _dirty;
2277         _dirty = dirty;
2278         if (changed) {
2279                 emit (boost::bind(boost::ref(DirtyChange), _dirty));
2280         }
2281 }
2282
2283
2284 /** @return true if the metadata was (probably) last written by a version earlier
2285  *  than the given one; false if it definitely was not.
2286  */
2287 bool
2288 Film::last_written_by_earlier_than(int major, int minor, int micro) const
2289 {
2290         if (!_last_written_by) {
2291                 return true;
2292         }
2293
2294         vector<string> parts;
2295         boost::split(parts, *_last_written_by, boost::is_any_of("."));
2296
2297         if (parts.size() != 3) {
2298                 /* Not sure what's going on, so let's say it was written by an old version */
2299                 return true;
2300         }
2301
2302         if (boost::ends_with(parts[2], "pre")) {
2303                 parts[2] = parts[2].substr(0, parts[2].length() - 3);
2304         }
2305
2306         int our_major = dcp::raw_convert<int>(parts[0]);
2307         int our_minor = dcp::raw_convert<int>(parts[1]);
2308         int our_micro = dcp::raw_convert<int>(parts[2]);
2309
2310         if (our_major != major) {
2311                 return our_major < major;
2312         }
2313
2314         if (our_minor != minor) {
2315                 return our_minor < minor;
2316         }
2317
2318         return our_micro < micro;
2319 }
2320
2321
2322 void
2323 Film::set_territory_type(TerritoryType type)
2324 {
2325         FilmChangeSignaller ch(this, FilmProperty::TERRITORY_TYPE);
2326         _territory_type = type;
2327 }
2328
2329
2330 void
2331 Film::set_ui_state(string key, string value)
2332 {
2333         _ui_state[key] = value;
2334         write_ui_state();
2335 }
2336
2337
2338 boost::optional<std::string>
2339 Film::ui_state(string key) const
2340 {
2341         auto iter = _ui_state.find(key);
2342         if (iter == _ui_state.end()) {
2343                 return {};
2344         }
2345
2346         return iter->second;
2347 }
2348
2349
2350 void
2351 Film::write_ui_state() const
2352 {
2353         auto doc = make_shared<xmlpp::Document>();
2354         auto root = doc->create_root_node("UI");
2355
2356         for (auto state: _ui_state) {
2357                 cxml::add_text_child(root, state.first, state.second);
2358         }
2359
2360         try {
2361                 doc->write_to_file_formatted(dcp::filesystem::fix_long_path(file(ui_state_file)).string());
2362         } catch (...) {}
2363 }
2364
2365
2366 void
2367 Film::read_ui_state()
2368 {
2369         try {
2370                 cxml::Document xml("UI");
2371                 xml.read_file(dcp::filesystem::fix_long_path(file(ui_state_file)));
2372                 for (auto node: xml.node_children()) {
2373                         if (!node->is_text()) {
2374                                 _ui_state[node->name()] = node->content();
2375                         }
2376                 }
2377         } catch (...) {}
2378 }