Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / lib / dkdm_wrapper.h
1 /*
2     Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifdef DCPOMATIC_VARIANT_SWAROOP
22 #include "encrypted_ecinema_kdm.h"
23 #endif
24 #include <dcp/encrypted_kdm.h>
25 #include <libcxml/cxml.h>
26 #include <boost/enable_shared_from_this.hpp>
27
28 namespace xmlpp {
29         class Element;
30 }
31
32 class DKDMGroup;
33
34 class DKDMBase : public boost::enable_shared_from_this<DKDMBase>
35 {
36 public:
37         virtual ~DKDMBase () {}
38         virtual std::string name () const = 0;
39         virtual void as_xml (xmlpp::Element *) const = 0;
40
41         static boost::shared_ptr<DKDMBase> read (cxml::ConstNodePtr node);
42
43         boost::shared_ptr<DKDMGroup> parent () const {
44                 return _parent;
45         }
46
47         void set_parent (boost::shared_ptr<DKDMGroup> parent) {
48                 _parent = parent;
49         }
50
51 private:
52         boost::shared_ptr<DKDMGroup> _parent;
53 };
54
55 class DKDM : public DKDMBase
56 {
57 public:
58         explicit DKDM (dcp::EncryptedKDM k)
59                 : _dkdm (k)
60         {}
61
62         std::string name () const;
63         void as_xml (xmlpp::Element *) const;
64
65         dcp::EncryptedKDM dkdm () const {
66                 return _dkdm;
67         }
68
69 private:
70         dcp::EncryptedKDM _dkdm;
71 };
72
73 #ifdef DCPOMATIC_VARIANT_SWAROOP
74 class ECinemaDKDM : public DKDMBase
75 {
76 public:
77         explicit ECinemaDKDM (EncryptedECinemaKDM k)
78                 : _dkdm (k)
79         {}
80
81         std::string name () const;
82         void as_xml (xmlpp::Element *) const;
83
84         EncryptedECinemaKDM dkdm () const {
85                 return _dkdm;
86         }
87
88 private:
89         EncryptedECinemaKDM _dkdm;
90 };
91 #endif
92
93 class DKDMGroup : public DKDMBase
94 {
95 public:
96         explicit DKDMGroup (std::string name)
97                 : _name (name)
98         {}
99
100         std::string name () const {
101                 return _name;
102         }
103
104         void as_xml (xmlpp::Element *) const;
105
106         std::list<boost::shared_ptr<DKDMBase> > children () const {
107                 return _children;
108         }
109
110         void add (boost::shared_ptr<DKDMBase> child, boost::shared_ptr<DKDM> previous = boost::shared_ptr<DKDM> ());
111         void remove (boost::shared_ptr<DKDMBase> child);
112
113 private:
114         std::string _name;
115         std::list<boost::shared_ptr<DKDMBase> > _children;
116 };