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