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