a20a44e77c25fc194d95bec4f393972731465748
[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         if (_three_d && _isdcf_metadata.two_d_version_of_three_d) {
786                 _isdcf_metadata.two_d_version_of_three_d = false;
787                 signal_changed (ISDCF_METADATA);
788         }
789 }
790
791 void
792 Film::set_interop (bool i)
793 {
794         _interop = i;
795         signal_changed (INTEROP);
796 }
797
798 void
799 Film::set_audio_processor (AudioProcessor const * processor)
800 {
801         _audio_processor = processor;
802         signal_changed (AUDIO_PROCESSOR);
803         signal_changed (AUDIO_CHANNELS);
804 }
805
806 void
807 Film::signal_changed (Property p)
808 {
809         _dirty = true;
810
811         switch (p) {
812         case Film::CONTENT:
813                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
814                 break;
815         case Film::VIDEO_FRAME_RATE:
816         case Film::SEQUENCE_VIDEO:
817                 _playlist->maybe_sequence_video ();
818                 break;
819         default:
820                 break;
821         }
822
823         emit (boost::bind (boost::ref (Changed), p));
824 }
825
826 void
827 Film::set_isdcf_date_today ()
828 {
829         _isdcf_date = boost::gregorian::day_clock::local_day ();
830 }
831
832 boost::filesystem::path
833 Film::j2c_path (int f, Eyes e, bool t) const
834 {
835         boost::filesystem::path p;
836         p /= "j2c";
837         p /= video_identifier ();
838
839         SafeStringStream s;
840         s.width (8);
841         s << setfill('0') << f;
842
843         if (e == EYES_LEFT) {
844                 s << ".L";
845         } else if (e == EYES_RIGHT) {
846                 s << ".R";
847         }
848
849         s << ".j2c";
850
851         if (t) {
852                 s << ".tmp";
853         }
854
855         p /= s.str();
856         return file (p);
857 }
858
859 /** Find all the DCPs in our directory that can be dcp::DCP::read() and return details of their CPLs */
860 vector<CPLSummary>
861 Film::cpls () const
862 {
863         vector<CPLSummary> out;
864
865         boost::filesystem::path const dir = directory ();
866         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator(dir); i != boost::filesystem::directory_iterator(); ++i) {
867                 if (
868                         boost::filesystem::is_directory (*i) &&
869                         i->path().leaf() != "j2c" && i->path().leaf() != "video" && i->path().leaf() != "info" && i->path().leaf() != "analysis"
870                         ) {
871
872                         try {
873                                 dcp::DCP dcp (*i);
874                                 dcp.read ();
875                                 out.push_back (
876                                         CPLSummary (
877                                                 i->path().leaf().string(),
878                                                 dcp.cpls().front()->id(),
879                                                 dcp.cpls().front()->annotation_text(),
880                                                 dcp.cpls().front()->file()
881                                                 )
882                                         );
883                         } catch (...) {
884
885                         }
886                 }
887         }
888
889         return out;
890 }
891
892 void
893 Film::set_signed (bool s)
894 {
895         _signed = s;
896         signal_changed (SIGNED);
897 }
898
899 void
900 Film::set_encrypted (bool e)
901 {
902         _encrypted = e;
903         signal_changed (ENCRYPTED);
904 }
905
906 void
907 Film::set_key (dcp::Key key)
908 {
909         _key = key;
910         signal_changed (KEY);
911 }
912
913 ContentList
914 Film::content () const
915 {
916         return _playlist->content ();
917 }
918
919 void
920 Film::examine_content (shared_ptr<Content> c)
921 {
922         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
923         JobManager::instance()->add (j);
924 }
925
926 void
927 Film::examine_and_add_content (shared_ptr<Content> c)
928 {
929         if (dynamic_pointer_cast<FFmpegContent> (c) && !_directory.empty ()) {
930                 run_ffprobe (c->path(0), file ("ffprobe.log"), _log);
931         }
932
933         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
934
935         _job_connections.push_back (
936                 j->Finished.connect (bind (&Film::maybe_add_content, this, boost::weak_ptr<Job> (j), boost::weak_ptr<Content> (c)))
937                 );
938
939         JobManager::instance()->add (j);
940 }
941
942 void
943 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
944 {
945         shared_ptr<Job> job = j.lock ();
946         if (!job || !job->finished_ok ()) {
947                 return;
948         }
949
950         shared_ptr<Content> content = c.lock ();
951         if (content) {
952                 add_content (content);
953         }
954 }
955
956 void
957 Film::add_content (shared_ptr<Content> c)
958 {
959         /* Add video content after any existing content */
960         if (dynamic_pointer_cast<VideoContent> (c)) {
961                 c->set_position (_playlist->video_end ());
962         }
963
964         _playlist->add (c);
965 }
966
967 void
968 Film::remove_content (shared_ptr<Content> c)
969 {
970         _playlist->remove (c);
971 }
972
973 void
974 Film::move_content_earlier (shared_ptr<Content> c)
975 {
976         _playlist->move_earlier (c);
977 }
978
979 void
980 Film::move_content_later (shared_ptr<Content> c)
981 {
982         _playlist->move_later (c);
983 }
984
985 DCPTime
986 Film::length () const
987 {
988         return _playlist->length ();
989 }
990
991 int
992 Film::best_video_frame_rate () const
993 {
994         return _playlist->best_dcp_frame_rate ();
995 }
996
997 FrameRateChange
998 Film::active_frame_rate_change (DCPTime t) const
999 {
1000         return _playlist->active_frame_rate_change (t, video_frame_rate ());
1001 }
1002
1003 void
1004 Film::playlist_content_changed (boost::weak_ptr<Content> c, int p, bool frequent)
1005 {
1006         _dirty = true;
1007
1008         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
1009                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
1010         } else if (p == AudioContentProperty::AUDIO_STREAMS) {
1011                 signal_changed (NAME);
1012         }
1013
1014         emit (boost::bind (boost::ref (ContentChanged), c, p, frequent));
1015 }
1016
1017 void
1018 Film::playlist_changed ()
1019 {
1020         signal_changed (CONTENT);
1021         signal_changed (NAME);
1022 }
1023
1024 int
1025 Film::audio_frame_rate () const
1026 {
1027         BOOST_FOREACH (shared_ptr<Content> i, content ()) {
1028                 shared_ptr<AudioContent> a = dynamic_pointer_cast<AudioContent> (i);
1029                 if (a && a->has_rate_above_48k ()) {
1030                         return 96000;
1031                 }
1032         }
1033
1034         return 48000;
1035 }
1036
1037 void
1038 Film::set_sequence_video (bool s)
1039 {
1040         _sequence_video = s;
1041         _playlist->set_sequence_video (s);
1042         signal_changed (SEQUENCE_VIDEO);
1043 }
1044
1045 /** @return Size of the largest possible image in whatever resolution we are using */
1046 dcp::Size
1047 Film::full_frame () const
1048 {
1049         switch (_resolution) {
1050         case RESOLUTION_2K:
1051                 return dcp::Size (2048, 1080);
1052         case RESOLUTION_4K:
1053                 return dcp::Size (4096, 2160);
1054         }
1055
1056         DCPOMATIC_ASSERT (false);
1057         return dcp::Size ();
1058 }
1059
1060 /** @return Size of the frame */
1061 dcp::Size
1062 Film::frame_size () const
1063 {
1064         return fit_ratio_within (container()->ratio(), full_frame ());
1065 }
1066
1067 dcp::EncryptedKDM
1068 Film::make_kdm (
1069         dcp::Certificate target,
1070         boost::filesystem::path cpl_file,
1071         dcp::LocalTime from,
1072         dcp::LocalTime until,
1073         dcp::Formulation formulation
1074         ) const
1075 {
1076         shared_ptr<const dcp::CPL> cpl (new dcp::CPL (cpl_file));
1077         shared_ptr<const dcp::CertificateChain> signer = Config::instance()->signer_chain ();
1078         if (!signer->valid ()) {
1079                 throw InvalidSignerError ();
1080         }
1081
1082         return dcp::DecryptedKDM (
1083                 cpl, key(), from, until, "DCP-o-matic", cpl->content_title_text(), dcp::LocalTime().as_string()
1084                 ).encrypt (signer, target, formulation);
1085 }
1086
1087 list<dcp::EncryptedKDM>
1088 Film::make_kdms (
1089         list<shared_ptr<Screen> > screens,
1090         boost::filesystem::path dcp,
1091         dcp::LocalTime from,
1092         dcp::LocalTime until,
1093         dcp::Formulation formulation
1094         ) const
1095 {
1096         list<dcp::EncryptedKDM> kdms;
1097
1098         for (list<shared_ptr<Screen> >::iterator i = screens.begin(); i != screens.end(); ++i) {
1099                 if ((*i)->certificate) {
1100                         kdms.push_back (make_kdm ((*i)->certificate.get(), dcp, from, until, formulation));
1101                 }
1102         }
1103
1104         return kdms;
1105 }
1106
1107 /** @return The approximate disk space required to encode a DCP of this film with the
1108  *  current settings, in bytes.
1109  */
1110 uint64_t
1111 Film::required_disk_space () const
1112 {
1113         return uint64_t (j2k_bandwidth() / 8) * length().seconds();
1114 }
1115
1116 /** This method checks the disk that the Film is on and tries to decide whether or not
1117  *  there will be enough space to make a DCP for it.  If so, true is returned; if not,
1118  *  false is returned and required and availabe are filled in with the amount of disk space
1119  *  required and available respectively (in Gb).
1120  *
1121  *  Note: the decision made by this method isn't, of course, 100% reliable.
1122  */
1123 bool
1124 Film::should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const
1125 {
1126         /* Create a test file and see if we can hard-link it */
1127         boost::filesystem::path test = internal_video_asset_dir() / "test";
1128         boost::filesystem::path test2 = internal_video_asset_dir() / "test2";
1129         can_hard_link = true;
1130         FILE* f = fopen_boost (test, "w");
1131         if (f) {
1132                 fclose (f);
1133                 boost::system::error_code ec;
1134                 boost::filesystem::create_hard_link (test, test2, ec);
1135                 if (ec) {
1136                         can_hard_link = false;
1137                 }
1138                 boost::filesystem::remove (test);
1139                 boost::filesystem::remove (test2);
1140         }
1141
1142         boost::filesystem::space_info s = boost::filesystem::space (internal_video_asset_dir ());
1143         required = double (required_disk_space ()) / 1073741824.0f;
1144         if (!can_hard_link) {
1145                 required *= 2;
1146         }
1147         available = double (s.available) / 1073741824.0f;
1148         return (available - required) > 1;
1149 }
1150
1151 string
1152 Film::subtitle_language () const
1153 {
1154         set<string> languages;
1155
1156         ContentList cl = content ();
1157         BOOST_FOREACH (shared_ptr<Content>& c, cl) {
1158                 shared_ptr<SubtitleContent> sc = dynamic_pointer_cast<SubtitleContent> (c);
1159                 if (sc) {
1160                         languages.insert (sc->subtitle_language ());
1161                 }
1162         }
1163
1164         string all;
1165         BOOST_FOREACH (string s, languages) {
1166                 if (!all.empty ()) {
1167                         all += "/" + s;
1168                 } else {
1169                         all += s;
1170                 }
1171         }
1172
1173         return all;
1174 }
1175
1176 /** Change the gains of the supplied AudioMapping to make it a default
1177  *  for this film.  The defaults are guessed based on what processor (if any)
1178  *  is in use and the number of input channels.
1179  */
1180 void
1181 Film::make_audio_mapping_default (AudioMapping& mapping) const
1182 {
1183         if (audio_processor ()) {
1184                 audio_processor()->make_audio_mapping_default (mapping);
1185         } else {
1186                 mapping.make_zero ();
1187                 if (mapping.input_channels() == 1) {
1188                         /* Mono -> Centre */
1189                         mapping.set (0, static_cast<int> (dcp::CENTRE), 1);
1190                 } else {
1191                         /* 1:1 mapping */
1192                         for (int i = 0; i < min (mapping.input_channels(), mapping.output_channels()); ++i) {
1193                                 mapping.set (i, i, 1);
1194                         }
1195                 }
1196         }
1197 }
1198
1199 /** @return The names of the channels that audio contents' outputs are passed into;
1200  *  this is either the DCP or a AudioProcessor.
1201  */
1202 vector<string>
1203 Film::audio_output_names () const
1204 {
1205         if (audio_processor ()) {
1206                 return audio_processor()->input_names ();
1207         }
1208
1209         vector<string> n;
1210         n.push_back (_("L"));
1211         n.push_back (_("R"));
1212         n.push_back (_("C"));
1213         n.push_back (_("Lfe"));
1214         n.push_back (_("Ls"));
1215         n.push_back (_("Rs"));
1216         n.push_back (_("HI"));
1217         n.push_back (_("VI"));
1218         n.push_back (_("Lc"));
1219         n.push_back (_("Rc"));
1220         n.push_back (_("BsL"));
1221         n.push_back (_("BsR"));
1222
1223         return vector<string> (n.begin(), n.begin() + audio_channels ());
1224 }
1225
1226 void
1227 Film::repeat_content (ContentList c, int n)
1228 {
1229         _playlist->repeat (c, n);
1230 }
1231
1232 void
1233 Film::remove_content (ContentList c)
1234 {
1235         _playlist->remove (c);
1236 }