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