Automation of LV2 plugin properties.
[ardour.git] / libs / pbd / pathexpand.cc
index 26454e4164fc73a3c30b5e8b7bb4c6e99b7d09f1..f9c42b494803855b4620d3634bdd9f3470f6a19c 100644 (file)
@@ -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
 
 #include <regex.h>
 
+#include <glibmm/fileutils.h>
 #include <glibmm/miscutils.h>
 
 #include "pbd/pathexpand.h"
 #include "pbd/strsplit.h"
+#include "pbd/tokenizer.h"
 
 using std::string;
 using std::vector;
 
 #ifdef COMPILER_MINGW
 
+#include <stdio.h>
 #include <stdlib.h>
 #include <glibmm.h>
 
@@ -86,7 +89,7 @@ PBD::canonical_path (const std::string& path)
 {
        char buf[PATH_MAX+1];
 
-       if (!realpath (path.c_str(), buf) && (errno != ENOENT)) {
+       if (!realpath (path.c_str(), buf)) {
                return path;
        }
 
@@ -172,7 +175,7 @@ PBD::search_path_expand (string path)
        vector<string> s;
        vector<string> n;
 
-       split (path, s, ':');
+       split (path, s, G_SEARCHPATH_SEPARATOR);
 
        for (vector<string>::iterator i = s.begin(); i != s.end(); ++i) {
                string exp = path_expand (*i);
@@ -185,10 +188,36 @@ PBD::search_path_expand (string path)
 
        for (vector<string>::iterator i = n.begin(); i != n.end(); ++i) {
                if (!r.empty()) {
-                       r += ':';
+                       r += G_SEARCHPATH_SEPARATOR;
                }
                r += *i;
        }
 
        return r;
 }
+
+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;
+}