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