Comments.
[dcpomatic.git] / src / lib / film.h
1 /*
2     Copyright (C) 2012-2015 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 "util.h"
29 #include "types.h"
30 #include "isdcf_metadata.h"
31 #include "frame_rate_change.h"
32 #include "signaller.h"
33 #include <dcp/key.h>
34 #include <dcp/encrypted_kdm.h>
35 #include <boost/signals2.hpp>
36 #include <boost/enable_shared_from_this.hpp>
37 #include <boost/filesystem.hpp>
38 #include <string>
39 #include <vector>
40 #include <inttypes.h>
41
42 namespace xmlpp {
43         class Document;
44 }
45
46 class DCPContentType;
47 class Log;
48 class Content;
49 class Player;
50 class Playlist;
51 class AudioContent;
52 class Screen;
53 class AudioProcessor;
54 class AudioMapping;
55 class Ratio;
56 class Job;
57 class ScreenKDM;
58 struct isdcf_name_test;
59
60 /** @class Film
61  *
62  *  @brief A representation of some audio and video content, and details of
63  *  how they should be presented in a DCP.
64  *
65  *  The content of a Film is held in a Playlist (created and managed by the Film).
66  */
67 class Film : public boost::enable_shared_from_this<Film>, public Signaller, public boost::noncopyable
68 {
69 public:
70         Film (boost::filesystem::path, bool log = true);
71         ~Film ();
72
73         boost::filesystem::path info_file (DCPTimePeriod p) const;
74         boost::filesystem::path j2c_path (int, Frame, Eyes, bool) const;
75         boost::filesystem::path internal_video_asset_dir () const;
76         boost::filesystem::path internal_video_asset_filename (DCPTimePeriod p) const;
77
78         boost::filesystem::path audio_analysis_path (boost::shared_ptr<const Playlist>) const;
79
80         void send_dcp_to_tms ();
81         void make_dcp ();
82
83         /** @return Logger.
84          *  It is safe to call this from any thread.
85          */
86         boost::shared_ptr<Log> log () const {
87                 return _log;
88         }
89
90         boost::filesystem::path file (boost::filesystem::path f) const;
91         boost::filesystem::path dir (boost::filesystem::path d) const;
92
93         std::list<std::string> read_metadata ();
94         void write_metadata () const;
95         boost::shared_ptr<xmlpp::Document> metadata () const;
96
97         std::string isdcf_name (bool if_created_now) const;
98         std::string dcp_name (bool if_created_now = false) const;
99
100         /** @return true if our state has changed since we last saved it */
101         bool dirty () const {
102                 return _dirty;
103         }
104
105         dcp::Size full_frame () const;
106         dcp::Size frame_size () const;
107
108         std::vector<CPLSummary> cpls () const;
109
110         int audio_frame_rate () const;
111
112         uint64_t required_disk_space () const;
113         bool should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const;
114
115         /* Proxies for some Playlist methods */
116
117         ContentList content () const;
118         DCPTime length () const;
119         int best_video_frame_rate () const;
120         FrameRateChange active_frame_rate_change (DCPTime) const;
121
122         dcp::EncryptedKDM
123         make_kdm (
124                 dcp::Certificate recipient,
125                 std::vector<dcp::Certificate> trusted_devices,
126                 boost::filesystem::path cpl_file,
127                 dcp::LocalTime from,
128                 dcp::LocalTime until,
129                 dcp::Formulation formulation
130                 ) const;
131
132         std::list<ScreenKDM> make_kdms (
133                 std::list<boost::shared_ptr<Screen> >,
134                 boost::filesystem::path cpl_file,
135                 dcp::LocalTime from,
136                 dcp::LocalTime until,
137                 dcp::Formulation formulation
138                 ) const;
139
140         int state_version () const {
141                 return _state_version;
142         }
143
144         std::string subtitle_language () const;
145
146         void make_audio_mapping_default (AudioMapping & mapping) const;
147         std::vector<std::string> audio_output_names () const;
148
149         void repeat_content (ContentList, int);
150
151         boost::shared_ptr<const Playlist> playlist () const {
152                 return _playlist;
153         }
154
155         std::list<DCPTimePeriod> reels () const;
156
157         /** Identifiers for the parts of our state;
158             used for signalling changes.
159         */
160         enum Property {
161                 NONE,
162                 NAME,
163                 USE_ISDCF_NAME,
164                 /** The playlist's content list has changed (i.e. content has been added or removed) */
165                 CONTENT,
166                 DCP_CONTENT_TYPE,
167                 CONTAINER,
168                 RESOLUTION,
169                 SIGNED,
170                 ENCRYPTED,
171                 KEY,
172                 J2K_BANDWIDTH,
173                 ISDCF_METADATA,
174                 VIDEO_FRAME_RATE,
175                 AUDIO_CHANNELS,
176                 /** The setting of _three_d has changed */
177                 THREE_D,
178                 SEQUENCE_VIDEO,
179                 INTEROP,
180                 AUDIO_PROCESSOR,
181                 REEL_TYPE,
182                 REEL_LENGTH
183         };
184
185
186         /* GET */
187
188         boost::filesystem::path directory () const {
189                 return _directory;
190         }
191
192         std::string name () const {
193                 return _name;
194         }
195
196         bool use_isdcf_name () const {
197                 return _use_isdcf_name;
198         }
199
200         DCPContentType const * dcp_content_type () const {
201                 return _dcp_content_type;
202         }
203
204         Ratio const * container () const {
205                 return _container;
206         }
207
208         Resolution resolution () const {
209                 return _resolution;
210         }
211
212         /* signed is a reserved word */
213         bool is_signed () const {
214                 return _signed;
215         }
216
217         bool encrypted () const {
218                 return _encrypted;
219         }
220
221         dcp::Key key () const {
222                 return _key;
223         }
224
225         int j2k_bandwidth () const {
226                 return _j2k_bandwidth;
227         }
228
229         ISDCFMetadata isdcf_metadata () const {
230                 return _isdcf_metadata;
231         }
232
233         /** @return The frame rate of the DCP */
234         int video_frame_rate () const {
235                 return _video_frame_rate;
236         }
237
238         int audio_channels () const {
239                 return _audio_channels;
240         }
241
242         bool three_d () const {
243                 return _three_d;
244         }
245
246         bool sequence_video () const {
247                 return _sequence_video;
248         }
249
250         bool interop () const {
251                 return _interop;
252         }
253
254         AudioProcessor const * audio_processor () const {
255                 return _audio_processor;
256         }
257
258         ReelType reel_type () const {
259                 return _reel_type;
260         }
261
262         int64_t reel_length () const {
263                 return _reel_length;
264         }
265
266         /* SET */
267
268         void set_directory (boost::filesystem::path);
269         void set_name (std::string);
270         void set_use_isdcf_name (bool);
271         void examine_content (boost::shared_ptr<Content>);
272         void examine_and_add_content (boost::shared_ptr<Content>);
273         void add_content (boost::shared_ptr<Content>);
274         void remove_content (boost::shared_ptr<Content>);
275         void remove_content (ContentList);
276         void move_content_earlier (boost::shared_ptr<Content>);
277         void move_content_later (boost::shared_ptr<Content>);
278         void set_dcp_content_type (DCPContentType const *);
279         void set_container (Ratio const *);
280         void set_resolution (Resolution);
281         void set_signed (bool);
282         void set_encrypted (bool);
283         void set_key (dcp::Key key);
284         void set_j2k_bandwidth (int);
285         void set_isdcf_metadata (ISDCFMetadata);
286         void set_video_frame_rate (int);
287         void set_audio_channels (int);
288         void set_three_d (bool);
289         void set_isdcf_date_today ();
290         void set_sequence_video (bool);
291         void set_interop (bool);
292         void set_audio_processor (AudioProcessor const * processor);
293         void set_reel_type (ReelType);
294         void set_reel_length (int64_t);
295
296         /** Emitted when some property has of the Film has changed */
297         mutable boost::signals2::signal<void (Property)> Changed;
298
299         /** Emitted when some property of our content has changed */
300         mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int, bool)> ContentChanged;
301
302         /** Current version number of the state file */
303         static int const current_state_version;
304
305 private:
306
307         friend struct ::isdcf_name_test;
308
309         void signal_changed (Property);
310         std::string video_identifier () const;
311         void playlist_changed ();
312         void playlist_content_changed (boost::weak_ptr<Content>, int, bool frequent);
313         void maybe_add_content (boost::weak_ptr<Job>, boost::weak_ptr<Content>);
314         void audio_analysis_finished ();
315
316         /** Log to write to */
317         boost::shared_ptr<Log> _log;
318         boost::shared_ptr<Playlist> _playlist;
319
320         /** Complete path to directory containing the film metadata;
321          *  must not be relative.
322          */
323         boost::filesystem::path _directory;
324
325         /** Name for DCP-o-matic */
326         std::string _name;
327         /** True if a auto-generated ISDCF-compliant name should be used for our DCP */
328         bool _use_isdcf_name;
329         /** The type of content that this Film represents (feature, trailer etc.) */
330         DCPContentType const * _dcp_content_type;
331         /** The container to put this Film in (flat, scope, etc.) */
332         Ratio const * _container;
333         /** DCP resolution (2K or 4K) */
334         Resolution _resolution;
335         bool _signed;
336         bool _encrypted;
337         dcp::Key _key;
338         /** bandwidth for J2K files in bits per second */
339         int _j2k_bandwidth;
340         /** ISDCF naming stuff */
341         ISDCFMetadata _isdcf_metadata;
342         /** Frames per second to run our DCP at */
343         int _video_frame_rate;
344         /** The date that we should use in a ISDCF name */
345         boost::gregorian::date _isdcf_date;
346         /** Number of audio channels requested for the DCP */
347         int _audio_channels;
348         /** If true, the DCP will be written in 3D mode; otherwise in 2D.
349             This will be regardless of what content is on the playlist.
350         */
351         bool _three_d;
352         bool _sequence_video;
353         bool _interop;
354         AudioProcessor const * _audio_processor;
355         ReelType _reel_type;
356         /** Desired reel length in bytes, if _reel_type == REELTYPE_BY_LENGTH */
357         int64_t _reel_length;
358
359         int _state_version;
360
361         /** true if our state has changed since we last saved it */
362         mutable bool _dirty;
363
364         boost::signals2::scoped_connection _playlist_changed_connection;
365         boost::signals2::scoped_connection _playlist_content_changed_connection;
366         std::list<boost::signals2::connection> _job_connections;
367         std::list<boost::signals2::connection> _audio_analysis_connections;
368
369         friend struct paths_test;
370         friend struct film_metadata_test;
371 };
372
373 #endif