Various fixes.
[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 some audio and video content, and details of
22  *  how they 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 "dci_metadata.h"
41 #include "types.h"
42
43 class Format;
44 class Job;
45 class Filter;
46 class Log;
47 class ExamineContentJob;
48 class AnalyseAudioJob;
49 class ExternalAudioStream;
50 class Content;
51 class Player;
52 class Playlist;
53
54 /** @class Film
55  *  @brief A representation of some audio and video content, and details of
56  *  how they should be presented in a DCP.
57  */
58 class Film : public boost::enable_shared_from_this<Film>
59 {
60 public:
61         Film (std::string d, bool must_exist = true);
62         Film (Film const &);
63
64         std::string info_dir () const;
65         std::string j2c_path (int f, bool t) const;
66         std::string info_path (int f) const;
67         std::string video_mxf_dir () const;
68         std::string video_mxf_filename () const;
69         std::string audio_analysis_path () const;
70
71         void examine_content (boost::shared_ptr<Content>);
72         void analyse_audio ();
73         void send_dcp_to_tms ();
74         void make_dcp ();
75
76         /** @return Logger.
77          *  It is safe to call this from any thread.
78          */
79         boost::shared_ptr<Log> log () const {
80                 return _log;
81         }
82
83         int encoded_frames () const;
84         
85         std::string file (std::string f) const;
86         std::string dir (std::string d) const;
87
88         int target_audio_sample_rate () const;
89         
90         void write_metadata () const;
91
92         libdcp::Size cropped_size (libdcp::Size) const;
93         std::string dci_name (bool if_created_now) const;
94         std::string dcp_name (bool if_created_now = false) const;
95
96         /** @return true if our state has changed since we last saved it */
97         bool dirty () const {
98                 return _dirty;
99         }
100
101         bool have_dcp () const;
102
103         boost::shared_ptr<Player> player () const;
104
105         /* Proxies for some Playlist methods */
106
107         ContentAudioFrame audio_length () const;
108         int audio_channels () const;
109         int audio_frame_rate () const;
110         int64_t audio_channel_layout () const;
111         bool has_audio () const;
112         
113         float video_frame_rate () const;
114         libdcp::Size video_size () const;
115         ContentVideoFrame video_length () const;        
116
117         /** Identifiers for the parts of our state;
118             used for signalling changes.
119         */
120         enum Property {
121                 NONE,
122                 NAME,
123                 USE_DCI_NAME,
124                 TRUST_CONTENT_HEADERS,
125                 /** The content list has changed (i.e. content has been added, moved around or removed) */
126                 CONTENT,
127                 DCP_CONTENT_TYPE,
128                 FORMAT,
129                 CROP,
130                 FILTERS,
131                 SCALER,
132                 TRIM_START,
133                 TRIM_END,
134                 AB,
135                 AUDIO_GAIN,
136                 AUDIO_DELAY,
137                 SUBTITLE_STREAM,
138                 WITH_SUBTITLES,
139                 SUBTITLE_OFFSET,
140                 SUBTITLE_SCALE,
141                 COLOUR_LUT,
142                 J2K_BANDWIDTH,
143                 DCI_METADATA,
144                 DCP_FRAME_RATE
145         };
146
147
148         /* GET */
149
150         std::string directory () const {
151                 boost::mutex::scoped_lock lm (_directory_mutex);
152                 return _directory;
153         }
154
155         std::string name () const {
156                 boost::mutex::scoped_lock lm (_state_mutex);
157                 return _name;
158         }
159
160         bool use_dci_name () const {
161                 boost::mutex::scoped_lock lm (_state_mutex);
162                 return _use_dci_name;
163         }
164
165         bool trust_content_headers () const {
166                 boost::mutex::scoped_lock lm (_state_mutex);
167                 return _trust_content_headers;
168         }
169
170         ContentList content () const {
171                 boost::mutex::scoped_lock lm (_state_mutex);
172                 return _content;
173         }
174
175         DCPContentType const * dcp_content_type () const {
176                 boost::mutex::scoped_lock lm (_state_mutex);
177                 return _dcp_content_type;
178         }
179
180         Format const * format () const {
181                 boost::mutex::scoped_lock lm (_state_mutex);
182                 return _format;
183         }
184
185         Crop crop () const {
186                 boost::mutex::scoped_lock lm (_state_mutex);
187                 return _crop;
188         }
189
190         std::vector<Filter const *> filters () const {
191                 boost::mutex::scoped_lock lm (_state_mutex);
192                 return _filters;
193         }
194
195         Scaler const * scaler () const {
196                 boost::mutex::scoped_lock lm (_state_mutex);
197                 return _scaler;
198         }
199
200         int trim_start () const {
201                 boost::mutex::scoped_lock lm (_state_mutex);
202                 return _trim_start;
203         }
204
205         int trim_end () const {
206                 boost::mutex::scoped_lock lm (_state_mutex);
207                 return _trim_end;
208         }
209
210         bool ab () const {
211                 boost::mutex::scoped_lock lm (_state_mutex);
212                 return _ab;
213         }
214
215         float audio_gain () const {
216                 boost::mutex::scoped_lock lm (_state_mutex);
217                 return _audio_gain;
218         }
219
220         int audio_delay () const {
221                 boost::mutex::scoped_lock lm (_state_mutex);
222                 return _audio_delay;
223         }
224
225         bool with_subtitles () const {
226                 boost::mutex::scoped_lock lm (_state_mutex);
227                 return _with_subtitles;
228         }
229
230         int subtitle_offset () const {
231                 boost::mutex::scoped_lock lm (_state_mutex);
232                 return _subtitle_offset;
233         }
234
235         float subtitle_scale () const {
236                 boost::mutex::scoped_lock lm (_state_mutex);
237                 return _subtitle_scale;
238         }
239
240         int colour_lut () const {
241                 boost::mutex::scoped_lock lm (_state_mutex);
242                 return _colour_lut;
243         }
244
245         int j2k_bandwidth () const {
246                 boost::mutex::scoped_lock lm (_state_mutex);
247                 return _j2k_bandwidth;
248         }
249
250         DCIMetadata dci_metadata () const {
251                 boost::mutex::scoped_lock lm (_state_mutex);
252                 return _dci_metadata;
253         }
254
255         int dcp_frame_rate () const {
256                 boost::mutex::scoped_lock lm (_state_mutex);
257                 return _dcp_frame_rate;
258         }
259
260         /* SET */
261
262         void set_directory (std::string);
263         void set_name (std::string);
264         void set_use_dci_name (bool);
265         void set_trust_content_headers (bool);
266         void add_content (boost::shared_ptr<Content>);
267         void remove_content (boost::shared_ptr<Content>);
268         void move_content_earlier (boost::shared_ptr<Content>);
269         void move_content_later (boost::shared_ptr<Content>);
270         void set_dcp_content_type (DCPContentType const *);
271         void set_format (Format const *);
272         void set_crop (Crop);
273         void set_left_crop (int);
274         void set_right_crop (int);
275         void set_top_crop (int);
276         void set_bottom_crop (int);
277         void set_filters (std::vector<Filter const *>);
278         void set_scaler (Scaler const *);
279         void set_trim_start (int);
280         void set_trim_end (int);
281         void set_ab (bool);
282         void set_audio_gain (float);
283         void set_audio_delay (int);
284         void set_with_subtitles (bool);
285         void set_subtitle_offset (int);
286         void set_subtitle_scale (float);
287         void set_colour_lut (int);
288         void set_j2k_bandwidth (int);
289         void set_dci_metadata (DCIMetadata);
290         void set_dcp_frame_rate (int);
291         void set_dci_date_today ();
292
293         /** Emitted when some property has of the Film has changed */
294         mutable boost::signals2::signal<void (Property)> Changed;
295
296         /** Emitted when some property of our content has changed */
297         mutable boost::signals2::signal<void (int)> ContentChanged;
298
299         boost::signals2::signal<void ()> AudioAnalysisSucceeded;
300
301         /** Current version number of the state file */
302         static int const state_version;
303
304 private:
305         
306         void signal_changed (Property);
307         void analyse_audio_finished ();
308         std::string video_state_identifier () const;
309         void read_metadata ();
310         void content_changed (int);
311
312         /** Log to write to */
313         boost::shared_ptr<Log> _log;
314         /** Any running AnalyseAudioJob, or 0 */
315         boost::shared_ptr<AnalyseAudioJob> _analyse_audio_job;
316         boost::shared_ptr<Playlist> _playlist;
317
318         /** Complete path to directory containing the film metadata;
319          *  must not be relative.
320          */
321         std::string _directory;
322         /** Mutex for _directory */
323         mutable boost::mutex _directory_mutex;
324         
325         /** Name for DVD-o-matic */
326         std::string _name;
327         /** True if a auto-generated DCI-compliant name should be used for our DCP */
328         bool _use_dci_name;
329         bool _trust_content_headers;
330         ContentList _content;
331         std::list<boost::signals2::connection> _content_connections;
332         /** The type of content that this Film represents (feature, trailer etc.) */
333         DCPContentType const * _dcp_content_type;
334         /** The format to present this Film in (flat, scope, etc.) */
335         Format const * _format;
336         /** The crop to apply to the source */
337         Crop _crop;
338         /** Video filters that should be used when generating DCPs */
339         std::vector<Filter const *> _filters;
340         /** Scaler algorithm to use */
341         Scaler const * _scaler;
342         /** Frames to trim off the start of the DCP */
343         int _trim_start;
344         /** Frames to trim off the end of the DCP */
345         int _trim_end;
346         /** true to create an A/B comparison DCP, where the left half of the image
347             is the video without any filters or post-processing, and the right half
348             has the specified filters and post-processing.
349         */
350         bool _ab;
351         /** Gain to apply to audio in dB */
352         float _audio_gain;
353         /** Delay to apply to audio (positive moves audio later) in milliseconds */
354         int _audio_delay;
355         /** True if subtitles should be shown for this film */
356         bool _with_subtitles;
357         /** y offset for placing subtitles, in source pixels; +ve is further down
358             the frame, -ve is further up.
359         */
360         int _subtitle_offset;
361         /** scale factor to apply to subtitles */
362         float _subtitle_scale;
363         /** index of colour LUT to use when converting RGB to XYZ.
364          *  0: sRGB
365          *  1: Rec 709
366          */
367         int _colour_lut;
368         /** bandwidth for J2K files in bits per second */
369         int _j2k_bandwidth;
370         /** DCI naming stuff */
371         DCIMetadata _dci_metadata;
372         /** Frames per second to run our DCP at */
373         int _dcp_frame_rate;
374         /** The date that we should use in a DCI name */
375         boost::gregorian::date _dci_date;
376
377         /** true if our state has changed since we last saved it */
378         mutable bool _dirty;
379
380         /** Mutex for all state except _directory */
381         mutable boost::mutex _state_mutex;
382
383         friend class paths_test;
384         friend class film_metadata_test;
385 };
386
387 #endif