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