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