Keep model up to date when reordering KDMs.
[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 std::string name () const = 0;
35         virtual void as_xml (xmlpp::Element *) const = 0;
36
37         static boost::shared_ptr<DKDMBase> read (cxml::ConstNodePtr node);
38
39         boost::shared_ptr<DKDMGroup> parent () const {
40                 return _parent;
41         }
42
43         void set_parent (boost::shared_ptr<DKDMGroup> parent) {
44                 _parent = parent;
45         }
46
47 private:
48         boost::shared_ptr<DKDMGroup> _parent;
49 };
50
51 class DKDM : public DKDMBase
52 {
53 public:
54         DKDM (dcp::EncryptedKDM k)
55                 : _dkdm (k)
56         {}
57
58         std::string name () const;
59         void as_xml (xmlpp::Element *) const;
60
61         dcp::EncryptedKDM dkdm () const {
62                 return _dkdm;
63         }
64
65 private:
66         dcp::EncryptedKDM _dkdm;
67 };
68
69 class DKDMGroup : public DKDMBase
70 {
71 public:
72         DKDMGroup (std::string name)
73                 : _name (name)
74         {}
75
76         std::string name () const {
77                 return _name;
78         }
79
80         void as_xml (xmlpp::Element *) const;
81
82         std::list<boost::shared_ptr<DKDMBase> > children () const {
83                 return _children;
84         }
85
86         void add (boost::shared_ptr<DKDMBase> child, boost::shared_ptr<DKDM> previous = boost::shared_ptr<DKDM> ());
87         void remove (boost::shared_ptr<DKDMBase> child);
88
89 private:
90         std::string _name;
91         std::list<boost::shared_ptr<DKDMBase> > _children;
92 };