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