Fix the build for older macOS.
[dcpomatic.git] / src / lib / dkdm_wrapper.h
1 /*
2     Copyright (C) 2017-2021 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
22 #include <dcp/encrypted_kdm.h>
23 #include <libcxml/cxml.h>
24 #include <memory>
25
26
27 namespace xmlpp {
28         class Element;
29 }
30
31
32 class DKDMGroup;
33
34
35 class DKDMBase : public std::enable_shared_from_this<DKDMBase>
36 {
37 public:
38         virtual ~DKDMBase () {}
39         virtual std::string name () const = 0;
40         virtual void as_xml (xmlpp::Element *) const = 0;
41
42         static std::shared_ptr<DKDMBase> read (cxml::ConstNodePtr node);
43
44         std::shared_ptr<DKDMGroup> parent () const {
45                 return _parent;
46         }
47
48         void set_parent (std::shared_ptr<DKDMGroup> parent) {
49                 _parent = parent;
50         }
51
52 private:
53         std::shared_ptr<DKDMGroup> _parent;
54 };
55
56
57 class DKDM : public DKDMBase
58 {
59 public:
60         explicit DKDM (dcp::EncryptedKDM k)
61                 : _dkdm (k)
62         {}
63
64         std::string name () const;
65         void as_xml (xmlpp::Element *) const;
66
67         dcp::EncryptedKDM dkdm () const {
68                 return _dkdm;
69         }
70
71 private:
72         dcp::EncryptedKDM _dkdm;
73 };
74
75
76 class DKDMGroup : public DKDMBase
77 {
78 public:
79         explicit DKDMGroup (std::string name)
80                 : _name (name)
81         {}
82
83         std::string name () const {
84                 return _name;
85         }
86
87         void as_xml (xmlpp::Element *) const;
88
89         std::list<std::shared_ptr<DKDMBase>> children () const {
90                 return _children;
91         }
92
93         void add (std::shared_ptr<DKDMBase> child, std::shared_ptr<DKDM> previous = std::shared_ptr<DKDM>());
94         void remove (std::shared_ptr<DKDMBase> child);
95
96 private:
97         std::string _name;
98         std::list<std::shared_ptr<DKDMBase>> _children;
99 };