Fix a few more things.
[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                 WITH_SUBTITLES,
138                 SUBTITLE_OFFSET,
139                 SUBTITLE_SCALE,
140                 COLOUR_LUT,
141                 J2K_BANDWIDTH,
142                 DCI_METADATA,
143                 DCP_FRAME_RATE
144         };
145
146
147         /* GET */
148
149         std::string directory () const {
150                 boost::mutex::scoped_lock lm (_directory_mutex);
151                 return _directory;
152         }
153
154         std::string name () const {
155                 boost::mutex::scoped_lock lm (_state_mutex);
156                 return _name;
157         }
158
159         bool use_dci_name () const {
160                 boost::mutex::scoped_lock lm (_state_mutex);
161                 return _use_dci_name;
162         }
163
164         bool trust_content_headers () const {
165                 boost::mutex::scoped_lock lm (_state_mutex);
166                 return _trust_content_headers;
167         }
168
169         ContentList content () const {
170                 boost::mutex::scoped_lock lm (_state_mutex);
171                 return _content;
172         }
173
174         DCPContentType const * dcp_content_type () const {
175                 boost::mutex::scoped_lock lm (_state_mutex);
176                 return _dcp_content_type;
177         }
178
179         Format const * format () const {
180                 boost::mutex::scoped_lock lm (_state_mutex);
181                 return _format;
182         }
183
184         Crop crop () const {
185                 boost::mutex::scoped_lock lm (_state_mutex);
186                 return _crop;
187         }
188
189         std::vector<Filter const *> filters () const {
190                 boost::mutex::scoped_lock lm (_state_mutex);
191                 return _filters;
192         }
193
194         Scaler const * scaler () const {
195                 boost::mutex::scoped_lock lm (_state_mutex);
196                 return _scaler;
197         }
198
199         int trim_start () const {
200                 boost::mutex::scoped_lock lm (_state_mutex);
201                 return _trim_start;
202         }
203
204         int trim_end () const {
205                 boost::mutex::scoped_lock lm (_state_mutex);
206                 return _trim_end;
207         }
208
209         bool ab () const {
210                 boost::mutex::scoped_lock lm (_state_mutex);
211                 return _ab;
212         }
213
214         float audio_gain () const {
215                 boost::mutex::scoped_lock lm (_state_mutex);
216                 return _audio_gain;
217         }
218
219         int audio_delay () const {
220                 boost::mutex::scoped_lock lm (_state_mutex);
221                 return _audio_delay;
222         }
223
224         bool with_subtitles () const {
225                 boost::mutex::scoped_lock lm (_state_mutex);
226                 return _with_subtitles;
227         }
228
229         int subtitle_offset () const {
230                 boost::mutex::scoped_lock lm (_state_mutex);
231                 return _subtitle_offset;
232         }
233
234         float subtitle_scale () const {
235                 boost::mutex::scoped_lock lm (_state_mutex);
236                 return _subtitle_scale;
237         }
238
239         int colour_lut () const {
240                 boost::mutex::scoped_lock lm (_state_mutex);
241                 return _colour_lut;
242         }
243
244         int j2k_bandwidth () const {
245                 boost::mutex::scoped_lock lm (_state_mutex);
246                 return _j2k_bandwidth;
247         }
248
249         DCIMetadata dci_metadata () const {
250                 boost::mutex::scoped_lock lm (_state_mutex);
251                 return _dci_metadata;
252         }
253
254         int dcp_frame_rate () const {
255                 boost::mutex::scoped_lock lm (_state_mutex);
256                 return _dcp_frame_rate;
257         }
258
259         /* SET */
260
261         void set_directory (std::string);
262         void set_name (std::string);
263         void set_use_dci_name (bool);
264         void set_trust_content_headers (bool);
265         void add_content (boost::shared_ptr<Content>);
266         void remove_content (boost::shared_ptr<Content>);
267         void move_content_earlier (boost::shared_ptr<Content>);
268         void move_content_later (boost::shared_ptr<Content>);
269         void set_dcp_content_type (DCPContentType const *);
270         void set_format (Format const *);
271         void set_crop (Crop);
272         void set_left_crop (int);
273         void set_right_crop (int);
274         void set_top_crop (int);
275         void set_bottom_crop (int);
276         void set_filters (std::vector<Filter const *>);
277         void set_scaler (Scaler const *);
278         void set_trim_start (int);
279         void set_trim_end (int);
280         void set_ab (bool);
281         void set_audio_gain (float);
282         void set_audio_delay (int);
283         void set_with_subtitles (bool);
284         void set_subtitle_offset (int);
285         void set_subtitle_scale (float);
286         void set_colour_lut (int);
287         void set_j2k_bandwidth (int);
288         void set_dci_metadata (DCIMetadata);
289         void set_dcp_frame_rate (int);
290         void set_dci_date_today ();
291
292         /** Emitted when some property has of the Film has changed */
293         mutable boost::signals2::signal<void (Property)> Changed;
294
295         /** Emitted when some property of our content has changed */
296         mutable boost::signals2::signal<void (int)> ContentChanged;
297
298         boost::signals2::signal<void ()> AudioAnalysisSucceeded;
299
300         /** Current version number of the state file */
301         static int const state_version;
302
303 private:
304         
305         void signal_changed (Property);
306         void analyse_audio_finished ();
307         std::string video_state_identifier () const;
308         void read_metadata ();
309         void content_changed (int);
310
311         /** Log to write to */
312         boost::shared_ptr<Log> _log;
313         /** Any running AnalyseAudioJob, or 0 */
314         boost::shared_ptr<AnalyseAudioJob> _analyse_audio_job;
315         boost::shared_ptr<Playlist> _playlist;
316
317         /** Complete path to directory containing the film metadata;
318          *  must not be relative.
319          */
320         std::string _directory;
321         /** Mutex for _directory */
322         mutable boost::mutex _directory_mutex;
323         
324         /** Name for DVD-o-matic */
325         std::string _name;
326         /** True if a auto-generated DCI-compliant name should be used for our DCP */
327         bool _use_dci_name;
328         bool _trust_content_headers;
329         ContentList _content;
330         std::list<boost::signals2::connection> _content_connections;
331         /** The type of content that this Film represents (feature, trailer etc.) */
332         DCPContentType const * _dcp_content_type;
333         /** The format to present this Film in (flat, scope, etc.) */
334         Format const * _format;
335         /** The crop to apply to the source */
336         Crop _crop;
337         /** Video filters that should be used when generating DCPs */
338         std::vector<Filter const *> _filters;
339         /** Scaler algorithm to use */
340         Scaler const * _scaler;
341         /** Frames to trim off the start of the DCP */
342         int _trim_start;
343         /** Frames to trim off the end of the DCP */
344         int _trim_end;
345         /** true to create an A/B comparison DCP, where the left half of the image
346             is the video without any filters or post-processing, and the right half
347             has the specified filters and post-processing.
348         */
349         bool _ab;
350         /** Gain to apply to audio in dB */
351         float _audio_gain;
352         /** Delay to apply to audio (positive moves audio later) in milliseconds */
353         int _audio_delay;
354         /** True if subtitles should be shown for this film */
355         bool _with_subtitles;
356         /** y offset for placing subtitles, in source pixels; +ve is further down
357             the frame, -ve is further up.
358         */
359         int _subtitle_offset;
360         /** scale factor to apply to subtitles */
361         float _subtitle_scale;
362         /** index of colour LUT to use when converting RGB to XYZ.
363          *  0: sRGB
364          *  1: Rec 709
365          */
366         int _colour_lut;
367         /** bandwidth for J2K files in bits per second */
368         int _j2k_bandwidth;
369         /** DCI naming stuff */
370         DCIMetadata _dci_metadata;
371         /** Frames per second to run our DCP at */
372         int _dcp_frame_rate;
373         /** The date that we should use in a DCI name */
374         boost::gregorian::date _dci_date;
375
376         /** true if our state has changed since we last saved it */
377         mutable bool _dirty;
378
379         /** Mutex for all state except _directory */
380         mutable boost::mutex _state_mutex;
381
382         friend class paths_test;
383         friend class film_metadata_test;
384 };
385
386 #endif