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