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