71836f2540fc1fa617241cf2a622fc1e34283527
[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         , _encrypted (false)
100         , _j2k_bandwidth (Config::instance()->default_j2k_bandwidth ())
101         , _dci_metadata (Config::instance()->default_dci_metadata ())
102         , _video_frame_rate (24)
103         , _audio_channels (MAX_AUDIO_CHANNELS)
104         , _three_d (false)
105         , _sequence_video (true)
106         , _interop (false)
107         , _dirty (false)
108 {
109         set_dci_date_today ();
110
111         _playlist->Changed.connect (bind (&Film::playlist_changed, this));
112         _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
113         
114         /* Make state.directory a complete path without ..s (where possible)
115            (Code swiped from Adam Bowen on stackoverflow)
116         */
117         
118         boost::filesystem::path p (boost::filesystem::system_complete (dir));
119         boost::filesystem::path result;
120         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
121                 if (*i == "..") {
122                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
123                                 result /= *i;
124                         } else {
125                                 result = result.parent_path ();
126                         }
127                 } else if (*i != ".") {
128                         result /= *i;
129                 }
130         }
131
132         set_directory (result);
133         _log.reset (new FileLog (file ("log")));
134
135         _playlist->set_sequence_video (_sequence_video);
136 }
137
138 string
139 Film::video_identifier () const
140 {
141         assert (container ());
142         LocaleGuard lg;
143
144         stringstream s;
145         s << container()->id()
146           << "_" << resolution_to_string (_resolution)
147           << "_" << _playlist->video_identifier()
148           << "_" << _video_frame_rate
149           << "_" << scaler()->id()
150           << "_" << j2k_bandwidth();
151
152         if (encrypted ()) {
153                 s << "_E";
154         } else {
155                 s << "_P";
156         }
157
158         if (_interop) {
159                 s << "_I";
160         } else {
161                 s << "_S";
162         }
163
164         if (_three_d) {
165                 s << "_3D";
166         }
167
168         return s.str ();
169 }
170           
171 /** @return The path to the directory to write video frame info files to */
172 boost::filesystem::path
173 Film::info_dir () const
174 {
175         boost::filesystem::path p;
176         p /= "info";
177         p /= video_identifier ();
178         return dir (p);
179 }
180
181 boost::filesystem::path
182 Film::internal_video_mxf_dir () const
183 {
184         return dir ("video");
185 }
186
187 boost::filesystem::path
188 Film::internal_video_mxf_filename () const
189 {
190         return video_identifier() + ".mxf";
191 }
192
193 boost::filesystem::path
194 Film::video_mxf_filename () const
195 {
196         return filename_safe_name() + "_video.mxf";
197 }
198
199 boost::filesystem::path
200 Film::audio_mxf_filename () const
201 {
202         return filename_safe_name() + "_audio.mxf";
203 }
204
205 string
206 Film::filename_safe_name () const
207 {
208         string const n = name ();
209         string o;
210         for (size_t i = 0; i < n.length(); ++i) {
211                 if (isalnum (n[i])) {
212                         o += n[i];
213                 } else {
214                         o += "_";
215                 }
216         }
217
218         return o;
219 }
220
221 boost::filesystem::path
222 Film::audio_analysis_path (shared_ptr<const AudioContent> c) const
223 {
224         boost::filesystem::path p = dir ("analysis");
225         p /= c->digest();
226         return p;
227 }
228
229 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
230 void
231 Film::make_dcp ()
232 {
233         set_dci_date_today ();
234         
235         if (dcp_name().find ("/") != string::npos) {
236                 throw BadSettingError (_("name"), _("cannot contain slashes"));
237         }
238         
239         log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
240
241         {
242                 char buffer[128];
243                 gethostname (buffer, sizeof (buffer));
244                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
245         }
246
247         ContentList cl = content ();
248         for (ContentList::const_iterator i = cl.begin(); i != cl.end(); ++i) {
249                 log()->log (String::compose ("Content: %1", (*i)->technical_summary()));
250         }
251         log()->log (String::compose ("DCP video rate %1 fps", video_frame_rate()));
252         log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
253         log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
254 #ifdef DCPOMATIC_DEBUG
255         log()->log ("DCP-o-matic built in debug mode.");
256 #else
257         log()->log ("DCP-o-matic built in optimised mode.");
258 #endif
259 #ifdef LIBDCP_DEBUG
260         log()->log ("libdcp built in debug mode.");
261 #else
262         log()->log ("libdcp built in optimised mode.");
263 #endif
264         log()->log (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
265         list<pair<string, string> > const m = mount_info ();
266         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
267                 log()->log (String::compose ("Mount: %1 %2", i->first, i->second));
268         }
269         
270         if (container() == 0) {
271                 throw MissingSettingError (_("container"));
272         }
273
274         if (content().empty()) {
275                 throw StringError (_("You must add some content to the DCP before creating it"));
276         }
277
278         if (dcp_content_type() == 0) {
279                 throw MissingSettingError (_("content type"));
280         }
281
282         if (name().empty()) {
283                 throw MissingSettingError (_("name"));
284         }
285
286         JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
287 }
288
289 /** Start a job to send our DCP to the configured TMS */
290 void
291 Film::send_dcp_to_tms ()
292 {
293         shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
294         JobManager::instance()->add (j);
295 }
296
297 /** Count the number of frames that have been encoded for this film.
298  *  @return frame count.
299  */
300 int
301 Film::encoded_frames () const
302 {
303         if (container() == 0) {
304                 return 0;
305         }
306
307         int N = 0;
308         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
309                 ++N;
310                 boost::this_thread::interruption_point ();
311         }
312
313         return N;
314 }
315
316 /** Write state to our `metadata' file */
317 void
318 Film::write_metadata () const
319 {
320         if (!boost::filesystem::exists (directory ())) {
321                 boost::filesystem::create_directory (directory ());
322         }
323         
324         LocaleGuard lg;
325
326         boost::filesystem::create_directories (directory ());
327
328         xmlpp::Document doc;
329         xmlpp::Element* root = doc.create_root_node ("Metadata");
330
331         root->add_child("Version")->add_child_text (lexical_cast<string> (state_version));
332         root->add_child("Name")->add_child_text (_name);
333         root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
334
335         if (_dcp_content_type) {
336                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
337         }
338
339         if (_container) {
340                 root->add_child("Container")->add_child_text (_container->id ());
341         }
342
343         root->add_child("Resolution")->add_child_text (resolution_to_string (_resolution));
344         root->add_child("Scaler")->add_child_text (_scaler->id ());
345         root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
346         root->add_child("J2KBandwidth")->add_child_text (lexical_cast<string> (_j2k_bandwidth));
347         _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
348         root->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
349         root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
350         root->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
351         root->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
352         root->add_child("SequenceVideo")->add_child_text (_sequence_video ? "1" : "0");
353         root->add_child("Interop")->add_child_text (_interop ? "1" : "0");
354         root->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
355         root->add_child("Key")->add_child_text (_key.hex ());
356         _playlist->as_xml (root->add_child ("Playlist"));
357
358         doc.write_to_file_formatted (file("metadata.xml").string ());
359         
360         _dirty = false;
361 }
362
363 /** Read state from our metadata file */
364 void
365 Film::read_metadata ()
366 {
367         LocaleGuard lg;
368
369         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
370                 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!"));
371         }
372
373         cxml::Document f ("Metadata");
374         f.read_file (file ("metadata.xml"));
375
376         int const version = f.number_child<int> ("Version");
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"), version);
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 }