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