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