diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-02-28 00:37:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-02-29 23:53:47 +0100 |
| commit | 54af50c3b8e9082f9751e809d63540c51197a4a1 (patch) | |
| tree | 9025a623ce5453ff73c3ce76924567e941de6cdd /src/lib/spl.cc | |
| parent | d3f97ca7ca2877689f4ed59482e935431d43f027 (diff) | |
Various playlist editor developments and fixes.
Diffstat (limited to 'src/lib/spl.cc')
| -rw-r--r-- | src/lib/spl.cc | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/lib/spl.cc b/src/lib/spl.cc index 02ed966a4..ccf809f8b 100644 --- a/src/lib/spl.cc +++ b/src/lib/spl.cc @@ -18,7 +18,7 @@ */ -#include "swaroop_spl.h" +#include "spl.h" #include "content_store.h" #include <libcxml/cxml.h> #include <dcp/raw_convert.h> @@ -34,38 +34,31 @@ 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"); + _name = doc.string_child("Name"); BOOST_FOREACH (cxml::ConstNodePtr i, doc.node_children("Entry")) { shared_ptr<Content> c = store->get(i->string_child("Digest")); if (c) { - add (SPLEntry(c, i)); + add (SPLEntry(c)); } else { _missing = true; } } - - _allowed_shows = doc.optional_number_child<int>("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); + root->add_child("Name")->add_child_text (_name); BOOST_FOREACH (SPLEntry i, _spl) { i.as_xml (root->add_child("Entry")); } - if (_allowed_shows) { - root->add_child("AllowedShows")->add_child_text(raw_convert<string>(*_allowed_shows)); - } doc.write_to_file_formatted (path.string()); } |
