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