2238b233fe3c5ba0f78d28084b87e7dbbcf81af3
[ardour.git] / libs / pbd / search_path.cc
1 /*
2     Copyright (C) 2007 Tim Mayberry 
3
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.
8
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.
13
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.
17
18 */
19
20 #include "pbd/tokenizer.h"
21 #include "pbd/search_path.h"
22 #include "pbd/error.h"
23
24 namespace {
25
26 #ifdef WIN32
27 const char * const path_delimiter = ";";
28 #else
29 const char * const path_delimiter = ":";
30 #endif
31
32 }
33
34 namespace PBD {
35
36 SearchPath::SearchPath ()
37 {
38
39 }
40
41 SearchPath::SearchPath (const string& path)
42 {
43         vector<sys::path> tmp;
44
45         if (tokenize (path, string(path_delimiter), std::back_inserter (tmp))) {
46                 add_directories (tmp);
47         }
48 }
49
50 SearchPath::SearchPath (const sys::path& directory_path)
51 {
52         add_directory (directory_path);
53 }
54
55 SearchPath::SearchPath (const vector<sys::path>& paths)
56 {
57         add_directories (paths);
58 }
59
60 void
61 SearchPath::add_directory (const sys::path& directory_path)
62 {
63         // test for existance and warn etc?
64         push_back(directory_path);
65 }
66
67 void
68 SearchPath::add_directories (const vector<sys::path>& paths)
69 {
70         for(vector<sys::path>::const_iterator i = paths.begin(); i != paths.end(); ++i) {
71                 add_directory (*i);
72         }
73 }
74
75 const string
76 SearchPath::to_string () const
77 {
78         string path;
79
80         for (vector<sys::path>::const_iterator i = begin(); i != end(); ++i) {
81                 path += (*i).to_string();
82                 path += path_delimiter;
83         }
84
85         path = path.substr (0, path.length() - 1); // drop final separator
86
87         return path;
88 }
89
90 SearchPath& 
91 SearchPath::operator+= (const SearchPath& spath)
92 {
93         insert(end(), spath.begin(), spath.end());
94         return *this;
95 }
96
97 SearchPath& 
98 SearchPath::operator+= (const sys::path& directory_path)
99 {
100         add_directory (directory_path);
101         return *this;
102 }
103
104 SearchPath& 
105 SearchPath::operator+ (const sys::path& directory_path)
106 {
107         add_directory (directory_path);
108         return *this;
109 }
110
111 SearchPath& 
112 SearchPath::operator+ (const SearchPath& spath)
113 {
114         // concatenate paths into new SearchPath
115         insert(end(), spath.begin(), spath.end());
116         return *this;
117 }
118
119 SearchPath&
120 SearchPath::add_subdirectory_to_paths (const string& subdir)
121 {
122         for (vector<sys::path>::iterator i = begin(); i != end(); ++i) {
123                 // should these new paths just be added to the end of 
124                 // the search path rather than replace?
125                 *i /= subdir;
126         }
127         
128         return *this;
129 }
130
131 } // namespace PBD