X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Ftemplate_utils.cc;h=13674cd51defcfcdd56ca5698edf319d2f6748b3;hb=908369ab3e31f82eae3734cfe61421912d2fba6a;hp=b912fdc446620a6630f352f5ef6337226ef9865b;hpb=e279b9892b467aa823e253d97b6e9504cca0e252;p=ardour.git diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc index b912fdc446..13674cd51d 100644 --- a/libs/ardour/template_utils.cc +++ b/libs/ardour/template_utils.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Paul Davis + Copyright (C) 2012 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,37 +22,24 @@ #include -#include "pbd/basename.h" -#include "pbd/pathscanner.h" +#include "pbd/file_utils.h" +#include "pbd/stl_delete.h" #include "pbd/xml++.h" #include "ardour/template_utils.h" #include "ardour/directory_names.h" #include "ardour/filesystem_paths.h" #include "ardour/filename_extensions.h" +#include "ardour/search_paths.h" #include "ardour/io.h" +#include "pbd/i18n.h" + using namespace std; using namespace PBD; namespace ARDOUR { -Searchpath -template_search_path () -{ - Searchpath spath (ardour_data_search_path()); - spath.add_subdirectory_to_paths(templates_dir_name); - return spath; -} - -Searchpath -route_template_search_path () -{ - Searchpath spath (ardour_data_search_path()); - spath.add_subdirectory_to_paths(route_templates_dir_name); - return spath; -} - std::string user_template_directory () { @@ -71,7 +58,7 @@ template_filter (const string &str, void* /*arg*/) if (!Glib::file_test (str, Glib::FILE_TEST_IS_DIR)) { return false; } - + return true; } @@ -81,7 +68,7 @@ route_template_filter (const string &str, void* /*arg*/) if (str.find (template_suffix) == str.length() - strlen (template_suffix)) { return true; } - + return false; } @@ -93,56 +80,66 @@ session_template_dir_to_file (string const & dir) void -find_session_templates (vector& template_names) +find_session_templates (vector& template_names, bool read_xml) { - vector *templates; - PathScanner scanner; - Searchpath spath (template_search_path()); + vector templates; - templates = scanner (spath.to_string(), template_filter, 0, true, true); + find_paths_matching_filter (templates, template_search_path(), template_filter, 0, true, true); - if (!templates) { - cerr << "Found nothing along " << spath.to_string() << endl; + if (templates.empty()) { + cerr << "Found nothing along " << template_search_path().to_string() << endl; return; } - cerr << "Found " << templates->size() << " along " << spath.to_string() << endl; + cerr << "Found " << templates.size() << " along " << template_search_path().to_string() << endl; - for (vector::iterator i = templates->begin(); i != templates->end(); ++i) { - string file = session_template_dir_to_file (**i); - - XMLTree tree; - - if (!tree.read (file.c_str())) { - continue; - } + for (vector::iterator i = templates.begin(); i != templates.end(); ++i) { + string file = session_template_dir_to_file (*i); TemplateInfo rti; + rti.name = Glib::path_get_basename (*i); + rti.path = *i; + + if (read_xml) { + XMLTree tree; + if (!tree.read (file.c_str())) { + continue; + } + + string created_with = "(unknown)"; + XMLNode *pv = tree.root()->child("ProgramVersion"); + if (pv != 0) { + pv->get_property (X_("created-with"), created_with); + } + + string description = "No Description"; + XMLNode *desc = tree.root()->child("description"); + if (desc != 0) { + description = desc->attribute_value(); + } + + rti.created_with = created_with; + rti.description = description; - rti.name = basename_nosuffix (**i); - rti.path = **i; + } template_names.push_back (rti); } - - delete templates; } void find_route_templates (vector& template_names) { - vector *templates; - PathScanner scanner; - Searchpath spath (route_template_search_path()); + vector templates; - templates = scanner (spath.to_string(), route_template_filter, 0, false, true); + find_files_matching_filter (templates, route_template_search_path(), route_template_filter, 0, false, true); - if (!templates) { + if (templates.empty()) { return; } - for (vector::iterator i = templates->begin(); i != templates->end(); ++i) { - string fullpath = *(*i); + for (vector::iterator i = templates.begin(); i != templates.end(); ++i) { + string fullpath = *i; XMLTree tree; @@ -159,8 +156,6 @@ find_route_templates (vector& template_names) template_names.push_back (rti); } - - delete templates; } }