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