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 some audio and video content, and details of
22  *  how they should be presented in a DCP.
23  */
24
25 #ifndef DCPOMATIC_FILM_H
26 #define DCPOMATIC_FILM_H
27
28 #include <string>
29 #include <vector>
30 #include <inttypes.h>
31 #include <boost/signals2.hpp>
32 #include <boost/enable_shared_from_this.hpp>
33 #include <boost/filesystem.hpp>
34 #include <dcp/key.h>
35 #include <dcp/decrypted_kdm.h>
36 #include <dcp/encrypted_kdm.h>
37 #include "util.h"
38 #include "types.h"
39 #include "dci_metadata.h"
40
41 class DCPContentType;
42 class Log;
43 class Content;
44 class Player;
45 class Playlist;
46 class AudioContent;
47 class Scaler;
48 class Screen;
49
50 /** @class Film
51  *
52  *  @brief A representation of some audio and video content, and details of
53  *  how they should be presented in a DCP.
54  *
55  *  The content of a Film is held in a Playlist (created and managed by the Film).
56  */
57 class Film : public boost::enable_shared_from_this<Film>, public boost::noncopyable
58 {
59 public:
60         Film (boost::filesystem::path, bool log = true);
61
62         boost::filesystem::path info_dir () const;
63         boost::filesystem::path j2c_path (int, Eyes, bool) const;
64         boost::filesystem::path info_path (int, Eyes) const;
65         boost::filesystem::path internal_video_mxf_dir () const;
66         boost::filesystem::path internal_video_mxf_filename () const;
67         boost::filesystem::path audio_analysis_dir () const;
68
69         boost::filesystem::path video_mxf_filename () const;
70         boost::filesystem::path audio_mxf_filename () const;
71
72         void send_dcp_to_tms ();
73         void make_dcp ();
74
75         /** @return Logger.
76          *  It is safe to call this from any thread.
77          */
78         boost::shared_ptr<Log> log () const {
79                 return _log;
80         }
81
82         int encoded_frames () const;
83         
84         boost::filesystem::path file (boost::filesystem::path f) const;
85         boost::filesystem::path dir (boost::filesystem::path d) const;
86
87         std::list<std::string> read_metadata ();
88         void write_metadata () const;
89         boost::shared_ptr<xmlpp::Document> metadata () const;
90
91         std::string dci_name (bool if_created_now) const;
92         std::string dcp_name (bool if_created_now = false) const;
93
94         /** @return true if our state has changed since we last saved it */
95         bool dirty () const {
96                 return _dirty;
97         }
98
99         dcp::Size full_frame () const;
100         dcp::Size frame_size () const;
101
102         std::vector<CPLSummary> cpls () const;
103
104         boost::shared_ptr<Player> make_player () const;
105         boost::shared_ptr<Playlist> playlist () const;
106
107         int audio_frame_rate () const;
108
109         uint64_t required_disk_space () const;
110         bool should_be_enough_disk_space (double &, double &) const;
111         
112         /* Proxies for some Playlist methods */
113
114         ContentList content () const;
115         DCPTime length () const;
116         bool has_subtitles () const;
117         int best_video_frame_rate () const;
118         FrameRateChange active_frame_rate_change (DCPTime) const;
119
120         dcp::EncryptedKDM
121         make_kdm (
122                 boost::shared_ptr<dcp::Certificate> target,
123                 boost::filesystem::path cpl_file,
124                 dcp::LocalTime from,
125                 dcp::LocalTime until
126                 ) const;
127         
128         std::list<dcp::EncryptedKDM> make_kdms (
129                 std::list<boost::shared_ptr<Screen> >,
130                 boost::filesystem::path cpl_file,
131                 dcp::LocalTime from,
132                 dcp::LocalTime until
133                 ) const;
134
135         dcp::Key key () const {
136                 return _key;
137         }
138
139         int state_version () const {
140                 return _state_version;
141         }
142
143         /** Identifiers for the parts of our state;
144             used for signalling changes.
145         */
146         enum Property {
147                 NONE,
148                 NAME,
149                 USE_DCI_NAME,
150                 /** The playlist's content list has changed (i.e. content has been added, moved around or removed) */
151                 CONTENT,
152                 DCP_CONTENT_TYPE,
153                 CONTAINER,
154                 RESOLUTION,
155                 SCALER,
156                 WITH_SUBTITLES,
157                 SIGNED,
158                 ENCRYPTED,
159                 J2K_BANDWIDTH,
160                 DCI_METADATA,
161                 VIDEO_FRAME_RATE,
162                 AUDIO_CHANNELS,
163                 /** The setting of _three_d has been changed */
164                 THREE_D,
165                 SEQUENCE_VIDEO,
166                 INTEROP,
167         };
168
169
170         /* GET */
171
172         boost::filesystem::path directory () const {
173                 return _directory;
174         }
175
176         std::string name () const {
177                 return _name;
178         }
179
180         bool use_dci_name () const {
181                 return _use_dci_name;
182         }
183
184         DCPContentType const * dcp_content_type () const {
185                 return _dcp_content_type;
186         }
187
188         Ratio const * container () const {
189                 return _container;
190         }
191
192         Resolution resolution () const {
193                 return _resolution;
194         }
195
196         Scaler const * scaler () const {
197                 return _scaler;
198         }
199
200         bool with_subtitles () const {
201                 return _with_subtitles;
202         }
203
204         /* signed is a reserved word */
205         bool is_signed () const {
206                 return _signed;
207         }
208         
209         bool encrypted () const {
210                 return _encrypted;
211         }
212
213         int j2k_bandwidth () const {
214                 return _j2k_bandwidth;
215         }
216
217         DCIMetadata dci_metadata () const {
218                 return _dci_metadata;
219         }
220
221         /** @return The frame rate of the DCP */
222         int video_frame_rate () const {
223                 return _video_frame_rate;
224         }
225
226         int audio_channels () const {
227                 return _audio_channels;
228         }
229
230         bool three_d () const {
231                 return _three_d;
232         }
233
234         bool sequence_video () const {
235                 return _sequence_video;
236         }
237
238         bool interop () const {
239                 return _interop;
240         }
241         
242
243         /* SET */
244
245         void set_directory (boost::filesystem::path);
246         void set_name (std::string);
247         void set_use_dci_name (bool);
248         void examine_and_add_content (boost::shared_ptr<Content>);
249         void add_content (boost::shared_ptr<Content>);
250         void remove_content (boost::shared_ptr<Content>);
251         void move_content_earlier (boost::shared_ptr<Content>);
252         void move_content_later (boost::shared_ptr<Content>);
253         void set_dcp_content_type (DCPContentType const *);
254         void set_container (Ratio const *);
255         void set_resolution (Resolution);
256         void set_scaler (Scaler const *);
257         void set_with_subtitles (bool);
258         void set_signed (bool);
259         void set_encrypted (bool);
260         void set_j2k_bandwidth (int);
261         void set_dci_metadata (DCIMetadata);
262         void set_video_frame_rate (int);
263         void set_audio_channels (int);
264         void set_three_d (bool);
265         void set_dci_date_today ();
266         void set_sequence_video (bool);
267         void set_interop (bool);
268
269         /** Emitted when some property has of the Film has changed */
270         mutable boost::signals2::signal<void (Property)> Changed;
271
272         /** Emitted when some property of our content has changed */
273         mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int)> ContentChanged;
274
275         /** Current version number of the state file */
276         static int const current_state_version;
277
278 private:
279
280         void signal_changed (Property);
281         std::string video_identifier () const;
282         void playlist_changed ();
283         void playlist_content_changed (boost::weak_ptr<Content>, int);
284         std::string filename_safe_name () const;
285         void maybe_add_content (boost::weak_ptr<Job>, boost::weak_ptr<Content>);
286
287         /** Log to write to */
288         boost::shared_ptr<Log> _log;
289         boost::shared_ptr<Playlist> _playlist;
290
291         /** Complete path to directory containing the film metadata;
292          *  must not be relative.
293          */
294         boost::filesystem::path _directory;
295         
296         /** Name for DCP-o-matic */
297         std::string _name;
298         /** True if a auto-generated DCI-compliant name should be used for our DCP */
299         bool _use_dci_name;
300         /** The type of content that this Film represents (feature, trailer etc.) */
301         DCPContentType const * _dcp_content_type;
302         /** The container to put this Film in (flat, scope, etc.) */
303         Ratio const * _container;
304         /** DCP resolution (2K or 4K) */
305         Resolution _resolution;
306         /** Scaler algorithm to use */
307         Scaler const * _scaler;
308         /** True if subtitles should be shown for this film */
309         bool _with_subtitles;
310         bool _signed;
311         bool _encrypted;
312         /** bandwidth for J2K files in bits per second */
313         int _j2k_bandwidth;
314         /** DCI naming stuff */
315         DCIMetadata _dci_metadata;
316         /** Frames per second to run our DCP at */
317         int _video_frame_rate;
318         /** The date that we should use in a DCI name */
319         boost::gregorian::date _dci_date;
320         /** Number of audio channels to put in the DCP */
321         int _audio_channels;
322         /** If true, the DCP will be written in 3D mode; otherwise in 2D.
323             This will be regardless of what content is on the playlist.
324         */
325         bool _three_d;
326         bool _sequence_video;
327         bool _interop;
328         dcp::Key _key;
329
330         int _state_version;
331
332         /** true if our state has changed since we last saved it */
333         mutable bool _dirty;
334
335         friend class paths_test;
336         friend class film_metadata_test;
337 };
338
339 #endif