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