5255e8355a7e1e6c9a59a6652bf509b37ce5389a
[dcpomatic.git] / src / lib / film.h
1 /*
2     Copyright (C) 2012-2021 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 "change_signaller.h"
30 #include "dcp_text_track.h"
31 #include "frame_rate_change.h"
32 #include "signaller.h"
33 #include "types.h"
34 #include "util.h"
35 #include <dcp/encrypted_kdm.h>
36 #include <dcp/key.h>
37 #include <dcp/language_tag.h>
38 #include <boost/filesystem.hpp>
39 #include <boost/signals2.hpp>
40 #include <boost/thread.hpp>
41 #include <boost/thread/mutex.hpp>
42 #include <inttypes.h>
43 #include <string>
44 #include <vector>
45
46 namespace xmlpp {
47         class Document;
48 }
49
50 namespace dcpomatic {
51         class Screen;
52 }
53
54 class DCPContentType;
55 class Log;
56 class Content;
57 class Playlist;
58 class AudioContent;
59 class AudioProcessor;
60 class Ratio;
61 class Job;
62 class Film;
63 struct isdcf_name_test;
64 struct recover_test_2d_encrypted;
65 struct atmos_encrypted_passthrough_test;
66
67 class InfoFileHandle
68 {
69 public:
70         InfoFileHandle (boost::mutex& mutex, boost::filesystem::path file, bool read);
71         ~InfoFileHandle ();
72
73         FILE* get () const {
74                 return _handle;
75         }
76
77         boost::filesystem::path file () const {
78                 return _file;
79         }
80
81 private:
82         friend class Film;
83
84         boost::mutex::scoped_lock _lock;
85         FILE* _handle;
86         boost::filesystem::path _file;
87 };
88
89 /** @class Film
90  *
91  *  @brief A representation of some audio, video, subtitle and closed-caption content,
92  *  and details of how they should be presented in a DCP.
93  *
94  *  The content of a Film is held in a Playlist (created and managed by the Film).
95  */
96 class Film : public std::enable_shared_from_this<Film>, public Signaller
97 {
98 public:
99         explicit Film (boost::optional<boost::filesystem::path> dir);
100         ~Film ();
101
102         Film (Film const&) = delete;
103         Film& operator= (Film const&) = delete;
104
105         std::shared_ptr<InfoFileHandle> info_file_handle (dcpomatic::DCPTimePeriod period, bool read) const;
106         boost::filesystem::path j2c_path (int, Frame, Eyes, bool) const;
107         boost::filesystem::path internal_video_asset_dir () const;
108         boost::filesystem::path internal_video_asset_filename (dcpomatic::DCPTimePeriod p) const;
109
110         boost::filesystem::path audio_analysis_path (std::shared_ptr<const Playlist>) const;
111         boost::filesystem::path subtitle_analysis_path (std::shared_ptr<const Content>) const;
112
113         void send_dcp_to_tms ();
114         void make_dcp (bool gui = false, bool check = true);
115
116         /** @return Logger.
117          *  It is safe to call this from any thread.
118          */
119         std::shared_ptr<Log> log () const {
120                 return _log;
121         }
122
123         boost::filesystem::path file (boost::filesystem::path f) const;
124         boost::filesystem::path dir (boost::filesystem::path d, bool create = true) const;
125
126         void use_template (std::string name);
127         std::list<std::string> read_metadata (boost::optional<boost::filesystem::path> path = boost::optional<boost::filesystem::path> ());
128         void write_metadata () const;
129         void write_metadata (boost::filesystem::path path) const;
130         void write_template (boost::filesystem::path path) const;
131         std::shared_ptr<xmlpp::Document> metadata (bool with_content_paths = true) const;
132
133         void copy_from (std::shared_ptr<const Film> film);
134
135         std::string isdcf_name (bool if_created_now) const;
136         std::string dcp_name (bool if_created_now = false) const;
137
138         /** @return true if our state has changed since we last saved it */
139         bool dirty () const {
140                 return _dirty;
141         }
142
143         dcp::Size full_frame () const;
144         dcp::Size frame_size () const;
145         dcp::Size active_area () const;
146
147         std::vector<CPLSummary> cpls () const;
148
149         int audio_frame_rate () const;
150
151         std::list<DCPTextTrack> closed_caption_tracks () const;
152
153         uint64_t required_disk_space () const;
154         bool should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const;
155
156         bool has_sign_language_video_channel () const;
157
158         /* Proxies for some Playlist methods */
159
160         ContentList content () const;
161         dcpomatic::DCPTime length () const;
162         int best_video_frame_rate () const;
163         FrameRateChange active_frame_rate_change (dcpomatic::DCPTime) const;
164         std::pair<double, double> speed_up_range (int dcp_frame_rate) const;
165
166         dcp::EncryptedKDM make_kdm (
167                 dcp::Certificate recipient,
168                 std::vector<std::string> trusted_devices,
169                 boost::filesystem::path cpl_file,
170                 dcp::LocalTime from,
171                 dcp::LocalTime until,
172                 dcp::Formulation formulation,
173                 bool disable_forensic_marking_picture,
174                 boost::optional<int> disable_forensic_marking_audio
175                 ) const;
176
177         int state_version () const {
178                 return _state_version;
179         }
180
181         std::vector<NamedChannel> audio_output_names () const;
182
183         void repeat_content (ContentList, int);
184
185         std::shared_ptr<const Playlist> playlist () const {
186                 return _playlist;
187         }
188
189         std::list<dcpomatic::DCPTimePeriod> reels () const;
190         std::list<int> mapped_audio_channels () const;
191
192         boost::optional<dcp::LanguageTag> audio_language () const {
193                 return _audio_language;
194         }
195
196         /** @return pair containing the main subtitle language, and additional languages */
197         std::pair<boost::optional<dcp::LanguageTag>, std::vector<dcp::LanguageTag>> subtitle_languages () const;
198
199         std::string content_summary (dcpomatic::DCPTimePeriod period) const;
200
201         bool references_dcp_video () const;
202         bool references_dcp_audio () const;
203         bool contains_atmos_content () const;
204
205         void set_tolerant (bool t) {
206                 _tolerant = t;
207         }
208
209         bool tolerant () const {
210                 return _tolerant;
211         }
212
213         /** Identifiers for the parts of our state;
214             used for signalling changes.
215         */
216         enum class Property {
217                 NONE,
218                 NAME,
219                 USE_ISDCF_NAME,
220                 /** The playlist's content list has changed (i.e. content has been added or removed) */
221                 CONTENT,
222                 /** The order of content in the playlist has changed */
223                 CONTENT_ORDER,
224                 DCP_CONTENT_TYPE,
225                 CONTAINER,
226                 RESOLUTION,
227                 ENCRYPTED,
228                 J2K_BANDWIDTH,
229                 VIDEO_FRAME_RATE,
230                 AUDIO_CHANNELS,
231                 /** The setting of _three_d has changed */
232                 THREE_D,
233                 SEQUENCE,
234                 INTEROP,
235                 AUDIO_PROCESSOR,
236                 REEL_TYPE,
237                 REEL_LENGTH,
238                 REENCODE_J2K,
239                 MARKERS,
240                 RATINGS,
241                 CONTENT_VERSIONS,
242                 NAME_LANGUAGE,
243                 AUDIO_LANGUAGE,
244                 RELEASE_TERRITORY,
245                 SIGN_LANGUAGE_VIDEO_LANGUAGE,
246                 VERSION_NUMBER,
247                 STATUS,
248                 CHAIN,
249                 DISTRIBUTOR,
250                 FACILITY,
251                 STUDIO,
252                 TEMP_VERSION,
253                 PRE_RELEASE,
254                 RED_BAND,
255                 TWO_D_VERSION_OF_THREE_D,
256                 LUMINANCE,
257         };
258
259
260         /* GET */
261
262         boost::optional<boost::filesystem::path> directory () const {
263                 return _directory;
264         }
265
266         std::string name () const {
267                 return _name;
268         }
269
270         bool use_isdcf_name () const {
271                 return _use_isdcf_name;
272         }
273
274         DCPContentType const * dcp_content_type () const {
275                 return _dcp_content_type;
276         }
277
278         Ratio const * container () const {
279                 return _container;
280         }
281
282         Resolution resolution () const {
283                 return _resolution;
284         }
285
286         bool encrypted () const {
287                 return _encrypted;
288         }
289
290         dcp::Key key () const {
291                 return _key;
292         }
293
294         int j2k_bandwidth () const {
295                 return _j2k_bandwidth;
296         }
297
298         /** @return The frame rate of the DCP */
299         int video_frame_rate () const {
300                 return _video_frame_rate;
301         }
302
303         int audio_channels () const {
304                 return _audio_channels;
305         }
306
307         bool three_d () const {
308                 return _three_d;
309         }
310
311         bool sequence () const {
312                 return _sequence;
313         }
314
315         bool interop () const {
316                 return _interop;
317         }
318
319         AudioProcessor const * audio_processor () const {
320                 return _audio_processor;
321         }
322
323         ReelType reel_type () const {
324                 return _reel_type;
325         }
326
327         int64_t reel_length () const {
328                 return _reel_length;
329         }
330
331         std::string context_id () const {
332                 return _context_id;
333         }
334
335         bool reencode_j2k () const {
336                 return _reencode_j2k;
337         }
338
339         typedef std::map<dcp::Marker, dcpomatic::DCPTime> Markers;
340
341         boost::optional<dcpomatic::DCPTime> marker (dcp::Marker type) const;
342         Markers markers () const {
343                 return _markers;
344         }
345
346         std::vector<dcp::Rating> ratings () const {
347                 return _ratings;
348         }
349
350         std::vector<std::string> content_versions () const {
351                 return _content_versions;
352         }
353
354         dcp::LanguageTag name_language () const {
355                 return _name_language;
356         }
357
358         boost::optional<dcp::LanguageTag::RegionSubtag> release_territory () const {
359                 return _release_territory;
360         }
361
362         boost::optional<dcp::LanguageTag> sign_language_video_language () const {
363                 return _sign_language_video_language;
364         }
365
366         int version_number () const {
367                 return _version_number;
368         }
369
370         dcp::Status status () const {
371                 return _status;
372         }
373
374         boost::optional<std::string> chain () const {
375                 return _chain;
376         }
377
378         boost::optional<std::string> distributor () const {
379                 return _distributor;
380         }
381
382         boost::optional<std::string> facility () const {
383                 return _facility;
384         }
385
386         boost::optional<std::string> studio () const {
387                 return _studio;
388         }
389
390         bool temp_version () const {
391                 return _temp_version;
392         }
393
394         bool pre_release () const {
395                 return _pre_release;
396         }
397
398         bool red_band () const {
399                 return _red_band;
400         }
401
402         bool two_d_version_of_three_d () const {
403                 return _two_d_version_of_three_d;
404         }
405
406         boost::optional<dcp::Luminance> luminance () const {
407                 return _luminance;
408         }
409
410
411         /* SET */
412
413         void set_directory (boost::filesystem::path);
414         void set_name (std::string);
415         void set_use_isdcf_name (bool);
416         void examine_and_add_content (std::shared_ptr<Content> content, bool disable_audio_analysis = false);
417         void add_content (std::shared_ptr<Content>);
418         void remove_content (std::shared_ptr<Content>);
419         void remove_content (ContentList);
420         void move_content_earlier (std::shared_ptr<Content>);
421         void move_content_later (std::shared_ptr<Content>);
422         void set_dcp_content_type (DCPContentType const *);
423         void set_container (Ratio const *, bool user_explicit = true);
424         void set_resolution (Resolution, bool user_explicit = true);
425         void set_encrypted (bool);
426         void set_j2k_bandwidth (int);
427         void set_video_frame_rate (int rate, bool user_explicit = false);
428         void set_audio_channels (int);
429         void set_three_d (bool);
430         void set_isdcf_date_today ();
431         void set_sequence (bool);
432         void set_interop (bool);
433         void set_audio_processor (AudioProcessor const * processor);
434         void set_reel_type (ReelType);
435         void set_reel_length (int64_t);
436         void set_reencode_j2k (bool);
437         void set_marker (dcp::Marker type, dcpomatic::DCPTime time);
438         void unset_marker (dcp::Marker type);
439         void clear_markers ();
440         void set_ratings (std::vector<dcp::Rating> r);
441         void set_content_versions (std::vector<std::string> v);
442         void set_name_language (dcp::LanguageTag lang);
443         void set_release_territory (boost::optional<dcp::LanguageTag::RegionSubtag> region = boost::none);
444         void set_sign_language_video_language (boost::optional<dcp::LanguageTag> tag);
445         void set_version_number (int v);
446         void set_status (dcp::Status s);
447         void set_chain (boost::optional<std::string> c = boost::none);
448         void set_facility (boost::optional<std::string> f = boost::none);
449         void set_studio (boost::optional<std::string> s = boost::none);
450         void set_temp_version (bool t);
451         void set_pre_release (bool p);
452         void set_red_band (bool r);
453         void set_two_d_version_of_three_d (bool t);
454         void set_distributor (boost::optional<std::string> d = boost::none);
455         void set_luminance (boost::optional<dcp::Luminance> l = boost::none);
456         void set_audio_language (boost::optional<dcp::LanguageTag> language);
457
458         void add_ffoc_lfoc (Markers& markers) const;
459
460         /** Emitted when some property has of the Film is about to change or has changed */
461         mutable boost::signals2::signal<void (ChangeType, Property)> Change;
462
463         /** Emitted when some property of our content has changed */
464         mutable boost::signals2::signal<void (ChangeType, std::weak_ptr<Content>, int, bool)> ContentChange;
465
466         /** Emitted when the film's length might have changed; this is not like a normal
467             property as its value is derived from the playlist, so it has its own signal.
468         */
469         mutable boost::signals2::signal<void ()> LengthChange;
470
471         /** Emitted when we have something important to tell the user */
472         boost::signals2::signal<void (std::string)> Message;
473
474         /** Current version number of the state file */
475         static int const current_state_version;
476
477 private:
478
479         friend struct ::isdcf_name_test;
480         friend struct ::recover_test_2d_encrypted;
481         friend struct ::atmos_encrypted_passthrough_test;
482         template <class, class> friend class ChangeSignaller;
483
484         boost::filesystem::path info_file (dcpomatic::DCPTimePeriod p) const;
485
486         void signal_change (ChangeType, Property);
487         void signal_change (ChangeType, int);
488         std::string video_identifier () const;
489         void playlist_change (ChangeType);
490         void playlist_order_changed ();
491         void playlist_content_change (ChangeType type, std::weak_ptr<Content>, int, bool frequent);
492         void playlist_length_change ();
493         void maybe_add_content (std::weak_ptr<Job>, std::weak_ptr<Content>, bool disable_audio_analysis);
494         void audio_analysis_finished ();
495         void check_settings_consistency ();
496         void maybe_set_container_and_resolution ();
497
498         /** Log to write to */
499         std::shared_ptr<Log> _log;
500         std::shared_ptr<Playlist> _playlist;
501
502         /** Complete path to directory containing the film metadata;
503          *  must not be relative.
504          */
505         boost::optional<boost::filesystem::path> _directory;
506
507         /** Name for DCP-o-matic */
508         std::string _name;
509         /** True if a auto-generated ISDCF-compliant name should be used for our DCP */
510         bool _use_isdcf_name;
511         /** The type of content that this Film represents (feature, trailer etc.) */
512         DCPContentType const * _dcp_content_type;
513         /** The container to put this Film in (flat, scope, etc.) */
514         Ratio const * _container;
515         /** DCP resolution (2K or 4K) */
516         Resolution _resolution;
517         bool _encrypted;
518         dcp::Key _key;
519         /** context ID used when encrypting picture assets; we keep it so that we can
520          *  re-start picture MXF encodes.
521          */
522         std::string _context_id;
523         /** bandwidth for J2K files in bits per second */
524         int _j2k_bandwidth;
525         /** Frames per second to run our DCP at */
526         int _video_frame_rate;
527         /** The date that we should use in a ISDCF name */
528         boost::gregorian::date _isdcf_date;
529         /** Number of audio channels requested for the DCP */
530         int _audio_channels;
531         /** If true, the DCP will be written in 3D mode; otherwise in 2D.
532             This will be regardless of what content is on the playlist.
533         */
534         bool _three_d;
535         bool _sequence;
536         bool _interop;
537         AudioProcessor const * _audio_processor;
538         ReelType _reel_type;
539         /** Desired reel length in bytes, if _reel_type == REELTYPE_BY_LENGTH */
540         int64_t _reel_length;
541         bool _reencode_j2k;
542         /** true if the user has ever explicitly set the video frame rate of this film */
543         bool _user_explicit_video_frame_rate;
544         bool _user_explicit_container;
545         bool _user_explicit_resolution;
546         std::map<dcp::Marker, dcpomatic::DCPTime> _markers;
547         std::vector<dcp::Rating> _ratings;
548         std::vector<std::string> _content_versions;
549         dcp::LanguageTag _name_language;
550         boost::optional<dcp::LanguageTag::RegionSubtag> _release_territory;
551         boost::optional<dcp::LanguageTag> _sign_language_video_language;
552         int _version_number;
553         dcp::Status _status;
554         boost::optional<std::string> _chain;
555         boost::optional<std::string> _distributor;
556         boost::optional<std::string> _facility;
557         boost::optional<std::string> _studio;
558         bool _temp_version = false;
559         bool _pre_release = false;
560         bool _red_band = false;
561         bool _two_d_version_of_three_d = false;
562         boost::optional<dcp::Luminance> _luminance;
563         boost::optional<dcp::LanguageTag> _audio_language;
564
565         int _state_version;
566
567         /** true if our state has changed since we last saved it */
568         mutable bool _dirty;
569         /** film being used as a template, or 0 */
570         std::shared_ptr<Film> _template_film;
571
572         /** Be tolerant of errors in content (currently applies to DCP only).
573             Not saved as state.
574         */
575         bool _tolerant;
576
577         mutable boost::mutex _info_file_mutex;
578
579         boost::signals2::scoped_connection _playlist_change_connection;
580         boost::signals2::scoped_connection _playlist_order_changed_connection;
581         boost::signals2::scoped_connection _playlist_content_change_connection;
582         boost::signals2::scoped_connection _playlist_length_change_connection;
583         std::list<boost::signals2::connection> _job_connections;
584         std::list<boost::signals2::connection> _audio_analysis_connections;
585
586         friend struct paths_test;
587         friend struct film_metadata_test;
588 };
589
590
591 typedef ChangeSignaller<Film, Film::Property> FilmChangeSignaller;
592
593
594 #endif