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