Do content digest in the examine contents job (fixes #6).
[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 "film.h"
33 #include "format.h"
34 #include "job.h"
35 #include "filter.h"
36 #include "transcoder.h"
37 #include "util.h"
38 #include "job_manager.h"
39 #include "ab_transcode_job.h"
40 #include "transcode_job.h"
41 #include "scp_dcp_job.h"
42 #include "make_dcp_job.h"
43 #include "log.h"
44 #include "options.h"
45 #include "exceptions.h"
46 #include "examine_content_job.h"
47 #include "scaler.h"
48 #include "decoder_factory.h"
49 #include "config.h"
50 #include "check_hashes_job.h"
51 #include "version.h"
52 #include "ui_signaller.h"
53 #include "video_decoder.h"
54 #include "audio_decoder.h"
55 #include "external_audio_decoder.h"
56
57 using std::string;
58 using std::stringstream;
59 using std::multimap;
60 using std::pair;
61 using std::map;
62 using std::vector;
63 using std::ifstream;
64 using std::ofstream;
65 using std::setfill;
66 using std::min;
67 using std::make_pair;
68 using std::cout;
69 using boost::shared_ptr;
70 using boost::lexical_cast;
71 using boost::to_upper_copy;
72 using boost::ends_with;
73 using boost::starts_with;
74 using boost::optional;
75
76 int const Film::state_version = 1;
77
78 /** Construct a Film object in a given directory, reading any metadata
79  *  file that exists in that directory.  An exception will be thrown if
80  *  must_exist is true and the specified directory does not exist.
81  *
82  *  @param d Film directory.
83  *  @param must_exist true to throw an exception if does not exist.
84  */
85
86 Film::Film (string d, bool must_exist)
87         : _use_dci_name (true)
88         , _trust_content_header (true)
89         , _dcp_content_type (0)
90         , _format (0)
91         , _scaler (Scaler::from_id ("bicubic"))
92         , _dcp_trim_start (0)
93         , _dcp_trim_end (0)
94         , _dcp_ab (false)
95         , _use_content_audio (true)
96         , _audio_gain (0)
97         , _audio_delay (0)
98         , _still_duration (10)
99         , _with_subtitles (false)
100         , _subtitle_offset (0)
101         , _subtitle_scale (1)
102         , _frames_per_second (0)
103         , _dirty (false)
104 {
105         /* Make state.directory a complete path without ..s (where possible)
106            (Code swiped from Adam Bowen on stackoverflow)
107         */
108         
109         boost::filesystem::path p (boost::filesystem::system_complete (d));
110         boost::filesystem::path result;
111         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
112                 if (*i == "..") {
113                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
114                                 result /= *i;
115                         } else {
116                                 result = result.parent_path ();
117                         }
118                 } else if (*i != ".") {
119                         result /= *i;
120                 }
121         }
122
123         set_directory (result.string ());
124         
125         if (!boost::filesystem::exists (directory())) {
126                 if (must_exist) {
127                         throw OpenFileError (directory());
128                 } else {
129                         boost::filesystem::create_directory (directory());
130                 }
131         }
132
133         _external_audio_stream = ExternalAudioStream::create ();
134
135         read_metadata ();
136
137         _log = new FileLog (file ("log"));
138         set_dci_date_today ();
139 }
140
141 Film::Film (Film const & o)
142         : _log (0)
143         , _directory         (o._directory)
144         , _name              (o._name)
145         , _use_dci_name      (o._use_dci_name)
146         , _content           (o._content)
147         , _trust_content_header (o._trust_content_header)
148         , _dcp_content_type  (o._dcp_content_type)
149         , _format            (o._format)
150         , _crop              (o._crop)
151         , _filters           (o._filters)
152         , _scaler            (o._scaler)
153         , _dcp_trim_start    (o._dcp_trim_start)
154         , _dcp_trim_end      (o._dcp_trim_end)
155         , _dcp_ab            (o._dcp_ab)
156         , _content_audio_stream (o._content_audio_stream)
157         , _external_audio    (o._external_audio)
158         , _use_content_audio (o._use_content_audio)
159         , _audio_gain        (o._audio_gain)
160         , _audio_delay       (o._audio_delay)
161         , _still_duration    (o._still_duration)
162         , _subtitle_stream   (o._subtitle_stream)
163         , _with_subtitles    (o._with_subtitles)
164         , _subtitle_offset   (o._subtitle_offset)
165         , _subtitle_scale    (o._subtitle_scale)
166         , _audio_language    (o._audio_language)
167         , _subtitle_language (o._subtitle_language)
168         , _territory         (o._territory)
169         , _rating            (o._rating)
170         , _studio            (o._studio)
171         , _facility          (o._facility)
172         , _package_type      (o._package_type)
173         , _size              (o._size)
174         , _length            (o._length)
175         , _content_digest    (o._content_digest)
176         , _content_audio_streams (o._content_audio_streams)
177         , _external_audio_stream (o._external_audio_stream)
178         , _subtitle_streams  (o._subtitle_streams)
179         , _frames_per_second (o._frames_per_second)
180         , _dirty             (o._dirty)
181 {
182
183 }
184
185 Film::~Film ()
186 {
187         delete _log;
188 }
189           
190 /** @return The path to the directory to write JPEG2000 files to */
191 string
192 Film::j2k_dir () const
193 {
194         assert (format());
195
196         boost::filesystem::path p;
197
198         /* Start with j2c */
199         p /= "j2c";
200
201         pair<string, string> f = Filter::ffmpeg_strings (filters());
202
203         /* Write stuff to specify the filter / post-processing settings that are in use,
204            so that we don't get confused about J2K files generated using different
205            settings.
206         */
207         stringstream s;
208         s << format()->id()
209           << "_" << content_digest()
210           << "_" << crop().left << "_" << crop().right << "_" << crop().top << "_" << crop().bottom
211           << "_" << f.first << "_" << f.second
212           << "_" << scaler()->id();
213
214         p /= s.str ();
215
216         /* Similarly for the A/B case */
217         if (dcp_ab()) {
218                 stringstream s;
219                 pair<string, string> fa = Filter::ffmpeg_strings (Config::instance()->reference_filters());
220                 s << "ab_" << Config::instance()->reference_scaler()->id() << "_" << fa.first << "_" << fa.second;
221                 p /= s.str ();
222         }
223         
224         return dir (p.string());
225 }
226
227 /** Add suitable Jobs to the JobManager to create a DCP for this Film.
228  *  @param true to transcode, false to use the WAV and J2K files that are already there.
229  */
230 void
231 Film::make_dcp (bool transcode)
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 ("DVD-o-matic %1 git %2 using %3", dvdomatic_version, dvdomatic_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         if (format() == 0) {
248                 throw MissingSettingError ("format");
249         }
250
251         if (content().empty ()) {
252                 throw MissingSettingError ("content");
253         }
254
255         if (dcp_content_type() == 0) {
256                 throw MissingSettingError ("content type");
257         }
258
259         if (name().empty()) {
260                 throw MissingSettingError ("name");
261         }
262
263         shared_ptr<EncodeOptions> oe (new EncodeOptions (j2k_dir(), ".j2c", dir ("wavs")));
264         oe->out_size = format()->dcp_size ();
265         oe->padding = format()->dcp_padding (shared_from_this ());
266         if (dcp_length ()) {
267                 oe->video_range = make_pair (dcp_trim_start(), dcp_trim_start() + dcp_length().get());
268                 if (audio_stream()) {
269                         oe->audio_range = make_pair (
270                                 video_frames_to_audio_frames (oe->video_range.get().first, audio_stream()->sample_rate(), frames_per_second()),
271                                 video_frames_to_audio_frames (oe->video_range.get().second, audio_stream()->sample_rate(), frames_per_second())
272                                 );
273                 }
274                         
275         }
276         
277         oe->video_skip = dcp_frame_rate (frames_per_second()).skip;
278
279         shared_ptr<DecodeOptions> od (new DecodeOptions);
280         od->decode_subtitles = with_subtitles ();
281
282         shared_ptr<Job> r;
283
284         if (transcode) {
285                 if (dcp_ab()) {
286                         r = JobManager::instance()->add (shared_ptr<Job> (new ABTranscodeJob (shared_from_this(), od, oe, shared_ptr<Job> ())));
287                 } else {
288                         r = JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this(), od, oe, shared_ptr<Job> ())));
289                 }
290         }
291
292         r = JobManager::instance()->add (shared_ptr<Job> (new CheckHashesJob (shared_from_this(), od, oe, r)));
293         JobManager::instance()->add (shared_ptr<Job> (new MakeDCPJob (shared_from_this(), oe, r)));
294 }
295
296 /** Start a job to examine our content file */
297 void
298 Film::examine_content ()
299 {
300         if (_examine_content_job) {
301                 return;
302         }
303
304         _examine_content_job.reset (new ExamineContentJob (shared_from_this(), shared_ptr<Job> ()));
305         _examine_content_job->Finished.connect (bind (&Film::examine_content_finished, this));
306         JobManager::instance()->add (_examine_content_job);
307 }
308
309 void
310 Film::examine_content_finished ()
311 {
312         _examine_content_job.reset ();
313 }
314
315 /** @return full paths to any audio files that this Film has */
316 vector<string>
317 Film::audio_files () const
318 {
319         vector<string> f;
320         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (dir("wavs")); i != boost::filesystem::directory_iterator(); ++i) {
321                 f.push_back (i->path().string ());
322         }
323
324         return f;
325 }
326
327 /** Start a job to send our DCP to the configured TMS */
328 void
329 Film::send_dcp_to_tms ()
330 {
331         shared_ptr<Job> j (new SCPDCPJob (shared_from_this(), shared_ptr<Job> ()));
332         JobManager::instance()->add (j);
333 }
334
335 /** Count the number of frames that have been encoded for this film.
336  *  @return frame count.
337  */
338 int
339 Film::encoded_frames () const
340 {
341         if (format() == 0) {
342                 return 0;
343         }
344
345         int N = 0;
346         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (j2k_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
347                 ++N;
348                 boost::this_thread::interruption_point ();
349         }
350
351         return N;
352 }
353
354 /** Write state to our `metadata' file */
355 void
356 Film::write_metadata () const
357 {
358         boost::mutex::scoped_lock lm (_state_mutex);
359
360         boost::filesystem::create_directories (directory());
361
362         string const m = file ("metadata");
363         ofstream f (m.c_str ());
364         if (!f.good ()) {
365                 throw CreateFileError (m);
366         }
367
368         f << "version " << state_version << "\n";
369
370         /* User stuff */
371         f << "name " << _name << "\n";
372         f << "use_dci_name " << _use_dci_name << "\n";
373         f << "content " << _content << "\n";
374         f << "trust_content_header " << (_trust_content_header ? "1" : "0") << "\n";
375         if (_dcp_content_type) {
376                 f << "dcp_content_type " << _dcp_content_type->pretty_name () << "\n";
377         }
378         if (_format) {
379                 f << "format " << _format->as_metadata () << "\n";
380         }
381         f << "left_crop " << _crop.left << "\n";
382         f << "right_crop " << _crop.right << "\n";
383         f << "top_crop " << _crop.top << "\n";
384         f << "bottom_crop " << _crop.bottom << "\n";
385         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
386                 f << "filter " << (*i)->id () << "\n";
387         }
388         f << "scaler " << _scaler->id () << "\n";
389         f << "dcp_trim_start " << _dcp_trim_start << "\n";
390         f << "dcp_trim_end " << _dcp_trim_end << "\n";
391         f << "dcp_ab " << (_dcp_ab ? "1" : "0") << "\n";
392         if (_content_audio_stream) {
393                 f << "selected_content_audio_stream " << _content_audio_stream->to_string() << "\n";
394         }
395         for (vector<string>::const_iterator i = _external_audio.begin(); i != _external_audio.end(); ++i) {
396                 f << "external_audio " << *i << "\n";
397         }
398         f << "use_content_audio " << (_use_content_audio ? "1" : "0") << "\n";
399         f << "audio_gain " << _audio_gain << "\n";
400         f << "audio_delay " << _audio_delay << "\n";
401         f << "still_duration " << _still_duration << "\n";
402         if (_subtitle_stream) {
403                 f << "selected_subtitle_stream " << _subtitle_stream->to_string() << "\n";
404         }
405         f << "with_subtitles " << _with_subtitles << "\n";
406         f << "subtitle_offset " << _subtitle_offset << "\n";
407         f << "subtitle_scale " << _subtitle_scale << "\n";
408         f << "audio_language " << _audio_language << "\n";
409         f << "subtitle_language " << _subtitle_language << "\n";
410         f << "territory " << _territory << "\n";
411         f << "rating " << _rating << "\n";
412         f << "studio " << _studio << "\n";
413         f << "facility " << _facility << "\n";
414         f << "package_type " << _package_type << "\n";
415
416         f << "width " << _size.width << "\n";
417         f << "height " << _size.height << "\n";
418         f << "length " << _length.get_value_or(0) << "\n";
419         f << "content_digest " << _content_digest << "\n";
420
421         for (vector<shared_ptr<AudioStream> >::const_iterator i = _content_audio_streams.begin(); i != _content_audio_streams.end(); ++i) {
422                 f << "content_audio_stream " << (*i)->to_string () << "\n";
423         }
424
425         f << "external_audio_stream " << _external_audio_stream->to_string() << "\n";
426
427         for (vector<shared_ptr<SubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
428                 f << "subtitle_stream " << (*i)->to_string () << "\n";
429         }
430
431         f << "frames_per_second " << _frames_per_second << "\n";
432         
433         _dirty = false;
434 }
435
436 /** Read state from our metadata file */
437 void
438 Film::read_metadata ()
439 {
440         boost::mutex::scoped_lock lm (_state_mutex);
441
442         _external_audio.clear ();
443         _content_audio_streams.clear ();
444         _subtitle_streams.clear ();
445
446         boost::optional<int> version;
447
448         /* Backward compatibility things */
449         boost::optional<int> audio_sample_rate;
450         boost::optional<int> audio_stream_index;
451         boost::optional<int> subtitle_stream_index;
452         
453         ifstream f (file ("metadata").c_str());
454         multimap<string, string> kv = read_key_value (f);
455
456         /* We need version before anything else */
457         multimap<string, string>::iterator v = kv.find ("version");
458         if (v != kv.end ()) {
459                 version = atoi (v->second.c_str());
460         }
461         
462         for (multimap<string, string>::const_iterator i = kv.begin(); i != kv.end(); ++i) {
463                 string const k = i->first;
464                 string const v = i->second;
465
466                 if (k == "audio_sample_rate") {
467                         audio_sample_rate = atoi (v.c_str());
468                 }
469
470                 /* User-specified stuff */
471                 if (k == "name") {
472                         _name = v;
473                 } else if (k == "use_dci_name") {
474                         _use_dci_name = (v == "1");
475                 } else if (k == "content") {
476                         _content = v;
477                 } else if (k == "trust_content_header") {
478                         _trust_content_header = (v == "1");
479                 } else if (k == "dcp_content_type") {
480                         _dcp_content_type = DCPContentType::from_pretty_name (v);
481                 } else if (k == "format") {
482                         _format = Format::from_metadata (v);
483                 } else if (k == "left_crop") {
484                         _crop.left = atoi (v.c_str ());
485                 } else if (k == "right_crop") {
486                         _crop.right = atoi (v.c_str ());
487                 } else if (k == "top_crop") {
488                         _crop.top = atoi (v.c_str ());
489                 } else if (k == "bottom_crop") {
490                         _crop.bottom = atoi (v.c_str ());
491                 } else if (k == "filter") {
492                         _filters.push_back (Filter::from_id (v));
493                 } else if (k == "scaler") {
494                         _scaler = Scaler::from_id (v);
495                 } else if (k == "dcp_trim_start") {
496                         _dcp_trim_start = atoi (v.c_str ());
497                 } else if (k == "dcp_trim_end") {
498                         _dcp_trim_end = atoi (v.c_str ());
499                 } else if (k == "dcp_ab") {
500                         _dcp_ab = (v == "1");
501                 } else if (k == "selected_content_audio_stream" || (!version && k == "selected_audio_stream")) {
502                         if (!version) {
503                                 audio_stream_index = atoi (v.c_str ());
504                         } else {
505                                 _content_audio_stream = audio_stream_factory (v, version);
506                         }
507                 } else if (k == "external_audio") {
508                         _external_audio.push_back (v);
509                 } else if (k == "use_content_audio") {
510                         _use_content_audio = (v == "1");
511                 } else if (k == "audio_gain") {
512                         _audio_gain = atof (v.c_str ());
513                 } else if (k == "audio_delay") {
514                         _audio_delay = atoi (v.c_str ());
515                 } else if (k == "still_duration") {
516                         _still_duration = atoi (v.c_str ());
517                 } else if (k == "selected_subtitle_stream") {
518                         if (!version) {
519                                 subtitle_stream_index = atoi (v.c_str ());
520                         } else {
521                                 _subtitle_stream = subtitle_stream_factory (v, version);
522                         }
523                 } else if (k == "with_subtitles") {
524                         _with_subtitles = (v == "1");
525                 } else if (k == "subtitle_offset") {
526                         _subtitle_offset = atoi (v.c_str ());
527                 } else if (k == "subtitle_scale") {
528                         _subtitle_scale = atof (v.c_str ());
529                 } else if (k == "audio_language") {
530                         _audio_language = v;
531                 } else if (k == "subtitle_language") {
532                         _subtitle_language = v;
533                 } else if (k == "territory") {
534                         _territory = v;
535                 } else if (k == "rating") {
536                         _rating = v;
537                 } else if (k == "studio") {
538                         _studio = v;
539                 } else if (k == "facility") {
540                         _facility = v;
541                 } else if (k == "package_type") {
542                         _package_type = v;
543                 }
544                 
545                 /* Cached stuff */
546                 if (k == "width") {
547                         _size.width = atoi (v.c_str ());
548                 } else if (k == "height") {
549                         _size.height = atoi (v.c_str ());
550                 } else if (k == "length") {
551                         int const vv = atoi (v.c_str ());
552                         if (vv) {
553                                 _length = vv;
554                         }
555                 } else if (k == "content_digest") {
556                         _content_digest = v;
557                 } else if (k == "content_audio_stream" || (!version && k == "audio_stream")) {
558                         _content_audio_streams.push_back (audio_stream_factory (v, version));
559                 } else if (k == "external_audio_stream") {
560                         _external_audio_stream = audio_stream_factory (v, version);
561                 } else if (k == "subtitle_stream") {
562                         _subtitle_streams.push_back (subtitle_stream_factory (v, version));
563                 } else if (k == "frames_per_second") {
564                         _frames_per_second = atof (v.c_str ());
565                 }
566         }
567
568         if (!version) {
569                 if (audio_sample_rate) {
570                         /* version < 1 didn't specify sample rate in the audio streams, so fill it in here */
571                         for (vector<shared_ptr<AudioStream> >::iterator i = _content_audio_streams.begin(); i != _content_audio_streams.end(); ++i) {
572                                 (*i)->set_sample_rate (audio_sample_rate.get());
573                         }
574                 }
575
576                 /* also the selected stream was specified as an index */
577                 if (audio_stream_index && audio_stream_index.get() >= 0 && audio_stream_index.get() < (int) _content_audio_streams.size()) {
578                         _content_audio_stream = _content_audio_streams[audio_stream_index.get()];
579                 }
580
581                 /* similarly the subtitle */
582                 if (subtitle_stream_index && subtitle_stream_index.get() >= 0 && subtitle_stream_index.get() < (int) _subtitle_streams.size()) {
583                         _subtitle_stream = _subtitle_streams[subtitle_stream_index.get()];
584                 }
585         }
586                 
587         _dirty = false;
588 }
589
590 Size
591 Film::cropped_size (Size s) const
592 {
593         boost::mutex::scoped_lock lm (_state_mutex);
594         s.width -= _crop.left + _crop.right;
595         s.height -= _crop.top + _crop.bottom;
596         return s;
597 }
598
599 /** Given a directory name, return its full path within the Film's directory.
600  *  The directory (and its parents) will be created if they do not exist.
601  */
602 string
603 Film::dir (string d) const
604 {
605         boost::mutex::scoped_lock lm (_directory_mutex);
606         boost::filesystem::path p;
607         p /= _directory;
608         p /= d;
609         boost::filesystem::create_directories (p);
610         return p.string ();
611 }
612
613 /** Given a file or directory name, return its full path within the Film's directory.
614  *  _directory_mutex must not be locked on entry.
615  */
616 string
617 Film::file (string f) const
618 {
619         boost::mutex::scoped_lock lm (_directory_mutex);
620         boost::filesystem::path p;
621         p /= _directory;
622         p /= f;
623         return p.string ();
624 }
625
626 /** @return full path of the content (actual video) file
627  *  of the Film.
628  */
629 string
630 Film::content_path () const
631 {
632         boost::mutex::scoped_lock lm (_state_mutex);
633         if (boost::filesystem::path(_content).has_root_directory ()) {
634                 return _content;
635         }
636
637         return file (_content);
638 }
639
640 ContentType
641 Film::content_type () const
642 {
643         if (boost::filesystem::is_directory (_content)) {
644                 /* Directory of images, we assume */
645                 return VIDEO;
646         }
647
648         if (still_image_file (_content)) {
649                 return STILL;
650         }
651
652         return VIDEO;
653 }
654
655 /** @return The sampling rate that we will resample the audio to */
656 int
657 Film::target_audio_sample_rate () const
658 {
659         if (!audio_stream()) {
660                 return 0;
661         }
662         
663         /* Resample to a DCI-approved sample rate */
664         double t = dcp_audio_sample_rate (audio_stream()->sample_rate());
665
666         DCPFrameRate dfr = dcp_frame_rate (frames_per_second ());
667
668         /* Compensate for the fact that video will be rounded to the
669            nearest integer number of frames per second.
670         */
671         if (dfr.run_fast) {
672                 t *= _frames_per_second * dfr.skip / dfr.frames_per_second;
673         }
674
675         return rint (t);
676 }
677
678 boost::optional<SourceFrame>
679 Film::dcp_length () const
680 {
681         if (!length()) {
682                 return boost::optional<SourceFrame> ();
683         }
684
685         return length().get() - dcp_trim_start() - dcp_trim_end();
686 }
687
688 /** @return a DCI-compliant name for a DCP of this film */
689 string
690 Film::dci_name () const
691 {
692         stringstream d;
693
694         string fixed_name = to_upper_copy (name());
695         for (size_t i = 0; i < fixed_name.length(); ++i) {
696                 if (fixed_name[i] == ' ') {
697                         fixed_name[i] = '-';
698                 }
699         }
700
701         /* Spec is that the name part should be maximum 14 characters, as I understand it */
702         if (fixed_name.length() > 14) {
703                 fixed_name = fixed_name.substr (0, 14);
704         }
705
706         d << fixed_name << "_";
707
708         if (dcp_content_type()) {
709                 d << dcp_content_type()->dci_name() << "_";
710         }
711
712         if (format()) {
713                 d << format()->dci_name() << "_";
714         }
715
716         if (!audio_language().empty ()) {
717                 d << audio_language();
718                 if (!subtitle_language().empty() && with_subtitles()) {
719                         d << "-" << subtitle_language();
720                 } else {
721                         d << "-XX";
722                 }
723                         
724                 d << "_";
725         }
726
727         if (!territory().empty ()) {
728                 d << territory();
729                 if (!rating().empty ()) {
730                         d << "-" << rating();
731                 }
732                 d << "_";
733         }
734
735         switch (audio_channels()) {
736         case 1:
737                 d << "10_";
738                 break;
739         case 2:
740                 d << "20_";
741                 break;
742         case 6:
743                 d << "51_";
744                 break;
745         case 8:
746                 d << "71_";
747                 break;
748         }
749
750         d << "2K_";
751
752         if (!studio().empty ()) {
753                 d << studio() << "_";
754         }
755
756         d << boost::gregorian::to_iso_string (_dci_date) << "_";
757
758         if (!facility().empty ()) {
759                 d << facility() << "_";
760         }
761
762         if (!package_type().empty ()) {
763                 d << package_type();
764         }
765
766         return d.str ();
767 }
768
769 /** @return name to give the DCP */
770 string
771 Film::dcp_name () const
772 {
773         if (use_dci_name()) {
774                 return dci_name ();
775         }
776
777         return name();
778 }
779
780
781 void
782 Film::set_directory (string d)
783 {
784         boost::mutex::scoped_lock lm (_state_mutex);
785         _directory = d;
786         _dirty = true;
787 }
788
789 void
790 Film::set_name (string n)
791 {
792         {
793                 boost::mutex::scoped_lock lm (_state_mutex);
794                 _name = n;
795         }
796         signal_changed (NAME);
797 }
798
799 void
800 Film::set_use_dci_name (bool u)
801 {
802         {
803                 boost::mutex::scoped_lock lm (_state_mutex);
804                 _use_dci_name = u;
805         }
806         signal_changed (USE_DCI_NAME);
807 }
808
809 void
810 Film::set_content (string c)
811 {
812         string check = directory ();
813
814 #if BOOST_FILESYSTEM_VERSION == 3
815         boost::filesystem::path slash ("/");
816         string platform_slash = slash.make_preferred().string ();
817 #else
818 #ifdef DVDOMATIC_WINDOWS
819         string platform_slash = "\\";
820 #else
821         string platform_slash = "/";
822 #endif
823 #endif  
824
825         if (!ends_with (check, platform_slash)) {
826                 check += platform_slash;
827         }
828         
829         if (boost::filesystem::path(c).has_root_directory () && starts_with (c, check)) {
830                 c = c.substr (_directory.length() + 1);
831         }
832
833         string old_content;
834         
835         {
836                 boost::mutex::scoped_lock lm (_state_mutex);
837                 if (c == _content) {
838                         return;
839                 }
840
841                 old_content = _content;
842                 _content = c;
843         }
844
845         /* Reset streams here in case the new content doesn't have one or the other */
846         _content_audio_stream = shared_ptr<AudioStream> ();
847         _subtitle_stream = shared_ptr<SubtitleStream> ();
848
849         /* Create a temporary decoder so that we can get information
850            about the content.
851         */
852
853         try {
854                 shared_ptr<DecodeOptions> o (new DecodeOptions);
855                 Decoders d = decoder_factory (shared_from_this(), o, 0);
856                 
857                 set_size (d.video->native_size ());
858                 set_frames_per_second (d.video->frames_per_second ());
859                 set_subtitle_streams (d.video->subtitle_streams ());
860                 set_content_audio_streams (d.audio->audio_streams ());
861
862                 /* Start off with the first audio and subtitle streams */
863                 if (!d.audio->audio_streams().empty()) {
864                         set_content_audio_stream (d.audio->audio_streams().front());
865                 }
866                 
867                 if (!d.video->subtitle_streams().empty()) {
868                         set_subtitle_stream (d.video->subtitle_streams().front());
869                 }
870                 
871                 {
872                         boost::mutex::scoped_lock lm (_state_mutex);
873                         _content = c;
874                 }
875                 
876                 signal_changed (CONTENT);
877                 
878                 examine_content ();
879
880         } catch (...) {
881
882                 boost::mutex::scoped_lock lm (_state_mutex);
883                 _content = old_content;
884                 throw;
885
886         }
887 }
888
889 void
890 Film::set_trust_content_header (bool t)
891 {
892         {
893                 boost::mutex::scoped_lock lm (_state_mutex);
894                 _trust_content_header = t;
895         }
896         
897         signal_changed (TRUST_CONTENT_HEADER);
898
899         if (!_trust_content_header && !content().empty()) {
900                 /* We just said that we don't trust the content's header */
901                 examine_content ();
902         }
903 }
904                
905 void
906 Film::set_dcp_content_type (DCPContentType const * t)
907 {
908         {
909                 boost::mutex::scoped_lock lm (_state_mutex);
910                 _dcp_content_type = t;
911         }
912         signal_changed (DCP_CONTENT_TYPE);
913 }
914
915 void
916 Film::set_format (Format const * f)
917 {
918         {
919                 boost::mutex::scoped_lock lm (_state_mutex);
920                 _format = f;
921         }
922         signal_changed (FORMAT);
923 }
924
925 void
926 Film::set_crop (Crop c)
927 {
928         {
929                 boost::mutex::scoped_lock lm (_state_mutex);
930                 _crop = c;
931         }
932         signal_changed (CROP);
933 }
934
935 void
936 Film::set_left_crop (int c)
937 {
938         {
939                 boost::mutex::scoped_lock lm (_state_mutex);
940                 
941                 if (_crop.left == c) {
942                         return;
943                 }
944                 
945                 _crop.left = c;
946         }
947         signal_changed (CROP);
948 }
949
950 void
951 Film::set_right_crop (int c)
952 {
953         {
954                 boost::mutex::scoped_lock lm (_state_mutex);
955                 if (_crop.right == c) {
956                         return;
957                 }
958                 
959                 _crop.right = c;
960         }
961         signal_changed (CROP);
962 }
963
964 void
965 Film::set_top_crop (int c)
966 {
967         {
968                 boost::mutex::scoped_lock lm (_state_mutex);
969                 if (_crop.top == c) {
970                         return;
971                 }
972                 
973                 _crop.top = c;
974         }
975         signal_changed (CROP);
976 }
977
978 void
979 Film::set_bottom_crop (int c)
980 {
981         {
982                 boost::mutex::scoped_lock lm (_state_mutex);
983                 if (_crop.bottom == c) {
984                         return;
985                 }
986                 
987                 _crop.bottom = c;
988         }
989         signal_changed (CROP);
990 }
991
992 void
993 Film::set_filters (vector<Filter const *> f)
994 {
995         {
996                 boost::mutex::scoped_lock lm (_state_mutex);
997                 _filters = f;
998         }
999         signal_changed (FILTERS);
1000 }
1001
1002 void
1003 Film::set_scaler (Scaler const * s)
1004 {
1005         {
1006                 boost::mutex::scoped_lock lm (_state_mutex);
1007                 _scaler = s;
1008         }
1009         signal_changed (SCALER);
1010 }
1011
1012 void
1013 Film::set_dcp_trim_start (int t)
1014 {
1015         {
1016                 boost::mutex::scoped_lock lm (_state_mutex);
1017                 _dcp_trim_start = t;
1018         }
1019         signal_changed (DCP_TRIM_START);
1020 }
1021
1022 void
1023 Film::set_dcp_trim_end (int t)
1024 {
1025         {
1026                 boost::mutex::scoped_lock lm (_state_mutex);
1027                 _dcp_trim_end = t;
1028         }
1029         signal_changed (DCP_TRIM_END);
1030 }
1031
1032 void
1033 Film::set_dcp_ab (bool a)
1034 {
1035         {
1036                 boost::mutex::scoped_lock lm (_state_mutex);
1037                 _dcp_ab = a;
1038         }
1039         signal_changed (DCP_AB);
1040 }
1041
1042 void
1043 Film::set_content_audio_stream (shared_ptr<AudioStream> s)
1044 {
1045         {
1046                 boost::mutex::scoped_lock lm (_state_mutex);
1047                 _content_audio_stream = s;
1048         }
1049         signal_changed (CONTENT_AUDIO_STREAM);
1050 }
1051
1052 void
1053 Film::set_external_audio (vector<string> a)
1054 {
1055         {
1056                 boost::mutex::scoped_lock lm (_state_mutex);
1057                 _external_audio = a;
1058         }
1059
1060         shared_ptr<DecodeOptions> o (new DecodeOptions);
1061         shared_ptr<ExternalAudioDecoder> decoder (new ExternalAudioDecoder (shared_from_this(), o, 0));
1062         if (decoder->audio_stream()) {
1063                 _external_audio_stream = decoder->audio_stream ();
1064         }
1065         
1066         signal_changed (EXTERNAL_AUDIO);
1067 }
1068
1069 void
1070 Film::set_use_content_audio (bool e)
1071 {
1072         {
1073                 boost::mutex::scoped_lock lm (_state_mutex);
1074                 _use_content_audio = e;
1075         }
1076
1077         signal_changed (USE_CONTENT_AUDIO);
1078 }
1079
1080 void
1081 Film::set_audio_gain (float g)
1082 {
1083         {
1084                 boost::mutex::scoped_lock lm (_state_mutex);
1085                 _audio_gain = g;
1086         }
1087         signal_changed (AUDIO_GAIN);
1088 }
1089
1090 void
1091 Film::set_audio_delay (int d)
1092 {
1093         {
1094                 boost::mutex::scoped_lock lm (_state_mutex);
1095                 _audio_delay = d;
1096         }
1097         signal_changed (AUDIO_DELAY);
1098 }
1099
1100 void
1101 Film::set_still_duration (int d)
1102 {
1103         {
1104                 boost::mutex::scoped_lock lm (_state_mutex);
1105                 _still_duration = d;
1106         }
1107         signal_changed (STILL_DURATION);
1108 }
1109
1110 void
1111 Film::set_subtitle_stream (shared_ptr<SubtitleStream> s)
1112 {
1113         {
1114                 boost::mutex::scoped_lock lm (_state_mutex);
1115                 _subtitle_stream = s;
1116         }
1117         signal_changed (SUBTITLE_STREAM);
1118 }
1119
1120 void
1121 Film::set_with_subtitles (bool w)
1122 {
1123         {
1124                 boost::mutex::scoped_lock lm (_state_mutex);
1125                 _with_subtitles = w;
1126         }
1127         signal_changed (WITH_SUBTITLES);
1128 }
1129
1130 void
1131 Film::set_subtitle_offset (int o)
1132 {
1133         {
1134                 boost::mutex::scoped_lock lm (_state_mutex);
1135                 _subtitle_offset = o;
1136         }
1137         signal_changed (SUBTITLE_OFFSET);
1138 }
1139
1140 void
1141 Film::set_subtitle_scale (float s)
1142 {
1143         {
1144                 boost::mutex::scoped_lock lm (_state_mutex);
1145                 _subtitle_scale = s;
1146         }
1147         signal_changed (SUBTITLE_SCALE);
1148 }
1149
1150 void
1151 Film::set_audio_language (string l)
1152 {
1153         {
1154                 boost::mutex::scoped_lock lm (_state_mutex);
1155                 _audio_language = l;
1156         }
1157         signal_changed (DCI_METADATA);
1158 }
1159
1160 void
1161 Film::set_subtitle_language (string l)
1162 {
1163         {
1164                 boost::mutex::scoped_lock lm (_state_mutex);
1165                 _subtitle_language = l;
1166         }
1167         signal_changed (DCI_METADATA);
1168 }
1169
1170 void
1171 Film::set_territory (string t)
1172 {
1173         {
1174                 boost::mutex::scoped_lock lm (_state_mutex);
1175                 _territory = t;
1176         }
1177         signal_changed (DCI_METADATA);
1178 }
1179
1180 void
1181 Film::set_rating (string r)
1182 {
1183         {
1184                 boost::mutex::scoped_lock lm (_state_mutex);
1185                 _rating = r;
1186         }
1187         signal_changed (DCI_METADATA);
1188 }
1189
1190 void
1191 Film::set_studio (string s)
1192 {
1193         {
1194                 boost::mutex::scoped_lock lm (_state_mutex);
1195                 _studio = s;
1196         }
1197         signal_changed (DCI_METADATA);
1198 }
1199
1200 void
1201 Film::set_facility (string f)
1202 {
1203         {
1204                 boost::mutex::scoped_lock lm (_state_mutex);
1205                 _facility = f;
1206         }
1207         signal_changed (DCI_METADATA);
1208 }
1209
1210 void
1211 Film::set_package_type (string p)
1212 {
1213         {
1214                 boost::mutex::scoped_lock lm (_state_mutex);
1215                 _package_type = p;
1216         }
1217         signal_changed (DCI_METADATA);
1218 }
1219
1220 void
1221 Film::set_size (Size s)
1222 {
1223         {
1224                 boost::mutex::scoped_lock lm (_state_mutex);
1225                 _size = s;
1226         }
1227         signal_changed (SIZE);
1228 }
1229
1230 void
1231 Film::set_length (SourceFrame l)
1232 {
1233         {
1234                 boost::mutex::scoped_lock lm (_state_mutex);
1235                 _length = l;
1236         }
1237         signal_changed (LENGTH);
1238 }
1239
1240 void
1241 Film::unset_length ()
1242 {
1243         {
1244                 boost::mutex::scoped_lock lm (_state_mutex);
1245                 _length = boost::none;
1246         }
1247         signal_changed (LENGTH);
1248 }       
1249
1250 void
1251 Film::set_content_digest (string d)
1252 {
1253         {
1254                 boost::mutex::scoped_lock lm (_state_mutex);
1255                 _content_digest = d;
1256         }
1257         _dirty = true;
1258 }
1259
1260 void
1261 Film::set_content_audio_streams (vector<shared_ptr<AudioStream> > s)
1262 {
1263         {
1264                 boost::mutex::scoped_lock lm (_state_mutex);
1265                 _content_audio_streams = s;
1266         }
1267         signal_changed (CONTENT_AUDIO_STREAMS);
1268 }
1269
1270 void
1271 Film::set_subtitle_streams (vector<shared_ptr<SubtitleStream> > s)
1272 {
1273         {
1274                 boost::mutex::scoped_lock lm (_state_mutex);
1275                 _subtitle_streams = s;
1276         }
1277         signal_changed (SUBTITLE_STREAMS);
1278 }
1279
1280 void
1281 Film::set_frames_per_second (float f)
1282 {
1283         {
1284                 boost::mutex::scoped_lock lm (_state_mutex);
1285                 _frames_per_second = f;
1286         }
1287         signal_changed (FRAMES_PER_SECOND);
1288 }
1289         
1290 void
1291 Film::signal_changed (Property p)
1292 {
1293         {
1294                 boost::mutex::scoped_lock lm (_state_mutex);
1295                 _dirty = true;
1296         }
1297
1298         if (ui_signaller) {
1299                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
1300         }
1301 }
1302
1303 int
1304 Film::audio_channels () const
1305 {
1306         shared_ptr<AudioStream> s = audio_stream ();
1307         if (!s) {
1308                 return 0;
1309         }
1310
1311         return s->channels ();
1312 }
1313
1314 void
1315 Film::set_dci_date_today ()
1316 {
1317         _dci_date = boost::gregorian::day_clock::local_day ();
1318 }
1319
1320 boost::shared_ptr<AudioStream>
1321 Film::audio_stream () const
1322 {
1323         if (use_content_audio()) {
1324                 return _content_audio_stream;
1325         }
1326
1327         return _external_audio_stream;
1328 }