]>
Commit | Line | Data |
---|---|---|
df5ddbca | 1 | ///////////////////////////////////////////////////////////////////////////// |
097ead30 VZ |
2 | // Name: wx/filename.h |
3 | // Purpose: wxFileName - encapsulates a file path | |
844f90fb | 4 | // Author: Robert Roebling, Vadim Zeitlin |
df5ddbca RR |
5 | // Modified by: |
6 | // Created: 28.12.00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2000 Robert Roebling | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_FILENAME_H_ | |
13 | #define _WX_FILENAME_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "filename.h" | |
17 | #endif | |
18 | ||
19 | #ifndef WX_PRECOMP | |
9e8d8607 | 20 | #include "wx/string.h" |
df5ddbca RR |
21 | #endif |
22 | ||
9e8d8607 VZ |
23 | /* |
24 | TODO: | |
25 | ||
26 | 1. support for drives under Windows | |
27 | 2. more file operations: | |
28 | a) chmod() | |
29 | b) [acm]time() - get and set | |
30 | c) file size | |
31 | d) file permissions with readable accessors for most common bits | |
32 | such as IsReadable() &c | |
33 | e) rename()? | |
34 | 3. SameFileAs() function to compare inodes under Unix | |
35 | */ | |
36 | ||
df5ddbca | 37 | // ridiculously enough, this will replace DirExists with wxDirExists etc |
ee66f092 | 38 | #include "wx/filefn.h" |
ce16e5d7 | 39 | #include "wx/datetime.h" |
df5ddbca | 40 | |
097ead30 VZ |
41 | // ---------------------------------------------------------------------------- |
42 | // constants | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
45 | // the various values for the path format: this mainly affects the path | |
46 | // separator but also whether or not the path has the drive part (as under | |
47 | // Windows) | |
df5ddbca RR |
48 | enum wxPathFormat |
49 | { | |
844f90fb | 50 | wxPATH_NATIVE = 0, // the path format for the current platform |
097ead30 VZ |
51 | wxPATH_UNIX, |
52 | wxPATH_MAC, | |
53 | wxPATH_DOS, | |
3c621059 | 54 | wxPATH_VMS, |
ee66f092 | 55 | |
097ead30 VZ |
56 | wxPATH_BEOS = wxPATH_UNIX, |
57 | wxPATH_WIN = wxPATH_DOS, | |
58 | wxPATH_OS2 = wxPATH_DOS | |
59 | }; | |
ee66f092 | 60 | |
097ead30 VZ |
61 | // the kind of normalization to do with the file name: these values can be |
62 | // or'd together to perform several operations at once | |
63 | enum wxPathNormalize | |
64 | { | |
65 | wxPATH_NORM_ENV_VARS = 0x0001, // replace env vars with their values | |
844f90fb | 66 | wxPATH_NORM_DOTS = 0x0002, // squeeze all .. and . and prepend cwd |
097ead30 | 67 | wxPATH_NORM_TILDE = 0x0004, // Unix only: replace ~ and ~user |
844f90fb VZ |
68 | wxPATH_NORM_CASE = 0x0008, // if case insensitive => tolower |
69 | wxPATH_NORM_ABSOLUTE = 0x0010, // make the path absolute | |
9e9b65c1 JS |
70 | wxPATH_NORM_LONG = 0x0020, // make the path the long form |
71 | wxPATH_NORM_ALL = 0x003f | |
df5ddbca RR |
72 | }; |
73 | ||
097ead30 VZ |
74 | // ---------------------------------------------------------------------------- |
75 | // wxFileName: encapsulates a file path | |
76 | // ---------------------------------------------------------------------------- | |
77 | ||
df5ddbca RR |
78 | class WXDLLEXPORT wxFileName |
79 | { | |
80 | public: | |
81 | // constructors and assignment | |
844f90fb VZ |
82 | |
83 | // the usual stuff | |
84 | wxFileName() { } | |
85 | wxFileName( const wxFileName &filepath ) { Assign(filepath); } | |
86 | ||
87 | // from a full filename: if it terminates with a '/', a directory path | |
88 | // is contructed (the name will be empty), otherwise a file name and | |
89 | // extension are extracted from it | |
90 | wxFileName( const wxString& fullpath, wxPathFormat format = wxPATH_NATIVE ) | |
91 | { Assign( fullpath, format ); } | |
92 | ||
93 | // from a directory name and a file name | |
94 | wxFileName(const wxString& path, | |
95 | const wxString& name, | |
96 | wxPathFormat format = wxPATH_NATIVE) | |
97 | { Assign(path, name, format); } | |
98 | ||
99 | // from a directory name, file base name and extension | |
100 | wxFileName(const wxString& path, | |
101 | const wxString& name, | |
102 | const wxString& ext, | |
103 | wxPathFormat format = wxPATH_NATIVE) | |
104 | { Assign(path, name, ext, format); } | |
105 | ||
844f90fb VZ |
106 | // the same for delayed initialization |
107 | ||
844f90fb | 108 | void Assign(const wxFileName& filepath); |
04c943b1 | 109 | |
844f90fb VZ |
110 | void Assign(const wxString& fullpath, |
111 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 VZ |
112 | |
113 | void Assign(const wxString& volume, | |
114 | const wxString& path, | |
115 | const wxString& name, | |
116 | const wxString& ext, | |
117 | wxPathFormat format = wxPATH_NATIVE); | |
118 | ||
844f90fb VZ |
119 | void Assign(const wxString& path, |
120 | const wxString& name, | |
121 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 | 122 | |
844f90fb VZ |
123 | void Assign(const wxString& path, |
124 | const wxString& name, | |
125 | const wxString& ext, | |
04c943b1 VZ |
126 | wxPathFormat format = wxPATH_NATIVE) |
127 | { | |
128 | // empty volume | |
129 | Assign(_T(""), path, name, ext, format); | |
130 | } | |
131 | ||
52dbd056 | 132 | void AssignDir(const wxString& dir, wxPathFormat format = wxPATH_NATIVE); |
844f90fb | 133 | |
788722ac JS |
134 | // assorted assignment operators |
135 | ||
136 | wxFileName& operator=(const wxFileName& filename) | |
137 | { Assign(filename); return *this; } | |
138 | ||
139 | wxFileName& operator=(const wxString& filename) | |
140 | { Assign(filename); return *this; } | |
141 | ||
844f90fb VZ |
142 | // reset all components to default, uninitialized state |
143 | void Clear(); | |
144 | ||
145 | // static pseudo constructors | |
146 | static wxFileName FileName(const wxString& file); | |
147 | static wxFileName DirName(const wxString& dir); | |
148 | ||
951cd180 | 149 | // file tests |
844f90fb VZ |
150 | |
151 | // is the filename valid at all? | |
152 | bool IsOk() const { return !m_dirs.IsEmpty() || !m_name.IsEmpty(); } | |
153 | ||
154 | // does the file with this name exists? | |
df5ddbca | 155 | bool FileExists(); |
a35b27b1 | 156 | static bool FileExists( const wxString &file ); |
097ead30 | 157 | |
844f90fb | 158 | // does the directory with this name exists? |
df5ddbca | 159 | bool DirExists(); |
a35b27b1 | 160 | static bool DirExists( const wxString &dir ); |
097ead30 | 161 | |
844f90fb VZ |
162 | // VZ: also need: IsDirWritable(), IsFileExecutable() &c (TODO) |
163 | ||
951cd180 VZ |
164 | // time functions |
165 | ||
166 | // set the file creation and last access/mod times | |
167 | // (any of the pointers may be NULL) | |
168 | bool SetTimes(const wxDateTime *dtCreate, | |
169 | const wxDateTime *dtAccess, | |
170 | const wxDateTime *dtMod); | |
171 | ||
172 | // set the access and modification times to the current moment | |
173 | bool Touch(); | |
174 | ||
175 | // return the last access, last modification and last change times | |
176 | // (any of the pointers may be NULL) | |
177 | bool GetTimes(wxDateTime *dtAccess, | |
178 | wxDateTime *dtMod, | |
179 | wxDateTime *dtChange) const; | |
180 | ||
181 | // convenience wrapper: get just the last mod time of the file | |
182 | wxDateTime GetModificationTime() const | |
183 | { | |
184 | wxDateTime dtMod; | |
185 | (void)GetTimes(NULL, &dtMod, NULL); | |
186 | return dtMod; | |
187 | } | |
188 | ||
844f90fb VZ |
189 | // various file/dir operations |
190 | ||
191 | // retrieve the value of the current working directory | |
6f91bc33 VZ |
192 | void AssignCwd(const wxString& volume = wxEmptyString); |
193 | static wxString GetCwd(const wxString& volume = wxEmptyString); | |
097ead30 | 194 | |
844f90fb | 195 | // change the current working directory |
a35b27b1 RR |
196 | bool SetCwd(); |
197 | static bool SetCwd( const wxString &cwd ); | |
097ead30 | 198 | |
844f90fb | 199 | // get the value of user home (Unix only mainly) |
a35b27b1 RR |
200 | void AssignHomeDir(); |
201 | static wxString GetHomeDir(); | |
097ead30 | 202 | |
844f90fb | 203 | // get a temp file name starting with thespecified prefix |
df5ddbca | 204 | void AssignTempFileName( const wxString &prefix ); |
097ead30 | 205 | |
f0ce3409 JS |
206 | // directory creation and removal. |
207 | // if full is TRUE, will try to make each directory in the path. | |
208 | bool Mkdir( int perm = 0777, bool full = FALSE); | |
209 | static bool Mkdir( const wxString &dir, int perm = 0777, bool full = FALSE ); | |
097ead30 | 210 | |
a35b27b1 RR |
211 | bool Rmdir(); |
212 | static bool Rmdir( const wxString &dir ); | |
097ead30 | 213 | |
844f90fb VZ |
214 | // operations on the path |
215 | ||
216 | // normalize the path: with the default flags value, the path will be | |
217 | // made absolute, without any ".." and "." and all environment | |
218 | // variables will be expanded in it | |
219 | // | |
220 | // this may be done using another (than current) value of cwd | |
221 | bool Normalize(wxPathNormalize flags = wxPATH_NORM_ALL, | |
222 | const wxString& cwd = wxEmptyString, | |
223 | wxPathFormat format = wxPATH_NATIVE); | |
097ead30 | 224 | |
df5ddbca | 225 | // Comparison |
844f90fb | 226 | |
788722ac JS |
227 | // compares with the rules of this platform |
228 | bool SameAs(const wxFileName &filepath, | |
229 | wxPathFormat format = wxPATH_NATIVE); | |
230 | ||
844f90fb VZ |
231 | // uses the current platform settings |
232 | bool operator==(const wxFileName& filename) { return SameAs(filename); } | |
233 | bool operator==(const wxString& filename) | |
234 | { return *this == wxFileName(filename); } | |
235 | ||
df5ddbca | 236 | // Tests |
04c943b1 VZ |
237 | |
238 | // are the file names of this type cases sensitive? | |
844f90fb | 239 | static bool IsCaseSensitive( wxPathFormat format = wxPATH_NATIVE ); |
04c943b1 VZ |
240 | |
241 | // is this filename absolute? | |
df5ddbca | 242 | bool IsAbsolute( wxPathFormat format = wxPATH_NATIVE ); |
844f90fb | 243 | |
04c943b1 VZ |
244 | // is this filename relative? |
245 | bool IsRelative( wxPathFormat format = wxPATH_NATIVE ) | |
246 | { return !IsAbsolute(format); } | |
247 | ||
248 | // Information about path format | |
249 | ||
250 | // get the string separating the volume from the path for this format | |
251 | static wxString GetVolumeSeparator(wxPathFormat format = wxPATH_NATIVE); | |
252 | ||
844f90fb VZ |
253 | // get the string of path separators for this format |
254 | static wxString GetPathSeparators(wxPathFormat format = wxPATH_NATIVE); | |
255 | ||
256 | // is the char a path separator for this format? | |
257 | static bool IsPathSeparator(wxChar ch, wxPathFormat format = wxPATH_NATIVE); | |
258 | ||
259 | // FIXME: what exactly does this do? | |
df5ddbca | 260 | bool IsWild( wxPathFormat format = wxPATH_NATIVE ); |
097ead30 | 261 | |
df5ddbca RR |
262 | // Dir accessors |
263 | void AppendDir( const wxString &dir ); | |
264 | void PrependDir( const wxString &dir ); | |
265 | void InsertDir( int before, const wxString &dir ); | |
266 | void RemoveDir( int pos ); | |
097ead30 VZ |
267 | size_t GetDirCount() const { return m_dirs.GetCount(); } |
268 | ||
df5ddbca RR |
269 | // Other accessors |
270 | void SetExt( const wxString &ext ) { m_ext = ext; } | |
271 | wxString GetExt() const { return m_ext; } | |
04c943b1 | 272 | bool HasExt() const { return !m_ext.empty(); } |
097ead30 | 273 | |
df5ddbca RR |
274 | void SetName( const wxString &name ) { m_name = name; } |
275 | wxString GetName() const { return m_name; } | |
04c943b1 VZ |
276 | bool HasName() const { return !m_name.empty(); } |
277 | ||
278 | void SetVolume( const wxString &volume ) { m_volume = volume; } | |
279 | wxString GetVolume() const { return m_volume; } | |
280 | bool HasVolume() const { return !m_volume.empty(); } | |
097ead30 | 281 | |
7124df9b VZ |
282 | // full name is the file name + extension (but without the path) |
283 | void SetFullName(const wxString& fullname); | |
844f90fb | 284 | wxString GetFullName() const; |
097ead30 | 285 | |
04c943b1 | 286 | const wxArrayString& GetDirs() const { return m_dirs; } |
097ead30 | 287 | |
844f90fb | 288 | // Construct path only - possibly with the trailing separator |
7124df9b VZ |
289 | wxString GetPath( bool add_separator = FALSE, |
290 | wxPathFormat format = wxPATH_NATIVE ) const; | |
097ead30 | 291 | |
844f90fb VZ |
292 | // more readable synonym |
293 | wxString GetPathWithSep(wxPathFormat format = wxPATH_NATIVE ) const | |
294 | { return GetPath(TRUE /* add separator */, format); } | |
295 | ||
df5ddbca RR |
296 | // Construct full path with name and ext |
297 | wxString GetFullPath( wxPathFormat format = wxPATH_NATIVE ) const; | |
097ead30 | 298 | |
9e9b65c1 JS |
299 | // Return the short form of the path (returns identity on non-Windows platforms) |
300 | wxString GetShortPath() const; | |
301 | ||
302 | // Return the long form of the path (returns identity on non-Windows platforms) | |
303 | wxString GetLongPath() const; | |
304 | ||
9e8d8607 VZ |
305 | // various helpers |
306 | ||
307 | // get the canonical path format for this platform | |
df5ddbca | 308 | static wxPathFormat GetFormat( wxPathFormat format = wxPATH_NATIVE ); |
097ead30 | 309 | |
04c943b1 VZ |
310 | // split a fullpath into the volume, path, (base) name and extension |
311 | // (all of the pointers can be NULL) | |
9e8d8607 | 312 | static void SplitPath(const wxString& fullpath, |
04c943b1 | 313 | wxString *volume, |
9e8d8607 VZ |
314 | wxString *path, |
315 | wxString *name, | |
316 | wxString *ext, | |
317 | wxPathFormat format = wxPATH_NATIVE); | |
318 | ||
04c943b1 VZ |
319 | // compatibility version |
320 | static void SplitPath(const wxString& fullpath, | |
321 | wxString *path, | |
322 | wxString *name, | |
323 | wxString *ext, | |
6f91bc33 | 324 | wxPathFormat format = wxPATH_NATIVE); |
04c943b1 | 325 | |
df5ddbca | 326 | private: |
04c943b1 VZ |
327 | // the drive/volume/device specification (always empty for Unix) |
328 | wxString m_volume; | |
329 | ||
844f90fb | 330 | // the path components of the file |
df5ddbca | 331 | wxArrayString m_dirs; |
844f90fb VZ |
332 | |
333 | // the file name and extension (empty for directories) | |
334 | wxString m_name, | |
335 | m_ext; | |
df5ddbca RR |
336 | }; |
337 | ||
097ead30 | 338 | #endif // _WX_FILENAME_H_ |
df5ddbca | 339 |