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