Remove unnecessary virtual qualifier.
[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         SourceFrame 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<SourceFrame> 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         SourceFrame dcp_trim_start () const {
191                 boost::mutex::scoped_lock lm (_state_mutex);
192                 return _dcp_trim_start;
193         }
194
195         SourceFrame 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<SourceFrame> 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<SourceFrame> 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         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<SourceFrame>);
372         void set_size (Size);
373         void set_length (SourceFrame);
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         /** The date that we should use in a DCI name */
394         boost::gregorian::date _dci_date;
395
396         std::string thumb_file_for_frame (SourceFrame) const;
397         std::string thumb_base_for_frame (SourceFrame) const;
398         void signal_changed (Property);
399         void examine_content_finished ();
400
401         /** Complete path to directory containing the film metadata;
402          *  must not be relative.
403          */
404         std::string _directory;
405         /** Mutex for _directory */
406         mutable boost::mutex _directory_mutex;
407         
408         /** Name for DVD-o-matic */
409         std::string _name;
410         /** True if a auto-generated DCI-compliant name should be used for our DCP */
411         bool _use_dci_name;
412         /** File or directory containing content; may be relative to our directory
413          *  or an absolute path.
414          */
415         std::string _content;
416         /** The type of content that this Film represents (feature, trailer etc.) */
417         DCPContentType const * _dcp_content_type;
418         /** The format to present this Film in (flat, scope, etc.) */
419         Format const * _format;
420         /** The crop to apply to the source */
421         Crop _crop;
422         /** Video filters that should be used when generating DCPs */
423         std::vector<Filter const *> _filters;
424         /** Scaler algorithm to use */
425         Scaler const * _scaler;
426         /** Frames to trim off the start of the source */
427         SourceFrame _dcp_trim_start;
428         /** Frames to trim off the end of the source */
429         SourceFrame _dcp_trim_end;
430         /** true to create an A/B comparison DCP, where the left half of the image
431             is the video without any filters or post-processing, and the right half
432             has the specified filters and post-processing.
433         */
434         bool _dcp_ab;
435         /** An index into our _audio_streams vector for the stream to use for audio, or -1 if there is none */
436         int _audio_stream;
437         /** Gain to apply to audio in dB */
438         float _audio_gain;
439         /** Delay to apply to audio (positive moves audio later) in milliseconds */
440         int _audio_delay;
441         /** Duration to make still-sourced films (in seconds) */
442         int _still_duration;
443         /** An index into our _subtitle_streams vector for the stream to use for subtitles, or -1 if there is none */
444         int _subtitle_stream;
445         /** True if subtitles should be shown for this film */
446         bool _with_subtitles;
447         /** y offset for placing subtitles, in source pixels; +ve is further down
448             the frame, -ve is further up.
449         */
450         int _subtitle_offset;
451         /** scale factor to apply to subtitles */
452         float _subtitle_scale;
453
454         /* DCI naming stuff */
455         std::string _audio_language;
456         std::string _subtitle_language;
457         std::string _territory;
458         std::string _rating;
459         std::string _studio;
460         std::string _facility;
461         std::string _package_type;
462
463         /* Data which are cached to speed things up */
464
465         /** Vector of frame indices for each of our `thumbnails' */
466         std::vector<SourceFrame> _thumbs;
467         /** Size, in pixels, of the source (ignoring cropping) */
468         Size _size;
469         /** Actual length of the source (in video frames) from examining it */
470         boost::optional<SourceFrame> _length;
471         /** Sample rate of the source audio, in Hz */
472         int _audio_sample_rate;
473         /** MD5 digest of our content file */
474         std::string _content_digest;
475         /** true if the source has subtitles */
476         bool _has_subtitles;
477         /** the audio streams that the source has */
478         std::vector<AudioStream> _audio_streams;
479         /** the subtitle streams that the source has */
480         std::vector<SubtitleStream> _subtitle_streams;
481         /** Frames per second of the source */
482         float _frames_per_second;
483
484         mutable bool _dirty;
485
486         /** Mutex for all state except _directory */
487         mutable boost::mutex _state_mutex;
488
489         friend class paths_test;
490 };
491
492 #endif