X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Ftemplate_utils.cc;h=05007b0ade901f391425f4974079d7f1212e7e05;hb=422e462c12bcea577a530bbdf4c2b651ba9f7ea4;hp=daf133fa05092c072db376d7460f065540e66cfc;hpb=7884727e78f9e2253b2b6d8ef441fa07272fe950;p=ardour.git diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc index daf133fa05..05007b0ade 100644 --- a/libs/ardour/template_utils.cc +++ b/libs/ardour/template_utils.cc @@ -1,7 +1,27 @@ +/* + 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 + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + #include #include -#include "pbd/filesystem.h" +#include + #include "pbd/basename.h" #include "pbd/pathscanner.h" #include "pbd/xml++.h" @@ -17,90 +37,90 @@ using namespace PBD; namespace ARDOUR { -sys::path -system_template_directory () +SearchPath +template_search_path () { - SearchPath spath(system_data_search_path()); + SearchPath spath (ardour_data_search_path()); spath.add_subdirectory_to_paths(templates_dir_name); - - // just return the first directory in the search path that exists - SearchPath::const_iterator i = std::find_if(spath.begin(), spath.end(), sys::exists); - - if (i == spath.end()) return sys::path(); - - return *i; + return spath; } -sys::path -system_route_template_directory () +SearchPath +route_template_search_path () { - SearchPath spath(system_data_search_path()); + SearchPath spath (ardour_data_search_path()); spath.add_subdirectory_to_paths(route_templates_dir_name); - - // just return the first directory in the search path that exists - SearchPath::const_iterator i = std::find_if(spath.begin(), spath.end(), sys::exists); - - if (i == spath.end()) return sys::path(); - - return *i; + return spath; } -sys::path +std::string user_template_directory () { - sys::path p(user_config_directory()); - p /= templates_dir_name; - - return p; + return Glib::build_filename (user_config_directory(), templates_dir_name); } -sys::path +std::string user_route_template_directory () { - sys::path p(user_config_directory()); - p /= route_templates_dir_name; + return Glib::build_filename (user_config_directory(), route_templates_dir_name); +} - return p; +static bool +template_filter (const string &str, void */*arg*/) +{ + if (!Glib::file_test (str, Glib::FILE_TEST_IS_DIR)) { + return false; + } + + return true; } static bool -template_filter (const string &str, void *arg) +route_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 (str.find (template_suffix) == str.length() - strlen (template_suffix)) { + return true; + } + + return false; +} + +string +session_template_dir_to_file (string const & dir) +{ + return Glib::build_filename (dir, Glib::path_get_basename(dir) + template_suffix); } + void find_session_templates (vector& template_names) { vector *templates; PathScanner scanner; - SearchPath spath (system_template_directory()); - spath += user_template_directory (); + SearchPath spath (template_search_path()); + + templates = scanner (spath.to_string(), template_filter, 0, true, true); - templates = scanner (spath.to_string(), template_filter, 0, false, true); - if (!templates) { cerr << "Found nothing along " << spath.to_string() << endl; return; } 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); } @@ -113,15 +133,14 @@ find_route_templates (vector& template_names) { vector *templates; PathScanner scanner; - SearchPath spath (system_route_template_directory()); - spath += user_route_template_directory (); + SearchPath spath (route_template_search_path()); + + templates = scanner (spath.to_string(), route_template_filter, 0, false, true); - templates = scanner (spath.to_string(), template_filter, 0, false, true); - if (!templates) { return; } - + for (vector::iterator i = templates->begin(); i != templates->end(); ++i) { string fullpath = *(*i); @@ -132,7 +151,7 @@ find_route_templates (vector& template_names) } XMLNode* root = tree.root(); - + TemplateInfo rti; rti.name = IO::name_from_state (*root->children().front());