Include tidying src/lib/a-j*.h
[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 };
38
39 /** @class DCPContent
40  *  @brief An existing DCP used as input.
41  */
42 class DCPContent : public VideoContent, public SingleStreamAudioContent, public SubtitleContent
43 {
44 public:
45         DCPContent (boost::shared_ptr<const Film>, boost::filesystem::path p);
46         DCPContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int version);
47
48         boost::shared_ptr<DCPContent> shared_from_this () {
49                 return boost::dynamic_pointer_cast<DCPContent> (Content::shared_from_this ());
50         }
51
52         DCPTime full_length () const;
53
54         void examine (boost::shared_ptr<Job>);
55         std::string summary () const;
56         std::string technical_summary () const;
57         void as_xml (xmlpp::Node *) const;
58         std::string identifier () const;
59
60         /* SubtitleContent */
61
62         bool has_text_subtitles () const {
63                 boost::mutex::scoped_lock lm (_mutex);
64                 return _has_subtitles;
65         }
66
67         bool has_image_subtitles () const {
68                 return false;
69         }
70
71         boost::filesystem::path directory () const;
72
73         bool encrypted () const {
74                 boost::mutex::scoped_lock lm (_mutex);
75                 return _encrypted;
76         }
77
78         void add_kdm (dcp::EncryptedKDM);
79
80         boost::optional<dcp::EncryptedKDM> kdm () const {
81                 return _kdm;
82         }
83
84         bool can_be_played () const;
85
86 protected:
87         void add_properties (std::list<std::pair<std::string, std::string> >& p) const;
88
89 private:
90         void read_directory (boost::filesystem::path);
91
92         std::string _name;
93         bool _has_subtitles;
94         /** true if our DCP is encrypted */
95         bool _encrypted;
96         boost::optional<dcp::EncryptedKDM> _kdm;
97         /** true if _kdm successfully decrypts the first frame of our DCP */
98         bool _kdm_valid;
99 };
100
101 #endif