Basics of selecting 'tracks' for CCAPs.
[dcpomatic.git] / src / lib / film.h
1 /*
2     Copyright (C) 2012-2018 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_text_track.h"
35 #include <dcp/key.h>
36 #include <dcp/encrypted_kdm.h>
37 #include <boost/signals2.hpp>
38 #include <boost/enable_shared_from_this.hpp>
39 #include <boost/filesystem.hpp>
40 #include <string>
41 #include <vector>
42 #include <inttypes.h>
43
44 namespace xmlpp {
45         class Document;
46 }
47
48 class DCPContentType;
49 class Log;
50 class Content;
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         explicit 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, bool create = true) 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         void copy_from (boost::shared_ptr<const Film> film);
101
102         std::string isdcf_name (bool if_created_now) const;
103         std::string dcp_name (bool if_created_now = false) const;
104
105         /** @return true if our state has changed since we last saved it */
106         bool dirty () const {
107                 return _dirty;
108         }
109
110         dcp::Size full_frame () const;
111         dcp::Size frame_size () const;
112
113         std::vector<CPLSummary> cpls () const;
114
115         int audio_frame_rate () const;
116
117         std::list<DCPTextTrack> closed_caption_tracks () const;
118
119         uint64_t required_disk_space () const;
120         bool should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const;
121
122         /* Proxies for some Playlist methods */
123
124         ContentList content () const;
125         DCPTime length () const;
126         int best_video_frame_rate () const;
127         FrameRateChange active_frame_rate_change (DCPTime) const;
128         std::pair<double, double> speed_up_range (int dcp_frame_rate) const;
129
130         dcp::EncryptedKDM make_kdm (
131                 dcp::Certificate recipient,
132                 std::vector<dcp::Certificate> trusted_devices,
133                 boost::filesystem::path cpl_file,
134                 dcp::LocalTime from,
135                 dcp::LocalTime until,
136                 dcp::Formulation formulation,
137                 bool disable_forensic_marking_picture,
138                 boost::optional<int> disable_forensic_marking_audio
139                 ) const;
140
141         std::list<ScreenKDM> make_kdms (
142                 std::list<boost::shared_ptr<Screen> > screens,
143                 boost::filesystem::path cpl_file,
144                 boost::posix_time::ptime from,
145                 boost::posix_time::ptime until,
146                 dcp::Formulation formulation,
147                 bool disable_forensic_marking_picture,
148                 boost::optional<int> disable_forensic_marking_audio
149                 ) const;
150
151         int state_version () const {
152                 return _state_version;
153         }
154
155         std::string subtitle_language () const;
156
157         void make_audio_mapping_default (
158                 AudioMapping & mapping,
159                 boost::optional<boost::filesystem::path> filename = boost::optional<boost::filesystem::path> ()
160                 ) const;
161
162         std::vector<std::string> audio_output_names () const;
163
164         void repeat_content (ContentList, int);
165
166         boost::shared_ptr<const Playlist> playlist () const {
167                 return _playlist;
168         }
169
170         std::list<DCPTimePeriod> reels () const;
171         std::list<int> mapped_audio_channels () const;
172
173         std::string content_summary (DCPTimePeriod period) const;
174
175         bool references_dcp_video () const;
176         bool references_dcp_audio () const;
177
178         /** Identifiers for the parts of our state;
179             used for signalling changes.
180         */
181         enum Property {
182                 NONE,
183                 NAME,
184                 USE_ISDCF_NAME,
185                 /** The playlist's content list has changed (i.e. content has been added or removed) */
186                 CONTENT,
187                 /** The order of content in the playlist has changed */
188                 CONTENT_ORDER,
189                 DCP_CONTENT_TYPE,
190                 CONTAINER,
191                 RESOLUTION,
192                 SIGNED,
193                 ENCRYPTED,
194                 KEY,
195                 J2K_BANDWIDTH,
196                 ISDCF_METADATA,
197                 VIDEO_FRAME_RATE,
198                 AUDIO_CHANNELS,
199                 /** The setting of _three_d has changed */
200                 THREE_D,
201                 SEQUENCE,
202                 INTEROP,
203                 AUDIO_PROCESSOR,
204                 REEL_TYPE,
205                 REEL_LENGTH,
206                 UPLOAD_AFTER_MAKE_DCP
207         };
208
209
210         /* GET */
211
212         boost::optional<boost::filesystem::path> directory () const {
213                 return _directory;
214         }
215
216         std::string name () const {
217                 return _name;
218         }
219
220         bool use_isdcf_name () const {
221                 return _use_isdcf_name;
222         }
223
224         DCPContentType const * dcp_content_type () const {
225                 return _dcp_content_type;
226         }
227
228         Ratio const * container () const {
229                 return _container;
230         }
231
232         Resolution resolution () const {
233                 return _resolution;
234         }
235
236         /* signed is a reserved word */
237         bool is_signed () const {
238                 return _signed;
239         }
240
241         bool encrypted () const {
242                 return _encrypted;
243         }
244
245         dcp::Key key () const {
246                 return _key;
247         }
248
249         int j2k_bandwidth () const {
250                 return _j2k_bandwidth;
251         }
252
253         ISDCFMetadata isdcf_metadata () const {
254                 return _isdcf_metadata;
255         }
256
257         /** @return The frame rate of the DCP */
258         int video_frame_rate () const {
259                 return _video_frame_rate;
260         }
261
262         int audio_channels () const {
263                 return _audio_channels;
264         }
265
266         bool three_d () const {
267                 return _three_d;
268         }
269
270         bool sequence () const {
271                 return _sequence;
272         }
273
274         bool interop () const {
275                 return _interop;
276         }
277
278         AudioProcessor const * audio_processor () const {
279                 return _audio_processor;
280         }
281
282         ReelType reel_type () const {
283                 return _reel_type;
284         }
285
286         int64_t reel_length () const {
287                 return _reel_length;
288         }
289
290         bool upload_after_make_dcp () const {
291                 return _upload_after_make_dcp;
292         }
293
294         std::string context_id () const {
295                 return _context_id;
296         }
297
298
299         /* SET */
300
301         void set_directory (boost::filesystem::path);
302         void set_name (std::string);
303         void set_use_isdcf_name (bool);
304         void examine_and_add_content (boost::shared_ptr<Content> content, bool disable_audio_analysis = false);
305         void add_content (boost::shared_ptr<Content>);
306         void remove_content (boost::shared_ptr<Content>);
307         void remove_content (ContentList);
308         void move_content_earlier (boost::shared_ptr<Content>);
309         void move_content_later (boost::shared_ptr<Content>);
310         void set_dcp_content_type (DCPContentType const *);
311         void set_container (Ratio const *);
312         void set_resolution (Resolution);
313         void set_signed (bool);
314         void set_encrypted (bool);
315         void set_key (dcp::Key key);
316         void set_j2k_bandwidth (int);
317         void set_isdcf_metadata (ISDCFMetadata);
318         void set_video_frame_rate (int);
319         void set_audio_channels (int);
320         void set_three_d (bool);
321         void set_isdcf_date_today ();
322         void set_sequence (bool);
323         void set_interop (bool);
324         void set_audio_processor (AudioProcessor const * processor);
325         void set_reel_type (ReelType);
326         void set_reel_length (int64_t);
327         void set_upload_after_make_dcp (bool);
328
329         /** Emitted when some property has of the Film is about to change or has changed */
330         mutable boost::signals2::signal<void (ChangeType, Property)> Change;
331
332         /** Emitted when some property of our content has changed */
333         mutable boost::signals2::signal<void (ChangeType, boost::weak_ptr<Content>, int, bool)> ContentChange;
334
335         /** Current version number of the state file */
336         static int const current_state_version;
337
338 private:
339
340         friend struct ::isdcf_name_test;
341         template <typename> friend class ChangeSignaller;
342
343         void signal_change (ChangeType, Property);
344         void signal_change (ChangeType, int);
345         std::string video_identifier () const;
346         void playlist_change (ChangeType);
347         void playlist_order_changed ();
348         void playlist_content_change (ChangeType type, boost::weak_ptr<Content>, int, bool frequent);
349         void maybe_add_content (boost::weak_ptr<Job>, boost::weak_ptr<Content>, bool disable_audio_analysis);
350         void audio_analysis_finished ();
351
352         static std::string const metadata_file;
353
354         /** Log to write to */
355         boost::shared_ptr<Log> _log;
356         boost::shared_ptr<Playlist> _playlist;
357
358         /** Complete path to directory containing the film metadata;
359          *  must not be relative.
360          */
361         boost::optional<boost::filesystem::path> _directory;
362
363         /** Name for DCP-o-matic */
364         std::string _name;
365         /** True if a auto-generated ISDCF-compliant name should be used for our DCP */
366         bool _use_isdcf_name;
367         /** The type of content that this Film represents (feature, trailer etc.) */
368         DCPContentType const * _dcp_content_type;
369         /** The container to put this Film in (flat, scope, etc.) */
370         Ratio const * _container;
371         /** DCP resolution (2K or 4K) */
372         Resolution _resolution;
373         bool _signed;
374         bool _encrypted;
375         dcp::Key _key;
376         /** context ID used when encrypting picture assets; we keep it so that we can
377          *  re-start picture MXF encodes.
378          */
379         std::string _context_id;
380         /** bandwidth for J2K files in bits per second */
381         int _j2k_bandwidth;
382         /** ISDCF naming stuff */
383         ISDCFMetadata _isdcf_metadata;
384         /** Frames per second to run our DCP at */
385         int _video_frame_rate;
386         /** The date that we should use in a ISDCF name */
387         boost::gregorian::date _isdcf_date;
388         /** Number of audio channels requested for the DCP */
389         int _audio_channels;
390         /** If true, the DCP will be written in 3D mode; otherwise in 2D.
391             This will be regardless of what content is on the playlist.
392         */
393         bool _three_d;
394         bool _sequence;
395         bool _interop;
396         AudioProcessor const * _audio_processor;
397         ReelType _reel_type;
398         /** Desired reel length in bytes, if _reel_type == REELTYPE_BY_LENGTH */
399         int64_t _reel_length;
400         bool _upload_after_make_dcp;
401
402         int _state_version;
403
404         /** true if our state has changed since we last saved it */
405         mutable bool _dirty;
406         /** film being used as a template, or 0 */
407         boost::shared_ptr<Film> _template_film;
408
409         boost::signals2::scoped_connection _playlist_change_connection;
410         boost::signals2::scoped_connection _playlist_order_changed_connection;
411         boost::signals2::scoped_connection _playlist_content_change_connection;
412         std::list<boost::signals2::connection> _job_connections;
413         std::list<boost::signals2::connection> _audio_analysis_connections;
414
415         friend struct paths_test;
416         friend struct film_metadata_test;
417 };
418
419 #endif