/* Copyright (C) 2017-2021 Carl Hetherington 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 . */ #include "dcpomatic_assert.h" #include "dkdm_wrapper.h" #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS using std::dynamic_pointer_cast; using std::list; using std::make_shared; using std::shared_ptr; using std::string; using std::vector; shared_ptr DKDMBase::read(cxml::ConstNodePtr node) { if (node->name() == "DKDM") { return make_shared(dcp::EncryptedKDM(node->content())); } else if (node->name() == "DKDMGroup") { auto name = node->optional_string_attribute("Name"); if (!name) { name = node->string_attribute("name"); } auto group = make_shared(*name); for (auto i: node->node_children()) { if (auto c = read(i)) { group->add(c); } } return group; } return {}; } string DKDM::name() const { return fmt::format("{} ({})", _dkdm.content_title_text(), _dkdm.cpl_id()); } void DKDM::as_xml(xmlpp::Element* element) const { cxml::add_text_child(element, "DKDM", _dkdm.as_xml()); } void DKDMGroup::as_xml(xmlpp::Element* element) const { auto f = cxml::add_child(element, "DKDMGroup"); f->set_attribute("name", _name); for (auto i: _children) { i->as_xml(f); } } void DKDMGroup::add(shared_ptr child, shared_ptr previous) { DCPOMATIC_ASSERT(child); if (previous) { auto 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(shared_from_this())); } void DKDMGroup::remove(shared_ptr child) { for (auto i = _children.begin(); i != _children.end(); ++i) { if (*i == child) { _children.erase(i); child->set_parent(shared_ptr()); return; } auto g = dynamic_pointer_cast(*i); if (g) { g->remove(child); } } } bool DKDMGroup::contains(string dkdm_id) const { for (auto child: _children) { if (auto child_group = dynamic_pointer_cast(child)) { if (child_group->contains(dkdm_id)) { return true; } } else if (auto child_dkdm = dynamic_pointer_cast(child)) { if (child_dkdm->dkdm().id() == dkdm_id) { return true; } } } return false; } bool DKDMGroup::contains_dkdm() const { for (auto child: _children) { if (child->contains_dkdm()) { return true; } } return false; } vector DKDMGroup::all_dkdms() const { vector all; for (auto child: _children) { for (auto dkdm: child->all_dkdms()) { all.push_back(dkdm); } } return all; }