X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fspl.cc;h=e8e86f89ce227b401c4ade2210e176bdd45dec1d;hb=a9dde34b8772ef8b985af067e2ff709be4e3cab6;hp=2cba229c10962f4ee4c3ccb48f8db26c58ce392c;hpb=2e0c94655f51ea9f01afea57f0c5f9d0f8efeb8d;p=dcpomatic.git diff --git a/src/lib/spl.cc b/src/lib/spl.cc index 2cba229c1..e8e86f89c 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,20 +21,26 @@ #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; void SPL::read (boost::filesystem::path path, ContentStore* store) { + _path = path; + _spl.clear (); _missing = false; cxml::Document doc ("SPL"); doc.read_file (path); + _id = doc.string_child("Id"); BOOST_FOREACH (cxml::ConstNodePtr i, doc.node_children("Entry")) { shared_ptr c = store->get(i->string_child("Digest")); if (c) { @@ -44,16 +50,22 @@ SPL::read (boost::filesystem::path path, ContentStore* store) } } - _name = path.filename().string(); + _allowed_shows = doc.optional_number_child("AllowedShows"); } void SPL::write (boost::filesystem::path path) const { + _path = path; + xmlpp::Document doc; xmlpp::Element* root = doc.create_root_node ("SPL"); + root->add_child("Id")->add_child_text (_id); BOOST_FOREACH (SPLEntry i, _spl) { i.as_xml (root->add_child("Entry")); } + if (_allowed_shows) { + root->add_child("AllowedShows")->add_child_text(raw_convert(*_allowed_shows)); + } doc.write_to_file_formatted (path.string()); }