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