ardour/libs/ardour/template_utils.cc
Tim Mayberry 306e6475e5 Replace use of PBD::sys::path in ardour/template_utils.h
some associated changes from not including pbd/filesystem.h in template_utils.h

git-svn-id: svn://localhost/ardour2/branches/3.0@12833 d708f5d6-7413-0410-9779-e7cbd77b26cf
2012-06-23 05:07:05 +00:00

147 lines
2.8 KiB
C++

#include <algorithm>
#include <cstring>
#include <glibmm.h>
#include "pbd/basename.h"
#include "pbd/pathscanner.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/io.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 ()
{
return Glib::build_filename (user_config_directory(), templates_dir_name);
}
std::string
user_route_template_directory ()
{
return Glib::build_filename (user_config_directory(), route_templates_dir_name);
}
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
route_template_filter (const string &str, void */*arg*/)
{
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<TemplateInfo>& template_names)
{
vector<string *> *templates;
PathScanner scanner;
SearchPath spath (template_search_path());
templates = scanner (spath.to_string(), template_filter, 0, true, true);
if (!templates) {
cerr << "Found nothing along " << spath.to_string() << endl;
return;
}
cerr << "Found " << templates->size() << " along " << spath.to_string() << endl;
for (vector<string*>::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;
}
TemplateInfo rti;
rti.name = basename_nosuffix (**i);
rti.path = **i;
template_names.push_back (rti);
}
delete templates;
}
void
find_route_templates (vector<TemplateInfo>& template_names)
{
vector<string *> *templates;
PathScanner scanner;
SearchPath spath (route_template_search_path());
templates = scanner (spath.to_string(), route_template_filter, 0, false, true);
if (!templates) {
return;
}
for (vector<string*>::iterator i = templates->begin(); i != templates->end(); ++i) {
string fullpath = *(*i);
XMLTree tree;
if (!tree.read (fullpath.c_str())) {
continue;
}
XMLNode* root = tree.root();
TemplateInfo rti;
rti.name = IO::name_from_state (*root->children().front());
rti.path = fullpath;
template_names.push_back (rti);
}
delete templates;
}
}