Make terminate_threads() less likely to leave _threads containing invalid pointers.
[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 #include <dcp/encrypted_kdm.h>
22 #include <libcxml/cxml.h>
23 #include <boost/enable_shared_from_this.hpp>
24
25 namespace xmlpp {
26         class Element;
27 }
28
29 class DKDMGroup;
30
31 class DKDMBase : public boost::enable_shared_from_this<DKDMBase>
32 {
33 public:
34         virtual ~DKDMBase () {}
35         virtual std::string name () const = 0;
36         virtual void as_xml (xmlpp::Element *) const = 0;
37
38         static boost::shared_ptr<DKDMBase> read (cxml::ConstNodePtr node);
39
40         boost::shared_ptr<DKDMGroup> parent () const {
41                 return _parent;
42         }
43
44         void set_parent (boost::shared_ptr<DKDMGroup> parent) {
45                 _parent = parent;
46         }
47
48 private:
49         boost::shared_ptr<DKDMGroup> _parent;
50 };
51
52 class DKDM : public DKDMBase
53 {
54 public:
55         explicit DKDM (dcp::EncryptedKDM k)
56                 : _dkdm (k)
57         {}
58
59         std::string name () const;
60         void as_xml (xmlpp::Element *) const;
61
62         dcp::EncryptedKDM dkdm () const {
63                 return _dkdm;
64         }
65
66 private:
67         dcp::EncryptedKDM _dkdm;
68 };
69
70 class DKDMGroup : public DKDMBase
71 {
72 public:
73         explicit DKDMGroup (std::string name)
74                 : _name (name)
75         {}
76
77         std::string name () const {
78                 return _name;
79         }
80
81         void as_xml (xmlpp::Element *) const;
82
83         std::list<boost::shared_ptr<DKDMBase> > children () const {
84                 return _children;
85         }
86
87         void add (boost::shared_ptr<DKDMBase> child, boost::shared_ptr<DKDM> previous = boost::shared_ptr<DKDM> ());
88         void remove (boost::shared_ptr<DKDMBase> child);
89
90 private:
91         std::string _name;
92         std::list<boost::shared_ptr<DKDMBase> > _children;
93 };