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