Merge master.
[dcpomatic.git] / src / lib / film.h
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 /** @file  src/film.h
21  *  @brief A representation of a piece of video (with sound), including naming,
22  *  the source content file, and how it should be presented in a DCP.
23  */
24
25 #ifndef DVDOMATIC_FILM_H
26 #define DVDOMATIC_FILM_H
27
28 #include <string>
29 #include <vector>
30 #include <inttypes.h>
31 #include <boost/thread/mutex.hpp>
32 #include <boost/thread.hpp>
33 #include <boost/signals2.hpp>
34 #include <boost/enable_shared_from_this.hpp>
35 extern "C" {
36 #include <libavcodec/avcodec.h>
37 }
38 #include "dcp_content_type.h"
39 #include "util.h"
40 #include "stream.h"
41
42 class Format;
43 class Job;
44 class Filter;
45 class Log;
46 class ExamineContentJob;
47
48 /** @class Film
49  *  @brief A representation of a video with sound.
50  *
51  *  A representation of a piece of video (with sound), including naming,
52  *  the source content file, and how it should be presented in a DCP.
53  */
54 class Film : public boost::enable_shared_from_this<Film>
55 {
56 public:
57         Film (std::string d, bool must_exist = true);
58         Film (Film const &);
59         ~Film ();
60
61         std::string j2k_dir () const;
62         std::vector<std::string> audio_files () const;
63         std::pair<Position, std::string> thumb_subtitle (int) const;
64
65         void examine_content ();
66         void send_dcp_to_tms ();
67         void copy_from_dvd ();
68
69         void make_dcp (bool);
70
71         /** @return Logger.
72          *  It is safe to call this from any thread.
73          */
74         Log* log () const {
75                 return _log;
76         }
77
78         int encoded_frames () const;
79         
80         std::string file (std::string f) const;
81         std::string dir (std::string d) const;
82
83         std::string content_path () const;
84         ContentType content_type () const;
85         
86         bool content_is_dvd () const;
87
88         std::string thumb_file (int) const;
89         std::string thumb_base (int) const;
90         int thumb_frame (int) const;
91
92         int target_audio_sample_rate () const;
93         
94         void write_metadata () const;
95         void read_metadata ();
96
97         Size cropped_size (Size) const;
98         boost::optional<int> dcp_length () const;
99         std::string dci_name () const;
100         std::string dcp_name () const;
101
102         bool dirty () const {
103                 return _dirty;
104         }
105
106         int audio_channels () const;
107
108         void set_dci_date_today ();
109
110         enum Property {
111                 NONE,
112                 NAME,
113                 USE_DCI_NAME,
114                 CONTENT,
115                 DCP_CONTENT_TYPE,
116                 FORMAT,
117                 CROP,
118                 FILTERS,
119                 SCALER,
120                 DCP_TRIM_START,
121                 DCP_TRIM_END,
122                 DCP_AB,
123                 AUDIO_STREAM,
124                 AUDIO_GAIN,
125                 AUDIO_DELAY,
126                 STILL_DURATION,
127                 SUBTITLE_STREAM,
128                 WITH_SUBTITLES,
129                 SUBTITLE_OFFSET,
130                 SUBTITLE_SCALE,
131                 DCI_METADATA,
132                 THUMBS,
133                 SIZE,
134                 LENGTH,
135                 AUDIO_SAMPLE_RATE,
136                 HAS_SUBTITLES,
137                 AUDIO_STREAMS,
138                 SUBTITLE_STREAMS,
139                 FRAMES_PER_SECOND,
140         };
141
142
143         /* GET */
144
145         std::string directory () const {
146                 boost::mutex::scoped_lock lm (_directory_mutex);
147                 return _directory;
148         }
149
150         std::string name () const {
151                 boost::mutex::scoped_lock lm (_state_mutex);
152                 return _name;
153         }
154
155         bool use_dci_name () const {
156                 boost::mutex::scoped_lock lm (_state_mutex);
157                 return _use_dci_name;
158         }
159
160         std::string content () const {
161                 boost::mutex::scoped_lock lm (_state_mutex);
162                 return _content;
163         }
164
165         DCPContentType const * dcp_content_type () const {
166                 boost::mutex::scoped_lock lm (_state_mutex);
167                 return _dcp_content_type;
168         }
169
170         Format const * format () const {
171                 boost::mutex::scoped_lock lm (_state_mutex);
172                 return _format;
173         }
174
175         Crop crop () const {
176                 boost::mutex::scoped_lock lm (_state_mutex);
177                 return _crop;
178         }
179
180         std::vector<Filter const *> filters () const {
181                 boost::mutex::scoped_lock lm (_state_mutex);
182                 return _filters;
183         }
184
185         Scaler const * scaler () const {
186                 boost::mutex::scoped_lock lm (_state_mutex);
187                 return _scaler;
188         }
189
190         int dcp_trim_start () const {
191                 boost::mutex::scoped_lock lm (_state_mutex);
192                 return _dcp_trim_start;
193         }
194
195         int dcp_trim_end () const {
196                 boost::mutex::scoped_lock lm (_state_mutex);
197                 return _dcp_trim_end;
198         }
199         
200         bool dcp_ab () const {
201                 boost::mutex::scoped_lock lm (_state_mutex);
202                 return _dcp_ab;
203         }
204
205         int audio_stream_index () const {
206                 boost::mutex::scoped_lock lm (_state_mutex);
207                 return _audio_stream;
208         }
209
210         AudioStream audio_stream () const {
211                 boost::mutex::scoped_lock lm (_state_mutex);
212                 assert (_audio_stream < int (_audio_streams.size()));
213                 return _audio_streams[_audio_stream];
214         }
215         
216         float audio_gain () const {
217                 boost::mutex::scoped_lock lm (_state_mutex);
218                 return _audio_gain;
219         }
220
221         int audio_delay () const {
222                 boost::mutex::scoped_lock lm (_state_mutex);
223                 return _audio_delay;
224         }
225
226         int still_duration () const {
227                 boost::mutex::scoped_lock lm (_state_mutex);
228                 return _still_duration;
229         }
230
231         int subtitle_stream_index () const {
232                 boost::mutex::scoped_lock lm (_state_mutex);
233                 return _subtitle_stream;
234         }
235
236         SubtitleStream subtitle_stream () const {
237                 boost::mutex::scoped_lock lm (_state_mutex);
238                 assert (_subtitle_stream < int (_subtitle_streams.size()));
239                 return _subtitle_streams[_subtitle_stream];
240         }
241
242         bool with_subtitles () const {
243                 boost::mutex::scoped_lock lm (_state_mutex);
244                 return _with_subtitles;
245         }
246
247         int subtitle_offset () const {
248                 boost::mutex::scoped_lock lm (_state_mutex);
249                 return _subtitle_offset;
250         }
251
252         float subtitle_scale () const {
253                 boost::mutex::scoped_lock lm (_state_mutex);
254                 return _subtitle_scale;
255         }
256
257         std::string audio_language () const {
258                 boost::mutex::scoped_lock lm (_state_mutex);
259                 return _audio_language;
260         }
261         
262         std::string subtitle_language () const {
263                 boost::mutex::scoped_lock lm (_state_mutex);
264                 return _subtitle_language;
265         }
266         
267         std::string territory () const {
268                 boost::mutex::scoped_lock lm (_state_mutex);
269                 return _territory;
270         }
271         
272         std::string rating () const {
273                 boost::mutex::scoped_lock lm (_state_mutex);
274                 return _rating;
275         }
276         
277         std::string studio () const {
278                 boost::mutex::scoped_lock lm (_state_mutex);
279                 return _studio;
280         }
281         
282         std::string facility () const {
283                 boost::mutex::scoped_lock lm (_state_mutex);
284                 return _facility;
285         }
286         
287         std::string package_type () const {
288                 boost::mutex::scoped_lock lm (_state_mutex);
289                 return _package_type;
290         }
291
292         std::vector<int> thumbs () const {
293                 boost::mutex::scoped_lock lm (_state_mutex);
294                 return _thumbs;
295         }
296         
297         Size size () const {
298                 boost::mutex::scoped_lock lm (_state_mutex);
299                 return _size;
300         }
301
302         boost::optional<int> length () const {
303                 boost::mutex::scoped_lock lm (_state_mutex);
304                 return _length;
305         }
306         
307         int audio_sample_rate () const {
308                 boost::mutex::scoped_lock lm (_state_mutex);
309                 return _audio_sample_rate;
310         }
311         
312         std::string content_digest () const {
313                 boost::mutex::scoped_lock lm (_state_mutex);
314                 return _content_digest;
315         }
316         
317         bool has_subtitles () const {
318                 boost::mutex::scoped_lock lm (_state_mutex);
319                 return _has_subtitles;
320         }
321
322         std::vector<AudioStream> audio_streams () const {
323                 boost::mutex::scoped_lock lm (_state_mutex);
324                 return _audio_streams;
325         }
326
327         std::vector<SubtitleStream> subtitle_streams () const {
328                 boost::mutex::scoped_lock lm (_state_mutex);
329                 return _subtitle_streams;
330         }
331         
332         float frames_per_second () const {
333                 boost::mutex::scoped_lock lm (_state_mutex);
334                 return _frames_per_second;
335         }
336
337
338         /* SET */
339
340         void set_directory (std::string);
341         void set_name (std::string);
342         void set_use_dci_name (bool);
343         virtual void set_content (std::string);
344         void set_dcp_content_type (DCPContentType const *);
345         void set_format (Format const *);
346         void set_crop (Crop);
347         void set_left_crop (int);
348         void set_right_crop (int);
349         void set_top_crop (int);
350         void set_bottom_crop (int);
351         void set_filters (std::vector<Filter const *>);
352         void set_scaler (Scaler const *);
353         void set_dcp_trim_start (int);
354         void set_dcp_trim_end (int);
355         void set_dcp_ab (bool);
356         void set_audio_stream (int);
357         void set_audio_gain (float);
358         void set_audio_delay (int);
359         void set_still_duration (int);
360         void set_subtitle_stream (int);
361         void set_with_subtitles (bool);
362         void set_subtitle_offset (int);
363         void set_subtitle_scale (float);
364         void set_audio_language (std::string);
365         void set_subtitle_language (std::string);
366         void set_territory (std::string);
367         void set_rating (std::string);
368         void set_studio (std::string);
369         void set_facility (std::string);
370         void set_package_type (std::string);
371         void set_thumbs (std::vector<int>);
372         void set_size (Size);
373         void set_length (int);
374         void unset_length ();
375         void set_audio_sample_rate (int);
376         void set_content_digest (std::string);
377         void set_has_subtitles (bool);
378         void set_audio_streams (std::vector<AudioStream>);
379         void set_subtitle_streams (std::vector<SubtitleStream>);
380         void set_frames_per_second (float);
381
382         /** Emitted when some property has changed */
383         mutable boost::signals2::signal<void (Property)> Changed;
384         
385 private:
386         
387         /** Log to write to */
388         Log* _log;
389
390         /** Any running ExamineContentJob, or 0 */
391         boost::shared_ptr<ExamineContentJob> _examine_content_job;
392
393         boost::gregorian::date _dci_date;
394
395         std::string thumb_file_for_frame (int) const;
396         std::string thumb_base_for_frame (int) const;
397         void signal_changed (Property);
398         void examine_content_finished ();
399         
400         /** Complete path to directory containing the film metadata;
401          *  must not be relative.
402          */
403         std::string _directory;
404         /** Mutex for _directory */
405         mutable boost::mutex _directory_mutex;
406         
407         /** Name for DVD-o-matic */
408         std::string _name;
409         /** True if a auto-generated DCI-compliant name should be used for our DCP */
410         bool _use_dci_name;
411         /** File or directory containing content; may be relative to our directory
412          *  or an absolute path.
413          */
414         std::string _content;
415         /** The type of content that this Film represents (feature, trailer etc.) */
416         DCPContentType const * _dcp_content_type;
417         /** The format to present this Film in (flat, scope, etc.) */
418         Format const * _format;
419         /** The crop to apply to the source */
420         Crop _crop;
421         /** Video filters that should be used when generating DCPs */
422         std::vector<Filter const *> _filters;
423         /** Scaler algorithm to use */
424         Scaler const * _scaler;
425         int _dcp_trim_start;
426         int _dcp_trim_end;
427         /** true to create an A/B comparison DCP, where the left half of the image
428             is the video without any filters or post-processing, and the right half
429             has the specified filters and post-processing.
430         */
431         bool _dcp_ab;
432         /** An index into our _audio_streams vector for the stream to use for audio, or -1 if there is none */
433         int _audio_stream;
434         /** Gain to apply to audio in dB */
435         float _audio_gain;
436         /** Delay to apply to audio (positive moves audio later) in milliseconds */
437         int _audio_delay;
438         /** Duration to make still-sourced films (in seconds) */
439         int _still_duration;
440         /** An index into our _subtitle_streams vector for the stream to use for subtitles, or -1 if there is none */
441         int _subtitle_stream;
442         /** True if subtitles should be shown for this film */
443         bool _with_subtitles;
444         /** y offset for placing subtitles, in source pixels; +ve is further down
445             the frame, -ve is further up.
446         */
447         int _subtitle_offset;
448         /** scale factor to apply to subtitles */
449         float _subtitle_scale;
450
451         /* DCI naming stuff */
452         std::string _audio_language;
453         std::string _subtitle_language;
454         std::string _territory;
455         std::string _rating;
456         std::string _studio;
457         std::string _facility;
458         std::string _package_type;
459
460         /* Data which are cached to speed things up */
461
462         /** Vector of frame indices for each of our `thumbnails' */
463         std::vector<int> _thumbs;
464         /** Size, in pixels, of the source (ignoring cropping) */
465         Size _size;
466         /** Actual length of the source (in video frames) from examining it */
467         boost::optional<int> _length;
468         /** Sample rate of the source audio, in Hz */
469         int _audio_sample_rate;
470         /** MD5 digest of our content file */
471         std::string _content_digest;
472         /** true if the source has subtitles */
473         bool _has_subtitles;
474         /** the audio streams that the source has */
475         std::vector<AudioStream> _audio_streams;
476         /** the subtitle streams that the source has */
477         std::vector<SubtitleStream> _subtitle_streams;
478         /** Frames per second of the source */
479         float _frames_per_second;
480
481         mutable bool _dirty;
482
483         /** Mutex for all state except _directory */
484         mutable boost::mutex _state_mutex;
485
486         friend class paths_test;
487 };
488
489 #endif