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