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