Reasonably straightforward stuff; main things are adding
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/film.cc
21  *  @brief A representation of some audio and video content, and details of
22  *  how they should be presented in a DCP.
23  */
24
25 #include "film.h"
26 #include "job.h"
27 #include "util.h"
28 #include "job_manager.h"
29 #include "transcode_job.h"
30 #include "upload_job.h"
31 #include "null_log.h"
32 #include "file_log.h"
33 #include "exceptions.h"
34 #include "examine_content_job.h"
35 #include "config.h"
36 #include "playlist.h"
37 #include "dcp_content_type.h"
38 #include "ratio.h"
39 #include "cross.h"
40 #include "safe_stringstream.h"
41 #include "environment_info.h"
42 #include "raw_convert.h"
43 #include "audio_processor.h"
44 #include "md5_digester.h"
45 #include "compose.hpp"
46 #include "screen.h"
47 #include "audio_content.h"
48 #include "video_content.h"
49 #include "subtitle_content.h"
50 #include "ffmpeg_content.h"
51 #include "dcp_content.h"
52 #include "screen_kdm.h"
53 #include "cinema.h"
54 #include <libcxml/cxml.h>
55 #include <dcp/cpl.h>
56 #include <dcp/certificate_chain.h>
57 #include <dcp/util.h>
58 #include <dcp/local_time.h>
59 #include <dcp/decrypted_kdm.h>
60 #include <libxml++/libxml++.h>
61 #include <boost/filesystem.hpp>
62 #include <boost/algorithm/string.hpp>
63 #include <boost/foreach.hpp>
64 #include <unistd.h>
65 #include <stdexcept>
66 #include <iostream>
67 #include <algorithm>
68 #include <cstdlib>
69 #include <iomanip>
70 #include <set>
71
72 #include "i18n.h"
73
74 using std::string;
75 using std::pair;
76 using std::vector;
77 using std::setfill;
78 using std::min;
79 using std::max;
80 using std::make_pair;
81 using std::cout;
82 using std::list;
83 using std::set;
84 using std::runtime_error;
85 using boost::shared_ptr;
86 using boost::weak_ptr;
87 using boost::dynamic_pointer_cast;
88 using boost::optional;
89 using boost::is_any_of;
90
91 #define LOG_GENERAL(...) log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
92 #define LOG_GENERAL_NC(...) log()->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
93
94 /* 5 -> 6
95  * AudioMapping XML changed.
96  * 6 -> 7
97  * Subtitle offset changed to subtitle y offset, and subtitle x offset added.
98  * 7 -> 8
99  * Use <Scale> tag in <VideoContent> rather than <Ratio>.
100  * 8 -> 9
101  * DCI -> ISDCF
102  * 9 -> 10
103  * Subtitle X and Y scale.
104  *
105  * Bumped to 32 for 2.0 branch; some times are expressed in Times rather
106  * than frames now.
107  *
108  * 32 -> 33
109  * Changed <Period> to <Subtitle> in FFmpegSubtitleStream
110  */
111 int const Film::current_state_version = 33;
112
113 /** Construct a Film object in a given directory.
114  *
115  *  @param dir Film directory.
116  */
117
118 Film::Film (boost::filesystem::path dir, bool log)
119         : _playlist (new Playlist)
120         , _use_isdcf_name (true)
121         , _dcp_content_type (Config::instance()->default_dcp_content_type ())
122         , _container (Config::instance()->default_container ())
123         , _resolution (RESOLUTION_2K)
124         , _signed (true)
125         , _encrypted (false)
126         , _j2k_bandwidth (Config::instance()->default_j2k_bandwidth ())
127         , _isdcf_metadata (Config::instance()->default_isdcf_metadata ())
128         , _video_frame_rate (24)
129         , _audio_channels (6)
130         , _three_d (false)
131         , _sequence (true)
132         , _interop (Config::instance()->default_interop ())
133         , _audio_processor (0)
134         , _reel_type (REELTYPE_SINGLE)
135         , _reel_length (2000000000)
136         , _upload_after_make_dcp (false)
137         , _state_version (current_state_version)
138         , _dirty (false)
139 {
140         set_isdcf_date_today ();
141
142         _playlist_changed_connection = _playlist->Changed.connect (bind (&Film::playlist_changed, this));
143         _playlist_order_changed_connection = _playlist->OrderChanged.connect (bind (&Film::playlist_order_changed, this));
144         _playlist_content_changed_connection = _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2, _3));
145
146         /* Make state.directory a complete path without ..s (where possible)
147            (Code swiped from Adam Bowen on stackoverflow)
148            XXX: couldn't/shouldn't this just be boost::filesystem::canonical?
149         */
150
151         boost::filesystem::path p (boost::filesystem::system_complete (dir));
152         boost::filesystem::path result;
153         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
154                 if (*i == "..") {
155                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
156                                 result /= *i;
157                         } else {
158                                 result = result.parent_path ();
159                         }
160                 } else if (*i != ".") {
161                         result /= *i;
162                 }
163         }
164
165         set_directory (result.make_preferred ());
166         if (log) {
167                 _log.reset (new FileLog (file ("log")));
168         } else {
169                 _log.reset (new NullLog);
170         }
171
172         _playlist->set_sequence (_sequence);
173 }
174
175 Film::~Film ()
176 {
177         BOOST_FOREACH (boost::signals2::connection& i, _job_connections) {
178                 i.disconnect ();
179         }
180
181         BOOST_FOREACH (boost::signals2::connection& i, _audio_analysis_connections) {
182                 i.disconnect ();
183         }
184 }
185
186 string
187 Film::video_identifier () const
188 {
189         DCPOMATIC_ASSERT (container ());
190
191         SafeStringStream s;
192         s.imbue (std::locale::classic ());
193
194         s << container()->id()
195           << "_" << resolution_to_string (_resolution)
196           << "_" << _playlist->video_identifier()
197           << "_" << _video_frame_rate
198           << "_" << j2k_bandwidth();
199
200         if (encrypted ()) {
201                 s << "_E";
202         } else {
203                 s << "_P";
204         }
205
206         if (_interop) {
207                 s << "_I";
208         } else {
209                 s << "_S";
210         }
211
212         if (_three_d) {
213                 s << "_3D";
214         }
215
216         return s.str ();
217 }
218
219 /** @return The file to write video frame info to */
220 boost::filesystem::path
221 Film::info_file (DCPTimePeriod period) const
222 {
223         boost::filesystem::path p;
224         p /= "info";
225         p /= video_identifier () + "_" + raw_convert<string> (period.from.get()) + "_" + raw_convert<string> (period.to.get());
226         return file (p);
227 }
228
229 boost::filesystem::path
230 Film::internal_video_asset_dir () const
231 {
232         return dir ("video");
233 }
234
235 boost::filesystem::path
236 Film::internal_video_asset_filename (DCPTimePeriod p) const
237 {
238         return video_identifier() + "_" + raw_convert<string> (p.from.get()) + "_" + raw_convert<string> (p.to.get()) + ".mxf";
239 }
240
241 boost::filesystem::path
242 Film::audio_analysis_path (shared_ptr<const Playlist> playlist) const
243 {
244         boost::filesystem::path p = dir ("analysis");
245
246         MD5Digester digester;
247         BOOST_FOREACH (shared_ptr<Content> i, playlist->content ()) {
248                 shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> (i);
249                 if (!ac) {
250                         continue;
251                 }
252
253                 digester.add (ac->digest ());
254                 digester.add (ac->audio_mapping().digest ());
255                 if (playlist->content().size() != 1) {
256                         /* Analyses should be considered equal regardless of gain
257                            if they were made from just one piece of content.  This
258                            is because we can fake any gain change in a single-content
259                            analysis at the plotting stage rather than having to
260                            recompute it.
261                         */
262                         digester.add (ac->audio_gain ());
263                 }
264         }
265
266         if (audio_processor ()) {
267                 digester.add (audio_processor()->id ());
268         }
269
270         p /= digester.get ();
271         return p;
272 }
273
274 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
275 void
276 Film::make_dcp ()
277 {
278         if (dcp_name().find ("/") != string::npos) {
279                 throw BadSettingError (_("name"), _("cannot contain slashes"));
280         }
281
282         set_isdcf_date_today ();
283
284         BOOST_FOREACH (string i, environment_info ()) {
285                 LOG_GENERAL_NC (i);
286         }
287
288         BOOST_FOREACH (shared_ptr<const Content> i, content ()) {
289                 LOG_GENERAL ("Content: %1", i->technical_summary());
290         }
291         LOG_GENERAL ("DCP video rate %1 fps", video_frame_rate());
292         if (Config::instance()->only_servers_encode ()) {
293                 LOG_GENERAL_NC ("0 threads: ONLY SERVERS SET TO ENCODE");
294         } else {
295                 LOG_GENERAL ("%1 threads", Config::instance()->num_local_encoding_threads());
296         }
297         LOG_GENERAL ("J2K bandwidth %1", j2k_bandwidth());
298
299         if (container() == 0) {
300                 throw MissingSettingError (_("container"));
301         }
302
303         if (content().empty()) {
304                 throw runtime_error (_("You must add some content to the DCP before creating it"));
305         }
306
307         if (dcp_content_type() == 0) {
308                 throw MissingSettingError (_("content type"));
309         }
310
311         if (name().empty()) {
312                 throw MissingSettingError (_("name"));
313         }
314
315         JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
316 }
317
318 /** Start a job to send our DCP to the configured TMS */
319 void
320 Film::send_dcp_to_tms ()
321 {
322         shared_ptr<Job> j (new UploadJob (shared_from_this()));
323         JobManager::instance()->add (j);
324 }
325
326 shared_ptr<xmlpp::Document>
327 Film::metadata () const
328 {
329         shared_ptr<xmlpp::Document> doc (new xmlpp::Document);
330         xmlpp::Element* root = doc->create_root_node ("Metadata");
331
332         root->add_child("Version")->add_child_text (raw_convert<string> (current_state_version));
333         root->add_child("Name")->add_child_text (_name);
334         root->add_child("UseISDCFName")->add_child_text (_use_isdcf_name ? "1" : "0");
335
336         if (_dcp_content_type) {
337                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->isdcf_name ());
338         }
339
340         if (_container) {
341                 root->add_child("Container")->add_child_text (_container->id ());
342         }
343
344         root->add_child("Resolution")->add_child_text (resolution_to_string (_resolution));
345         root->add_child("J2KBandwidth")->add_child_text (raw_convert<string> (_j2k_bandwidth));
346         _isdcf_metadata.as_xml (root->add_child ("ISDCFMetadata"));
347         root->add_child("VideoFrameRate")->add_child_text (raw_convert<string> (_video_frame_rate));
348         root->add_child("ISDCFDate")->add_child_text (boost::gregorian::to_iso_string (_isdcf_date));
349         root->add_child("AudioChannels")->add_child_text (raw_convert<string> (_audio_channels));
350         root->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
351         root->add_child("Sequence")->add_child_text (_sequence ? "1" : "0");
352         root->add_child("Interop")->add_child_text (_interop ? "1" : "0");
353         root->add_child("Signed")->add_child_text (_signed ? "1" : "0");
354         root->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
355         root->add_child("Key")->add_child_text (_key.hex ());
356         if (_audio_processor) {
357                 root->add_child("AudioProcessor")->add_child_text (_audio_processor->id ());
358         }
359         root->add_child("ReelType")->add_child_text (raw_convert<string> (_reel_type));
360         root->add_child("ReelLength")->add_child_text (raw_convert<string> (_reel_length));
361         root->add_child("UploadAfterMakeDCP")->add_child_text (_upload_after_make_dcp ? "1" : "0");
362         _playlist->as_xml (root->add_child ("Playlist"));
363
364         return doc;
365 }
366
367 /** Write state to our `metadata' file */
368 void
369 Film::write_metadata () const
370 {
371         boost::filesystem::create_directories (directory ());
372         shared_ptr<xmlpp::Document> doc = metadata ();
373         doc->write_to_file_formatted (file("metadata.xml").string ());
374         _dirty = false;
375 }
376
377 /** Read state from our metadata file.
378  *  @return Notes about things that the user should know about, or empty.
379  */
380 list<string>
381 Film::read_metadata ()
382 {
383         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
384                 throw runtime_error (_("This film was created with an older version of DCP-o-matic, and unfortunately it cannot be loaded into this version.  You will need to create a new Film, re-add your content and set it up again.  Sorry!"));
385         }
386
387         cxml::Document f ("Metadata");
388         f.read_file (file ("metadata.xml"));
389
390         _state_version = f.number_child<int> ("Version");
391         if (_state_version > current_state_version) {
392                 throw runtime_error (_("This film was created with a newer version of DCP-o-matic, and it cannot be loaded into this version.  Sorry!"));
393         }
394
395         _name = f.string_child ("Name");
396         if (_state_version >= 9) {
397                 _use_isdcf_name = f.bool_child ("UseISDCFName");
398                 _isdcf_metadata = ISDCFMetadata (f.node_child ("ISDCFMetadata"));
399                 _isdcf_date = boost::gregorian::from_undelimited_string (f.string_child ("ISDCFDate"));
400         } else {
401                 _use_isdcf_name = f.bool_child ("UseDCIName");
402                 _isdcf_metadata = ISDCFMetadata (f.node_child ("DCIMetadata"));
403                 _isdcf_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
404         }
405
406         {
407                 optional<string> c = f.optional_string_child ("DCPContentType");
408                 if (c) {
409                         _dcp_content_type = DCPContentType::from_isdcf_name (c.get ());
410                 }
411         }
412
413         {
414                 optional<string> c = f.optional_string_child ("Container");
415                 if (c) {
416                         _container = Ratio::from_id (c.get ());
417                 }
418         }
419
420         _resolution = string_to_resolution (f.string_child ("Resolution"));
421         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
422         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
423         _signed = f.optional_bool_child("Signed").get_value_or (true);
424         _encrypted = f.bool_child ("Encrypted");
425         _audio_channels = f.number_child<int> ("AudioChannels");
426         /* We used to allow odd numbers (and zero) channels, but it's just not worth
427            the pain.
428         */
429         if (_audio_channels == 0) {
430                 _audio_channels = 2;
431         } else if ((_audio_channels % 2) == 1) {
432                 _audio_channels++;
433         }
434
435         if (f.optional_bool_child("SequenceVideo")) {
436                 _sequence = f.bool_child("SequenceVideo");
437         } else {
438                 _sequence = f.bool_child("Sequence");
439         }
440
441         _three_d = f.bool_child ("ThreeD");
442         _interop = f.bool_child ("Interop");
443         _key = dcp::Key (f.string_child ("Key"));
444
445         if (f.optional_string_child ("AudioProcessor")) {
446                 _audio_processor = AudioProcessor::from_id (f.string_child ("AudioProcessor"));
447         } else {
448                 _audio_processor = 0;
449         }
450
451         _reel_type = static_cast<ReelType> (f.optional_number_child<int>("ReelType").get_value_or (static_cast<int>(REELTYPE_SINGLE)));
452         _reel_length = f.optional_number_child<int64_t>("ReelLength").get_value_or (2000000000);
453         _upload_after_make_dcp = f.optional_bool_child("UploadAfterMakeDCP").get_value_or (false);
454
455         list<string> notes;
456         /* This method is the only one that can return notes (so far) */
457         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"), _state_version, notes);
458
459         /* Write backtraces to this film's directory, until another film is loaded */
460         set_backtrace_file (file ("backtrace.txt"));
461
462         _dirty = false;
463         return notes;
464 }
465
466 /** Given a directory name, return its full path within the Film's directory.
467  *  The directory (and its parents) will be created if they do not exist.
468  */
469 boost::filesystem::path
470 Film::dir (boost::filesystem::path d) const
471 {
472         boost::filesystem::path p;
473         p /= _directory;
474         p /= d;
475
476         boost::filesystem::create_directories (p);
477
478         return p;
479 }
480
481 /** Given a file or directory name, return its full path within the Film's directory.
482  *  Any required parent directories will be created.
483  */
484 boost::filesystem::path
485 Film::file (boost::filesystem::path f) const
486 {
487         boost::filesystem::path p;
488         p /= _directory;
489         p /= f;
490
491         boost::filesystem::create_directories (p.parent_path ());
492
493         return p;
494 }
495
496 list<int>
497 Film::mapped_audio_channels () const
498 {
499         list<int> mapped;
500
501         if (audio_processor ()) {
502                 /* Processors are mapped 1:1 to DCP outputs so we can work out mappings from there */
503                 for (int i = 0; i < audio_processor()->out_channels(); ++i) {
504                         mapped.push_back (i);
505                 }
506         } else {
507                 BOOST_FOREACH (shared_ptr<Content> i, content ()) {
508                         shared_ptr<const AudioContent> ac = dynamic_pointer_cast<const AudioContent> (i);
509                         if (ac) {
510                                 list<int> c = ac->audio_mapping().mapped_output_channels ();
511                                 copy (c.begin(), c.end(), back_inserter (mapped));
512                         }
513                 }
514
515                 mapped.sort ();
516                 mapped.unique ();
517         }
518
519         return mapped;
520 }
521
522 /** @return a ISDCF-compliant name for a DCP of this film */
523 string
524 Film::isdcf_name (bool if_created_now) const
525 {
526         SafeStringStream d;
527
528         string raw_name = name ();
529
530         /* Split the raw name up into words */
531         vector<string> words;
532         split (words, raw_name, is_any_of (" _-"));
533
534         string fixed_name;
535
536         /* Add each word to fixed_name */
537         for (vector<string>::const_iterator i = words.begin(); i != words.end(); ++i) {
538                 string w = *i;
539
540                 /* First letter is always capitalised */
541                 w[0] = toupper (w[0]);
542
543                 /* Count caps in w */
544                 size_t caps = 0;
545                 for (size_t i = 0; i < w.size(); ++i) {
546                         if (isupper (w[i])) {
547                                 ++caps;
548                         }
549                 }
550
551                 /* If w is all caps make the rest of it lower case, otherwise
552                    leave it alone.
553                 */
554                 if (caps == w.size ()) {
555                         for (size_t i = 1; i < w.size(); ++i) {
556                                 w[i] = tolower (w[i]);
557                         }
558                 }
559
560                 for (size_t i = 0; i < w.size(); ++i) {
561                         fixed_name += w[i];
562                 }
563         }
564
565         if (fixed_name.length() > 14) {
566                 fixed_name = fixed_name.substr (0, 14);
567         }
568
569         d << fixed_name;
570
571         if (dcp_content_type()) {
572                 d << "_" << dcp_content_type()->isdcf_name();
573                 d << "-" << isdcf_metadata().content_version;
574         }
575
576         ISDCFMetadata const dm = isdcf_metadata ();
577
578         if (dm.temp_version) {
579                 d << "-Temp";
580         }
581
582         if (dm.pre_release) {
583                 d << "-Pre";
584         }
585
586         if (dm.red_band) {
587                 d << "-RedBand";
588         }
589
590         if (!dm.chain.empty ()) {
591                 d << "-" << dm.chain;
592         }
593
594         if (three_d ()) {
595                 d << "-3D";
596         }
597
598         if (dm.two_d_version_of_three_d) {
599                 d << "-2D";
600         }
601
602         if (!dm.mastered_luminance.empty ()) {
603                 d << "-" << dm.mastered_luminance;
604         }
605
606         if (video_frame_rate() != 24) {
607                 d << "-" << video_frame_rate();
608         }
609
610         if (container()) {
611                 d << "_" << container()->isdcf_name();
612         }
613
614         /* XXX: this uses the first bit of content only */
615
616         /* The standard says we don't do this for trailers, for some strange reason */
617         if (dcp_content_type() && dcp_content_type()->libdcp_kind() != dcp::TRAILER) {
618                 Ratio const * content_ratio = 0;
619                 BOOST_FOREACH (shared_ptr<Content> i, content ()) {
620                         if (i->video) {
621                                 /* Here's the first piece of video content */
622                                 if (i->video->scale().ratio ()) {
623                                         content_ratio = i->video->scale().ratio ();
624                                 } else {
625                                         content_ratio = Ratio::from_ratio (i->video->video_size().ratio ());
626                                 }
627                                 break;
628                         }
629                 }
630
631                 if (content_ratio && content_ratio != container()) {
632                         d << "-" << content_ratio->isdcf_name();
633                 }
634         }
635
636         if (!dm.audio_language.empty ()) {
637                 d << "_" << dm.audio_language;
638                 if (!dm.subtitle_language.empty()) {
639
640                         bool burnt_in = true;
641                         BOOST_FOREACH (shared_ptr<Content> i, content ()) {
642                                 shared_ptr<SubtitleContent> sc = dynamic_pointer_cast<SubtitleContent> (i);
643                                 if (!sc) {
644                                         continue;
645                                 }
646
647                                 if (sc->use_subtitles() && !sc->burn_subtitles()) {
648                                         burnt_in = false;
649                                 }
650                         }
651
652                         string language = dm.subtitle_language;
653                         if (burnt_in && language != "XX") {
654                                 transform (language.begin(), language.end(), language.begin(), ::tolower);
655                         } else {
656                                 transform (language.begin(), language.end(), language.begin(), ::toupper);
657                         }
658
659                         d << "-" << language;
660                 } else {
661                         d << "-XX";
662                 }
663         }
664
665         if (!dm.territory.empty ()) {
666                 d << "_" << dm.territory;
667                 if (dm.rating.empty ()) {
668                         d << "-NR";
669                 } else {
670                         d << "-" << dm.rating;
671                 }
672         }
673
674         /* Count mapped audio channels */
675
676         int non_lfe = 0;
677         int lfe = 0;
678
679         BOOST_FOREACH (int i, mapped_audio_channels ()) {
680                 if (i >= audio_channels()) {
681                         /* This channel is mapped but is not included in the DCP */
682                         continue;
683                 }
684
685                 if (static_cast<dcp::Channel> (i) == dcp::LFE) {
686                         ++lfe;
687                 } else {
688                         ++non_lfe;
689                 }
690         }
691
692         if (non_lfe) {
693                 d << "_" << non_lfe << lfe;
694         }
695
696         /* XXX: HI/VI */
697
698         d << "_" << resolution_to_string (_resolution);
699
700         if (!dm.studio.empty ()) {
701                 d << "_" << dm.studio;
702         }
703
704         if (if_created_now) {
705                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
706         } else {
707                 d << "_" << boost::gregorian::to_iso_string (_isdcf_date);
708         }
709
710         if (!dm.facility.empty ()) {
711                 d << "_" << dm.facility;
712         }
713
714         if (_interop) {
715                 d << "_IOP";
716         } else {
717                 d << "_SMPTE";
718         }
719
720         if (three_d ()) {
721                 d << "-3D";
722         }
723
724         bool vf = false;
725         BOOST_FOREACH (shared_ptr<Content> i, content ()) {
726                 shared_ptr<const DCPContent> dc = dynamic_pointer_cast<const DCPContent> (i);
727                 if (dc && (dc->reference_video() || dc->reference_audio() || dc->reference_subtitle())) {
728                         vf = true;
729                 }
730         }
731
732         if (vf) {
733                 d << "_VF";
734         } else {
735                 d << "_OV";
736         }
737
738         return d.str ();
739 }
740
741 /** @return name to give the DCP */
742 string
743 Film::dcp_name (bool if_created_now) const
744 {
745         string unfiltered;
746         if (use_isdcf_name()) {
747                 unfiltered = isdcf_name (if_created_now);
748         } else {
749                 unfiltered = name ();
750         }
751
752         /* Filter out `bad' characters which cause problems with some systems.
753            There's no apparent list of what really is allowed, so this is a guess.
754         */
755
756         string filtered;
757         string const allowed = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_";
758         for (size_t i = 0; i < unfiltered.size(); ++i) {
759                 if (allowed.find (unfiltered[i]) != string::npos) {
760                         filtered += unfiltered[i];
761                 }
762         }
763
764         return filtered;
765 }
766
767 void
768 Film::set_directory (boost::filesystem::path d)
769 {
770         _directory = d;
771         _dirty = true;
772 }
773
774 void
775 Film::set_name (string n)
776 {
777         _name = n;
778         signal_changed (NAME);
779 }
780
781 void
782 Film::set_use_isdcf_name (bool u)
783 {
784         _use_isdcf_name = u;
785         signal_changed (USE_ISDCF_NAME);
786 }
787
788 void
789 Film::set_dcp_content_type (DCPContentType const * t)
790 {
791         _dcp_content_type = t;
792         signal_changed (DCP_CONTENT_TYPE);
793 }
794
795 void
796 Film::set_container (Ratio const * c)
797 {
798         _container = c;
799         signal_changed (CONTAINER);
800 }
801
802 void
803 Film::set_resolution (Resolution r)
804 {
805         _resolution = r;
806         signal_changed (RESOLUTION);
807 }
808
809 void
810 Film::set_j2k_bandwidth (int b)
811 {
812         _j2k_bandwidth = b;
813         signal_changed (J2K_BANDWIDTH);
814 }
815
816 void
817 Film::set_isdcf_metadata (ISDCFMetadata m)
818 {
819         _isdcf_metadata = m;
820         signal_changed (ISDCF_METADATA);
821 }
822
823 void
824 Film::set_video_frame_rate (int f)
825 {
826         _video_frame_rate = f;
827         signal_changed (VIDEO_FRAME_RATE);
828 }
829
830 void
831 Film::set_audio_channels (int c)
832 {
833         _audio_channels = c;
834         signal_changed (AUDIO_CHANNELS);
835 }
836
837 void
838 Film::set_three_d (bool t)
839 {
840         _three_d = t;
841         signal_changed (THREE_D);
842
843         if (_three_d && _isdcf_metadata.two_d_version_of_three_d) {
844                 _isdcf_metadata.two_d_version_of_three_d = false;
845                 signal_changed (ISDCF_METADATA);
846         }
847 }
848
849 void
850 Film::set_interop (bool i)
851 {
852         _interop = i;
853         signal_changed (INTEROP);
854 }
855
856 void
857 Film::set_audio_processor (AudioProcessor const * processor)
858 {
859         _audio_processor = processor;
860         signal_changed (AUDIO_PROCESSOR);
861         signal_changed (AUDIO_CHANNELS);
862 }
863
864 void
865 Film::set_reel_type (ReelType t)
866 {
867         _reel_type = t;
868         signal_changed (REEL_TYPE);
869 }
870
871 /** @param r Desired reel length in bytes */
872 void
873 Film::set_reel_length (int64_t r)
874 {
875         _reel_length = r;
876         signal_changed (REEL_LENGTH);
877 }
878
879 void
880 Film::set_upload_after_make_dcp (bool u)
881 {
882         _upload_after_make_dcp = u;
883         signal_changed (UPLOAD_AFTER_MAKE_DCP);
884 }
885
886 void
887 Film::signal_changed (Property p)
888 {
889         _dirty = true;
890
891         switch (p) {
892         case Film::CONTENT:
893                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
894                 break;
895         case Film::VIDEO_FRAME_RATE:
896         case Film::SEQUENCE:
897                 _playlist->maybe_sequence ();
898                 break;
899         default:
900                 break;
901         }
902
903         emit (boost::bind (boost::ref (Changed), p));
904 }
905
906 void
907 Film::set_isdcf_date_today ()
908 {
909         _isdcf_date = boost::gregorian::day_clock::local_day ();
910 }
911
912 boost::filesystem::path
913 Film::j2c_path (int reel, Frame frame, Eyes eyes, bool tmp) const
914 {
915         boost::filesystem::path p;
916         p /= "j2c";
917         p /= video_identifier ();
918
919         SafeStringStream s;
920         s.width (8);
921         s << setfill('0') << reel << "_" << frame;
922
923         if (eyes == EYES_LEFT) {
924                 s << ".L";
925         } else if (eyes == EYES_RIGHT) {
926                 s << ".R";
927         }
928
929         s << ".j2c";
930
931         if (tmp) {
932                 s << ".tmp";
933         }
934
935         p /= s.str();
936         return file (p);
937 }
938
939 /** Find all the DCPs in our directory that can be dcp::DCP::read() and return details of their CPLs */
940 vector<CPLSummary>
941 Film::cpls () const
942 {
943         vector<CPLSummary> out;
944
945         boost::filesystem::path const dir = directory ();
946         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator(dir); i != boost::filesystem::directory_iterator(); ++i) {
947                 if (
948                         boost::filesystem::is_directory (*i) &&
949                         i->path().leaf() != "j2c" && i->path().leaf() != "video" && i->path().leaf() != "info" && i->path().leaf() != "analysis"
950                         ) {
951
952                         try {
953                                 dcp::DCP dcp (*i);
954                                 dcp.read ();
955                                 out.push_back (
956                                         CPLSummary (
957                                                 i->path().leaf().string(),
958                                                 dcp.cpls().front()->id(),
959                                                 dcp.cpls().front()->annotation_text(),
960                                                 dcp.cpls().front()->file()
961                                                 )
962                                         );
963                         } catch (...) {
964
965                         }
966                 }
967         }
968
969         return out;
970 }
971
972 void
973 Film::set_signed (bool s)
974 {
975         _signed = s;
976         signal_changed (SIGNED);
977 }
978
979 void
980 Film::set_encrypted (bool e)
981 {
982         _encrypted = e;
983         signal_changed (ENCRYPTED);
984 }
985
986 void
987 Film::set_key (dcp::Key key)
988 {
989         _key = key;
990         signal_changed (KEY);
991 }
992
993 ContentList
994 Film::content () const
995 {
996         return _playlist->content ();
997 }
998
999 void
1000 Film::examine_content (shared_ptr<Content> c)
1001 {
1002         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
1003         JobManager::instance()->add (j);
1004 }
1005
1006 void
1007 Film::examine_and_add_content (shared_ptr<Content> c)
1008 {
1009         if (dynamic_pointer_cast<FFmpegContent> (c) && !_directory.empty ()) {
1010                 run_ffprobe (c->path(0), file ("ffprobe.log"), _log);
1011         }
1012
1013         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
1014
1015         _job_connections.push_back (
1016                 j->Finished.connect (bind (&Film::maybe_add_content, this, weak_ptr<Job> (j), weak_ptr<Content> (c)))
1017                 );
1018
1019         JobManager::instance()->add (j);
1020 }
1021
1022 void
1023 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
1024 {
1025         shared_ptr<Job> job = j.lock ();
1026         if (!job || !job->finished_ok ()) {
1027                 return;
1028         }
1029
1030         shared_ptr<Content> content = c.lock ();
1031         if (!content) {
1032                 return;
1033         }
1034
1035         add_content (content);
1036         if (Config::instance()->automatic_audio_analysis() && dynamic_pointer_cast<AudioContent> (content)) {
1037                 shared_ptr<Playlist> playlist (new Playlist);
1038                 playlist->add (content);
1039                 boost::signals2::connection c;
1040                 JobManager::instance()->analyse_audio (
1041                         shared_from_this (), playlist, c, bind (&Film::audio_analysis_finished, this)
1042                         );
1043                 _audio_analysis_connections.push_back (c);
1044         }
1045 }
1046
1047 void
1048 Film::add_content (shared_ptr<Content> c)
1049 {
1050         /* Add {video,subtitle} content after any existing {video,subtitle} content */
1051         if (c->video) {
1052                 c->set_position (_playlist->video_end ());
1053         } else if (dynamic_pointer_cast<SubtitleContent> (c)) {
1054                 c->set_position (_playlist->subtitle_end ());
1055         }
1056
1057         _playlist->add (c);
1058 }
1059
1060 void
1061 Film::remove_content (shared_ptr<Content> c)
1062 {
1063         _playlist->remove (c);
1064 }
1065
1066 void
1067 Film::move_content_earlier (shared_ptr<Content> c)
1068 {
1069         _playlist->move_earlier (c);
1070 }
1071
1072 void
1073 Film::move_content_later (shared_ptr<Content> c)
1074 {
1075         _playlist->move_later (c);
1076 }
1077
1078 /** @return length of the film from time 0 to the last thing on the playlist */
1079 DCPTime
1080 Film::length () const
1081 {
1082         return _playlist->length ();
1083 }
1084
1085 int
1086 Film::best_video_frame_rate () const
1087 {
1088         return _playlist->best_dcp_frame_rate ();
1089 }
1090
1091 FrameRateChange
1092 Film::active_frame_rate_change (DCPTime t) const
1093 {
1094         return _playlist->active_frame_rate_change (t, video_frame_rate ());
1095 }
1096
1097 void
1098 Film::playlist_content_changed (weak_ptr<Content> c, int p, bool frequent)
1099 {
1100         _dirty = true;
1101
1102         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
1103                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
1104         } else if (p == AudioContentProperty::AUDIO_STREAMS) {
1105                 signal_changed (NAME);
1106         }
1107
1108         emit (boost::bind (boost::ref (ContentChanged), c, p, frequent));
1109 }
1110
1111 void
1112 Film::playlist_changed ()
1113 {
1114         signal_changed (CONTENT);
1115         signal_changed (NAME);
1116 }
1117
1118 void
1119 Film::playlist_order_changed ()
1120 {
1121         signal_changed (CONTENT_ORDER);
1122 }
1123
1124 int
1125 Film::audio_frame_rate () const
1126 {
1127         BOOST_FOREACH (shared_ptr<Content> i, content ()) {
1128                 shared_ptr<AudioContent> a = dynamic_pointer_cast<AudioContent> (i);
1129                 if (a && a->has_rate_above_48k ()) {
1130                         return 96000;
1131                 }
1132         }
1133
1134         return 48000;
1135 }
1136
1137 void
1138 Film::set_sequence (bool s)
1139 {
1140         _sequence = s;
1141         _playlist->set_sequence (s);
1142         signal_changed (SEQUENCE);
1143 }
1144
1145 /** @return Size of the largest possible image in whatever resolution we are using */
1146 dcp::Size
1147 Film::full_frame () const
1148 {
1149         switch (_resolution) {
1150         case RESOLUTION_2K:
1151                 return dcp::Size (2048, 1080);
1152         case RESOLUTION_4K:
1153                 return dcp::Size (4096, 2160);
1154         }
1155
1156         DCPOMATIC_ASSERT (false);
1157         return dcp::Size ();
1158 }
1159
1160 /** @return Size of the frame */
1161 dcp::Size
1162 Film::frame_size () const
1163 {
1164         return fit_ratio_within (container()->ratio(), full_frame ());
1165 }
1166
1167 /** @param from KDM from time expressed as a local time with an offset from UTC
1168  *  @param to KDM to time expressed as a local time with an offset from UTC
1169  */
1170 dcp::EncryptedKDM
1171 Film::make_kdm (
1172         dcp::Certificate recipient,
1173         vector<dcp::Certificate> trusted_devices,
1174         boost::filesystem::path cpl_file,
1175         dcp::LocalTime from,
1176         dcp::LocalTime until,
1177         dcp::Formulation formulation
1178         ) const
1179 {
1180         shared_ptr<const dcp::CPL> cpl (new dcp::CPL (cpl_file));
1181         shared_ptr<const dcp::CertificateChain> signer = Config::instance()->signer_chain ();
1182         if (!signer->valid ()) {
1183                 throw InvalidSignerError ();
1184         }
1185
1186         return dcp::DecryptedKDM (
1187                 cpl, key(), from, until, cpl->content_title_text(), cpl->content_title_text(), dcp::LocalTime().as_string()
1188                 ).encrypt (signer, recipient, trusted_devices, formulation);
1189 }
1190
1191 /** @param from KDM from time expressed as a local time in the time zone of the Screen's Cinema.
1192  *  @param to KDM to time expressed as a local time in the time zone of the Screen's Cinema.
1193  */
1194 list<ScreenKDM>
1195 Film::make_kdms (
1196         list<shared_ptr<Screen> > screens,
1197         boost::filesystem::path dcp,
1198         boost::posix_time::ptime from,
1199         boost::posix_time::ptime until,
1200         dcp::Formulation formulation
1201         ) const
1202 {
1203         list<ScreenKDM> kdms;
1204
1205         BOOST_FOREACH (shared_ptr<Screen> i, screens) {
1206                 if (i->recipient) {
1207                         dcp::EncryptedKDM const kdm = make_kdm (
1208                                 i->recipient.get(),
1209                                 i->trusted_devices,
1210                                 dcp,
1211                                 dcp::LocalTime (from, i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()),
1212                                 dcp::LocalTime (until, i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute()),
1213                                 formulation
1214                                 );
1215
1216                         kdms.push_back (ScreenKDM (i, kdm));
1217                 }
1218         }
1219
1220         return kdms;
1221 }
1222
1223 /** @return The approximate disk space required to encode a DCP of this film with the
1224  *  current settings, in bytes.
1225  */
1226 uint64_t
1227 Film::required_disk_space () const
1228 {
1229         return _playlist->required_disk_space (j2k_bandwidth(), audio_channels(), audio_frame_rate());
1230 }
1231
1232 /** This method checks the disk that the Film is on and tries to decide whether or not
1233  *  there will be enough space to make a DCP for it.  If so, true is returned; if not,
1234  *  false is returned and required and available are filled in with the amount of disk space
1235  *  required and available respectively (in Gb).
1236  *
1237  *  Note: the decision made by this method isn't, of course, 100% reliable.
1238  */
1239 bool
1240 Film::should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const
1241 {
1242         /* Create a test file and see if we can hard-link it */
1243         boost::filesystem::path test = internal_video_asset_dir() / "test";
1244         boost::filesystem::path test2 = internal_video_asset_dir() / "test2";
1245         can_hard_link = true;
1246         FILE* f = fopen_boost (test, "w");
1247         if (f) {
1248                 fclose (f);
1249                 boost::system::error_code ec;
1250                 boost::filesystem::create_hard_link (test, test2, ec);
1251                 if (ec) {
1252                         can_hard_link = false;
1253                 }
1254                 boost::filesystem::remove (test);
1255                 boost::filesystem::remove (test2);
1256         }
1257
1258         boost::filesystem::space_info s = boost::filesystem::space (internal_video_asset_dir ());
1259         required = double (required_disk_space ()) / 1073741824.0f;
1260         if (!can_hard_link) {
1261                 required *= 2;
1262         }
1263         available = double (s.available) / 1073741824.0f;
1264         return (available - required) > 1;
1265 }
1266
1267 string
1268 Film::subtitle_language () const
1269 {
1270         set<string> languages;
1271
1272         ContentList cl = content ();
1273         BOOST_FOREACH (shared_ptr<Content>& c, cl) {
1274                 shared_ptr<SubtitleContent> sc = dynamic_pointer_cast<SubtitleContent> (c);
1275                 if (sc) {
1276                         languages.insert (sc->subtitle_language ());
1277                 }
1278         }
1279
1280         string all;
1281         BOOST_FOREACH (string s, languages) {
1282                 if (!all.empty ()) {
1283                         all += "/" + s;
1284                 } else {
1285                         all += s;
1286                 }
1287         }
1288
1289         return all;
1290 }
1291
1292 /** Change the gains of the supplied AudioMapping to make it a default
1293  *  for this film.  The defaults are guessed based on what processor (if any)
1294  *  is in use and the number of input channels.
1295  */
1296 void
1297 Film::make_audio_mapping_default (AudioMapping& mapping) const
1298 {
1299         if (audio_processor ()) {
1300                 audio_processor()->make_audio_mapping_default (mapping);
1301         } else {
1302                 mapping.make_zero ();
1303                 if (mapping.input_channels() == 1) {
1304                         /* Mono -> Centre */
1305                         mapping.set (0, static_cast<int> (dcp::CENTRE), 1);
1306                 } else {
1307                         /* 1:1 mapping */
1308                         for (int i = 0; i < min (mapping.input_channels(), mapping.output_channels()); ++i) {
1309                                 mapping.set (i, i, 1);
1310                         }
1311                 }
1312         }
1313 }
1314
1315 /** @return The names of the channels that audio contents' outputs are passed into;
1316  *  this is either the DCP or a AudioProcessor.
1317  */
1318 vector<string>
1319 Film::audio_output_names () const
1320 {
1321         if (audio_processor ()) {
1322                 return audio_processor()->input_names ();
1323         }
1324
1325         DCPOMATIC_ASSERT (MAX_DCP_AUDIO_CHANNELS == 16);
1326
1327         vector<string> n;
1328         n.push_back (_("L"));
1329         n.push_back (_("R"));
1330         n.push_back (_("C"));
1331         n.push_back (_("Lfe"));
1332         n.push_back (_("Ls"));
1333         n.push_back (_("Rs"));
1334         n.push_back (_("HI"));
1335         n.push_back (_("VI"));
1336         n.push_back (_("Lc"));
1337         n.push_back (_("Rc"));
1338         n.push_back (_("BsL"));
1339         n.push_back (_("BsR"));
1340         n.push_back (_("DBP"));
1341         n.push_back (_("DBS"));
1342         n.push_back ("");
1343         n.push_back ("");
1344
1345         return vector<string> (n.begin(), n.begin() + audio_channels ());
1346 }
1347
1348 void
1349 Film::repeat_content (ContentList c, int n)
1350 {
1351         _playlist->repeat (c, n);
1352 }
1353
1354 void
1355 Film::remove_content (ContentList c)
1356 {
1357         _playlist->remove (c);
1358 }
1359
1360 void
1361 Film::audio_analysis_finished ()
1362 {
1363         /* XXX */
1364 }
1365
1366 list<DCPTimePeriod>
1367 Film::reels () const
1368 {
1369         list<DCPTimePeriod> p;
1370         DCPTime const len = length().round_up (video_frame_rate ());
1371
1372         switch (reel_type ()) {
1373         case REELTYPE_SINGLE:
1374                 p.push_back (DCPTimePeriod (DCPTime (), len));
1375                 break;
1376         case REELTYPE_BY_VIDEO_CONTENT:
1377         {
1378                 optional<DCPTime> last_split;
1379                 shared_ptr<Content> last_video;
1380                 ContentList cl = content ();
1381                 BOOST_FOREACH (shared_ptr<Content> c, content ()) {
1382                         if (c->video) {
1383                                 BOOST_FOREACH (DCPTime t, c->reel_split_points()) {
1384                                         if (last_split) {
1385                                                 p.push_back (DCPTimePeriod (last_split.get(), t));
1386                                         }
1387                                         last_split = t;
1388                                 }
1389                                 last_video = c;
1390                         }
1391                 }
1392
1393                 DCPTime video_end = last_video ? last_video->end() : DCPTime(0);
1394                 if (last_split) {
1395                         /* Definitely go from the last split to the end of the video content */
1396                         p.push_back (DCPTimePeriod (last_split.get(), video_end));
1397                 }
1398
1399                 if (video_end < len) {
1400                         /* And maybe go after that as well if there is any non-video hanging over the end */
1401                         p.push_back (DCPTimePeriod (video_end, len));
1402                 }
1403                 break;
1404         }
1405         case REELTYPE_BY_LENGTH:
1406         {
1407                 DCPTime current;
1408                 /* Integer-divide reel length by the size of one frame to give the number of frames per reel */
1409                 Frame const reel_in_frames = _reel_length / ((j2k_bandwidth() / video_frame_rate()) / 8);
1410                 while (current < len) {
1411                         DCPTime end = min (len, current + DCPTime::from_frames (reel_in_frames, video_frame_rate ()));
1412                         p.push_back (DCPTimePeriod (current, end));
1413                         current = end;
1414                 }
1415                 break;
1416         }
1417         }
1418
1419         return p;
1420 }