Add support for no-scale of the input video.
[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 <libdcp/signer_chain.h>
35 #include <libdcp/cpl.h>
36 #include <libdcp/signer.h>
37 #include <libdcp/util.h>
38 #include <libdcp/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 libdcp::Size;
82 using libdcp::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         
401         _name = f.string_child ("Name");
402         _use_dci_name = f.bool_child ("UseDCIName");
403
404         {
405                 optional<string> c = f.optional_string_child ("DCPContentType");
406                 if (c) {
407                         _dcp_content_type = DCPContentType::from_dci_name (c.get ());
408                 }
409         }
410
411         {
412                 optional<string> c = f.optional_string_child ("Container");
413                 if (c) {
414                         _container = Ratio::from_id (c.get ());
415                 }
416         }
417
418         _resolution = string_to_resolution (f.string_child ("Resolution"));
419         _scaler = Scaler::from_id (f.string_child ("Scaler"));
420         _with_subtitles = f.bool_child ("WithSubtitles");
421         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
422         _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
423         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
424         _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
425         _signed = f.optional_bool_child("Signed").get_value_or (true);
426         _encrypted = f.bool_child ("Encrypted");
427         _audio_channels = f.number_child<int> ("AudioChannels");
428         _sequence_video = f.bool_child ("SequenceVideo");
429         _three_d = f.bool_child ("ThreeD");
430         _interop = f.bool_child ("Interop");
431         _key = libdcp::Key (f.string_child ("Key"));
432         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"), _state_version);
433
434         _dirty = false;
435 }
436
437 /** Given a directory name, return its full path within the Film's directory.
438  *  The directory (and its parents) will be created if they do not exist.
439  */
440 boost::filesystem::path
441 Film::dir (boost::filesystem::path d) const
442 {
443         boost::filesystem::path p;
444         p /= _directory;
445         p /= d;
446         
447         boost::filesystem::create_directories (p);
448         
449         return p;
450 }
451
452 /** Given a file or directory name, return its full path within the Film's directory.
453  *  Any required parent directories will be created.
454  */
455 boost::filesystem::path
456 Film::file (boost::filesystem::path f) const
457 {
458         boost::filesystem::path p;
459         p /= _directory;
460         p /= f;
461
462         boost::filesystem::create_directories (p.parent_path ());
463         
464         return p;
465 }
466
467 /** @return a DCI-compliant name for a DCP of this film */
468 string
469 Film::dci_name (bool if_created_now) const
470 {
471         stringstream d;
472
473         string fixed_name = to_upper_copy (name());
474         for (size_t i = 0; i < fixed_name.length(); ++i) {
475                 if (fixed_name[i] == ' ') {
476                         fixed_name[i] = '-';
477                 }
478         }
479
480         /* Spec is that the name part should be maximum 14 characters, as I understand it */
481         if (fixed_name.length() > 14) {
482                 fixed_name = fixed_name.substr (0, 14);
483         }
484
485         d << fixed_name;
486
487         if (dcp_content_type()) {
488                 d << "_" << dcp_content_type()->dci_name();
489                 d << "-" << dci_metadata().content_version;
490         }
491
492         if (three_d ()) {
493                 d << "-3D";
494         }
495
496         if (video_frame_rate() != 24) {
497                 d << "-" << video_frame_rate();
498         }
499
500         if (container()) {
501                 d << "_" << container()->dci_name();
502         }
503
504         DCIMetadata const dm = dci_metadata ();
505
506         if (!dm.audio_language.empty ()) {
507                 d << "_" << dm.audio_language;
508                 if (!dm.subtitle_language.empty()) {
509                         d << "-" << dm.subtitle_language;
510                 } else {
511                         d << "-XX";
512                 }
513         }
514
515         if (!dm.territory.empty ()) {
516                 d << "_" << dm.territory;
517                 if (!dm.rating.empty ()) {
518                         d << "-" << dm.rating;
519                 }
520         }
521
522         switch (audio_channels ()) {
523         case 1:
524                 d << "_10";
525                 break;
526         case 2:
527                 d << "_20";
528                 break;
529         case 3:
530                 d << "_30";
531                 break;
532         case 4:
533                 d << "_40";
534                 break;
535         case 5:
536                 d << "_50";
537                 break;
538         case 6:
539                 d << "_51";
540                 break;
541         }
542
543         d << "_" << resolution_to_string (_resolution);
544
545         if (!dm.studio.empty ()) {
546                 d << "_" << dm.studio;
547         }
548
549         if (if_created_now) {
550                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
551         } else {
552                 d << "_" << boost::gregorian::to_iso_string (_dci_date);
553         }
554
555         if (!dm.facility.empty ()) {
556                 d << "_" << dm.facility;
557         }
558
559         if (!dm.package_type.empty ()) {
560                 d << "_" << dm.package_type;
561         }
562
563         return d.str ();
564 }
565
566 /** @return name to give the DCP */
567 string
568 Film::dcp_name (bool if_created_now) const
569 {
570         if (use_dci_name()) {
571                 return dci_name (if_created_now);
572         }
573
574         return name();
575 }
576
577
578 void
579 Film::set_directory (boost::filesystem::path d)
580 {
581         _directory = d;
582         _dirty = true;
583 }
584
585 void
586 Film::set_name (string n)
587 {
588         _name = n;
589         signal_changed (NAME);
590 }
591
592 void
593 Film::set_use_dci_name (bool u)
594 {
595         _use_dci_name = u;
596         signal_changed (USE_DCI_NAME);
597 }
598
599 void
600 Film::set_dcp_content_type (DCPContentType const * t)
601 {
602         _dcp_content_type = t;
603         signal_changed (DCP_CONTENT_TYPE);
604 }
605
606 void
607 Film::set_container (Ratio const * c)
608 {
609         _container = c;
610         signal_changed (CONTAINER);
611 }
612
613 void
614 Film::set_resolution (Resolution r)
615 {
616         _resolution = r;
617         signal_changed (RESOLUTION);
618 }
619
620 void
621 Film::set_scaler (Scaler const * s)
622 {
623         _scaler = s;
624         signal_changed (SCALER);
625 }
626
627 void
628 Film::set_with_subtitles (bool w)
629 {
630         _with_subtitles = w;
631         signal_changed (WITH_SUBTITLES);
632 }
633
634 void
635 Film::set_j2k_bandwidth (int b)
636 {
637         _j2k_bandwidth = b;
638         signal_changed (J2K_BANDWIDTH);
639 }
640
641 void
642 Film::set_dci_metadata (DCIMetadata m)
643 {
644         _dci_metadata = m;
645         signal_changed (DCI_METADATA);
646 }
647
648 void
649 Film::set_video_frame_rate (int f)
650 {
651         _video_frame_rate = f;
652         signal_changed (VIDEO_FRAME_RATE);
653 }
654
655 void
656 Film::set_audio_channels (int c)
657 {
658         _audio_channels = c;
659         signal_changed (AUDIO_CHANNELS);
660 }
661
662 void
663 Film::set_three_d (bool t)
664 {
665         _three_d = t;
666         signal_changed (THREE_D);
667 }
668
669 void
670 Film::set_interop (bool i)
671 {
672         _interop = i;
673         signal_changed (INTEROP);
674 }
675
676 void
677 Film::signal_changed (Property p)
678 {
679         _dirty = true;
680
681         switch (p) {
682         case Film::CONTENT:
683                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
684                 break;
685         case Film::VIDEO_FRAME_RATE:
686         case Film::SEQUENCE_VIDEO:
687                 _playlist->maybe_sequence_video ();
688                 break;
689         default:
690                 break;
691         }
692
693         if (ui_signaller) {
694                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
695         }
696 }
697
698 void
699 Film::set_dci_date_today ()
700 {
701         _dci_date = boost::gregorian::day_clock::local_day ();
702 }
703
704 boost::filesystem::path
705 Film::info_path (int f, Eyes e) const
706 {
707         boost::filesystem::path p;
708         p /= info_dir ();
709
710         stringstream s;
711         s.width (8);
712         s << setfill('0') << f;
713
714         if (e == EYES_LEFT) {
715                 s << ".L";
716         } else if (e == EYES_RIGHT) {
717                 s << ".R";
718         }
719
720         s << ".md5";
721         
722         p /= s.str();
723
724         /* info_dir() will already have added any initial bit of the path,
725            so don't call file() on this.
726         */
727         return p;
728 }
729
730 boost::filesystem::path
731 Film::j2c_path (int f, Eyes e, bool t) const
732 {
733         boost::filesystem::path p;
734         p /= "j2c";
735         p /= video_identifier ();
736
737         stringstream s;
738         s.width (8);
739         s << setfill('0') << f;
740
741         if (e == EYES_LEFT) {
742                 s << ".L";
743         } else if (e == EYES_RIGHT) {
744                 s << ".R";
745         }
746         
747         s << ".j2c";
748
749         if (t) {
750                 s << ".tmp";
751         }
752
753         p /= s.str();
754         return file (p);
755 }
756
757 /** @return List of subdirectories (not full paths) containing DCPs that can be successfully libdcp::DCP::read() */
758 list<boost::filesystem::path>
759 Film::dcps () const
760 {
761         list<boost::filesystem::path> out;
762         
763         boost::filesystem::path const dir = directory ();
764         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator(dir); i != boost::filesystem::directory_iterator(); ++i) {
765                 if (
766                         boost::filesystem::is_directory (*i) &&
767                         i->path().leaf() != "j2c" && i->path().leaf() != "video" && i->path().leaf() != "info" && i->path().leaf() != "analysis"
768                         ) {
769
770                         try {
771                                 libdcp::DCP dcp (*i);
772                                 dcp.read ();
773                                 out.push_back (i->path().leaf ());
774                         } catch (...) {
775
776                         }
777                 }
778         }
779         
780         return out;
781 }
782
783 shared_ptr<Player>
784 Film::make_player () const
785 {
786         return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
787 }
788
789 void
790 Film::set_signed (bool s)
791 {
792         _signed = s;
793         signal_changed (SIGNED);
794 }
795
796 void
797 Film::set_encrypted (bool e)
798 {
799         _encrypted = e;
800         signal_changed (ENCRYPTED);
801 }
802
803 shared_ptr<Playlist>
804 Film::playlist () const
805 {
806         return _playlist;
807 }
808
809 ContentList
810 Film::content () const
811 {
812         return _playlist->content ();
813 }
814
815 void
816 Film::examine_and_add_content (shared_ptr<Content> c)
817 {
818         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
819         j->Finished.connect (bind (&Film::maybe_add_content, this, boost::weak_ptr<Job> (j), boost::weak_ptr<Content> (c)));
820         JobManager::instance()->add (j);
821 }
822
823 void
824 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
825 {
826         shared_ptr<Job> job = j.lock ();
827         if (!job || !job->finished_ok ()) {
828                 return;
829         }
830         
831         shared_ptr<Content> content = c.lock ();
832         if (content) {
833                 add_content (content);
834         }
835 }
836
837 void
838 Film::add_content (shared_ptr<Content> c)
839 {
840         /* Add video content after any existing content */
841         if (dynamic_pointer_cast<VideoContent> (c)) {
842                 c->set_position (_playlist->video_end ());
843         }
844
845         _playlist->add (c);
846 }
847
848 void
849 Film::remove_content (shared_ptr<Content> c)
850 {
851         _playlist->remove (c);
852 }
853
854 void
855 Film::move_content_earlier (shared_ptr<Content> c)
856 {
857         _playlist->move_earlier (c);
858 }
859
860 void
861 Film::move_content_later (shared_ptr<Content> c)
862 {
863         _playlist->move_later (c);
864 }
865
866 Time
867 Film::length () const
868 {
869         return _playlist->length ();
870 }
871
872 bool
873 Film::has_subtitles () const
874 {
875         return _playlist->has_subtitles ();
876 }
877
878 OutputVideoFrame
879 Film::best_video_frame_rate () const
880 {
881         return _playlist->best_dcp_frame_rate ();
882 }
883
884 void
885 Film::playlist_content_changed (boost::weak_ptr<Content> c, int p)
886 {
887         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
888                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
889         } 
890
891         if (ui_signaller) {
892                 ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
893         }
894 }
895
896 void
897 Film::playlist_changed ()
898 {
899         signal_changed (CONTENT);
900 }       
901
902 OutputAudioFrame
903 Film::time_to_audio_frames (Time t) const
904 {
905         return divide_with_round (t * audio_frame_rate (), TIME_HZ);
906 }
907
908 OutputVideoFrame
909 Film::time_to_video_frames (Time t) const
910 {
911         return divide_with_round (t * video_frame_rate (), TIME_HZ);
912 }
913
914 Time
915 Film::audio_frames_to_time (OutputAudioFrame f) const
916 {
917         return divide_with_round (f * TIME_HZ, audio_frame_rate ());
918 }
919
920 Time
921 Film::video_frames_to_time (OutputVideoFrame f) const
922 {
923         return divide_with_round (f * TIME_HZ, video_frame_rate ());
924 }
925
926 OutputAudioFrame
927 Film::audio_frame_rate () const
928 {
929         /* XXX */
930         return 48000;
931 }
932
933 void
934 Film::set_sequence_video (bool s)
935 {
936         _sequence_video = s;
937         _playlist->set_sequence_video (s);
938         signal_changed (SEQUENCE_VIDEO);
939 }
940
941 libdcp::Size
942 Film::full_frame () const
943 {
944         switch (_resolution) {
945         case RESOLUTION_2K:
946                 return libdcp::Size (2048, 1080);
947         case RESOLUTION_4K:
948                 return libdcp::Size (4096, 2160);
949         }
950
951         assert (false);
952         return libdcp::Size ();
953 }
954
955 libdcp::KDM
956 Film::make_kdm (
957         shared_ptr<libdcp::Certificate> target,
958         boost::filesystem::path dcp_dir,
959         boost::posix_time::ptime from,
960         boost::posix_time::ptime until
961         ) const
962 {
963         shared_ptr<const Signer> signer = make_signer ();
964
965         libdcp::DCP dcp (dir (dcp_dir.string ()));
966         
967         try {
968                 dcp.read ();
969         } catch (...) {
970                 throw KDMError (_("Could not read DCP to make KDM for"));
971         }
972         
973         time_t now = time (0);
974         struct tm* tm = localtime (&now);
975         string const issue_date = libdcp::tm_to_string (tm);
976         
977         dcp.cpls().front()->set_mxf_keys (key ());
978         
979         return libdcp::KDM (dcp.cpls().front(), signer, target, from, until, "DCP-o-matic", issue_date);
980 }
981
982 list<libdcp::KDM>
983 Film::make_kdms (
984         list<shared_ptr<Screen> > screens,
985         boost::filesystem::path dcp,
986         boost::posix_time::ptime from,
987         boost::posix_time::ptime until
988         ) const
989 {
990         list<libdcp::KDM> kdms;
991
992         for (list<shared_ptr<Screen> >::iterator i = screens.begin(); i != screens.end(); ++i) {
993                 kdms.push_back (make_kdm ((*i)->certificate, dcp, from, until));
994         }
995
996         return kdms;
997 }
998
999 /** @return The approximate disk space required to encode a DCP of this film with the
1000  *  current settings, in bytes.
1001  */
1002 uint64_t
1003 Film::required_disk_space () const
1004 {
1005         return uint64_t (j2k_bandwidth() / 8) * length() / TIME_HZ;
1006 }
1007
1008 /** This method checks the disk that the Film is on and tries to decide whether or not
1009  *  there will be enough space to make a DCP for it.  If so, true is returned; if not,
1010  *  false is returned and required and availabe are filled in with the amount of disk space
1011  *  required and available respectively (in Gb).
1012  *
1013  *  Note: the decision made by this method isn't, of course, 100% reliable.
1014  */
1015 bool
1016 Film::should_be_enough_disk_space (double& required, double& available) const
1017 {
1018         boost::filesystem::space_info s = boost::filesystem::space (internal_video_mxf_dir ());
1019         required = double (required_disk_space ()) / 1073741824.0f;
1020         available = double (s.available) / 1073741824.0f;
1021         return (available - required) > 1;
1022 }