monitor send gets access to the (shared) pannable of the track/bus, thus ensuring...
[ardour2.git] / libs / pbd / search_path.cc
blobf305e24f90ac76db135ea230fa4a7fbece7206b7
1 /*
2 Copyright (C) 2007 Tim Mayberry
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include "pbd/tokenizer.h"
21 #include "pbd/search_path.h"
22 #include "pbd/error.h"
24 using namespace std;
26 namespace {
28 #ifdef WIN32
29 const char * const path_delimiter = ";";
30 #else
31 const char * const path_delimiter = ":";
32 #endif
36 namespace PBD {
38 SearchPath::SearchPath ()
43 SearchPath::SearchPath (const string& path)
45 vector<sys::path> tmp;
47 if (tokenize (path, string(path_delimiter), std::back_inserter (tmp))) {
48 add_directories (tmp);
52 SearchPath::SearchPath (const sys::path& directory_path)
54 add_directory (directory_path);
57 SearchPath::SearchPath (const vector<sys::path>& paths)
59 add_directories (paths);
62 void
63 SearchPath::add_directory (const sys::path& directory_path)
65 // test for existance and warn etc?
66 push_back(directory_path);
69 void
70 SearchPath::add_directories (const vector<sys::path>& paths)
72 for(vector<sys::path>::const_iterator i = paths.begin(); i != paths.end(); ++i) {
73 add_directory (*i);
77 const string
78 SearchPath::to_string () const
80 string path;
82 for (vector<sys::path>::const_iterator i = begin(); i != end(); ++i) {
83 path += (*i).to_string();
84 path += path_delimiter;
87 path = path.substr (0, path.length() - 1); // drop final separator
89 return path;
92 SearchPath&
93 SearchPath::operator+= (const SearchPath& spath)
95 insert(end(), spath.begin(), spath.end());
96 return *this;
99 SearchPath&
100 SearchPath::operator+= (const sys::path& directory_path)
102 add_directory (directory_path);
103 return *this;
106 SearchPath&
107 SearchPath::operator+ (const sys::path& directory_path)
109 add_directory (directory_path);
110 return *this;
113 SearchPath&
114 SearchPath::operator+ (const SearchPath& spath)
116 // concatenate paths into new SearchPath
117 insert(end(), spath.begin(), spath.end());
118 return *this;
121 SearchPath&
122 SearchPath::add_subdirectory_to_paths (const string& subdir)
124 for (vector<sys::path>::iterator i = begin(); i != end(); ++i) {
125 // should these new paths just be added to the end of
126 // the search path rather than replace?
127 *i /= subdir;
130 return *this;
133 } // namespace PBD