X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fspl.cc;h=ccf809f8bc5523f2e98dd81f4b9a84bfe40cb157;hb=8f12e84009d7c2685bb2eeb32665876463d4e6e5;hp=544706694c1face7981ae0d9eea23ca3289fa34f;hpb=8872a0a0028048e277a623fa08e8242dd43f4824;p=dcpomatic.git diff --git a/src/lib/spl.cc b/src/lib/spl.cc index 544706694..ccf809f8b 100644 --- a/src/lib/spl.cc +++ b/src/lib/spl.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2018 Carl Hetherington + Copyright (C) 2018-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -21,29 +21,33 @@ #include "spl.h" #include "content_store.h" #include +#include #include #include +#include +using std::cout; +using std::string; using boost::shared_ptr; +using dcp::raw_convert; -bool +void SPL::read (boost::filesystem::path path, ContentStore* store) { _spl.clear (); + _missing = false; cxml::Document doc ("SPL"); doc.read_file (path); - bool missing = false; + _id = doc.string_child("Id"); + _name = doc.string_child("Name"); BOOST_FOREACH (cxml::ConstNodePtr i, doc.node_children("Entry")) { shared_ptr c = store->get(i->string_child("Digest")); if (c) { - add (SPLEntry(c, i)); + add (SPLEntry(c)); } else { - missing = true; + _missing = true; } } - - _name = path.filename().string(); - return missing; } void @@ -51,6 +55,8 @@ SPL::write (boost::filesystem::path path) const { xmlpp::Document doc; xmlpp::Element* root = doc.create_root_node ("SPL"); + root->add_child("Id")->add_child_text (_id); + root->add_child("Name")->add_child_text (_name); BOOST_FOREACH (SPLEntry i, _spl) { i.as_xml (root->add_child("Entry")); }