Fix Playlist::has_audio().
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012 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 "film.h"
35 #include "format.h"
36 #include "job.h"
37 #include "filter.h"
38 #include "util.h"
39 #include "job_manager.h"
40 #include "ab_transcode_job.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 "analyse_audio_job.h"
51 #include "playlist.h"
52 #include "player.h"
53 #include "ffmpeg_content.h"
54 #include "imagemagick_content.h"
55 #include "sndfile_content.h"
56 #include "dcp_content_type.h"
57
58 #include "i18n.h"
59
60 using std::string;
61 using std::stringstream;
62 using std::multimap;
63 using std::pair;
64 using std::map;
65 using std::vector;
66 using std::ifstream;
67 using std::ofstream;
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::lexical_cast;
76 using boost::to_upper_copy;
77 using boost::ends_with;
78 using boost::starts_with;
79 using boost::optional;
80 using libdcp::Size;
81
82 int const Film::state_version = 4;
83
84 /** Construct a Film object in a given directory, reading any metadata
85  *  file that exists in that directory.  An exception will be thrown if
86  *  must_exist is true and the specified directory does not exist.
87  *
88  *  @param d Film directory.
89  *  @param must_exist true to throw an exception if does not exist.
90  */
91
92 Film::Film (string d, bool must_exist)
93         : _playlist (new Playlist)
94         , _use_dci_name (true)
95         , _trust_content_headers (true)
96         , _dcp_content_type (0)
97         , _format (Format::from_id ("185"))
98         , _scaler (Scaler::from_id ("bicubic"))
99         , _trim_start (0)
100         , _trim_end (0)
101         , _ab (false)
102         , _audio_gain (0)
103         , _audio_delay (0)
104         , _with_subtitles (false)
105         , _subtitle_offset (0)
106         , _subtitle_scale (1)
107         , _colour_lut (0)
108         , _j2k_bandwidth (200000000)
109         , _dci_metadata (Config::instance()->default_dci_metadata ())
110         , _dcp_frame_rate (0)
111         , _dirty (false)
112 {
113         set_dci_date_today ();
114
115         _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
116         
117         /* Make state.directory a complete path without ..s (where possible)
118            (Code swiped from Adam Bowen on stackoverflow)
119         */
120         
121         boost::filesystem::path p (boost::filesystem::system_complete (d));
122         boost::filesystem::path result;
123         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
124                 if (*i == "..") {
125                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
126                                 result /= *i;
127                         } else {
128                                 result = result.parent_path ();
129                         }
130                 } else if (*i != ".") {
131                         result /= *i;
132                 }
133         }
134
135         set_directory (result.string ());
136         
137         if (!boost::filesystem::exists (directory())) {
138                 if (must_exist) {
139                         throw OpenFileError (directory());
140                 } else {
141                         boost::filesystem::create_directory (directory());
142                 }
143         }
144
145         if (must_exist) {
146                 read_metadata ();
147         }
148
149         _log.reset (new FileLog (file ("log")));
150 }
151
152 Film::Film (Film const & o)
153         : boost::enable_shared_from_this<Film> (o)
154         /* note: the copied film shares the original's log */
155         , _log               (o._log)
156         , _playlist          (new Playlist)
157         , _directory         (o._directory)
158         , _name              (o._name)
159         , _use_dci_name      (o._use_dci_name)
160         , _trust_content_headers (o._trust_content_headers)
161         , _dcp_content_type  (o._dcp_content_type)
162         , _format            (o._format)
163         , _crop              (o._crop)
164         , _filters           (o._filters)
165         , _scaler            (o._scaler)
166         , _trim_start        (o._trim_start)
167         , _trim_end          (o._trim_end)
168         , _ab                (o._ab)
169         , _audio_gain        (o._audio_gain)
170         , _audio_delay       (o._audio_delay)
171         , _with_subtitles    (o._with_subtitles)
172         , _subtitle_offset   (o._subtitle_offset)
173         , _subtitle_scale    (o._subtitle_scale)
174         , _colour_lut        (o._colour_lut)
175         , _j2k_bandwidth     (o._j2k_bandwidth)
176         , _dci_metadata      (o._dci_metadata)
177         , _dcp_frame_rate    (o._dcp_frame_rate)
178         , _dci_date          (o._dci_date)
179         , _dirty             (o._dirty)
180 {
181         for (ContentList::const_iterator i = o._content.begin(); i != o._content.end(); ++i) {
182                 _content.push_back ((*i)->clone ());
183         }
184         
185         _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
186         
187         _playlist->setup (_content);
188 }
189
190 string
191 Film::video_state_identifier () const
192 {
193         assert (format ());
194
195         pair<string, string> f = Filter::ffmpeg_strings (filters());
196
197         stringstream s;
198         s << format()->id()
199           << "_" << _playlist->video_digest()
200           << "_" << crop().left << "_" << crop().right << "_" << crop().top << "_" << crop().bottom
201           << "_" << _dcp_frame_rate
202           << "_" << f.first << "_" << f.second
203           << "_" << scaler()->id()
204           << "_" << j2k_bandwidth()
205           << "_" << boost::lexical_cast<int> (colour_lut());
206
207         if (ab()) {
208                 pair<string, string> fa = Filter::ffmpeg_strings (Config::instance()->reference_filters());
209                 s << "ab_" << Config::instance()->reference_scaler()->id() << "_" << fa.first << "_" << fa.second;
210         }
211
212         return s.str ();
213 }
214           
215 /** @return The path to the directory to write video frame info files to */
216 string
217 Film::info_dir () const
218 {
219         boost::filesystem::path p;
220         p /= "info";
221         p /= video_state_identifier ();
222         return dir (p.string());
223 }
224
225 string
226 Film::video_mxf_dir () const
227 {
228         boost::filesystem::path p;
229         return dir ("video");
230 }
231
232 string
233 Film::video_mxf_filename () const
234 {
235         return video_state_identifier() + ".mxf";
236 }
237
238 string
239 Film::audio_analysis_path () const
240 {
241         boost::filesystem::path p;
242         p /= "analysis";
243         p /= _playlist->audio_digest();
244         return file (p.string ());
245 }
246
247 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
248 void
249 Film::make_dcp ()
250 {
251         set_dci_date_today ();
252         
253         if (dcp_name().find ("/") != string::npos) {
254                 throw BadSettingError (_("name"), _("cannot contain slashes"));
255         }
256         
257         log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
258
259         {
260                 char buffer[128];
261                 gethostname (buffer, sizeof (buffer));
262                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
263         }
264         
265 //      log()->log (String::compose ("Content is %1; type %2", content_path(), (content_type() == STILL ? _("still") : _("video"))));
266 //      if (length()) {
267 //              log()->log (String::compose ("Content length %1", length().get()));
268 //      }
269 //      log()->log (String::compose ("Content digest %1", content_digest()));
270 //      log()->log (String::compose ("Content at %1 fps, DCP at %2 fps", source_frame_rate(), dcp_frame_rate()));
271         log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
272         log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
273 #ifdef DCPOMATIC_DEBUG
274         log()->log ("DCP-o-matic built in debug mode.");
275 #else
276         log()->log ("DCP-o-matic built in optimised mode.");
277 #endif
278 #ifdef LIBDCP_DEBUG
279         log()->log ("libdcp built in debug mode.");
280 #else
281         log()->log ("libdcp built in optimised mode.");
282 #endif
283         pair<string, int> const c = cpu_info ();
284         log()->log (String::compose ("CPU: %1, %2 processors", c.first, c.second));
285         
286         if (format() == 0) {
287                 throw MissingSettingError (_("format"));
288         }
289
290         if (content().empty ()) {
291                 throw MissingSettingError (_("content"));
292         }
293
294         if (dcp_content_type() == 0) {
295                 throw MissingSettingError (_("content type"));
296         }
297
298         if (name().empty()) {
299                 throw MissingSettingError (_("name"));
300         }
301
302         shared_ptr<Job> r;
303
304         if (ab()) {
305                 r = JobManager::instance()->add (shared_ptr<Job> (new ABTranscodeJob (shared_from_this())));
306         } else {
307                 r = JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
308         }
309 }
310
311 /** Start a job to analyse the audio in our Playlist */
312 void
313 Film::analyse_audio ()
314 {
315         if (_analyse_audio_job) {
316                 return;
317         }
318
319         _analyse_audio_job.reset (new AnalyseAudioJob (shared_from_this()));
320         _analyse_audio_job->Finished.connect (bind (&Film::analyse_audio_finished, this));
321         JobManager::instance()->add (_analyse_audio_job);
322 }
323
324 /** Start a job to examine a piece of content */
325 void
326 Film::examine_content (shared_ptr<Content> c)
327 {
328         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c, trust_content_headers ()));
329         JobManager::instance()->add (j);
330 }
331
332 void
333 Film::analyse_audio_finished ()
334 {
335         ensure_ui_thread ();
336
337         if (_analyse_audio_job->finished_ok ()) {
338                 AudioAnalysisSucceeded ();
339         }
340         
341         _analyse_audio_job.reset ();
342 }
343
344 /** Start a job to send our DCP to the configured TMS */
345 void
346 Film::send_dcp_to_tms ()
347 {
348         shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
349         JobManager::instance()->add (j);
350 }
351
352 /** Count the number of frames that have been encoded for this film.
353  *  @return frame count.
354  */
355 int
356 Film::encoded_frames () const
357 {
358         if (format() == 0) {
359                 return 0;
360         }
361
362         int N = 0;
363         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
364                 ++N;
365                 boost::this_thread::interruption_point ();
366         }
367
368         return N;
369 }
370
371 /** Write state to our `metadata' file */
372 void
373 Film::write_metadata () const
374 {
375         ContentList the_content = content ();
376         
377         boost::mutex::scoped_lock lm (_state_mutex);
378
379         boost::filesystem::create_directories (directory());
380
381         xmlpp::Document doc;
382         xmlpp::Element* root = doc.create_root_node ("Metadata");
383
384         root->add_child("Version")->add_child_text (boost::lexical_cast<string> (state_version));
385         root->add_child("Name")->add_child_text (_name);
386         root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
387         root->add_child("TrustContentHeaders")->add_child_text (_trust_content_headers ? "1" : "0");
388         if (_dcp_content_type) {
389                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
390         }
391         if (_format) {
392                 root->add_child("Format")->add_child_text (_format->id ());
393         }
394         root->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left));
395         root->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right));
396         root->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top));
397         root->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom));
398
399         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
400                 root->add_child("Filter")->add_child_text ((*i)->id ());
401         }
402         
403         root->add_child("Scaler")->add_child_text (_scaler->id ());
404         root->add_child("TrimStart")->add_child_text (boost::lexical_cast<string> (_trim_start));
405         root->add_child("TrimEnd")->add_child_text (boost::lexical_cast<string> (_trim_end));
406         root->add_child("AB")->add_child_text (_ab ? "1" : "0");
407         root->add_child("AudioGain")->add_child_text (boost::lexical_cast<string> (_audio_gain));
408         root->add_child("AudioDelay")->add_child_text (boost::lexical_cast<string> (_audio_delay));
409         root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
410         root->add_child("SubtitleOffset")->add_child_text (boost::lexical_cast<string> (_subtitle_offset));
411         root->add_child("SubtitleScale")->add_child_text (boost::lexical_cast<string> (_subtitle_scale));
412         root->add_child("ColourLUT")->add_child_text (boost::lexical_cast<string> (_colour_lut));
413         root->add_child("J2KBandwidth")->add_child_text (boost::lexical_cast<string> (_j2k_bandwidth));
414         _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
415         root->add_child("DCPFrameRate")->add_child_text (boost::lexical_cast<string> (_dcp_frame_rate));
416         root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
417         _audio_mapping.as_xml (root->add_child("AudioMapping"));
418
419         for (ContentList::iterator i = the_content.begin(); i != the_content.end(); ++i) {
420                 (*i)->as_xml (root->add_child ("Content"));
421         }
422
423         doc.write_to_file_formatted (file ("metadata.xml"));
424         
425         _dirty = false;
426 }
427
428 /** Read state from our metadata file */
429 void
430 Film::read_metadata ()
431 {
432         boost::mutex::scoped_lock lm (_state_mutex);
433
434         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
435                 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!"));
436         }
437
438         cxml::File f (file ("metadata.xml"), "Metadata");
439         
440         _name = f.string_child ("Name");
441         _use_dci_name = f.bool_child ("UseDCIName");
442         _trust_content_headers = f.bool_child ("TrustContentHeaders");
443
444         {
445                 optional<string> c = f.optional_string_child ("DCPContentType");
446                 if (c) {
447                         _dcp_content_type = DCPContentType::from_dci_name (c.get ());
448                 }
449         }
450
451         {
452                 optional<string> c = f.optional_string_child ("Format");
453                 if (c) {
454                         _format = Format::from_id (c.get ());
455                 }
456         }
457
458         _crop.left = f.number_child<int> ("LeftCrop");
459         _crop.right = f.number_child<int> ("RightCrop");
460         _crop.top = f.number_child<int> ("TopCrop");
461         _crop.bottom = f.number_child<int> ("BottomCrop");
462
463         {
464                 list<shared_ptr<cxml::Node> > c = f.node_children ("Filter");
465                 for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
466                         _filters.push_back (Filter::from_id ((*i)->content ()));
467                 }
468         }
469
470         _scaler = Scaler::from_id (f.string_child ("Scaler"));
471         _trim_start = f.number_child<int> ("TrimStart");
472         _trim_end = f.number_child<int> ("TrimEnd");
473         _ab = f.bool_child ("AB");
474         _audio_gain = f.number_child<float> ("AudioGain");
475         _audio_delay = f.number_child<int> ("AudioDelay");
476         _with_subtitles = f.bool_child ("WithSubtitles");
477         _subtitle_offset = f.number_child<float> ("SubtitleOffset");
478         _subtitle_scale = f.number_child<float> ("SubtitleScale");
479         _colour_lut = f.number_child<int> ("ColourLUT");
480         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
481         _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
482         _dcp_frame_rate = f.number_child<int> ("DCPFrameRate");
483         _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
484
485         list<shared_ptr<cxml::Node> > c = f.node_children ("Content");
486         for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
487
488                 string const type = (*i)->string_child ("Type");
489                 boost::shared_ptr<Content> c;
490                 
491                 if (type == "FFmpeg") {
492                         c.reset (new FFmpegContent (*i));
493                 } else if (type == "ImageMagick") {
494                         c.reset (new ImageMagickContent (*i));
495                 } else if (type == "Sndfile") {
496                         c.reset (new SndfileContent (*i));
497                 }
498
499                 _content.push_back (c);
500         }
501
502         /* This must come after we've loaded the content, as we're looking things up in _content */
503         _audio_mapping.set_from_xml (_content, f.node_child ("AudioMapping"));
504
505         _dirty = false;
506
507         _playlist->setup (_content);
508 }
509
510 libdcp::Size
511 Film::cropped_size (libdcp::Size s) const
512 {
513         boost::mutex::scoped_lock lm (_state_mutex);
514         s.width -= _crop.left + _crop.right;
515         s.height -= _crop.top + _crop.bottom;
516         return s;
517 }
518
519 /** Given a directory name, return its full path within the Film's directory.
520  *  The directory (and its parents) will be created if they do not exist.
521  */
522 string
523 Film::dir (string d) const
524 {
525         boost::mutex::scoped_lock lm (_directory_mutex);
526         
527         boost::filesystem::path p;
528         p /= _directory;
529         p /= d;
530         
531         boost::filesystem::create_directories (p);
532         
533         return p.string ();
534 }
535
536 /** Given a file or directory name, return its full path within the Film's directory.
537  *  _directory_mutex must not be locked on entry.
538  *  Any required parent directories will be created.
539  */
540 string
541 Film::file (string f) const
542 {
543         boost::mutex::scoped_lock lm (_directory_mutex);
544
545         boost::filesystem::path p;
546         p /= _directory;
547         p /= f;
548
549         boost::filesystem::create_directories (p.parent_path ());
550         
551         return p.string ();
552 }
553
554 /** @return The sampling rate that we will resample the audio to */
555 int
556 Film::target_audio_sample_rate () const
557 {
558         if (!has_audio ()) {
559                 return 0;
560         }
561         
562         /* Resample to a DCI-approved sample rate */
563         double t = dcp_audio_sample_rate (audio_frame_rate());
564
565         FrameRateConversion frc (video_frame_rate(), dcp_frame_rate());
566
567         /* Compensate if the DCP is being run at a different frame rate
568            to the source; that is, if the video is run such that it will
569            look different in the DCP compared to the source (slower or faster).
570            skip/repeat doesn't come into effect here.
571         */
572
573         if (frc.change_speed) {
574                 t *= video_frame_rate() * frc.factor() / dcp_frame_rate();
575         }
576
577         return rint (t);
578 }
579
580 /** @return a DCI-compliant name for a DCP of this film */
581 string
582 Film::dci_name (bool if_created_now) const
583 {
584         stringstream d;
585
586         string fixed_name = to_upper_copy (name());
587         for (size_t i = 0; i < fixed_name.length(); ++i) {
588                 if (fixed_name[i] == ' ') {
589                         fixed_name[i] = '-';
590                 }
591         }
592
593         /* Spec is that the name part should be maximum 14 characters, as I understand it */
594         if (fixed_name.length() > 14) {
595                 fixed_name = fixed_name.substr (0, 14);
596         }
597
598         d << fixed_name;
599
600         if (dcp_content_type()) {
601                 d << "_" << dcp_content_type()->dci_name();
602         }
603
604         if (format()) {
605                 d << "_" << format()->dci_name();
606         }
607
608         DCIMetadata const dm = dci_metadata ();
609
610         if (!dm.audio_language.empty ()) {
611                 d << "_" << dm.audio_language;
612                 if (!dm.subtitle_language.empty()) {
613                         d << "-" << dm.subtitle_language;
614                 } else {
615                         d << "-XX";
616                 }
617         }
618
619         if (!dm.territory.empty ()) {
620                 d << "_" << dm.territory;
621                 if (!dm.rating.empty ()) {
622                         d << "-" << dm.rating;
623                 }
624         }
625
626         switch (audio_channels ()) {
627         case 1:
628                 d << "_10";
629                 break;
630         case 2:
631                 d << "_20";
632                 break;
633         case 6:
634                 d << "_51";
635                 break;
636         case 8:
637                 d << "_71";
638                 break;
639         }
640
641         d << "_2K";
642
643         if (!dm.studio.empty ()) {
644                 d << "_" << dm.studio;
645         }
646
647         if (if_created_now) {
648                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
649         } else {
650                 d << "_" << boost::gregorian::to_iso_string (_dci_date);
651         }
652
653         if (!dm.facility.empty ()) {
654                 d << "_" << dm.facility;
655         }
656
657         if (!dm.package_type.empty ()) {
658                 d << "_" << dm.package_type;
659         }
660
661         return d.str ();
662 }
663
664 /** @return name to give the DCP */
665 string
666 Film::dcp_name (bool if_created_now) const
667 {
668         if (use_dci_name()) {
669                 return dci_name (if_created_now);
670         }
671
672         return name();
673 }
674
675
676 void
677 Film::set_directory (string d)
678 {
679         boost::mutex::scoped_lock lm (_state_mutex);
680         _directory = d;
681         _dirty = true;
682 }
683
684 void
685 Film::set_name (string n)
686 {
687         {
688                 boost::mutex::scoped_lock lm (_state_mutex);
689                 _name = n;
690         }
691         signal_changed (NAME);
692 }
693
694 void
695 Film::set_use_dci_name (bool u)
696 {
697         {
698                 boost::mutex::scoped_lock lm (_state_mutex);
699                 _use_dci_name = u;
700         }
701         signal_changed (USE_DCI_NAME);
702 }
703
704 void
705 Film::set_trust_content_headers (bool t)
706 {
707         {
708                 boost::mutex::scoped_lock lm (_state_mutex);
709                 _trust_content_headers = t;
710         }
711         
712         signal_changed (TRUST_CONTENT_HEADERS);
713
714         if (!_trust_content_headers && !content().empty()) {
715                 /* We just said that we don't trust the content's header */
716                 ContentList c = content ();
717                 for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
718                         examine_content (*i);
719                 }
720         }
721 }
722                
723 void
724 Film::set_dcp_content_type (DCPContentType const * t)
725 {
726         {
727                 boost::mutex::scoped_lock lm (_state_mutex);
728                 _dcp_content_type = t;
729         }
730         signal_changed (DCP_CONTENT_TYPE);
731 }
732
733 void
734 Film::set_format (Format const * f)
735 {
736         {
737                 boost::mutex::scoped_lock lm (_state_mutex);
738                 _format = f;
739         }
740         signal_changed (FORMAT);
741 }
742
743 void
744 Film::set_crop (Crop c)
745 {
746         {
747                 boost::mutex::scoped_lock lm (_state_mutex);
748                 _crop = c;
749         }
750         signal_changed (CROP);
751 }
752
753 void
754 Film::set_left_crop (int c)
755 {
756         {
757                 boost::mutex::scoped_lock lm (_state_mutex);
758                 
759                 if (_crop.left == c) {
760                         return;
761                 }
762                 
763                 _crop.left = c;
764         }
765         signal_changed (CROP);
766 }
767
768 void
769 Film::set_right_crop (int c)
770 {
771         {
772                 boost::mutex::scoped_lock lm (_state_mutex);
773                 if (_crop.right == c) {
774                         return;
775                 }
776                 
777                 _crop.right = c;
778         }
779         signal_changed (CROP);
780 }
781
782 void
783 Film::set_top_crop (int c)
784 {
785         {
786                 boost::mutex::scoped_lock lm (_state_mutex);
787                 if (_crop.top == c) {
788                         return;
789                 }
790                 
791                 _crop.top = c;
792         }
793         signal_changed (CROP);
794 }
795
796 void
797 Film::set_bottom_crop (int c)
798 {
799         {
800                 boost::mutex::scoped_lock lm (_state_mutex);
801                 if (_crop.bottom == c) {
802                         return;
803                 }
804                 
805                 _crop.bottom = c;
806         }
807         signal_changed (CROP);
808 }
809
810 void
811 Film::set_filters (vector<Filter const *> f)
812 {
813         {
814                 boost::mutex::scoped_lock lm (_state_mutex);
815                 _filters = f;
816         }
817         signal_changed (FILTERS);
818 }
819
820 void
821 Film::set_scaler (Scaler const * s)
822 {
823         {
824                 boost::mutex::scoped_lock lm (_state_mutex);
825                 _scaler = s;
826         }
827         signal_changed (SCALER);
828 }
829
830 void
831 Film::set_trim_start (int t)
832 {
833         {
834                 boost::mutex::scoped_lock lm (_state_mutex);
835                 _trim_start = t;
836         }
837         signal_changed (TRIM_START);
838 }
839
840 void
841 Film::set_trim_end (int t)
842 {
843         {
844                 boost::mutex::scoped_lock lm (_state_mutex);
845                 _trim_end = t;
846         }
847         signal_changed (TRIM_END);
848 }
849
850 void
851 Film::set_ab (bool a)
852 {
853         {
854                 boost::mutex::scoped_lock lm (_state_mutex);
855                 _ab = a;
856         }
857         signal_changed (AB);
858 }
859
860 void
861 Film::set_audio_gain (float g)
862 {
863         {
864                 boost::mutex::scoped_lock lm (_state_mutex);
865                 _audio_gain = g;
866         }
867         signal_changed (AUDIO_GAIN);
868 }
869
870 void
871 Film::set_audio_delay (int d)
872 {
873         {
874                 boost::mutex::scoped_lock lm (_state_mutex);
875                 _audio_delay = d;
876         }
877         signal_changed (AUDIO_DELAY);
878 }
879
880 void
881 Film::set_with_subtitles (bool w)
882 {
883         {
884                 boost::mutex::scoped_lock lm (_state_mutex);
885                 _with_subtitles = w;
886         }
887         signal_changed (WITH_SUBTITLES);
888 }
889
890 void
891 Film::set_subtitle_offset (int o)
892 {
893         {
894                 boost::mutex::scoped_lock lm (_state_mutex);
895                 _subtitle_offset = o;
896         }
897         signal_changed (SUBTITLE_OFFSET);
898 }
899
900 void
901 Film::set_subtitle_scale (float s)
902 {
903         {
904                 boost::mutex::scoped_lock lm (_state_mutex);
905                 _subtitle_scale = s;
906         }
907         signal_changed (SUBTITLE_SCALE);
908 }
909
910 void
911 Film::set_colour_lut (int i)
912 {
913         {
914                 boost::mutex::scoped_lock lm (_state_mutex);
915                 _colour_lut = i;
916         }
917         signal_changed (COLOUR_LUT);
918 }
919
920 void
921 Film::set_j2k_bandwidth (int b)
922 {
923         {
924                 boost::mutex::scoped_lock lm (_state_mutex);
925                 _j2k_bandwidth = b;
926         }
927         signal_changed (J2K_BANDWIDTH);
928 }
929
930 void
931 Film::set_dci_metadata (DCIMetadata m)
932 {
933         {
934                 boost::mutex::scoped_lock lm (_state_mutex);
935                 _dci_metadata = m;
936         }
937         signal_changed (DCI_METADATA);
938 }
939
940
941 void
942 Film::set_dcp_frame_rate (int f)
943 {
944         {
945                 boost::mutex::scoped_lock lm (_state_mutex);
946                 _dcp_frame_rate = f;
947         }
948         signal_changed (DCP_FRAME_RATE);
949 }
950
951 void
952 Film::signal_changed (Property p)
953 {
954         {
955                 boost::mutex::scoped_lock lm (_state_mutex);
956                 _dirty = true;
957         }
958
959         switch (p) {
960         case Film::CONTENT:
961                 _playlist->setup (content ());
962                 set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
963                 set_audio_mapping (_playlist->default_audio_mapping ());
964                 break;
965         default:
966                 break;
967         }
968
969         if (ui_signaller) {
970                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
971         }
972 }
973
974 void
975 Film::set_dci_date_today ()
976 {
977         _dci_date = boost::gregorian::day_clock::local_day ();
978 }
979
980 string
981 Film::info_path (int f) const
982 {
983         boost::filesystem::path p;
984         p /= info_dir ();
985
986         stringstream s;
987         s.width (8);
988         s << setfill('0') << f << ".md5";
989
990         p /= s.str();
991
992         /* info_dir() will already have added any initial bit of the path,
993            so don't call file() on this.
994         */
995         return p.string ();
996 }
997
998 string
999 Film::j2c_path (int f, bool t) const
1000 {
1001         boost::filesystem::path p;
1002         p /= "j2c";
1003         p /= video_state_identifier ();
1004
1005         stringstream s;
1006         s.width (8);
1007         s << setfill('0') << f << ".j2c";
1008
1009         if (t) {
1010                 s << ".tmp";
1011         }
1012
1013         p /= s.str();
1014         return file (p.string ());
1015 }
1016
1017 /** Make an educated guess as to whether we have a complete DCP
1018  *  or not.
1019  *  @return true if we do.
1020  */
1021
1022 bool
1023 Film::have_dcp () const
1024 {
1025         try {
1026                 libdcp::DCP dcp (dir (dcp_name()));
1027                 dcp.read ();
1028         } catch (...) {
1029                 return false;
1030         }
1031
1032         return true;
1033 }
1034
1035 shared_ptr<Player>
1036 Film::player () const
1037 {
1038         boost::mutex::scoped_lock lm (_state_mutex);
1039         return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
1040 }
1041
1042 void
1043 Film::add_content (shared_ptr<Content> c)
1044 {
1045         {
1046                 boost::mutex::scoped_lock lm (_state_mutex);
1047                 _content.push_back (c);
1048         }
1049
1050         signal_changed (CONTENT);
1051
1052         examine_content (c);
1053 }
1054
1055 void
1056 Film::remove_content (shared_ptr<Content> c)
1057 {
1058         {
1059                 boost::mutex::scoped_lock lm (_state_mutex);
1060                 ContentList::iterator i = find (_content.begin(), _content.end(), c);
1061                 if (i != _content.end ()) {
1062                         _content.erase (i);
1063                 }
1064         }
1065
1066         signal_changed (CONTENT);
1067 }
1068
1069 void
1070 Film::move_content_earlier (shared_ptr<Content> c)
1071 {
1072         {
1073                 boost::mutex::scoped_lock lm (_state_mutex);
1074                 ContentList::iterator i = find (_content.begin(), _content.end(), c);
1075                 if (i == _content.begin () || i == _content.end()) {
1076                         return;
1077                 }
1078
1079                 ContentList::iterator j = i;
1080                 --j;
1081
1082                 swap (*i, *j);
1083         }
1084
1085         signal_changed (CONTENT);
1086 }
1087
1088 void
1089 Film::move_content_later (shared_ptr<Content> c)
1090 {
1091         {
1092                 boost::mutex::scoped_lock lm (_state_mutex);
1093                 ContentList::iterator i = find (_content.begin(), _content.end(), c);
1094                 if (i == _content.end()) {
1095                         return;
1096                 }
1097
1098                 ContentList::iterator j = i;
1099                 ++j;
1100                 if (j == _content.end ()) {
1101                         return;
1102                 }
1103
1104                 swap (*i, *j);
1105         }
1106
1107         signal_changed (CONTENT);
1108
1109 }
1110
1111 ContentAudioFrame
1112 Film::audio_length () const
1113 {
1114         return _playlist->audio_length ();
1115 }
1116
1117 int
1118 Film::audio_channels () const
1119 {
1120         return _playlist->audio_channels ();
1121 }
1122
1123 int
1124 Film::audio_frame_rate () const
1125 {
1126         return _playlist->audio_frame_rate ();
1127 }
1128
1129 bool
1130 Film::has_audio () const
1131 {
1132         return _playlist->has_audio ();
1133 }
1134
1135 float
1136 Film::video_frame_rate () const
1137 {
1138         return _playlist->video_frame_rate ();
1139 }
1140
1141 libdcp::Size
1142 Film::video_size () const
1143 {
1144         return _playlist->video_size ();
1145 }
1146
1147 ContentVideoFrame
1148 Film::video_length () const
1149 {
1150         return _playlist->video_length ();
1151 }
1152
1153 /** Unfortunately this is needed as the GUI has FFmpeg-specific controls */
1154 shared_ptr<FFmpegContent>
1155 Film::ffmpeg () const
1156 {
1157         boost::mutex::scoped_lock lm (_state_mutex);
1158         
1159         for (ContentList::const_iterator i = _content.begin (); i != _content.end(); ++i) {
1160                 shared_ptr<FFmpegContent> f = boost::dynamic_pointer_cast<FFmpegContent> (*i);
1161                 if (f) {
1162                         return f;
1163                 }
1164         }
1165
1166         return shared_ptr<FFmpegContent> ();
1167 }
1168
1169 vector<FFmpegSubtitleStream>
1170 Film::ffmpeg_subtitle_streams () const
1171 {
1172         shared_ptr<FFmpegContent> f = ffmpeg ();
1173         if (f) {
1174                 return f->subtitle_streams ();
1175         }
1176
1177         return vector<FFmpegSubtitleStream> ();
1178 }
1179
1180 boost::optional<FFmpegSubtitleStream>
1181 Film::ffmpeg_subtitle_stream () const
1182 {
1183         shared_ptr<FFmpegContent> f = ffmpeg ();
1184         if (f) {
1185                 return f->subtitle_stream ();
1186         }
1187
1188         return boost::none;
1189 }
1190
1191 vector<FFmpegAudioStream>
1192 Film::ffmpeg_audio_streams () const
1193 {
1194         shared_ptr<FFmpegContent> f = ffmpeg ();
1195         if (f) {
1196                 return f->audio_streams ();
1197         }
1198
1199         return vector<FFmpegAudioStream> ();
1200 }
1201
1202 boost::optional<FFmpegAudioStream>
1203 Film::ffmpeg_audio_stream () const
1204 {
1205         shared_ptr<FFmpegContent> f = ffmpeg ();
1206         if (f) {
1207                 return f->audio_stream ();
1208         }
1209
1210         return boost::none;
1211 }
1212
1213 void
1214 Film::set_ffmpeg_subtitle_stream (FFmpegSubtitleStream s)
1215 {
1216         shared_ptr<FFmpegContent> f = ffmpeg ();
1217         if (f) {
1218                 f->set_subtitle_stream (s);
1219         }
1220 }
1221
1222 void
1223 Film::set_ffmpeg_audio_stream (FFmpegAudioStream s)
1224 {
1225         shared_ptr<FFmpegContent> f = ffmpeg ();
1226         if (f) {
1227                 f->set_audio_stream (s);
1228         }
1229 }
1230
1231 void
1232 Film::set_audio_mapping (AudioMapping m)
1233 {
1234         {
1235                 boost::mutex::scoped_lock lm (_state_mutex);
1236                 _audio_mapping = m;
1237         }
1238
1239         signal_changed (AUDIO_MAPPING);
1240 }
1241
1242 void
1243 Film::content_changed (boost::weak_ptr<Content> c, int p)
1244 {
1245         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
1246                 set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
1247         } else if (p == AudioContentProperty::AUDIO_CHANNELS) {
1248                 set_audio_mapping (_playlist->default_audio_mapping ());
1249         }               
1250
1251         if (ui_signaller) {
1252                 ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
1253         }
1254 }