Don't store _directory in DCPContent, work it out from the paths instead.
[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 #include <dcp/decrypted_kdm.h>
33
34 class DCPContentProperty
35 {
36 public:
37         static int const CAN_BE_PLAYED;
38 };
39
40 /** @class DCPContent
41  *  @brief An existing DCP used as input.
42  */
43 class DCPContent : public VideoContent, public SingleStreamAudioContent, public SubtitleContent
44 {
45 public:
46         DCPContent (boost::shared_ptr<const Film> f, boost::filesystem::path p);
47         DCPContent (boost::shared_ptr<const Film> f, cxml::ConstNodePtr, int version);
48
49         boost::shared_ptr<DCPContent> shared_from_this () {
50                 return boost::dynamic_pointer_cast<DCPContent> (Content::shared_from_this ());
51         }
52
53         DCPTime full_length () const;
54         
55         void examine (boost::shared_ptr<Job>);
56         std::string summary () const;
57         std::string technical_summary () const;
58         void as_xml (xmlpp::Node *) const;
59         std::string identifier () const;
60
61         /* SubtitleContent */
62         bool has_subtitles () const {
63                 boost::mutex::scoped_lock lm (_mutex);
64                 return _has_subtitles;
65         }
66         
67         boost::filesystem::path directory () const;
68
69         bool encrypted () const {
70                 boost::mutex::scoped_lock lm (_mutex);
71                 return _encrypted;
72         }
73
74         void add_kdm (dcp::EncryptedKDM);
75
76         boost::optional<dcp::EncryptedKDM> kdm () const {
77                 return _kdm;
78         }
79
80         bool can_be_played () const;
81         
82 private:
83         void read_directory (boost::filesystem::path);
84         
85         std::string _name;
86         bool _has_subtitles;
87         /** true if our DCP is encrypted */
88         bool _encrypted;
89         boost::optional<dcp::EncryptedKDM> _kdm;
90         /** true if _kdm successfully decrypts the first frame of our DCP */
91         bool _kdm_valid;
92 };
93
94 #endif