1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "compose.hpp"
#include "dkdm_wrapper.h"
#include "dcpomatic_assert.h"
#include <libxml++/libxml++.h>
#include <boost/foreach.hpp>
using std::string;
using std::list;
using boost::shared_ptr;
using boost::dynamic_pointer_cast;
shared_ptr<DKDMBase>
DKDMBase::read (cxml::ConstNodePtr node)
{
if (node->name() == "DKDM") {
return shared_ptr<DKDM> (new DKDM (dcp::EncryptedKDM (node->content ())));
#ifdef DCPOMATIC_VARIANT_SWAROOP
} else if (node->name() == "ECinemaDKDM") {
return shared_ptr<ECinemaDKDM> (new ECinemaDKDM(EncryptedECinemaKDM(node->content())));
#endif
} else if (node->name() == "DKDMGroup") {
shared_ptr<DKDMGroup> group (new DKDMGroup (node->string_attribute ("Name")));
BOOST_FOREACH (cxml::ConstNodePtr i, node->node_children()) {
shared_ptr<DKDMBase> c = read (i);
if (c) {
group->add (c);
}
}
return group;
}
return shared_ptr<DKDMBase> ();
}
string
DKDM::name () const
{
return String::compose ("%1 (%2)", _dkdm.content_title_text(), _dkdm.cpl_id());
}
void
DKDM::as_xml (xmlpp::Element* node) const
{
node->add_child("DKDM")->add_child_text (_dkdm.as_xml ());
}
#ifdef DCPOMATIC_VARIANT_SWAROOP
string
ECinemaDKDM::name () const
{
return String::compose ("%1 (%2)", _dkdm.name(), _dkdm.id());
}
void
ECinemaDKDM::as_xml (xmlpp::Element* node) const
{
node->add_child("ECinemaDKDM")->add_child_text (_dkdm.as_xml());
}
#endif
void
DKDMGroup::as_xml (xmlpp::Element* node) const
{
xmlpp::Element* f = node->add_child("DKDMGroup");
f->set_attribute ("Name", _name);
BOOST_FOREACH (shared_ptr<DKDMBase> i, _children) {
i->as_xml (f);
}
}
void
DKDMGroup::add (shared_ptr<DKDMBase> child, shared_ptr<DKDM> previous)
{
DCPOMATIC_ASSERT (child);
if (previous) {
list<shared_ptr<DKDMBase> >::iterator i = find (_children.begin(), _children.end(), previous);
if (i != _children.end ()) {
++i;
}
_children.insert (i, child);
} else {
_children.push_back (child);
}
child->set_parent (dynamic_pointer_cast<DKDMGroup> (shared_from_this ()));
}
void
DKDMGroup::remove (shared_ptr<DKDMBase> child)
{
for (list<shared_ptr<DKDMBase> >::iterator i = _children.begin(); i != _children.end(); ++i) {
if (*i == child) {
_children.erase (i);
child->set_parent (shared_ptr<DKDMGroup> ());
return;
}
shared_ptr<DKDMGroup> g = dynamic_pointer_cast<DKDMGroup> (*i);
if (g) {
g->remove (child);
}
}
}
|