Merge master.
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012-2013 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 #include <stdexcept>
21 #include <iostream>
22 #include <algorithm>
23 #include <fstream>
24 #include <cstdlib>
25 #include <sstream>
26 #include <iomanip>
27 #include <unistd.h>
28 #include <boost/filesystem.hpp>
29 #include <boost/algorithm/string.hpp>
30 #include <boost/lexical_cast.hpp>
31 #include <boost/date_time.hpp>
32 #include <libxml++/libxml++.h>
33 #include <libcxml/cxml.h>
34 #include <dcp/signer_chain.h>
35 #include <dcp/cpl.h>
36 #include <dcp/signer.h>
37 #include <dcp/util.h>
38 #include <dcp/kdm.h>
39 #include "film.h"
40 #include "job.h"
41 #include "util.h"
42 #include "job_manager.h"
43 #include "transcode_job.h"
44 #include "scp_dcp_job.h"
45 #include "log.h"
46 #include "exceptions.h"
47 #include "examine_content_job.h"
48 #include "scaler.h"
49 #include "config.h"
50 #include "version.h"
51 #include "ui_signaller.h"
52 #include "playlist.h"
53 #include "player.h"
54 #include "dcp_content_type.h"
55 #include "ratio.h"
56 #include "cross.h"
57 #include "cinema.h"
58
59 #include "i18n.h"
60
61 using std::string;
62 using std::stringstream;
63 using std::multimap;
64 using std::pair;
65 using std::map;
66 using std::vector;
67 using std::setfill;
68 using std::min;
69 using std::make_pair;
70 using std::endl;
71 using std::cout;
72 using std::list;
73 using boost::shared_ptr;
74 using boost::weak_ptr;
75 using boost::lexical_cast;
76 using boost::dynamic_pointer_cast;
77 using boost::to_upper_copy;
78 using boost::ends_with;
79 using boost::starts_with;
80 using boost::optional;
81 using dcp::Size;
82 using dcp::Signer;
83
84 /* 5 -> 6
85  * AudioMapping XML changed.
86  * 6 -> 7
87  * Subtitle offset changed to subtitle y offset, and subtitle x offset added.
88  * 7 -> 8
89  * Use <Scale> tag in <VideoContent> rather than <Ratio>.
90  */
91 int const Film::current_state_version = 8;
92
93 /** Construct a Film object in a given directory.
94  *
95  *  @param dir Film directory.
96  */
97
98 Film::Film (boost::filesystem::path dir, bool log)
99         : _playlist (new Playlist)
100         , _use_dci_name (true)
101         , _dcp_content_type (Config::instance()->default_dcp_content_type ())
102         , _container (Config::instance()->default_container ())
103         , _resolution (RESOLUTION_2K)
104         , _scaler (Scaler::from_id ("bicubic"))
105         , _with_subtitles (false)
106         , _signed (true)
107         , _encrypted (false)
108         , _j2k_bandwidth (Config::instance()->default_j2k_bandwidth ())
109         , _dci_metadata (Config::instance()->default_dci_metadata ())
110         , _video_frame_rate (24)
111         , _audio_channels (6)
112         , _three_d (false)
113         , _sequence_video (true)
114         , _interop (false)
115         , _state_version (current_state_version)
116         , _dirty (false)
117 {
118         set_dci_date_today ();
119
120         _playlist->Changed.connect (bind (&Film::playlist_changed, this));
121         _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
122         
123         /* Make state.directory a complete path without ..s (where possible)
124            (Code swiped from Adam Bowen on stackoverflow)
125         */
126         
127         boost::filesystem::path p (boost::filesystem::system_complete (dir));
128         boost::filesystem::path result;
129         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
130                 if (*i == "..") {
131                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
132                                 result /= *i;
133                         } else {
134                                 result = result.parent_path ();
135                         }
136                 } else if (*i != ".") {
137                         result /= *i;
138                 }
139         }
140
141         set_directory (result);
142         if (log) {
143                 _log.reset (new FileLog (file ("log")));
144         } else {
145                 _log.reset (new NullLog);
146         }
147
148         _playlist->set_sequence_video (_sequence_video);
149 }
150
151 string
152 Film::video_identifier () const
153 {
154         assert (container ());
155         LocaleGuard lg;
156
157         stringstream s;
158         s << container()->id()
159           << "_" << resolution_to_string (_resolution)
160           << "_" << _playlist->video_identifier()
161           << "_" << _video_frame_rate
162           << "_" << scaler()->id()
163           << "_" << j2k_bandwidth();
164
165         if (encrypted ()) {
166                 s << "_E";
167         } else {
168                 s << "_P";
169         }
170
171         if (_interop) {
172                 s << "_I";
173         } else {
174                 s << "_S";
175         }
176
177         if (_three_d) {
178                 s << "_3D";
179         }
180
181         return s.str ();
182 }
183           
184 /** @return The path to the directory to write video frame info files to */
185 boost::filesystem::path
186 Film::info_dir () const
187 {
188         boost::filesystem::path p;
189         p /= "info";
190         p /= video_identifier ();
191         return dir (p);
192 }
193
194 boost::filesystem::path
195 Film::internal_video_mxf_dir () const
196 {
197         return dir ("video");
198 }
199
200 boost::filesystem::path
201 Film::internal_video_mxf_filename () const
202 {
203         return video_identifier() + ".mxf";
204 }
205
206 boost::filesystem::path
207 Film::video_mxf_filename () const
208 {
209         return filename_safe_name() + "_video.mxf";
210 }
211
212 boost::filesystem::path
213 Film::audio_mxf_filename () const
214 {
215         return filename_safe_name() + "_audio.mxf";
216 }
217
218 string
219 Film::filename_safe_name () const
220 {
221         string const n = name ();
222         string o;
223         for (size_t i = 0; i < n.length(); ++i) {
224                 if (isalnum (n[i])) {
225                         o += n[i];
226                 } else {
227                         o += "_";
228                 }
229         }
230
231         return o;
232 }
233
234 boost::filesystem::path
235 Film::audio_analysis_path (shared_ptr<const AudioContent> c) const
236 {
237         boost::filesystem::path p = dir ("analysis");
238         p /= c->digest();
239         return p;
240 }
241
242 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
243 void
244 Film::make_dcp ()
245 {
246         set_dci_date_today ();
247         
248         if (dcp_name().find ("/") != string::npos) {
249                 throw BadSettingError (_("name"), _("cannot contain slashes"));
250         }
251         
252         log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
253
254         {
255                 char buffer[128];
256                 gethostname (buffer, sizeof (buffer));
257                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
258         }
259
260         ContentList cl = content ();
261         for (ContentList::const_iterator i = cl.begin(); i != cl.end(); ++i) {
262                 log()->log (String::compose ("Content: %1", (*i)->technical_summary()));
263         }
264         log()->log (String::compose ("DCP video rate %1 fps", video_frame_rate()));
265         log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
266         log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
267 #ifdef DCPOMATIC_DEBUG
268         log()->log ("DCP-o-matic built in debug mode.");
269 #else
270         log()->log ("DCP-o-matic built in optimised mode.");
271 #endif
272 #ifdef LIBDCP_DEBUG
273         log()->log ("libdcp built in debug mode.");
274 #else
275         log()->log ("libdcp built in optimised mode.");
276 #endif
277
278 #ifdef DCPOMATIC_WINDOWS
279         OSVERSIONINFO info;
280         info.dwOSVersionInfoSize = sizeof (info);
281         GetVersionEx (&info);
282         log()->log (String::compose ("Windows version %1.%2.%3 SP %4", info.dwMajorVersion, info.dwMinorVersion, info.dwBuildNumber, info.szCSDVersion));
283 #endif  
284         
285         log()->log (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
286         list<pair<string, string> > const m = mount_info ();
287         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
288                 log()->log (String::compose ("Mount: %1 %2", i->first, i->second));
289         }
290         
291         if (container() == 0) {
292                 throw MissingSettingError (_("container"));
293         }
294
295         if (content().empty()) {
296                 throw StringError (_("You must add some content to the DCP before creating it"));
297         }
298
299         if (dcp_content_type() == 0) {
300                 throw MissingSettingError (_("content type"));
301         }
302
303         if (name().empty()) {
304                 throw MissingSettingError (_("name"));
305         }
306
307         JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
308 }
309
310 /** Start a job to send our DCP to the configured TMS */
311 void
312 Film::send_dcp_to_tms ()
313 {
314         shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
315         JobManager::instance()->add (j);
316 }
317
318 /** Count the number of frames that have been encoded for this film.
319  *  @return frame count.
320  */
321 int
322 Film::encoded_frames () const
323 {
324         if (container() == 0) {
325                 return 0;
326         }
327
328         int N = 0;
329         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
330                 ++N;
331                 boost::this_thread::interruption_point ();
332         }
333
334         return N;
335 }
336
337 shared_ptr<xmlpp::Document>
338 Film::metadata () const
339 {
340         LocaleGuard lg;
341
342         shared_ptr<xmlpp::Document> doc (new xmlpp::Document);
343         xmlpp::Element* root = doc->create_root_node ("Metadata");
344
345         root->add_child("Version")->add_child_text (lexical_cast<string> (current_state_version));
346         root->add_child("Name")->add_child_text (_name);
347         root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
348
349         if (_dcp_content_type) {
350                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
351         }
352
353         if (_container) {
354                 root->add_child("Container")->add_child_text (_container->id ());
355         }
356
357         root->add_child("Resolution")->add_child_text (resolution_to_string (_resolution));
358         root->add_child("Scaler")->add_child_text (_scaler->id ());
359         root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
360         root->add_child("J2KBandwidth")->add_child_text (lexical_cast<string> (_j2k_bandwidth));
361         _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
362         root->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
363         root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
364         root->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
365         root->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
366         root->add_child("SequenceVideo")->add_child_text (_sequence_video ? "1" : "0");
367         root->add_child("Interop")->add_child_text (_interop ? "1" : "0");
368         root->add_child("Signed")->add_child_text (_signed ? "1" : "0");
369         root->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
370         root->add_child("Key")->add_child_text (_key.hex ());
371         _playlist->as_xml (root->add_child ("Playlist"));
372
373         return doc;
374 }
375
376 /** Write state to our `metadata' file */
377 void
378 Film::write_metadata () const
379 {
380         boost::filesystem::create_directories (directory ());
381         shared_ptr<xmlpp::Document> doc = metadata ();
382         doc->write_to_file_formatted (file("metadata.xml").string ());
383         _dirty = false;
384 }
385
386 /** Read state from our metadata file */
387 void
388 Film::read_metadata ()
389 {
390         LocaleGuard lg;
391
392         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
393                 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!"));
394         }
395
396         cxml::Document f ("Metadata");
397         f.read_file (file ("metadata.xml"));
398
399         _state_version = f.number_child<int> ("Version");
400         if (_state_version > current_state_version) {
401                 throw StringError (_("This film was created with a newer version of DCP-o-matic, and it cannot be loaded into this version.  Sorry!"));
402         }
403         
404         _name = f.string_child ("Name");
405         _use_dci_name = f.bool_child ("UseDCIName");
406
407         {
408                 optional<string> c = f.optional_string_child ("DCPContentType");
409                 if (c) {
410                         _dcp_content_type = DCPContentType::from_dci_name (c.get ());
411                 }
412         }
413
414         {
415                 optional<string> c = f.optional_string_child ("Container");
416                 if (c) {
417                         _container = Ratio::from_id (c.get ());
418                 }
419         }
420
421         _resolution = string_to_resolution (f.string_child ("Resolution"));
422         _scaler = Scaler::from_id (f.string_child ("Scaler"));
423         _with_subtitles = f.bool_child ("WithSubtitles");
424         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
425         _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
426         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
427         _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
428         _signed = f.optional_bool_child("Signed").get_value_or (true);
429         _encrypted = f.bool_child ("Encrypted");
430         _audio_channels = f.number_child<int> ("AudioChannels");
431         _sequence_video = f.bool_child ("SequenceVideo");
432         _three_d = f.bool_child ("ThreeD");
433         _interop = f.bool_child ("Interop");
434         _key = dcp::Key (f.string_child ("Key"));
435         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"), _state_version);
436
437         _dirty = false;
438 }
439
440 /** Given a directory name, return its full path within the Film's directory.
441  *  The directory (and its parents) will be created if they do not exist.
442  */
443 boost::filesystem::path
444 Film::dir (boost::filesystem::path d) const
445 {
446         boost::filesystem::path p;
447         p /= _directory;
448         p /= d;
449         
450         boost::filesystem::create_directories (p);
451         
452         return p;
453 }
454
455 /** Given a file or directory name, return its full path within the Film's directory.
456  *  Any required parent directories will be created.
457  */
458 boost::filesystem::path
459 Film::file (boost::filesystem::path f) const
460 {
461         boost::filesystem::path p;
462         p /= _directory;
463         p /= f;
464
465         boost::filesystem::create_directories (p.parent_path ());
466         
467         return p;
468 }
469
470 /** @return a DCI-compliant name for a DCP of this film */
471 string
472 Film::dci_name (bool if_created_now) const
473 {
474         stringstream d;
475
476         string fixed_name = to_upper_copy (name());
477         for (size_t i = 0; i < fixed_name.length(); ++i) {
478                 if (fixed_name[i] == ' ') {
479                         fixed_name[i] = '-';
480                 }
481         }
482
483         /* Spec is that the name part should be maximum 14 characters, as I understand it */
484         if (fixed_name.length() > 14) {
485                 fixed_name = fixed_name.substr (0, 14);
486         }
487
488         d << fixed_name;
489
490         if (dcp_content_type()) {
491                 d << "_" << dcp_content_type()->dci_name();
492                 d << "-" << dci_metadata().content_version;
493         }
494
495         if (three_d ()) {
496                 d << "-3D";
497         }
498
499         if (video_frame_rate() != 24) {
500                 d << "-" << video_frame_rate();
501         }
502
503         if (container()) {
504                 d << "_" << container()->dci_name();
505         }
506
507         DCIMetadata const dm = dci_metadata ();
508
509         if (!dm.audio_language.empty ()) {
510                 d << "_" << dm.audio_language;
511                 if (!dm.subtitle_language.empty()) {
512                         d << "-" << dm.subtitle_language;
513                 } else {
514                         d << "-XX";
515                 }
516         }
517
518         if (!dm.territory.empty ()) {
519                 d << "_" << dm.territory;
520                 if (!dm.rating.empty ()) {
521                         d << "-" << dm.rating;
522                 }
523         }
524
525         switch (audio_channels ()) {
526         case 1:
527                 d << "_10";
528                 break;
529         case 2:
530                 d << "_20";
531                 break;
532         case 3:
533                 d << "_30";
534                 break;
535         case 4:
536                 d << "_40";
537                 break;
538         case 5:
539                 d << "_50";
540                 break;
541         case 6:
542                 d << "_51";
543                 break;
544         }
545
546         d << "_" << resolution_to_string (_resolution);
547
548         if (!dm.studio.empty ()) {
549                 d << "_" << dm.studio;
550         }
551
552         if (if_created_now) {
553                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
554         } else {
555                 d << "_" << boost::gregorian::to_iso_string (_dci_date);
556         }
557
558         if (!dm.facility.empty ()) {
559                 d << "_" << dm.facility;
560         }
561
562         if (!dm.package_type.empty ()) {
563                 d << "_" << dm.package_type;
564         }
565
566         return d.str ();
567 }
568
569 /** @return name to give the DCP */
570 string
571 Film::dcp_name (bool if_created_now) const
572 {
573         if (use_dci_name()) {
574                 return dci_name (if_created_now);
575         }
576
577         return name();
578 }
579
580
581 void
582 Film::set_directory (boost::filesystem::path d)
583 {
584         _directory = d;
585         _dirty = true;
586 }
587
588 void
589 Film::set_name (string n)
590 {
591         _name = n;
592         signal_changed (NAME);
593 }
594
595 void
596 Film::set_use_dci_name (bool u)
597 {
598         _use_dci_name = u;
599         signal_changed (USE_DCI_NAME);
600 }
601
602 void
603 Film::set_dcp_content_type (DCPContentType const * t)
604 {
605         _dcp_content_type = t;
606         signal_changed (DCP_CONTENT_TYPE);
607 }
608
609 void
610 Film::set_container (Ratio const * c)
611 {
612         _container = c;
613         signal_changed (CONTAINER);
614 }
615
616 void
617 Film::set_resolution (Resolution r)
618 {
619         _resolution = r;
620         signal_changed (RESOLUTION);
621 }
622
623 void
624 Film::set_scaler (Scaler const * s)
625 {
626         _scaler = s;
627         signal_changed (SCALER);
628 }
629
630 void
631 Film::set_with_subtitles (bool w)
632 {
633         _with_subtitles = w;
634         signal_changed (WITH_SUBTITLES);
635 }
636
637 void
638 Film::set_j2k_bandwidth (int b)
639 {
640         _j2k_bandwidth = b;
641         signal_changed (J2K_BANDWIDTH);
642 }
643
644 void
645 Film::set_dci_metadata (DCIMetadata m)
646 {
647         _dci_metadata = m;
648         signal_changed (DCI_METADATA);
649 }
650
651 void
652 Film::set_video_frame_rate (int f)
653 {
654         _video_frame_rate = f;
655         signal_changed (VIDEO_FRAME_RATE);
656 }
657
658 void
659 Film::set_audio_channels (int c)
660 {
661         _audio_channels = c;
662         signal_changed (AUDIO_CHANNELS);
663 }
664
665 void
666 Film::set_three_d (bool t)
667 {
668         _three_d = t;
669         signal_changed (THREE_D);
670 }
671
672 void
673 Film::set_interop (bool i)
674 {
675         _interop = i;
676         signal_changed (INTEROP);
677 }
678
679 void
680 Film::signal_changed (Property p)
681 {
682         _dirty = true;
683
684         switch (p) {
685         case Film::CONTENT:
686                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
687                 break;
688         case Film::VIDEO_FRAME_RATE:
689         case Film::SEQUENCE_VIDEO:
690                 _playlist->maybe_sequence_video ();
691                 break;
692         default:
693                 break;
694         }
695
696         if (ui_signaller) {
697                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
698         }
699 }
700
701 void
702 Film::set_dci_date_today ()
703 {
704         _dci_date = boost::gregorian::day_clock::local_day ();
705 }
706
707 boost::filesystem::path
708 Film::info_path (int f, Eyes e) const
709 {
710         boost::filesystem::path p;
711         p /= info_dir ();
712
713         stringstream s;
714         s.width (8);
715         s << setfill('0') << f;
716
717         if (e == EYES_LEFT) {
718                 s << ".L";
719         } else if (e == EYES_RIGHT) {
720                 s << ".R";
721         }
722
723         s << ".md5";
724         
725         p /= s.str();
726
727         /* info_dir() will already have added any initial bit of the path,
728            so don't call file() on this.
729         */
730         return p;
731 }
732
733 boost::filesystem::path
734 Film::j2c_path (int f, Eyes e, bool t) const
735 {
736         boost::filesystem::path p;
737         p /= "j2c";
738         p /= video_identifier ();
739
740         stringstream s;
741         s.width (8);
742         s << setfill('0') << f;
743
744         if (e == EYES_LEFT) {
745                 s << ".L";
746         } else if (e == EYES_RIGHT) {
747                 s << ".R";
748         }
749         
750         s << ".j2c";
751
752         if (t) {
753                 s << ".tmp";
754         }
755
756         p /= s.str();
757         return file (p);
758 }
759
760 /** @return List of subdirectories (not full paths) containing DCPs that can be successfully dcp::DCP::read() */
761 list<boost::filesystem::path>
762 Film::dcps () const
763 {
764         list<boost::filesystem::path> out;
765         
766         boost::filesystem::path const dir = directory ();
767         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator(dir); i != boost::filesystem::directory_iterator(); ++i) {
768                 if (
769                         boost::filesystem::is_directory (*i) &&
770                         i->path().leaf() != "j2c" && i->path().leaf() != "video" && i->path().leaf() != "info" && i->path().leaf() != "analysis"
771                         ) {
772
773                         try {
774                                 dcp::DCP dcp (*i);
775                                 dcp.read ();
776                                 out.push_back (i->path().leaf ());
777                         } catch (...) {
778
779                         }
780                 }
781         }
782         
783         return out;
784 }
785
786 shared_ptr<Player>
787 Film::make_player () const
788 {
789         return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
790 }
791
792 void
793 Film::set_signed (bool s)
794 {
795         _signed = s;
796         signal_changed (SIGNED);
797 }
798
799 void
800 Film::set_encrypted (bool e)
801 {
802         _encrypted = e;
803         signal_changed (ENCRYPTED);
804 }
805
806 shared_ptr<Playlist>
807 Film::playlist () const
808 {
809         return _playlist;
810 }
811
812 ContentList
813 Film::content () const
814 {
815         return _playlist->content ();
816 }
817
818 void
819 Film::examine_and_add_content (shared_ptr<Content> c)
820 {
821         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
822         j->Finished.connect (bind (&Film::maybe_add_content, this, boost::weak_ptr<Job> (j), boost::weak_ptr<Content> (c)));
823         JobManager::instance()->add (j);
824 }
825
826 void
827 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
828 {
829         shared_ptr<Job> job = j.lock ();
830         if (!job || !job->finished_ok ()) {
831                 return;
832         }
833         
834         shared_ptr<Content> content = c.lock ();
835         if (content) {
836                 add_content (content);
837         }
838 }
839
840 void
841 Film::add_content (shared_ptr<Content> c)
842 {
843         /* Add video content after any existing content */
844         if (dynamic_pointer_cast<VideoContent> (c)) {
845                 c->set_position (_playlist->video_end ());
846         }
847
848         _playlist->add (c);
849 }
850
851 void
852 Film::remove_content (shared_ptr<Content> c)
853 {
854         _playlist->remove (c);
855 }
856
857 void
858 Film::move_content_earlier (shared_ptr<Content> c)
859 {
860         _playlist->move_earlier (c);
861 }
862
863 void
864 Film::move_content_later (shared_ptr<Content> c)
865 {
866         _playlist->move_later (c);
867 }
868
869 DCPTime
870 Film::length () const
871 {
872         return _playlist->length ();
873 }
874
875 bool
876 Film::has_subtitles () const
877 {
878         return _playlist->has_subtitles ();
879 }
880
881 int
882 Film::best_video_frame_rate () const
883 {
884         return _playlist->best_dcp_frame_rate ();
885 }
886
887 FrameRateChange
888 Film::active_frame_rate_change (DCPTime t) const
889 {
890         return _playlist->active_frame_rate_change (t, video_frame_rate ());
891 }
892
893 void
894 Film::playlist_content_changed (boost::weak_ptr<Content> c, int p)
895 {
896         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
897                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
898         } 
899
900         if (ui_signaller) {
901                 ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
902         }
903 }
904
905 void
906 Film::playlist_changed ()
907 {
908         signal_changed (CONTENT);
909 }       
910
911 int
912 Film::audio_frame_rate () const
913 {
914         /* XXX */
915         return 48000;
916 }
917
918 void
919 Film::set_sequence_video (bool s)
920 {
921         _sequence_video = s;
922         _playlist->set_sequence_video (s);
923         signal_changed (SEQUENCE_VIDEO);
924 }
925
926 dcp::Size
927 Film::full_frame () const
928 {
929         switch (_resolution) {
930         case RESOLUTION_2K:
931                 return dcp::Size (2048, 1080);
932         case RESOLUTION_4K:
933                 return dcp::Size (4096, 2160);
934         }
935
936         assert (false);
937         return dcp::Size ();
938 }
939
940 dcp::KDM
941 Film::make_kdm (
942         shared_ptr<dcp::Certificate> target,
943         boost::filesystem::path dcp_dir,
944         boost::posix_time::ptime from,
945         boost::posix_time::ptime until
946         ) const
947 {
948         shared_ptr<const Signer> signer = make_signer ();
949
950         dcp::DCP dcp (dir (dcp_dir.string ()));
951         
952         try {
953                 dcp.read ();
954         } catch (...) {
955                 throw KDMError (_("Could not read DCP to make KDM for"));
956         }
957         
958         time_t now = time (0);
959         struct tm* tm = localtime (&now);
960         string const issue_date = dcp::tm_to_string (tm);
961         
962         dcp.cpls().front()->set_mxf_keys (key ());
963         
964         return dcp::KDM (dcp.cpls().front(), signer, target, from, until, "DCP-o-matic", issue_date);
965 }
966
967 list<dcp::KDM>
968 Film::make_kdms (
969         list<shared_ptr<Screen> > screens,
970         boost::filesystem::path dcp,
971         boost::posix_time::ptime from,
972         boost::posix_time::ptime until
973         ) const
974 {
975         list<dcp::KDM> kdms;
976
977         for (list<shared_ptr<Screen> >::iterator i = screens.begin(); i != screens.end(); ++i) {
978                 kdms.push_back (make_kdm ((*i)->certificate, dcp, from, until));
979         }
980
981         return kdms;
982 }
983
984 /** @return The approximate disk space required to encode a DCP of this film with the
985  *  current settings, in bytes.
986  */
987 uint64_t
988 Film::required_disk_space () const
989 {
990         return uint64_t (j2k_bandwidth() / 8) * length().seconds();
991 }
992
993 /** This method checks the disk that the Film is on and tries to decide whether or not
994  *  there will be enough space to make a DCP for it.  If so, true is returned; if not,
995  *  false is returned and required and availabe are filled in with the amount of disk space
996  *  required and available respectively (in Gb).
997  *
998  *  Note: the decision made by this method isn't, of course, 100% reliable.
999  */
1000 bool
1001 Film::should_be_enough_disk_space (double& required, double& available) const
1002 {
1003         boost::filesystem::space_info s = boost::filesystem::space (internal_video_mxf_dir ());
1004         required = double (required_disk_space ()) / 1073741824.0f;
1005         available = double (s.available) / 1073741824.0f;
1006         return (available - required) > 1;
1007 }