]>
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 | |
371a5b4e | 9 | // Licence: wxWindows licence |
df5ddbca RR |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FILENAME_H_ | |
13 | #define _WX_FILENAME_H_ | |
14 | ||
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
df5ddbca RR |
16 | #pragma interface "filename.h" |
17 | #endif | |
18 | ||
19 | #ifndef WX_PRECOMP | |
9e8d8607 | 20 | #include "wx/string.h" |
df5168c4 | 21 | #include "wx/arrstr.h" |
df5ddbca RR |
22 | #endif |
23 | ||
9e8d8607 VZ |
24 | /* |
25 | TODO: | |
26 | ||
27 | 1. support for drives under Windows | |
28 | 2. more file operations: | |
29 | a) chmod() | |
30 | b) [acm]time() - get and set | |
31 | c) file size | |
32 | d) file permissions with readable accessors for most common bits | |
33 | such as IsReadable() &c | |
34 | e) rename()? | |
35 | 3. SameFileAs() function to compare inodes under Unix | |
36 | */ | |
37 | ||
df5ddbca | 38 | // ridiculously enough, this will replace DirExists with wxDirExists etc |
ee66f092 | 39 | #include "wx/filefn.h" |
ce16e5d7 | 40 | #include "wx/datetime.h" |
df5ddbca | 41 | |
bddd7a8d | 42 | class WXDLLIMPEXP_BASE wxFile; |
df22f860 | 43 | |
097ead30 VZ |
44 | // ---------------------------------------------------------------------------- |
45 | // constants | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
48 | // the various values for the path format: this mainly affects the path | |
49 | // separator but also whether or not the path has the drive part (as under | |
50 | // Windows) | |
df5ddbca RR |
51 | enum wxPathFormat |
52 | { | |
844f90fb | 53 | wxPATH_NATIVE = 0, // the path format for the current platform |
097ead30 | 54 | wxPATH_UNIX, |
f363e05c | 55 | wxPATH_BEOS = wxPATH_UNIX, |
097ead30 VZ |
56 | wxPATH_MAC, |
57 | wxPATH_DOS, | |
f363e05c VZ |
58 | wxPATH_WIN = wxPATH_DOS, |
59 | wxPATH_OS2 = wxPATH_DOS, | |
3c621059 | 60 | wxPATH_VMS, |
ee66f092 | 61 | |
f363e05c | 62 | wxPATH_MAX // Not a valid value for specifying path format |
097ead30 | 63 | }; |
ee66f092 | 64 | |
097ead30 VZ |
65 | // the kind of normalization to do with the file name: these values can be |
66 | // or'd together to perform several operations at once | |
67 | enum wxPathNormalize | |
68 | { | |
69 | wxPATH_NORM_ENV_VARS = 0x0001, // replace env vars with their values | |
844f90fb | 70 | wxPATH_NORM_DOTS = 0x0002, // squeeze all .. and . and prepend cwd |
097ead30 | 71 | wxPATH_NORM_TILDE = 0x0004, // Unix only: replace ~ and ~user |
844f90fb VZ |
72 | wxPATH_NORM_CASE = 0x0008, // if case insensitive => tolower |
73 | wxPATH_NORM_ABSOLUTE = 0x0010, // make the path absolute | |
9e9b65c1 JS |
74 | wxPATH_NORM_LONG = 0x0020, // make the path the long form |
75 | wxPATH_NORM_ALL = 0x003f | |
df5ddbca RR |
76 | }; |
77 | ||
33b97389 VZ |
78 | // what exactly should GetPath() return? |
79 | enum | |
80 | { | |
81 | wxPATH_GET_VOLUME = 0x0001, // include the volume if applicable | |
82 | wxPATH_GET_SEPARATOR = 0x0002 // terminate the path with the separator | |
83 | }; | |
84 | ||
1527281e VZ |
85 | // MkDir flags |
86 | enum | |
87 | { | |
88 | wxPATH_MKDIR_FULL = 0x0001 // create directories recursively | |
89 | }; | |
90 | ||
097ead30 VZ |
91 | // ---------------------------------------------------------------------------- |
92 | // wxFileName: encapsulates a file path | |
93 | // ---------------------------------------------------------------------------- | |
94 | ||
bddd7a8d | 95 | class WXDLLIMPEXP_BASE wxFileName |
df5ddbca RR |
96 | { |
97 | public: | |
98 | // constructors and assignment | |
844f90fb VZ |
99 | |
100 | // the usual stuff | |
fb969475 | 101 | wxFileName() { Clear(); } |
520200fd | 102 | wxFileName(const wxFileName& filepath) { Assign(filepath); } |
844f90fb VZ |
103 | |
104 | // from a full filename: if it terminates with a '/', a directory path | |
105 | // is contructed (the name will be empty), otherwise a file name and | |
106 | // extension are extracted from it | |
107 | wxFileName( const wxString& fullpath, wxPathFormat format = wxPATH_NATIVE ) | |
108 | { Assign( fullpath, format ); } | |
109 | ||
110 | // from a directory name and a file name | |
111 | wxFileName(const wxString& path, | |
112 | const wxString& name, | |
113 | wxPathFormat format = wxPATH_NATIVE) | |
114 | { Assign(path, name, format); } | |
115 | ||
81f25632 VZ |
116 | // from a volume, directory name, file base name and extension |
117 | wxFileName(const wxString& volume, | |
118 | const wxString& path, | |
119 | const wxString& name, | |
120 | const wxString& ext, | |
121 | wxPathFormat format = wxPATH_NATIVE) | |
122 | { Assign(volume, path, name, ext, format); } | |
123 | ||
844f90fb VZ |
124 | // from a directory name, file base name and extension |
125 | wxFileName(const wxString& path, | |
126 | const wxString& name, | |
127 | const wxString& ext, | |
128 | wxPathFormat format = wxPATH_NATIVE) | |
129 | { Assign(path, name, ext, format); } | |
130 | ||
844f90fb VZ |
131 | // the same for delayed initialization |
132 | ||
844f90fb | 133 | void Assign(const wxFileName& filepath); |
04c943b1 | 134 | |
844f90fb VZ |
135 | void Assign(const wxString& fullpath, |
136 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 VZ |
137 | |
138 | void Assign(const wxString& volume, | |
139 | const wxString& path, | |
140 | const wxString& name, | |
141 | const wxString& ext, | |
142 | wxPathFormat format = wxPATH_NATIVE); | |
143 | ||
844f90fb VZ |
144 | void Assign(const wxString& path, |
145 | const wxString& name, | |
146 | wxPathFormat format = wxPATH_NATIVE); | |
04c943b1 | 147 | |
844f90fb VZ |
148 | void Assign(const wxString& path, |
149 | const wxString& name, | |
150 | const wxString& ext, | |
04c943b1 VZ |
151 | wxPathFormat format = wxPATH_NATIVE) |
152 | { | |
153 | // empty volume | |
fda7962d | 154 | Assign(wxEmptyString, path, name, ext, format); |
04c943b1 VZ |
155 | } |
156 | ||
52dbd056 | 157 | void AssignDir(const wxString& dir, wxPathFormat format = wxPATH_NATIVE); |
844f90fb | 158 | |
788722ac JS |
159 | // assorted assignment operators |
160 | ||
161 | wxFileName& operator=(const wxFileName& filename) | |
162 | { Assign(filename); return *this; } | |
163 | ||
164 | wxFileName& operator=(const wxString& filename) | |
165 | { Assign(filename); return *this; } | |
166 | ||
844f90fb VZ |
167 | // reset all components to default, uninitialized state |
168 | void Clear(); | |
169 | ||
170 | // static pseudo constructors | |
520200fd VZ |
171 | static wxFileName FileName(const wxString& file, |
172 | wxPathFormat format = wxPATH_NATIVE); | |
173 | static wxFileName DirName(const wxString& dir, | |
174 | wxPathFormat format = wxPATH_NATIVE); | |
844f90fb | 175 | |
951cd180 | 176 | // file tests |
844f90fb VZ |
177 | |
178 | // is the filename valid at all? | |
df5168c4 | 179 | bool IsOk() const { return m_dirs.size() != 0 || !m_name.IsEmpty(); } |
844f90fb VZ |
180 | |
181 | // does the file with this name exists? | |
8e41796c | 182 | bool FileExists() const; |
a35b27b1 | 183 | static bool FileExists( const wxString &file ); |
097ead30 | 184 | |
844f90fb | 185 | // does the directory with this name exists? |
8e41796c | 186 | bool DirExists() const; |
a35b27b1 | 187 | static bool DirExists( const wxString &dir ); |
097ead30 | 188 | |
844f90fb VZ |
189 | // VZ: also need: IsDirWritable(), IsFileExecutable() &c (TODO) |
190 | ||
951cd180 | 191 | // time functions |
e2b87f38 | 192 | #if wxUSE_DATETIME |
6dbb903b | 193 | // set the file last access/mod and creation times |
951cd180 | 194 | // (any of the pointers may be NULL) |
6dbb903b VZ |
195 | bool SetTimes(const wxDateTime *dtAccess, |
196 | const wxDateTime *dtMod, | |
197 | const wxDateTime *dtCreate); | |
951cd180 VZ |
198 | |
199 | // set the access and modification times to the current moment | |
200 | bool Touch(); | |
201 | ||
6dbb903b | 202 | // return the last access, last modification and create times |
951cd180 VZ |
203 | // (any of the pointers may be NULL) |
204 | bool GetTimes(wxDateTime *dtAccess, | |
205 | wxDateTime *dtMod, | |
6dbb903b | 206 | wxDateTime *dtCreate) const; |
951cd180 VZ |
207 | |
208 | // convenience wrapper: get just the last mod time of the file | |
209 | wxDateTime GetModificationTime() const | |
210 | { | |
211 | wxDateTime dtMod; | |
212 | (void)GetTimes(NULL, &dtMod, NULL); | |
213 | return dtMod; | |
214 | } | |
e2b87f38 | 215 | #endif // wxUSE_DATETIME |
951cd180 | 216 | |
4dfbcdd5 SC |
217 | #ifdef __WXMAC__ |
218 | bool MacSetTypeAndCreator( wxUint32 type , wxUint32 creator ) ; | |
219 | bool MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator ) ; | |
220 | // gets the 'common' type and creator for a certain extension | |
221 | static bool MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator ) ; | |
222 | // registers application defined extensions and their default type and creator | |
223 | static void MacRegisterDefaultTypeAndCreator( const wxString& ext , wxUint32 type , wxUint32 creator ) ; | |
224 | // looks up the appropriate type and creator from the registration and then sets | |
225 | bool MacSetDefaultTypeAndCreator() ; | |
226 | #endif | |
fb969475 | 227 | |
844f90fb VZ |
228 | // various file/dir operations |
229 | ||
230 | // retrieve the value of the current working directory | |
6f91bc33 VZ |
231 | void AssignCwd(const wxString& volume = wxEmptyString); |
232 | static wxString GetCwd(const wxString& volume = wxEmptyString); | |
097ead30 | 233 | |
844f90fb | 234 | // change the current working directory |
a35b27b1 RR |
235 | bool SetCwd(); |
236 | static bool SetCwd( const wxString &cwd ); | |
097ead30 | 237 | |
844f90fb | 238 | // get the value of user home (Unix only mainly) |
a35b27b1 RR |
239 | void AssignHomeDir(); |
240 | static wxString GetHomeDir(); | |
097ead30 | 241 | |
df22f860 VZ |
242 | // get a temp file name starting with the specified prefix and open the |
243 | // file passed to us using this name for writing (atomically if | |
244 | // possible) | |
245 | void AssignTempFileName(const wxString& prefix, wxFile *fileTemp = NULL); | |
246 | static wxString CreateTempFileName(const wxString& prefix, | |
247 | wxFile *fileTemp = NULL); | |
097ead30 | 248 | |
f0ce3409 | 249 | // directory creation and removal. |
1527281e VZ |
250 | bool Mkdir( int perm = 0777, int flags = 0); |
251 | static bool Mkdir( const wxString &dir, int perm = 0777, int flags = 0 ); | |
097ead30 | 252 | |
a35b27b1 RR |
253 | bool Rmdir(); |
254 | static bool Rmdir( const wxString &dir ); | |
097ead30 | 255 | |
844f90fb VZ |
256 | // operations on the path |
257 | ||
258 | // normalize the path: with the default flags value, the path will be | |
259 | // made absolute, without any ".." and "." and all environment | |
260 | // variables will be expanded in it | |
261 | // | |
262 | // this may be done using another (than current) value of cwd | |
32a0d013 | 263 | bool Normalize(int flags = wxPATH_NORM_ALL, |
844f90fb VZ |
264 | const wxString& cwd = wxEmptyString, |
265 | wxPathFormat format = wxPATH_NATIVE); | |
097ead30 | 266 | |
f7d886af VZ |
267 | // get a path path relative to the given base directory, i.e. opposite |
268 | // of Normalize | |
269 | // | |
270 | // pass an empty string to get a path relative to the working directory | |
271 | // | |
f363e05c | 272 | // returns true if the file name was modified, false if we failed to do |
f7d886af VZ |
273 | // anything with it (happens when the file is on a different volume, |
274 | // for example) | |
fda7962d | 275 | bool MakeRelativeTo(const wxString& pathBase = wxEmptyString, |
f7d886af VZ |
276 | wxPathFormat format = wxPATH_NATIVE); |
277 | ||
0894707e VS |
278 | // make the path absolute |
279 | // | |
280 | // this may be done using another (than current) value of cwd | |
281 | bool MakeAbsolute(const wxString& cwd = wxEmptyString, | |
282 | wxPathFormat format = wxPATH_NATIVE) | |
283 | { return Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE | | |
284 | wxPATH_NORM_TILDE, cwd, format); } | |
f7d886af | 285 | |
df5ddbca | 286 | // Comparison |
844f90fb | 287 | |
2b5f62a0 VZ |
288 | // compares with the rules of the given platforms format |
289 | bool SameAs(const wxFileName& filepath, | |
290 | wxPathFormat format = wxPATH_NATIVE) const; | |
291 | ||
292 | // compare with another filename object | |
293 | bool operator==(const wxFileName& filename) const | |
294 | { return SameAs(filename); } | |
295 | bool operator!=(const wxFileName& filename) const | |
296 | { return !SameAs(filename); } | |
297 | ||
298 | // compare with a filename string interpreted as a native file name | |
299 | bool operator==(const wxString& filename) const | |
300 | { return SameAs(wxFileName(filename)); } | |
301 | bool operator!=(const wxString& filename) const | |
302 | { return !SameAs(wxFileName(filename)); } | |
844f90fb | 303 | |
04c943b1 | 304 | // are the file names of this type cases sensitive? |
844f90fb | 305 | static bool IsCaseSensitive( wxPathFormat format = wxPATH_NATIVE ); |
04c943b1 VZ |
306 | |
307 | // is this filename absolute? | |
6d3d1c2e | 308 | bool IsAbsolute(wxPathFormat format = wxPATH_NATIVE) const; |
844f90fb | 309 | |
04c943b1 | 310 | // is this filename relative? |
6d3d1c2e VZ |
311 | bool IsRelative(wxPathFormat format = wxPATH_NATIVE) const |
312 | { return !IsAbsolute(format); } | |
04c943b1 | 313 | |
f363e05c VZ |
314 | // Returns the characters that aren't allowed in filenames |
315 | // on the specified platform. | |
316 | static wxString GetForbiddenChars(wxPathFormat format = wxPATH_NATIVE); | |
317 | ||
04c943b1 VZ |
318 | // Information about path format |
319 | ||
6d3d1c2e VZ |
320 | // get the string separating the volume from the path for this format, |
321 | // return an empty string if this format doesn't support the notion of | |
322 | // volumes at all | |
04c943b1 VZ |
323 | static wxString GetVolumeSeparator(wxPathFormat format = wxPATH_NATIVE); |
324 | ||
844f90fb VZ |
325 | // get the string of path separators for this format |
326 | static wxString GetPathSeparators(wxPathFormat format = wxPATH_NATIVE); | |
327 | ||
6d3d1c2e VZ |
328 | // get the canonical path separator for this format |
329 | static wxChar GetPathSeparator(wxPathFormat format = wxPATH_NATIVE) | |
330 | { return GetPathSeparators(format)[0u]; } | |
331 | ||
844f90fb VZ |
332 | // is the char a path separator for this format? |
333 | static bool IsPathSeparator(wxChar ch, wxPathFormat format = wxPATH_NATIVE); | |
334 | ||
df5ddbca RR |
335 | // Dir accessors |
336 | void AppendDir( const wxString &dir ); | |
337 | void PrependDir( const wxString &dir ); | |
338 | void InsertDir( int before, const wxString &dir ); | |
339 | void RemoveDir( int pos ); | |
df5168c4 | 340 | size_t GetDirCount() const { return m_dirs.size(); } |
097ead30 | 341 | |
df5ddbca RR |
342 | // Other accessors |
343 | void SetExt( const wxString &ext ) { m_ext = ext; } | |
344 | wxString GetExt() const { return m_ext; } | |
04c943b1 | 345 | bool HasExt() const { return !m_ext.empty(); } |
097ead30 | 346 | |
df5ddbca RR |
347 | void SetName( const wxString &name ) { m_name = name; } |
348 | wxString GetName() const { return m_name; } | |
04c943b1 VZ |
349 | bool HasName() const { return !m_name.empty(); } |
350 | ||
351 | void SetVolume( const wxString &volume ) { m_volume = volume; } | |
352 | wxString GetVolume() const { return m_volume; } | |
353 | bool HasVolume() const { return !m_volume.empty(); } | |
097ead30 | 354 | |
7124df9b VZ |
355 | // full name is the file name + extension (but without the path) |
356 | void SetFullName(const wxString& fullname); | |
844f90fb | 357 | wxString GetFullName() const; |
097ead30 | 358 | |
04c943b1 | 359 | const wxArrayString& GetDirs() const { return m_dirs; } |
097ead30 | 360 | |
33b97389 VZ |
361 | // flags are combination of wxPATH_GET_XXX flags |
362 | wxString GetPath(int flags = 0, wxPathFormat format = wxPATH_NATIVE) const; | |
363 | ||
a7b51bc8 RR |
364 | // Replace current path with this one |
365 | void SetPath( const wxString &path, wxPathFormat format = wxPATH_NATIVE ); | |
097ead30 | 366 | |
df5ddbca RR |
367 | // Construct full path with name and ext |
368 | wxString GetFullPath( wxPathFormat format = wxPATH_NATIVE ) const; | |
097ead30 | 369 | |
9e9b65c1 JS |
370 | // Return the short form of the path (returns identity on non-Windows platforms) |
371 | wxString GetShortPath() const; | |
372 | ||
373 | // Return the long form of the path (returns identity on non-Windows platforms) | |
374 | wxString GetLongPath() const; | |
375 | ||
2db991f4 VZ |
376 | // Is this a file or directory (not necessarily an existing one) |
377 | bool IsDir() const { return m_name.empty() && m_ext.empty(); } | |
378 | ||
9e8d8607 VZ |
379 | // various helpers |
380 | ||
381 | // get the canonical path format for this platform | |
df5ddbca | 382 | static wxPathFormat GetFormat( wxPathFormat format = wxPATH_NATIVE ); |
097ead30 | 383 | |
04c943b1 VZ |
384 | // split a fullpath into the volume, path, (base) name and extension |
385 | // (all of the pointers can be NULL) | |
9e8d8607 | 386 | static void SplitPath(const wxString& fullpath, |
04c943b1 | 387 | wxString *volume, |
9e8d8607 VZ |
388 | wxString *path, |
389 | wxString *name, | |
390 | wxString *ext, | |
391 | wxPathFormat format = wxPATH_NATIVE); | |
392 | ||
04c943b1 VZ |
393 | // compatibility version |
394 | static void SplitPath(const wxString& fullpath, | |
395 | wxString *path, | |
396 | wxString *name, | |
397 | wxString *ext, | |
6f91bc33 | 398 | wxPathFormat format = wxPATH_NATIVE); |
04c943b1 | 399 | |
33b97389 VZ |
400 | |
401 | // deprecated methods, don't use any more | |
402 | // -------------------------------------- | |
403 | ||
4ce1efe1 | 404 | #ifndef __DIGITALMARS__ |
33b97389 VZ |
405 | wxString GetPath( bool withSep, wxPathFormat format = wxPATH_NATIVE ) const |
406 | { return GetPath(withSep ? wxPATH_GET_SEPARATOR : 0, format); } | |
4ce1efe1 | 407 | #endif |
33b97389 VZ |
408 | wxString GetPathWithSep(wxPathFormat format = wxPATH_NATIVE ) const |
409 | { return GetPath(wxPATH_GET_SEPARATOR, format); } | |
410 | ||
df5ddbca | 411 | private: |
04c943b1 VZ |
412 | // the drive/volume/device specification (always empty for Unix) |
413 | wxString m_volume; | |
414 | ||
844f90fb | 415 | // the path components of the file |
df5ddbca | 416 | wxArrayString m_dirs; |
844f90fb VZ |
417 | |
418 | // the file name and extension (empty for directories) | |
419 | wxString m_name, | |
420 | m_ext; | |
6d3d1c2e VZ |
421 | |
422 | // when m_dirs is empty it may mean either that we have no path at all or | |
423 | // that our path is '/', i.e. the root directory | |
424 | // | |
425 | // we use m_relative to distinguish between these two cases, it will be | |
f363e05c | 426 | // true in the former and false in the latter |
6d3d1c2e | 427 | // |
f363e05c | 428 | // NB: the path is not absolute just because m_relative is false, it still |
6d3d1c2e | 429 | // needs the drive (i.e. volume) in some formats (Windows) |
353f41cb | 430 | bool m_relative; |
df5ddbca RR |
431 | }; |
432 | ||
097ead30 | 433 | #endif // _WX_FILENAME_H_ |
df5ddbca | 434 |