2013-03-20 08:43:19 -04:00
|
|
|
/*
|
2014-02-26 19:35:57 -05:00
|
|
|
Copyright (C) 2013-2014 Paul Davis
|
2013-03-20 08:43:19 -04:00
|
|
|
|
|
|
|
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 <vector>
|
|
|
|
#include <iostream>
|
2013-07-11 14:57:16 -04:00
|
|
|
#include <climits>
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstdlib>
|
2013-03-20 08:43:19 -04:00
|
|
|
|
2013-07-21 22:01:44 -04:00
|
|
|
#include <regex.h>
|
2013-03-20 08:43:19 -04:00
|
|
|
|
2014-02-26 19:35:57 -05:00
|
|
|
#include <glibmm/fileutils.h>
|
2013-03-20 08:43:19 -04:00
|
|
|
#include <glibmm/miscutils.h>
|
|
|
|
|
2014-12-02 08:39:48 -05:00
|
|
|
#include "pbd/compose.h"
|
|
|
|
#include "pbd/debug.h"
|
2013-03-20 08:43:19 -04:00
|
|
|
#include "pbd/pathexpand.h"
|
|
|
|
#include "pbd/strsplit.h"
|
2014-02-26 19:35:57 -05:00
|
|
|
#include "pbd/tokenizer.h"
|
2013-03-20 08:43:19 -04:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
|
|
|
string
|
|
|
|
PBD::path_expand (string path)
|
|
|
|
{
|
|
|
|
if (path.empty()) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tilde expansion */
|
|
|
|
|
|
|
|
if (path[0] == '~') {
|
|
|
|
if (path.length() == 1) {
|
|
|
|
return Glib::get_home_dir();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path[1] == '/') {
|
|
|
|
path.replace (0, 1, Glib::get_home_dir());
|
|
|
|
} else {
|
|
|
|
/* can't handle ~roger, so just leave it */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now do $VAR substitution, since wordexp isn't reliable */
|
|
|
|
|
|
|
|
regex_t compiled_pattern;
|
|
|
|
const int nmatches = 100;
|
|
|
|
regmatch_t matches[nmatches];
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-03-20 08:43:19 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
while (true) {
|
2013-03-20 08:43:19 -04:00
|
|
|
|
|
|
|
if (regexec (&compiled_pattern, path.c_str(), nmatches, matches, 0)) {
|
|
|
|
break;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-03-20 08:43:19 -04:00
|
|
|
/* matches[0] gives the entire match */
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-03-20 08:43:19 -04:00
|
|
|
string match = path.substr (matches[0].rm_so, matches[0].rm_eo - matches[0].rm_so);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-03-20 08:43:19 -04:00
|
|
|
/* try to get match from the environment */
|
|
|
|
|
|
|
|
if (match[1] == '{') {
|
|
|
|
/* ${FOO} form */
|
|
|
|
match = match.substr (2, match.length() - 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
char* matched_value = getenv (match.c_str());
|
|
|
|
|
|
|
|
if (matched_value) {
|
|
|
|
path.replace (matches[0].rm_so, matches[0].rm_eo - matches[0].rm_so, matched_value);
|
|
|
|
} else {
|
|
|
|
path.replace (matches[0].rm_so, matches[0].rm_eo - matches[0].rm_so, string());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* go back and do it again with whatever remains after the
|
2015-10-04 14:51:05 -04:00
|
|
|
* substitution
|
2013-03-20 08:43:19 -04:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
regfree (&compiled_pattern);
|
|
|
|
|
|
|
|
/* canonicalize */
|
|
|
|
|
2013-07-11 14:57:16 -04:00
|
|
|
return canonical_path (path);
|
2013-03-20 08:43:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
string
|
|
|
|
PBD::search_path_expand (string path)
|
|
|
|
{
|
|
|
|
if (path.empty()) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<string> s;
|
|
|
|
vector<string> n;
|
|
|
|
|
2014-04-11 08:03:48 -04:00
|
|
|
split (path, s, G_SEARCHPATH_SEPARATOR);
|
2013-03-20 08:43:19 -04:00
|
|
|
|
|
|
|
for (vector<string>::iterator i = s.begin(); i != s.end(); ++i) {
|
|
|
|
string exp = path_expand (*i);
|
|
|
|
if (!exp.empty()) {
|
|
|
|
n.push_back (exp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string r;
|
|
|
|
|
|
|
|
for (vector<string>::iterator i = n.begin(); i != n.end(); ++i) {
|
|
|
|
if (!r.empty()) {
|
2014-04-11 08:03:48 -04:00
|
|
|
r += G_SEARCHPATH_SEPARATOR;
|
2013-03-20 08:43:19 -04:00
|
|
|
}
|
|
|
|
r += *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2014-02-26 19:35:57 -05:00
|
|
|
|
|
|
|
std::vector <std::string>
|
|
|
|
PBD::parse_path(std::string path, bool check_if_exists)
|
|
|
|
{
|
|
|
|
vector <std::string> pathlist;
|
|
|
|
vector <std::string> tmp;
|
|
|
|
PBD::tokenize (path, string(G_SEARCHPATH_SEPARATOR_S), std::back_inserter (tmp));
|
|
|
|
|
|
|
|
for(vector<std::string>::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;
|
|
|
|
}
|