Some comment tweaks; a little more logging.
[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 class ExternalAudioStream;
48
49 /** @class Film
50  *  @brief A representation of a video, maybe with sound.
51  *
52  *  A representation of a piece of video (maybe with sound), including naming,
53  *  the source content file, and how it should be presented in a DCP.
54  */
55 class Film : public boost::enable_shared_from_this<Film>
56 {
57 public:
58         Film (std::string d, bool must_exist = true);
59         Film (Film const &);
60         ~Film ();
61
62         std::string j2k_dir () const;
63         std::vector<std::string> audio_files () const;
64
65         void examine_content ();
66         void send_dcp_to_tms ();
67
68         void make_dcp (bool);
69
70         /** @return Logger.
71          *  It is safe to call this from any thread.
72          */
73         Log* log () const {
74                 return _log;
75         }
76
77         int encoded_frames () const;
78         
79         std::string file (std::string f) const;
80         std::string dir (std::string d) const;
81
82         std::string content_path () const;
83         ContentType content_type () const;
84         
85         int target_audio_sample_rate () const;
86         
87         void write_metadata () const;
88         void read_metadata ();
89
90         Size cropped_size (Size) const;
91         boost::optional<int> dcp_length () const;
92         std::string dci_name () const;
93         std::string dcp_name () const;
94
95         /** @return true if our state has changed since we last saved it */
96         bool dirty () const {
97                 return _dirty;
98         }
99
100         int audio_channels () const;
101
102         void set_dci_date_today ();
103
104         /** Identifiers for the parts of our state;
105             used for signalling changes.
106         */
107         enum Property {
108                 NONE,
109                 NAME,
110                 USE_DCI_NAME,
111                 CONTENT,
112                 TRUST_CONTENT_HEADER,
113                 DCP_CONTENT_TYPE,
114                 FORMAT,
115                 CROP,
116                 FILTERS,
117                 SCALER,
118                 DCP_TRIM_START,
119                 DCP_TRIM_END,
120                 REEL_SIZE,
121                 DCP_AB,
122                 CONTENT_AUDIO_STREAM,
123                 EXTERNAL_AUDIO,
124                 USE_CONTENT_AUDIO,
125                 AUDIO_GAIN,
126                 AUDIO_DELAY,
127                 STILL_DURATION,
128                 SUBTITLE_STREAM,
129                 WITH_SUBTITLES,
130                 SUBTITLE_OFFSET,
131                 SUBTITLE_SCALE,
132                 COLOUR_LUT,
133                 J2K_BANDWIDTH,
134                 DCI_METADATA,
135                 SIZE,
136                 LENGTH,
137                 CONTENT_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         bool trust_content_header () const {
166                 boost::mutex::scoped_lock lm (_state_mutex);
167                 return _trust_content_header;
168         }
169
170         DCPContentType const * dcp_content_type () const {
171                 boost::mutex::scoped_lock lm (_state_mutex);
172                 return _dcp_content_type;
173         }
174
175         Format const * format () const {
176                 boost::mutex::scoped_lock lm (_state_mutex);
177                 return _format;
178         }
179
180         Crop crop () const {
181                 boost::mutex::scoped_lock lm (_state_mutex);
182                 return _crop;
183         }
184
185         std::vector<Filter const *> filters () const {
186                 boost::mutex::scoped_lock lm (_state_mutex);
187                 return _filters;
188         }
189
190         Scaler const * scaler () const {
191                 boost::mutex::scoped_lock lm (_state_mutex);
192                 return _scaler;
193         }
194
195         SourceFrame dcp_trim_start () const {
196                 boost::mutex::scoped_lock lm (_state_mutex);
197                 return _dcp_trim_start;
198         }
199
200         SourceFrame dcp_trim_end () const {
201                 boost::mutex::scoped_lock lm (_state_mutex);
202                 return _dcp_trim_end;
203         }
204
205         boost::optional<uint64_t> reel_size () const {
206                 boost::mutex::scoped_lock lm (_state_mutex);
207                 return _reel_size;
208         }
209         
210         bool dcp_ab () const {
211                 boost::mutex::scoped_lock lm (_state_mutex);
212                 return _dcp_ab;
213         }
214
215         boost::shared_ptr<AudioStream> content_audio_stream () const {
216                 boost::mutex::scoped_lock lm (_state_mutex);
217                 return _content_audio_stream;
218         }
219
220         std::vector<std::string> external_audio () const {
221                 boost::mutex::scoped_lock lm (_state_mutex);
222                 return _external_audio;
223         }
224
225         bool use_content_audio () const {
226                 boost::mutex::scoped_lock lm (_state_mutex);
227                 return _use_content_audio;
228         }
229         
230         float audio_gain () const {
231                 boost::mutex::scoped_lock lm (_state_mutex);
232                 return _audio_gain;
233         }
234
235         int audio_delay () const {
236                 boost::mutex::scoped_lock lm (_state_mutex);
237                 return _audio_delay;
238         }
239
240         int still_duration () const {
241                 boost::mutex::scoped_lock lm (_state_mutex);
242                 return _still_duration;
243         }
244
245         boost::shared_ptr<SubtitleStream> subtitle_stream () const {
246                 boost::mutex::scoped_lock lm (_state_mutex);
247                 return _subtitle_stream;
248         }
249
250         bool with_subtitles () const {
251                 boost::mutex::scoped_lock lm (_state_mutex);
252                 return _with_subtitles;
253         }
254
255         int subtitle_offset () const {
256                 boost::mutex::scoped_lock lm (_state_mutex);
257                 return _subtitle_offset;
258         }
259
260         float subtitle_scale () const {
261                 boost::mutex::scoped_lock lm (_state_mutex);
262                 return _subtitle_scale;
263         }
264
265         int colour_lut () const {
266                 boost::mutex::scoped_lock lm (_state_mutex);
267                 return _colour_lut;
268         }
269
270         int j2k_bandwidth () const {
271                 boost::mutex::scoped_lock lm (_state_mutex);
272                 return _j2k_bandwidth;
273         }
274
275         std::string audio_language () const {
276                 boost::mutex::scoped_lock lm (_state_mutex);
277                 return _audio_language;
278         }
279         
280         std::string subtitle_language () const {
281                 boost::mutex::scoped_lock lm (_state_mutex);
282                 return _subtitle_language;
283         }
284         
285         std::string territory () const {
286                 boost::mutex::scoped_lock lm (_state_mutex);
287                 return _territory;
288         }
289         
290         std::string rating () const {
291                 boost::mutex::scoped_lock lm (_state_mutex);
292                 return _rating;
293         }
294         
295         std::string studio () const {
296                 boost::mutex::scoped_lock lm (_state_mutex);
297                 return _studio;
298         }
299         
300         std::string facility () const {
301                 boost::mutex::scoped_lock lm (_state_mutex);
302                 return _facility;
303         }
304         
305         std::string package_type () const {
306                 boost::mutex::scoped_lock lm (_state_mutex);
307                 return _package_type;
308         }
309
310         Size size () const {
311                 boost::mutex::scoped_lock lm (_state_mutex);
312                 return _size;
313         }
314
315         boost::optional<SourceFrame> length () const {
316                 boost::mutex::scoped_lock lm (_state_mutex);
317                 return _length;
318         }
319         
320         std::string content_digest () const {
321                 boost::mutex::scoped_lock lm (_state_mutex);
322                 return _content_digest;
323         }
324         
325         std::vector<boost::shared_ptr<AudioStream> > content_audio_streams () const {
326                 boost::mutex::scoped_lock lm (_state_mutex);
327                 return _content_audio_streams;
328         }
329
330         std::vector<boost::shared_ptr<SubtitleStream> > subtitle_streams () const {
331                 boost::mutex::scoped_lock lm (_state_mutex);
332                 return _subtitle_streams;
333         }
334         
335         float frames_per_second () const {
336                 boost::mutex::scoped_lock lm (_state_mutex);
337                 if (content_type() == STILL) {
338                         return 24;
339                 }
340                 
341                 return _frames_per_second;
342         }
343
344         boost::shared_ptr<AudioStream> audio_stream () const;
345
346         
347         /* SET */
348
349         void set_directory (std::string);
350         void set_name (std::string);
351         void set_use_dci_name (bool);
352         void set_content (std::string);
353         void set_trust_content_header (bool);
354         void set_dcp_content_type (DCPContentType const *);
355         void set_format (Format const *);
356         void set_crop (Crop);
357         void set_left_crop (int);
358         void set_right_crop (int);
359         void set_top_crop (int);
360         void set_bottom_crop (int);
361         void set_filters (std::vector<Filter const *>);
362         void set_scaler (Scaler const *);
363         void set_dcp_trim_start (int);
364         void set_dcp_trim_end (int);
365         void set_reel_size (uint64_t);
366         void unset_reel_size ();
367         void set_dcp_ab (bool);
368         void set_content_audio_stream (boost::shared_ptr<AudioStream>);
369         void set_external_audio (std::vector<std::string>);
370         void set_use_content_audio (bool);
371         void set_audio_gain (float);
372         void set_audio_delay (int);
373         void set_still_duration (int);
374         void set_subtitle_stream (boost::shared_ptr<SubtitleStream>);
375         void set_with_subtitles (bool);
376         void set_subtitle_offset (int);
377         void set_subtitle_scale (float);
378         void set_colour_lut (int);
379         void set_j2k_bandwidth (int);
380         void set_audio_language (std::string);
381         void set_subtitle_language (std::string);
382         void set_territory (std::string);
383         void set_rating (std::string);
384         void set_studio (std::string);
385         void set_facility (std::string);
386         void set_package_type (std::string);
387         void set_size (Size);
388         void set_length (SourceFrame);
389         void unset_length ();
390         void set_content_digest (std::string);
391         void set_content_audio_streams (std::vector<boost::shared_ptr<AudioStream> >);
392         void set_subtitle_streams (std::vector<boost::shared_ptr<SubtitleStream> >);
393         void set_frames_per_second (float);
394
395         /** Emitted when some property has changed */
396         mutable boost::signals2::signal<void (Property)> Changed;
397
398         /** Current version number of the state file */
399         static int const state_version;
400
401 private:
402         
403         /** Log to write to */
404         Log* _log;
405
406         /** Any running ExamineContentJob, or 0 */
407         boost::shared_ptr<ExamineContentJob> _examine_content_job;
408
409         /** The date that we should use in a DCI name */
410         boost::gregorian::date _dci_date;
411
412         void signal_changed (Property);
413         void examine_content_finished ();
414
415         /** Complete path to directory containing the film metadata;
416          *  must not be relative.
417          */
418         std::string _directory;
419         /** Mutex for _directory */
420         mutable boost::mutex _directory_mutex;
421         
422         /** Name for DVD-o-matic */
423         std::string _name;
424         /** True if a auto-generated DCI-compliant name should be used for our DCP */
425         bool _use_dci_name;
426         /** File or directory containing content; may be relative to our directory
427          *  or an absolute path.
428          */
429         std::string _content;
430         /** If this is true, we will believe the length specified by the content
431          *  file's header; if false, we will run through the whole content file
432          *  the first time we see it in order to obtain the length.
433          */
434         bool _trust_content_header;
435         /** The type of content that this Film represents (feature, trailer etc.) */
436         DCPContentType const * _dcp_content_type;
437         /** The format to present this Film in (flat, scope, etc.) */
438         Format const * _format;
439         /** The crop to apply to the source */
440         Crop _crop;
441         /** Video filters that should be used when generating DCPs */
442         std::vector<Filter const *> _filters;
443         /** Scaler algorithm to use */
444         Scaler const * _scaler;
445         /** Frames to trim off the start of the DCP */
446         int _dcp_trim_start;
447         /** Frames to trim off the end of the DCP */
448         int _dcp_trim_end;
449         /** Approximate target reel size in bytes; if not set, use a single reel */
450         boost::optional<uint64_t> _reel_size;
451         /** true to create an A/B comparison DCP, where the left half of the image
452             is the video without any filters or post-processing, and the right half
453             has the specified filters and post-processing.
454         */
455         bool _dcp_ab;
456         /** The audio stream to use from our content */
457         boost::shared_ptr<AudioStream> _content_audio_stream;
458         /** List of filenames of external audio files, in channel order
459             (L, R, C, Lfe, Ls, Rs)
460         */
461         std::vector<std::string> _external_audio;
462         /** true to use audio from our content file; false to use external audio */
463         bool _use_content_audio;
464         /** Gain to apply to audio in dB */
465         float _audio_gain;
466         /** Delay to apply to audio (positive moves audio later) in milliseconds */
467         int _audio_delay;
468         /** Duration to make still-sourced films (in seconds) */
469         int _still_duration;
470         boost::shared_ptr<SubtitleStream> _subtitle_stream;
471         /** True if subtitles should be shown for this film */
472         bool _with_subtitles;
473         /** y offset for placing subtitles, in source pixels; +ve is further down
474             the frame, -ve is further up.
475         */
476         int _subtitle_offset;
477         /** scale factor to apply to subtitles */
478         float _subtitle_scale;
479         /** index of colour LUT to use when converting RGB to XYZ.
480          *  0: sRGB
481          *  1: Rec 709
482          */
483         int _colour_lut;
484         /** bandwidth for J2K files in bits per second */
485         int _j2k_bandwidth;
486         
487         /* DCI naming stuff */
488         std::string _audio_language;
489         std::string _subtitle_language;
490         std::string _territory;
491         std::string _rating;
492         std::string _studio;
493         std::string _facility;
494         std::string _package_type;
495
496         /* Data which are cached to speed things up */
497
498         /** Size, in pixels, of the source (ignoring cropping) */
499         Size _size;
500         /** The length of the source, in video frames (as far as we know) */
501         boost::optional<SourceFrame> _length;
502         /** MD5 digest of our content file */
503         std::string _content_digest;
504         /** The audio streams in our content */
505         std::vector<boost::shared_ptr<AudioStream> > _content_audio_streams;
506         /** A stream to represent possible external audio (will always exist) */
507         boost::shared_ptr<AudioStream> _external_audio_stream;
508         /** the subtitle streams that we can use */
509         std::vector<boost::shared_ptr<SubtitleStream> > _subtitle_streams;
510         /** Frames per second of the source */
511         float _frames_per_second;
512
513         /** true if our state has changed since we last saved it */
514         mutable bool _dirty;
515
516         /** Mutex for all state except _directory */
517         mutable boost::mutex _state_mutex;
518
519         friend class paths_test;
520 };
521
522 #endif