X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fspl.cc;h=8d0dcc6fc76df26b74e702adb1a8c14e8cf7f9d9;hb=39fb8198febde1937019db1c300ec363aab5aa56;hp=ba99e30280944e8108f4668c361f7346e13b02c8;hpb=71589ebfea5a7adc49f013d405b3158ea612222a;p=dcpomatic.git diff --git a/src/lib/spl.cc b/src/lib/spl.cc index ba99e3028..8d0dcc6fc 100644 --- a/src/lib/spl.cc +++ b/src/lib/spl.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2018 Carl Hetherington + Copyright (C) 2018-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,24 +18,53 @@ */ + +#include "content_store.h" #include "spl.h" -#include "spl_entry.h" -#include +#include "warnings.h" +#include +#include +DCPOMATIC_DISABLE_WARNINGS #include -#include +DCPOMATIC_ENABLE_WARNINGS +#include + + +using std::cout; +using std::string; +using std::shared_ptr; +using dcp::raw_convert; + void -SPL::as_xml (boost::filesystem::path file) const +SPL::read (boost::filesystem::path path, ContentStore* store) { - xmlpp::Document doc; - xmlpp::Element* root = doc.create_root_node ("DCPPlaylist"); - root->set_attribute ("Name", name); - - BOOST_FOREACH (SPLEntry i, playlist) { - xmlpp::Element* d = root->add_child ("DCP"); - d->set_attribute ("CPL", i.cpl->id()); - d->add_child_text (i.directory.string()); + _spl.clear (); + _missing = false; + cxml::Document doc ("SPL"); + doc.read_file (path); + _id = doc.string_child("Id"); + _name = doc.string_child("Name"); + for (auto i: doc.node_children("Entry")) { + auto c = store->get(i->string_child("Digest")); + if (c) { + add (SPLEntry(c)); + } else { + _missing = true; + } } +} + - doc.write_to_file_formatted(file.string()); +void +SPL::write (boost::filesystem::path path) const +{ + xmlpp::Document doc; + auto root = doc.create_root_node ("SPL"); + root->add_child("Id")->add_child_text (_id); + root->add_child("Name")->add_child_text (_name); + for (auto i: _spl) { + i.as_xml (root->add_child("Entry")); + } + doc.write_to_file_formatted (path.string()); }