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