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"
29 const char * const path_delimiter
= ";";
31 const char * const path_delimiter
= ":";
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
);
63 SearchPath::add_directory (const sys::path
& directory_path
)
65 // test for existance and warn etc?
66 push_back(directory_path
);
70 SearchPath::add_directories (const vector
<sys::path
>& paths
)
72 for(vector
<sys::path
>::const_iterator i
= paths
.begin(); i
!= paths
.end(); ++i
) {
78 SearchPath::to_string () const
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
93 SearchPath::operator+= (const SearchPath
& spath
)
95 insert(end(), spath
.begin(), spath
.end());
100 SearchPath::operator+= (const sys::path
& directory_path
)
102 add_directory (directory_path
);
107 SearchPath::operator+ (const sys::path
& directory_path
)
109 add_directory (directory_path
);
114 SearchPath::operator+ (const SearchPath
& spath
)
116 // concatenate paths into new SearchPath
117 insert(end(), spath
.begin(), spath
.end());
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?