X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpathexpand.cc;h=63ae348df1f6f7f5da5c5bd05d5d00026bc8bf0e;hb=359e63fbe8e55ba0d8fdece9b41d620bdefd1ff6;hp=5784ec942855de3ece0de4e9809333efbb5278e1;hpb=fb313fb1741a04f270fff3703967df572ac4fc45;p=ardour.git diff --git a/libs/pbd/pathexpand.cc b/libs/pbd/pathexpand.cc index 5784ec9428..63ae348df1 100644 --- a/libs/pbd/pathexpand.cc +++ b/libs/pbd/pathexpand.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Paul Davis + Copyright (C) 2013-2014 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 @@ -25,30 +25,18 @@ #include +#include #include +#include "pbd/compose.h" +#include "pbd/debug.h" #include "pbd/pathexpand.h" #include "pbd/strsplit.h" +#include "pbd/tokenizer.h" using std::string; using std::vector; -string -PBD::canonical_path (const std::string& path) -{ -#ifdef COMPILER_MINGW - return path; -#else - char buf[PATH_MAX+1]; - - if (!realpath (path.c_str(), buf) && (errno != ENOENT)) { - return path; - } - - return string (buf); -#endif -} - string PBD::path_expand (string path) { @@ -75,22 +63,22 @@ PBD::path_expand (string path) regex_t compiled_pattern; const int nmatches = 100; regmatch_t matches[nmatches]; - + if (regcomp (&compiled_pattern, "\\$([a-zA-Z_][a-zA-Z0-9_]*|\\{[a-zA-Z_][a-zA-Z0-9_]*\\})", REG_EXTENDED)) { std::cerr << "bad regcomp\n"; return path; } - while (true) { + while (true) { if (regexec (&compiled_pattern, path.c_str(), nmatches, matches, 0)) { break; } - + /* matches[0] gives the entire match */ - + string match = path.substr (matches[0].rm_so, matches[0].rm_eo - matches[0].rm_so); - + /* try to get match from the environment */ if (match[1] == '{') { @@ -107,7 +95,7 @@ PBD::path_expand (string path) } /* go back and do it again with whatever remains after the - * substitution + * substitution */ } @@ -128,7 +116,7 @@ PBD::search_path_expand (string path) vector s; vector n; - split (path, s, ':'); + split (path, s, G_SEARCHPATH_SEPARATOR); for (vector::iterator i = s.begin(); i != s.end(); ++i) { string exp = path_expand (*i); @@ -141,10 +129,36 @@ PBD::search_path_expand (string path) for (vector::iterator i = n.begin(); i != n.end(); ++i) { if (!r.empty()) { - r += ':'; + r += G_SEARCHPATH_SEPARATOR; } r += *i; } return r; } + +std::vector +PBD::parse_path(std::string path, bool check_if_exists) +{ + vector pathlist; + vector tmp; + PBD::tokenize (path, string(G_SEARCHPATH_SEPARATOR_S), std::back_inserter (tmp)); + + for(vector::const_iterator i = tmp.begin(); i != tmp.end(); ++i) { + if ((*i).empty()) continue; + std::string dir; +#ifndef PLATFORM_WINDOWS + if ((*i).substr(0,1) == "~") { + dir = Glib::build_filename(Glib::get_home_dir(), (*i).substr(1)); + } + else +#endif + { + dir = *i; + } + if (!check_if_exists || Glib::file_test (dir, Glib::FILE_TEST_IS_DIR)) { + pathlist.push_back(dir); + } + } + return pathlist; +}