Plugin Order: remove from instant.xml and save to: plugin_metadata/plugin_order

This commit is contained in:
Ben Loftis
2018-05-08 13:00:27 -05:00
parent a156f00617
commit 7a52428538
2 changed files with 40 additions and 0 deletions

View File

@@ -85,6 +85,9 @@ public:
void load_tags ();
void save_tags ();
bool load_plugin_order_file (XMLNode &n) const; //returns TRUE if the passed-in node has valid info
void save_plugin_order_file (XMLNode &elem) const;
enum TagType {
FromPlug, //tag info is being set from plugin metadata
FromFactoryFile, // ... from the factory metadata file

View File

@@ -1537,6 +1537,43 @@ PluginManager::user_plugin_metadata_dir () const
return dir;
}
bool
PluginManager::load_plugin_order_file (XMLNode &n) const
{
std::string path = Glib::build_filename (user_plugin_metadata_dir(), "plugin_order");
info << string_compose (_("Loading plugin order file %1"), path) << endmsg;
if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
return false;
}
XMLTree tree;
if (tree.read (path)) {
n = *(tree.root());
return true;
} else {
error << string_compose (_("Cannot parse Plugin Order info from %1"), path) << endmsg;
return false;
}
}
void
PluginManager::save_plugin_order_file (XMLNode &elem) const
{
std::string path = Glib::build_filename (user_plugin_metadata_dir(), "plugin_order");
info << string_compose (_("Saving plugin order file %1"), path) << endmsg;
XMLTree tree;
tree.set_root (&elem);
if (!tree.write (path)) {
error << string_compose (_("Could not save Plugin Order info to %1"), path) << endmsg;
}
tree.set_root (0); //note: must disconnect the elem from XMLTree, or it will try to delete memory it didn't allocate
}
void
PluginManager::save_tags ()
{