Front-end to set up referencing of DCPs.
[dcpomatic.git] / src / lib / dcp_content.h
1 /*
2     Copyright (C) 2014 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 #ifndef DCPOMATIC_DCP_CONTENT_H
21 #define DCPOMATIC_DCP_CONTENT_H
22
23 /** @file  src/lib/dcp_content.h
24  *  @brief DCPContent class.
25  */
26
27 #include "video_content.h"
28 #include "single_stream_audio_content.h"
29 #include "subtitle_content.h"
30 #include <libcxml/cxml.h>
31 #include <dcp/encrypted_kdm.h>
32
33 class DCPContentProperty
34 {
35 public:
36         static int const CAN_BE_PLAYED;
37         static int const REFERENCE_VIDEO;
38         static int const REFERENCE_AUDIO;
39         static int const REFERENCE_SUBTITLE;
40 };
41
42 /** @class DCPContent
43  *  @brief An existing DCP used as input.
44  */
45 class DCPContent : public VideoContent, public SingleStreamAudioContent, public SubtitleContent
46 {
47 public:
48         DCPContent (boost::shared_ptr<const Film>, boost::filesystem::path p);
49         DCPContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int version);
50
51         boost::shared_ptr<DCPContent> shared_from_this () {
52                 return boost::dynamic_pointer_cast<DCPContent> (Content::shared_from_this ());
53         }
54
55         DCPTime full_length () const;
56
57         void examine (boost::shared_ptr<Job>);
58         std::string summary () const;
59         std::string technical_summary () const;
60         void as_xml (xmlpp::Node *) const;
61         std::string identifier () const;
62
63         void set_default_colour_conversion ();
64
65         /* SubtitleContent */
66
67         bool has_text_subtitles () const {
68                 boost::mutex::scoped_lock lm (_mutex);
69                 return _has_subtitles;
70         }
71
72         bool has_image_subtitles () const {
73                 return false;
74         }
75
76         boost::filesystem::path directory () const;
77
78         bool encrypted () const {
79                 boost::mutex::scoped_lock lm (_mutex);
80                 return _encrypted;
81         }
82
83         void add_kdm (dcp::EncryptedKDM);
84
85         boost::optional<dcp::EncryptedKDM> kdm () const {
86                 return _kdm;
87         }
88
89         bool can_be_played () const;
90
91         void set_reference_video (bool r);
92
93         bool reference_video () const {
94                 boost::mutex::scoped_lock lm (_mutex);
95                 return _reference_video;
96         }
97
98         void set_reference_audio (bool r);
99
100         bool reference_audio () const {
101                 boost::mutex::scoped_lock lm (_mutex);
102                 return _reference_audio;
103         }
104
105         void set_reference_subtitle (bool r);
106
107         bool reference_subtitle () const {
108                 boost::mutex::scoped_lock lm (_mutex);
109                 return _reference_subtitle;
110         }
111
112 protected:
113         void add_properties (std::list<std::pair<std::string, std::string> >& p) const;
114
115 private:
116         void read_directory (boost::filesystem::path);
117
118         std::string _name;
119         bool _has_subtitles;
120         /** true if our DCP is encrypted */
121         bool _encrypted;
122         boost::optional<dcp::EncryptedKDM> _kdm;
123         /** true if _kdm successfully decrypts the first frame of our DCP */
124         bool _kdm_valid;
125         /** true if the video in this DCP should be included in the output by reference
126          *  rather than by rewrapping.
127          */
128         bool _reference_video;
129         /** true if the audio in this DCP should be included in the output by reference
130          *  rather than by rewrapping.
131          */
132         bool _reference_audio;
133         /** true if the subtitle in this DCP should be included in the output by reference
134          *  rather than by rewrapping.
135          */
136         bool _reference_subtitle;
137 };
138
139 #endif