X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Ftemplate_utils.cc;h=825a24d3e10a39406414899186f9ecc9a81dbd36;hb=d345d446883c0425f8312149d04abc62076e36fc;hp=aa0a583af4d982771658c92786720ad4108e2448;hpb=bb9cc45cd22af67ac275a5e73accbe14fee664d8;p=ardour.git diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc index aa0a583af4..825a24d3e1 100644 --- a/libs/ardour/template_utils.cc +++ b/libs/ardour/template_utils.cc @@ -1,6 +1,8 @@ #include #include +#include + #include "pbd/filesystem.h" #include "pbd/basename.h" #include "pbd/pathscanner.h" @@ -66,11 +68,23 @@ user_route_template_directory () static bool template_filter (const string &str, void */*arg*/) { - cerr << "Checking into " << str << " using " << template_suffix << endl; - return (str.length() > strlen(template_suffix) && - str.find (template_suffix) == (str.length() - strlen (template_suffix))); + if (!Glib::file_test (str, Glib::FILE_TEST_IS_DIR)) { + return false; + } + + return true; +} + +string +session_template_dir_to_file (string const & dir) +{ + sys::path dir_path = dir; + sys::path file_path = dir; + file_path /= dir_path.leaf() + template_suffix; + return file_path.to_string (); } + void find_session_templates (vector& template_names) { @@ -79,7 +93,7 @@ find_session_templates (vector& template_names) SearchPath spath (system_template_directory()); spath += user_template_directory (); - templates = scanner (spath.to_string(), template_filter, 0, false, true); + templates = scanner (spath.to_string(), template_filter, 0, true, true); if (!templates) { cerr << "Found nothing along " << spath.to_string() << endl; @@ -89,18 +103,18 @@ find_session_templates (vector& template_names) cerr << "Found " << templates->size() << " along " << spath.to_string() << endl; for (vector::iterator i = templates->begin(); i != templates->end(); ++i) { - string fullpath = *(*i); + string file = session_template_dir_to_file (**i); XMLTree tree; - if (!tree.read (fullpath.c_str())) { + if (!tree.read (file.c_str())) { continue; } TemplateInfo rti; - rti.name = basename_nosuffix (fullpath); - rti.path = fullpath; + rti.name = basename_nosuffix (**i); + rti.path = **i; template_names.push_back (rti); }