]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_path.hxx
string list joining, and a test case for that and splitting.
[simgear.git] / simgear / misc / sg_path.hxx
1 /**
2  * \file sg_path.hxx
3  * Routines to abstract out path separator differences between MacOS
4  * and the rest of the world.
5  */
6
7 // Written by Curtis L. Olson, started April 1999.
8 //
9 // Copyright (C) 1999  Curtis L. Olson - http://www.flightgear.org/~curt
10 //
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Library General Public
13 // License as published by the Free Software Foundation; either
14 // version 2 of the License, or (at your option) any later version.
15 //
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // Library General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27
28 #ifndef _SG_PATH_HXX
29 #define _SG_PATH_HXX
30
31 #include <sys/types.h>
32
33 #include <simgear/compiler.h>
34 #include <string>
35 #include <ctime>
36
37 #include <simgear/math/sg_types.hxx>
38
39 #ifdef _MSC_VER
40   typedef int mode_t;
41 #endif
42
43 /**
44  * A class to hide path separator difference across platforms and assist
45  * in managing file system path names.
46  *
47  * Paths can be input in any platform format and will be converted
48  * automatically to the proper format.
49  */
50
51 class SGPath {
52
53 public:
54
55     /** Default constructor */
56     SGPath();
57
58     /** Copy contructor */
59     SGPath(const SGPath& p);
60     
61     SGPath& operator=(const SGPath& p);
62
63     /**
64      * Construct a path based on the starting path provided.
65      * @param p initial path
66      */
67     SGPath( const std::string& p );
68
69     /**
70      * Construct a path based on the starting path provided and a relative subpath
71      * @param p initial path
72      * @param r relative subpath
73      */
74     SGPath( const SGPath& p, const std::string& r );
75
76     /** Destructor */
77     ~SGPath();
78
79     /**
80      * Set path to a new value
81      * @param p new path
82      */
83     void set( const std::string& p );
84     SGPath& operator= ( const char* p ) { this->set(p); return *this; }
85
86     bool operator==(const SGPath& other) const;
87     bool operator!=(const SGPath& other) const;
88     
89     /**
90      * Set if file information (exists, type, mod-time) is cached or
91      * retrieved each time it is queried. Caching is enabled by default
92      */
93     void set_cached(bool cached);
94     
95     /**
96      * Append another piece to the existing path.  Inserts a path
97      * separator between the existing component and the new component.
98      * @param p additional path component */
99     void append( const std::string& p );
100
101     /**
102      * Append a new piece to the existing path.  Inserts a search path
103      * separator to the existing path and the new patch component.
104      * @param p additional path component */
105     void add( const std::string& p );
106
107     /**
108      * Concatenate a string to the end of the path without inserting a
109      * path separator.
110      * @param p additional path suffix
111      */
112     void concat( const std::string& p );
113
114     /**
115      * Get the file part of the path (everything after the last path sep)
116      * @return file string
117      */
118     std::string file() const;
119   
120     /**
121      * Get the directory part of the path.
122      * @return directory string
123      */
124     std::string dir() const;
125   
126     /**
127      * Get the base part of the path (everything but the extension.)
128      * @return the base string
129      */
130     std::string base() const;
131
132     /**
133      * Get the base part of the filename (everything before the first '.')
134      * @return the base filename
135      */
136     std::string file_base() const;
137
138     /**
139      * Get the extension part of the path (everything after the final ".")
140      * @return the extension string
141      */
142     std::string extension() const;
143     
144     /**
145      * Get the extension part of the path (everything after the final ".")
146      * converted to lowercase
147      * @return the extension string
148      */
149     std::string lower_extension() const;
150     
151     /**
152      * Get the complete extension part of the path (everything after the first ".")
153      * this might look like 'tar.gz' or 'txt.Z', or might be identical to 'extension' above
154      * the extension is converted to lowercase.
155      * @return the extension string
156      */
157     std::string complete_lower_extension() const;
158     
159     /**
160      * Get the path string
161      * @return path string
162      */
163     std::string str() const { return path; }
164
165     /**
166      * Get the path string
167      * @return path in "C" string (ptr to char array) form.
168      */
169     const char* c_str() const { return path.c_str(); }
170
171     /**
172      * Get the path string in OS native form
173      */
174     std::string str_native() const;
175
176     /**
177      * Determine if file exists by attempting to fopen it.
178      * @return true if file exists, otherwise returns false.
179      */
180     bool exists() const;
181
182     /**
183      * Create the designated directory.
184      * @return 0 on success, or <0 on failure.
185      */
186     int create_dir(mode_t mode);
187
188     bool isFile() const;
189     bool isDir() const;
190     
191     /**
192      * Opposite sense to isAbsolute
193      */
194     bool isRelative() const { return !isAbsolute(); }
195     
196     /**
197      * Is this an absolute path?
198      * I.e starts with a directory seperator, or a single character + colon
199      */
200     bool isAbsolute() const;
201     
202     /**
203      * check for default constructed path
204      */
205     bool isNull() const;
206     
207     /**
208      * delete the file, if possible
209      */
210     bool remove();
211     
212     /**
213      * modification time of the file
214      */
215     time_t modTime() const;
216 private:
217
218     void fix();
219
220     void validate() const;
221
222     std::string path;
223     
224     mutable bool _cached : 1;
225     bool _cacheEnabled : 1; ///< cacheing can be disbled if required
226     mutable bool _exists : 1;
227     mutable bool _isDir : 1;
228     mutable bool _isFile : 1;
229     mutable time_t _modTime;
230 };
231
232
233 /**
234  * Split a directory string into a list of it's parent directories.
235  */
236 string_list sgPathBranchSplit( const std::string &path );
237
238 /**
239  * Split a directory search path into a vector of individual paths
240  */
241 string_list sgPathSplit( const std::string &search_path );
242
243
244 #endif // _SG_PATH_HXX
245
246