]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
55034339 | 2 | // Name: wx/filefn.h |
c801d85f KB |
3 | // Purpose: File- and directory-related functions |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 29/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _FILEFN_H_ |
13 | #define _FILEFN_H_ | |
c801d85f | 14 | |
ed58dbea | 15 | #include "wx/list.h" |
b76069e2 | 16 | #include "wx/arrstr.h" |
e49f47aa | 17 | |
e2fc40b4 | 18 | #ifndef __WXPALMOS5__ |
6294ac2e VZ |
19 | #ifdef __WXWINCE__ |
20 | #include "wx/msw/wince/time.h" | |
21 | #include "wx/msw/private.h" | |
22 | #else | |
23 | #include <time.h> | |
0e0126c2 | 24 | #endif |
a47ce4a7 | 25 | |
6294ac2e VZ |
26 | #ifdef __WXWINCE__ |
27 | // Nothing | |
28 | #elif !defined(__MWERKS__) | |
29 | #include <sys/types.h> | |
30 | #include <sys/stat.h> | |
31 | #else | |
32 | #ifdef __MACH__ | |
33 | #include <sys/types.h> | |
34 | #include <utime.h> | |
35 | #include <sys/stat.h> | |
36 | #include <unistd.h> | |
37 | #else | |
38 | #include <stat.h> | |
39 | #include <unistd.h> | |
40 | #include <unix.h> | |
41 | #endif | |
42 | #endif | |
e2fc40b4 | 43 | #endif // !__WXPALMOS5__ |
6294ac2e VZ |
44 | |
45 | #ifdef __OS2__ | |
46 | // need to check for __OS2__ first since currently both | |
47 | // __OS2__ and __UNIX__ are defined. | |
48 | #include <process.h> | |
49 | #include "wx/os2/private.h" | |
0872eaf9 WS |
50 | #ifdef __WATCOMC__ |
51 | #include <direct.h> | |
52 | #endif | |
6294ac2e VZ |
53 | #include <io.h> |
54 | #ifdef __EMX__ | |
55 | #include <unistd.h> | |
56 | #endif | |
57 | #elif defined(__UNIX__) | |
58 | #include <unistd.h> | |
59 | #include <dirent.h> | |
60 | #endif | |
61 | ||
62 | #if defined(__WINDOWS__) && !defined(__WXMICROWIN__) | |
8490b71b | 63 | #if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__) && !defined(__WXWINCE__) && !defined(__CYGWIN__) |
6294ac2e VZ |
64 | #include <direct.h> |
65 | #include <dos.h> | |
66 | #include <io.h> | |
67 | #endif // __WINDOWS__ | |
68 | #endif // native Win compiler | |
69 | ||
70 | #if defined(__DOS__) | |
71 | #ifdef __WATCOMC__ | |
72 | #include <direct.h> | |
73 | #include <dos.h> | |
74 | #include <io.h> | |
75 | #endif | |
76 | #ifdef __DJGPP__ | |
77 | #include <io.h> | |
78 | #include <unistd.h> | |
79 | #endif | |
80 | #endif | |
81 | ||
82 | #ifdef __BORLANDC__ // Please someone tell me which version of Borland needs | |
83 | // this (3.1 I believe) and how to test for it. | |
84 | // If this works for Borland 4.0 as well, then no worries. | |
85 | #include <dir.h> | |
86 | #endif | |
87 | ||
88 | #ifdef __SALFORDC__ | |
89 | #include <dir.h> | |
90 | #include <unix.h> | |
91 | #endif | |
92 | ||
e2fc40b4 | 93 | #ifndef __WXPALMOS5__ |
6294ac2e VZ |
94 | #ifndef __WXWINCE__ |
95 | #include <fcntl.h> // O_RDONLY &c | |
96 | #endif | |
e2fc40b4 | 97 | #endif // !__WXPALMOS5__ |
45ea509a VZ |
98 | // ---------------------------------------------------------------------------- |
99 | // constants | |
100 | // ---------------------------------------------------------------------------- | |
c801d85f | 101 | |
52de37c7 VS |
102 | #if defined(__VISUALC__) || defined(__DIGITALMARS__) |
103 | typedef int mode_t; | |
104 | #endif | |
105 | ||
0e0126c2 RR |
106 | #ifdef __WXWINCE__ |
107 | typedef long off_t; | |
108 | #else | |
6294ac2e VZ |
109 | // define off_t |
110 | #if !defined(__WXMAC__) || defined(__UNIX__) || defined(__MACH__) | |
111 | #include <sys/types.h> | |
112 | #else | |
113 | typedef long off_t; | |
114 | #endif | |
17dff81c | 115 | #endif |
45ea509a | 116 | |
65df77ec | 117 | #if (defined(__VISUALC__) && !defined(__WXWINCE__)) || ( defined(__MWERKS__) && defined( __INTEL__) ) |
3f4a0c5b | 118 | typedef _off_t off_t; |
2bdf7154 | 119 | #elif defined(__SYMANTEC__) |
3f4a0c5b | 120 | typedef long off_t; |
2d2ed20f | 121 | #elif defined(__MWERKS__) && !defined(__INTEL__) && !defined(__MACH__) |
8be97d65 | 122 | typedef long off_t; |
e2fc40b4 VZ |
123 | #elif defined(__WXPALMOS5__) |
124 | typedef long off_t; | |
2432b92d JS |
125 | #endif |
126 | ||
7af89395 VZ |
127 | enum wxSeekMode |
128 | { | |
45ea509a VZ |
129 | wxFromStart, |
130 | wxFromCurrent, | |
131 | wxFromEnd | |
7af89395 | 132 | }; |
45ea509a | 133 | |
0912690b | 134 | enum wxFileKind |
3c70014d | 135 | { |
0912690b MW |
136 | wxFILE_KIND_UNKNOWN, |
137 | wxFILE_KIND_DISK, // a file supporting seeking to arbitrary offsets | |
138 | wxFILE_KIND_TERMINAL, // a tty | |
139 | wxFILE_KIND_PIPE // a pipe | |
3c70014d MW |
140 | }; |
141 | ||
f6bcfd97 BP |
142 | // ---------------------------------------------------------------------------- |
143 | // declare our versions of low level file functions: some compilers prepend | |
144 | // underscores to the usual names, some also have Unicode versions of them | |
145 | // ---------------------------------------------------------------------------- | |
146 | ||
6294ac2e VZ |
147 | // Wrappers around Win32 api functions like CreateFile, ReadFile and such |
148 | // Implemented in filefnwce.cpp | |
08c63240 | 149 | #if defined( __WXWINCE__) |
6294ac2e VZ |
150 | typedef __int64 wxFileOffset; |
151 | #define wxFileOffsetFmtSpec _("I64") | |
52de37c7 VS |
152 | WXDLLIMPEXP_BASE int wxCRT_Open(const wxChar *filename, int oflag, int WXUNUSED(pmode)); |
153 | WXDLLIMPEXP_BASE int wxCRT_Access(const wxChar *name, int WXUNUSED(how)); | |
aec1621e VS |
154 | WXDLLIMPEXP_BASE int wxClose(int fd); |
155 | WXDLLIMPEXP_BASE int wxFsync(int WXUNUSED(fd)); | |
156 | WXDLLIMPEXP_BASE int wxRead(int fd, void *buf, unsigned int count); | |
157 | WXDLLIMPEXP_BASE int wxWrite(int fd, const void *buf, unsigned int count); | |
158 | WXDLLIMPEXP_BASE int wxEof(int fd); | |
159 | WXDLLIMPEXP_BASE wxFileOffset wxSeek(int fd, wxFileOffset offset, int origin); | |
6294ac2e | 160 | #define wxLSeek wxSeek |
aec1621e | 161 | WXDLLIMPEXP_BASE wxFileOffset wxTell(int fd); |
27b2dd53 | 162 | |
c34db1be | 163 | // always Unicode under WinCE |
52de37c7 VS |
164 | #define wxCRT_MkDir _wmkdir |
165 | #define wxCRT_RmDir _wrmdir | |
166 | #define wxCRT_Stat _wstat | |
6294ac2e | 167 | #define wxStructStat struct _stat |
2b2883a5 | 168 | #elif (defined(__WXMSW__) || defined(__OS2__)) && !defined(__WXPALMOS__) && \ |
dedcebb9 VZ |
169 | ( \ |
170 | defined(__VISUALC__) || \ | |
171 | (defined(__MINGW32__) && !defined(__WINE__) && \ | |
172 | wxCHECK_W32API_VERSION(0, 5)) || \ | |
173 | defined(__MWERKS__) || \ | |
174 | defined(__DMC__) || \ | |
175 | defined(__WATCOMC__) || \ | |
176 | defined(__BORLANDC__) \ | |
177 | ) | |
4004775e | 178 | |
4ae9be50 | 179 | #undef wxHAS_HUGE_FILES |
dedcebb9 | 180 | |
76c36512 VZ |
181 | // detect compilers which have support for huge files |
182 | #if defined(__VISUALC__) | |
c26d982b | 183 | #define wxHAS_HUGE_FILES 1 |
dedcebb9 | 184 | #elif defined(__MINGW32__) |
4ae9be50 | 185 | #define wxHAS_HUGE_FILES 1 |
1ad688c9 VZ |
186 | #elif defined(_LARGE_FILES) |
187 | #define wxHAS_HUGE_FILES 1 | |
6294ac2e VZ |
188 | #endif |
189 | ||
1ad688c9 VZ |
190 | // other Windows compilers (DMC, Watcom, Metrowerks and Borland) don't have |
191 | // huge file support (or at least not all functions needed for it by wx) | |
192 | // currently | |
193 | ||
1ad688c9 | 194 | #ifdef wxHAS_HUGE_FILES |
6294ac2e VZ |
195 | typedef wxLongLong_t wxFileOffset; |
196 | #define wxFileOffsetFmtSpec wxLongLongFmtSpec | |
197 | #else | |
4004775e | 198 | typedef off_t wxFileOffset; |
6294ac2e VZ |
199 | #endif |
200 | ||
f49ad976 VZ |
201 | |
202 | // functions | |
203 | ||
204 | // MSVC and compatible compilers prepend underscores to the POSIX function | |
205 | // names, other compilers don't and even if their later versions usually do | |
206 | // define the versions with underscores for MSVC compatibility, it's better | |
207 | // to avoid using them as they're not present in earlier versions and | |
208 | // always using the native functions spelling is easier than testing for | |
209 | // the versions | |
e8f33d9e | 210 | #if defined(__BORLANDC__) || defined(__DMC__) || defined(__WATCOMC__) |
f49ad976 VZ |
211 | #define wxPOSIX_IDENT(func) ::func |
212 | #else // by default assume MSVC-compatible names | |
213 | #define wxPOSIX_IDENT(func) _ ## func | |
214 | #define wxHAS_UNDERSCORES_IN_POSIX_IDENTS | |
215 | #endif | |
216 | ||
e8f33d9e VZ |
217 | // at least Borland 5.5 doesn't like "struct ::stat" so don't use the scope |
218 | // resolution operator present in wxPOSIX_IDENT for it | |
219 | #ifdef __BORLANDC__ | |
220 | #define wxPOSIX_STRUCT(s) struct s | |
221 | #else | |
222 | #define wxPOSIX_STRUCT(s) struct wxPOSIX_IDENT(s) | |
223 | #endif | |
f49ad976 VZ |
224 | |
225 | // first functions not working with strings, i.e. without ANSI/Unicode | |
226 | // complications | |
227 | #define wxClose wxPOSIX_IDENT(close) | |
6294ac2e VZ |
228 | |
229 | #if defined(__MWERKS__) | |
230 | #if __MSL__ >= 0x6000 | |
6d067eb6 VZ |
231 | #define wxRead(fd, buf, nCount) _read(fd, (void *)buf, nCount) |
232 | #define wxWrite(fd, buf, nCount) _write(fd, (void *)buf, nCount) | |
6294ac2e | 233 | #else |
6d067eb6 VZ |
234 | #define wxRead(fd, buf, nCount)\ |
235 | _read(fd, (const char *)buf, nCount) | |
236 | #define wxWrite(fd, buf, nCount)\ | |
237 | _write(fd, (const char *)buf, nCount) | |
6294ac2e | 238 | #endif |
f49ad976 VZ |
239 | #else // __MWERKS__ |
240 | #define wxRead wxPOSIX_IDENT(read) | |
241 | #define wxWrite wxPOSIX_IDENT(write) | |
6294ac2e | 242 | #endif |
f49ad976 | 243 | |
1ad688c9 | 244 | #ifdef wxHAS_HUGE_FILES |
f49ad976 VZ |
245 | #define wxSeek wxPOSIX_IDENT(lseeki64) |
246 | #define wxLseek wxPOSIX_IDENT(lseeki64) | |
247 | #define wxTell wxPOSIX_IDENT(telli64) | |
dedcebb9 | 248 | #else // !wxHAS_HUGE_FILES |
f49ad976 VZ |
249 | #define wxSeek wxPOSIX_IDENT(lseek) |
250 | #define wxLseek wxPOSIX_IDENT(lseek) | |
251 | #define wxTell wxPOSIX_IDENT(tell) | |
dedcebb9 VZ |
252 | #endif // wxHAS_HUGE_FILES/!wxHAS_HUGE_FILES |
253 | ||
f49ad976 | 254 | #ifndef __WATCOMC__ |
f9e5b1c7 CE |
255 | #if !defined(__BORLANDC__) || (__BORLANDC__ > 0x540) |
256 | // NB: this one is not POSIX and always has the underscore | |
257 | #define wxFsync _commit | |
dedcebb9 | 258 | |
f9e5b1c7 CE |
259 | #define HAVE_FSYNC |
260 | #endif // BORLANDC | |
1239ac2e | 261 | #endif |
f6bcfd97 | 262 | |
f49ad976 VZ |
263 | #define wxEof wxPOSIX_IDENT(eof) |
264 | ||
265 | // then the functions taking strings | |
f6bcfd97 | 266 | #if wxUSE_UNICODE |
6de5b599 | 267 | #if wxUSE_UNICODE_MSLU |
6dad7fff VZ |
268 | // implement the missing file functions in Win9x ourselves |
269 | #if defined( __VISUALC__ ) \ | |
270 | || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \ | |
271 | || ( defined(__MWERKS__) && defined(__WXMSW__) ) \ | |
272 | || ( defined(__BORLANDC__) && (__BORLANDC__ > 0x460) ) \ | |
273 | || defined(__DMC__) | |
6dad7fff | 274 | |
f49ad976 VZ |
275 | WXDLLIMPEXP_BASE int wxMSLU__wopen(const wxChar *name, |
276 | int flags, int mode); | |
277 | WXDLLIMPEXP_BASE int wxMSLU__waccess(const wxChar *name, | |
278 | int mode); | |
6dad7fff VZ |
279 | WXDLLIMPEXP_BASE int wxMSLU__wmkdir(const wxChar *name); |
280 | WXDLLIMPEXP_BASE int wxMSLU__wrmdir(const wxChar *name); | |
f49ad976 VZ |
281 | |
282 | WXDLLIMPEXP_BASE int | |
e8f33d9e | 283 | wxMSLU__wstat(const wxChar *name, wxPOSIX_STRUCT(stat) *buffer); |
f49ad976 VZ |
284 | WXDLLIMPEXP_BASE int |
285 | wxMSLU__wstati64(const wxChar *name, | |
e8f33d9e | 286 | wxPOSIX_STRUCT(stati64) *buffer); |
6dad7fff | 287 | #endif // Windows compilers with MSLU support |
4876ba0b | 288 | |
52de37c7 | 289 | #define wxCRT_Open wxMSLU__wopen |
a62848fd | 290 | |
52de37c7 VS |
291 | #define wxCRT_Access wxMSLU__waccess |
292 | #define wxCRT_MkDir wxMSLU__wmkdir | |
293 | #define wxCRT_RmDir wxMSLU__wrmdir | |
1ad688c9 | 294 | #ifdef wxHAS_HUGE_FILES |
52de37c7 | 295 | #define wxCRT_Stat wxMSLU__wstati64 |
6294ac2e | 296 | #else |
52de37c7 | 297 | #define wxCRT_Stat wxMSLU__wstat |
6294ac2e | 298 | #endif |
f49ad976 | 299 | #else // !wxUSE_UNICODE_MSLU |
5c746f38 | 300 | #ifdef __BORLANDC__ |
311b0403 | 301 | #if __BORLANDC__ >= 0x550 && __BORLANDC__ <= 0x551 |
52de37c7 VS |
302 | WXDLLIMPEXP_BASE int wxCRT_Open(const wxChar *pathname, |
303 | int flags, mode_t mode); | |
311b0403 | 304 | #else |
52de37c7 | 305 | #define wxCRT_Open _wopen |
311b0403 | 306 | #endif |
52de37c7 VS |
307 | #define wxCRT_Access _waccess |
308 | #define wxCRT_MkDir _wmkdir | |
309 | #define wxCRT_RmDir _wrmdir | |
5c746f38 | 310 | #ifdef wxHAS_HUGE_FILES |
52de37c7 | 311 | #define wxCRT_Stat _wstati64 |
5c746f38 | 312 | #else |
52de37c7 | 313 | #define wxCRT_Stat _wstat |
5c746f38 | 314 | #endif |
6294ac2e | 315 | #else |
52de37c7 VS |
316 | #define wxCRT_Open _wopen |
317 | #define wxCRT_Access _waccess | |
318 | #define wxCRT_MkDir _wmkdir | |
319 | #define wxCRT_RmDir _wrmdir | |
5c746f38 | 320 | #ifdef wxHAS_HUGE_FILES |
52de37c7 | 321 | #define wxCRT_Stat _wstati64 |
5c746f38 | 322 | #else |
52de37c7 | 323 | #define wxCRT_Stat _wstat |
5c746f38 | 324 | #endif |
6294ac2e | 325 | #endif |
f49ad976 | 326 | #endif // wxUSE_UNICODE_MSLU/!wxUSE_UNICODE_MSLU |
f6bcfd97 | 327 | #else // !wxUSE_UNICODE |
52de37c7 VS |
328 | #define wxCRT_Open wxPOSIX_IDENT(open) |
329 | #define wxCRT_Access wxPOSIX_IDENT(access) | |
330 | #define wxCRT_MkDir wxPOSIX_IDENT(mkdir) | |
331 | #define wxCRT_RmDir wxPOSIX_IDENT(rmdir) | |
1ad688c9 | 332 | #ifdef wxHAS_HUGE_FILES |
52de37c7 | 333 | #define wxCRT_Stat wxPOSIX_IDENT(stati64) |
6294ac2e | 334 | #else |
1044b90c SN |
335 | // Unfortunately Watcom is not consistent, so:- |
336 | #if defined(__OS2__) && defined(__WATCOMC__) | |
337 | #define wxCRT_Stat _stat | |
338 | #else | |
339 | #define wxCRT_Stat wxPOSIX_IDENT(stat) | |
340 | #endif | |
6294ac2e | 341 | #endif |
dedcebb9 | 342 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
f6bcfd97 | 343 | |
6dabe332 WS |
344 | // Types: Notice that Watcom is the only compiler to have a wide char |
345 | // version of struct stat as well as a wide char stat function variant. | |
346 | // This was droped since OW 1.4 "for consistency across platforms". | |
1ad688c9 | 347 | #ifdef wxHAS_HUGE_FILES |
6d3d756a | 348 | #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4) |
6294ac2e VZ |
349 | #define wxStructStat struct _wstati64 |
350 | #else | |
351 | #define wxStructStat struct _stati64 | |
352 | #endif | |
353 | #else | |
6d3d756a | 354 | #if wxUSE_UNICODE && wxONLY_WATCOM_EARLIER_THAN(1,4) |
6294ac2e VZ |
355 | #define wxStructStat struct _wstat |
356 | #else | |
357 | #define wxStructStat struct _stat | |
358 | #endif | |
359 | #endif | |
f6bcfd97 BP |
360 | |
361 | // constants (unless already defined by the user code) | |
f49ad976 | 362 | #ifdef wxHAS_UNDERSCORES_IN_POSIX_IDENTS |
eb84314b VZ |
363 | #ifndef O_RDONLY |
364 | #define O_RDONLY _O_RDONLY | |
365 | #define O_WRONLY _O_WRONLY | |
366 | #define O_RDWR _O_RDWR | |
367 | #define O_EXCL _O_EXCL | |
368 | #define O_CREAT _O_CREAT | |
369 | #define O_BINARY _O_BINARY | |
370 | #endif | |
371 | ||
372 | #ifndef S_IFMT | |
373 | #define S_IFMT _S_IFMT | |
374 | #define S_IFDIR _S_IFDIR | |
375 | #define S_IFREG _S_IFREG | |
376 | #endif | |
f49ad976 | 377 | #endif // wxHAS_UNDERSCORES_IN_POSIX_IDENTS |
6294ac2e | 378 | |
1ad688c9 | 379 | #ifdef wxHAS_HUGE_FILES |
3d3c6c45 MW |
380 | // wxFile is present and supports large files. Currently wxFFile |
381 | // doesn't have large file support with any Windows compiler (even | |
382 | // Win64 ones). | |
383 | #if wxUSE_FILE | |
82b99cf9 | 384 | #define wxHAS_LARGE_FILES |
3d3c6c45 MW |
385 | #endif |
386 | #endif | |
dedcebb9 VZ |
387 | |
388 | // it's a private define, undefine it so that nobody gets tempted to use it | |
4ae9be50 | 389 | #undef wxHAS_HUGE_FILES |
dedcebb9 | 390 | #else // Unix or Windows using unknown compiler, assume POSIX supported |
6294ac2e VZ |
391 | typedef off_t wxFileOffset; |
392 | #ifdef _LARGE_FILES | |
393 | #define wxFileOffsetFmtSpec wxLongLongFmtSpec | |
bd3cea7d VZ |
394 | wxCOMPILE_TIME_ASSERT( sizeof(off_t) == sizeof(wxLongLong_t), |
395 | BadFileSizeType ); | |
3d3c6c45 MW |
396 | // wxFile is present and supports large files |
397 | #ifdef wxUSE_FILE | |
82b99cf9 | 398 | #define wxHAS_LARGE_FILES |
3d3c6c45 MW |
399 | #endif |
400 | // wxFFile is present and supports large files | |
401 | #if SIZEOF_LONG == 8 || defined HAVE_FSEEKO | |
82b99cf9 | 402 | #define wxHAS_LARGE_FFILES |
3d3c6c45 | 403 | #endif |
6294ac2e VZ |
404 | #else |
405 | #define wxFileOffsetFmtSpec _T("") | |
406 | #endif | |
f6bcfd97 | 407 | // functions |
f6bcfd97 | 408 | #define wxClose close |
6294ac2e VZ |
409 | #define wxRead ::read |
410 | #define wxWrite ::write | |
f6bcfd97 | 411 | #define wxLseek lseek |
6294ac2e | 412 | #define wxSeek lseek |
52ca5b59 | 413 | #define wxFsync fsync |
f6bcfd97 BP |
414 | #define wxEof eof |
415 | ||
52de37c7 VS |
416 | #define wxCRT_MkDir mkdir |
417 | #define wxCRT_RmDir rmdir | |
f6bcfd97 BP |
418 | |
419 | #define wxTell(fd) lseek(fd, 0, SEEK_CUR) | |
420 | ||
f6bcfd97 | 421 | #define wxStructStat struct stat |
a62848fd | 422 | |
52de37c7 VS |
423 | #define wxCRT_Open open |
424 | #define wxCRT_Stat stat | |
425 | #define wxCRT_Lstat lstat | |
426 | #define wxCRT_Access access | |
194b2267 | 427 | |
dedcebb9 | 428 | #define wxHAS_NATIVE_LSTAT |
06e66bd0 | 429 | #endif // platforms |
f6bcfd97 | 430 | |
52de37c7 VS |
431 | // if the platform doesn't have symlinks, define wxCRT_Lstat to be the same as |
432 | // wxCRT_Stat to avoid #ifdefs in the code using it | |
433 | #ifndef wxHAS_NATIVE_LSTAT | |
434 | #define wxCRT_Lstat wxCRT_Stat | |
435 | #endif | |
436 | ||
52de37c7 VS |
437 | inline int wxAccess(const wxString& path, mode_t mode) |
438 | { return wxCRT_Access(path.fn_str(), mode); } | |
439 | inline int wxOpen(const wxString& path, int flags, mode_t mode) | |
440 | { return wxCRT_Open(path.fn_str(), flags, mode); } | |
d6f2a891 VZ |
441 | |
442 | // FIXME-CE: provide our own implementations of the missing CRT functions | |
443 | #ifndef __WXWINCE__ | |
444 | inline int wxStat(const wxString& path, wxStructStat *buf) | |
445 | { return wxCRT_Stat(path.fn_str(), buf); } | |
446 | inline int wxLstat(const wxString& path, wxStructStat *buf) | |
447 | { return wxCRT_Lstat(path.fn_str(), buf); } | |
52de37c7 VS |
448 | inline int wxRmDir(const wxString& path) |
449 | { return wxCRT_RmDir(path.fn_str()); } | |
2b2883a5 | 450 | #if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__)) |
52de37c7 VS |
451 | inline int wxMkDir(const wxString& path, mode_t WXUNUSED(mode) = 0) |
452 | { return wxCRT_MkDir(path.fn_str()); } | |
453 | #else | |
454 | inline int wxMkDir(const wxString& path, mode_t mode) | |
455 | { return wxCRT_MkDir(path.fn_str(), mode); } | |
456 | #endif | |
d6f2a891 | 457 | #endif // !__WXWINCE__ |
52de37c7 | 458 | |
3d3c6c45 MW |
459 | #ifdef O_BINARY |
460 | #define wxO_BINARY O_BINARY | |
461 | #else | |
462 | #define wxO_BINARY 0 | |
463 | #endif | |
464 | ||
06e66bd0 VZ |
465 | #if defined(__VISAGECPP__) && __IBMCPP__ >= 400 |
466 | // | |
467 | // VisualAge C++ V4.0 cannot have any external linkage const decs | |
468 | // in headers included by more than one primary source | |
469 | // | |
30984dea | 470 | extern const int wxInvalidOffset; |
06e66bd0 | 471 | #else |
30984dea | 472 | const int wxInvalidOffset = -1; |
06e66bd0 | 473 | #endif |
f6bcfd97 | 474 | |
45ea509a VZ |
475 | // ---------------------------------------------------------------------------- |
476 | // functions | |
477 | // ---------------------------------------------------------------------------- | |
bddd7a8d | 478 | WXDLLIMPEXP_BASE bool wxFileExists(const wxString& filename); |
c801d85f KB |
479 | |
480 | // does the path exist? (may have or not '/' or '\\' at the end) | |
e960c20e | 481 | WXDLLIMPEXP_BASE bool wxDirExists(const wxString& pathName); |
c801d85f | 482 | |
bddd7a8d | 483 | WXDLLIMPEXP_BASE bool wxIsAbsolutePath(const wxString& filename); |
c801d85f KB |
484 | |
485 | // Get filename | |
bddd7a8d VZ |
486 | WXDLLIMPEXP_BASE wxChar* wxFileNameFromPath(wxChar *path); |
487 | WXDLLIMPEXP_BASE wxString wxFileNameFromPath(const wxString& path); | |
c801d85f KB |
488 | |
489 | // Get directory | |
bddd7a8d | 490 | WXDLLIMPEXP_BASE wxString wxPathOnly(const wxString& path); |
c801d85f | 491 | |
52de37c7 VS |
492 | WXDLLIMPEXP_BASE void wxDos2UnixFilename(char *s); |
493 | WXDLLIMPEXP_BASE void wxDos2UnixFilename(wchar_t *s); | |
c801d85f | 494 | |
52de37c7 VS |
495 | WXDLLIMPEXP_BASE void wxUnix2DosFilename(char *s); |
496 | WXDLLIMPEXP_BASE void wxUnix2DosFilename(wchar_t *s); | |
c801d85f KB |
497 | |
498 | // Strip the extension, in situ | |
52de37c7 VS |
499 | WXDLLIMPEXP_BASE void wxStripExtension(char *buffer); |
500 | WXDLLIMPEXP_BASE void wxStripExtension(wchar_t *buffer); | |
bddd7a8d | 501 | WXDLLIMPEXP_BASE void wxStripExtension(wxString& buffer); |
c801d85f | 502 | |
ade35f11 | 503 | // Get a temporary filename |
bddd7a8d VZ |
504 | WXDLLIMPEXP_BASE wxChar* wxGetTempFileName(const wxString& prefix, wxChar *buf = (wxChar *) NULL); |
505 | WXDLLIMPEXP_BASE bool wxGetTempFileName(const wxString& prefix, wxString& buf); | |
c801d85f KB |
506 | |
507 | // Expand file name (~/ and ${OPENWINHOME}/ stuff) | |
52de37c7 VS |
508 | WXDLLIMPEXP_BASE char* wxExpandPath(char *dest, const wxString& path); |
509 | WXDLLIMPEXP_BASE wchar_t* wxExpandPath(wchar_t *dest, const wxString& path); | |
510 | // FIXME-UTF8: add some wxString version | |
c801d85f KB |
511 | |
512 | // Contract w.r.t environment (</usr/openwin/lib, OPENWHOME> -> ${OPENWINHOME}/lib) | |
513 | // and make (if under the home tree) relative to home | |
514 | // [caller must copy-- volatile] | |
bddd7a8d | 515 | WXDLLIMPEXP_BASE wxChar* wxContractPath(const wxString& filename, |
ade35f11 VZ |
516 | const wxString& envname = wxEmptyString, |
517 | const wxString& user = wxEmptyString); | |
c801d85f KB |
518 | |
519 | // Destructive removal of /./ and /../ stuff | |
52de37c7 VS |
520 | // FIXME-UTF8: deprecate these two (and similar) |
521 | WXDLLIMPEXP_BASE char* wxRealPath(char *path); | |
522 | WXDLLIMPEXP_BASE wchar_t* wxRealPath(wchar_t *path); | |
523 | WXDLLIMPEXP_BASE wxString wxRealPath(const wxString& path); | |
c801d85f KB |
524 | |
525 | // Allocate a copy of the full absolute path | |
bddd7a8d | 526 | WXDLLIMPEXP_BASE wxChar* wxCopyAbsolutePath(const wxString& path); |
c801d85f KB |
527 | |
528 | // Get first file name matching given wild card. | |
529 | // Flags are reserved for future use. | |
530 | #define wxFILE 1 | |
531 | #define wxDIR 2 | |
52de37c7 | 532 | WXDLLIMPEXP_BASE wxString wxFindFirstFile(const wxString& spec, int flags = wxFILE); |
bddd7a8d | 533 | WXDLLIMPEXP_BASE wxString wxFindNextFile(); |
c801d85f KB |
534 | |
535 | // Does the pattern contain wildcards? | |
bddd7a8d | 536 | WXDLLIMPEXP_BASE bool wxIsWild(const wxString& pattern); |
c801d85f KB |
537 | |
538 | // Does the pattern match the text (usually a filename)? | |
a62848fd | 539 | // If dot_special is true, doesn't match * against . (eliminating |
c801d85f | 540 | // `hidden' dot files) |
a62848fd | 541 | WXDLLIMPEXP_BASE bool wxMatchWild(const wxString& pattern, const wxString& text, bool dot_special = true); |
c801d85f KB |
542 | |
543 | // Concatenate two files to form third | |
bddd7a8d | 544 | WXDLLIMPEXP_BASE bool wxConcatFiles(const wxString& file1, const wxString& file2, const wxString& file3); |
c801d85f KB |
545 | |
546 | // Copy file1 to file2 | |
bddd7a8d | 547 | WXDLLIMPEXP_BASE bool wxCopyFile(const wxString& file1, const wxString& file2, |
a62848fd | 548 | bool overwrite = true); |
c801d85f KB |
549 | |
550 | // Remove file | |
bddd7a8d | 551 | WXDLLIMPEXP_BASE bool wxRemoveFile(const wxString& file); |
c801d85f KB |
552 | |
553 | // Rename file | |
57e988b8 | 554 | WXDLLIMPEXP_BASE bool wxRenameFile(const wxString& file1, const wxString& file2, bool overwrite = true); |
c801d85f KB |
555 | |
556 | // Get current working directory. | |
ce045aed | 557 | #if WXWIN_COMPATIBILITY_2_6 |
c801d85f KB |
558 | // If buf is NULL, allocates space using new, else |
559 | // copies into buf. | |
560 | // IMPORTANT NOTE getcwd is know not to work under some releases | |
561 | // of Win32s 1.3, according to MS release notes! | |
ce045aed | 562 | wxDEPRECATED( WXDLLIMPEXP_BASE wxChar* wxGetWorkingDirectory(wxChar *buf = (wxChar *) NULL, int sz = 1000) ); |
7af89395 VZ |
563 | // new and preferred version of wxGetWorkingDirectory |
564 | // NB: can't have the same name because of overloading ambiguity | |
ce045aed | 565 | #endif // WXWIN_COMPATIBILITY_2_6 |
bddd7a8d | 566 | WXDLLIMPEXP_BASE wxString wxGetCwd(); |
c801d85f KB |
567 | |
568 | // Set working directory | |
bddd7a8d | 569 | WXDLLIMPEXP_BASE bool wxSetWorkingDirectory(const wxString& d); |
c801d85f KB |
570 | |
571 | // Make directory | |
bddd7a8d | 572 | WXDLLIMPEXP_BASE bool wxMkdir(const wxString& dir, int perm = 0777); |
c801d85f KB |
573 | |
574 | // Remove directory. Flags reserved for future use. | |
bddd7a8d | 575 | WXDLLIMPEXP_BASE bool wxRmdir(const wxString& dir, int flags = 0); |
c801d85f | 576 | |
3c70014d | 577 | // Return the type of an open file |
0912690b | 578 | WXDLLIMPEXP_BASE wxFileKind wxGetFileKind(int fd); |
9802983f | 579 | WXDLLIMPEXP_BASE wxFileKind wxGetFileKind(FILE *fp); |
3c70014d | 580 | |
ca3e85cf | 581 | #if WXWIN_COMPATIBILITY_2_6 |
2b5f62a0 | 582 | // compatibility defines, don't use in new code |
da865fdd WS |
583 | wxDEPRECATED( inline bool wxPathExists(const wxChar *pszPathName) ); |
584 | inline bool wxPathExists(const wxChar *pszPathName) | |
585 | { | |
586 | return wxDirExists(pszPathName); | |
587 | } | |
ca3e85cf | 588 | #endif //WXWIN_COMPATIBILITY_2_6 |
2b5f62a0 | 589 | |
3ff07edb RR |
590 | // permissions; these functions work both on files and directories: |
591 | WXDLLIMPEXP_BASE bool wxIsWritable(const wxString &path); | |
592 | WXDLLIMPEXP_BASE bool wxIsReadable(const wxString &path); | |
593 | WXDLLIMPEXP_BASE bool wxIsExecutable(const wxString &path); | |
594 | ||
ff69a290 | 595 | // ---------------------------------------------------------------------------- |
c801d85f | 596 | // separators in file names |
ff69a290 VZ |
597 | // ---------------------------------------------------------------------------- |
598 | ||
599 | // between file name and extension | |
223d09f6 | 600 | #define wxFILE_SEP_EXT wxT('.') |
ff69a290 VZ |
601 | |
602 | // between drive/volume name and the path | |
223d09f6 | 603 | #define wxFILE_SEP_DSK wxT(':') |
ff69a290 VZ |
604 | |
605 | // between the path components | |
223d09f6 KB |
606 | #define wxFILE_SEP_PATH_DOS wxT('\\') |
607 | #define wxFILE_SEP_PATH_UNIX wxT('/') | |
844f90fb | 608 | #define wxFILE_SEP_PATH_MAC wxT(':') |
ff69a290 | 609 | #define wxFILE_SEP_PATH_VMS wxT('.') // VMS also uses '[' and ']' |
c801d85f KB |
610 | |
611 | // separator in the path list (as in PATH environment variable) | |
03e11df5 GD |
612 | // there is no PATH variable in Classic Mac OS so just use the |
613 | // semicolon (it must be different from the file name separator) | |
c801d85f | 614 | // NB: these are strings and not characters on purpose! |
223d09f6 KB |
615 | #define wxPATH_SEP_DOS wxT(";") |
616 | #define wxPATH_SEP_UNIX wxT(":") | |
03e11df5 | 617 | #define wxPATH_SEP_MAC wxT(";") |
c801d85f KB |
618 | |
619 | // platform independent versions | |
77a80672 VZ |
620 | #if defined(__UNIX__) && !defined(__OS2__) |
621 | // CYGWIN also uses UNIX settings | |
7af89395 VZ |
622 | #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX |
623 | #define wxPATH_SEP wxPATH_SEP_UNIX | |
e2fc40b4 VZ |
624 | #elif defined(__WXPALMOS__) |
625 | #define wxFILE_SEP_PATH wxFILE_SEP_PATH_UNIX | |
626 | #define wxPATH_SEP wxPATH_SEP_UNIX | |
844f90fb | 627 | #elif defined(__MAC__) |
bedaf53e | 628 | #define wxFILE_SEP_PATH wxFILE_SEP_PATH_MAC |
3369df87 | 629 | #define wxPATH_SEP wxPATH_SEP_MAC |
1777b9bb | 630 | #else // Windows and OS/2 |
7af89395 VZ |
631 | #define wxFILE_SEP_PATH wxFILE_SEP_PATH_DOS |
632 | #define wxPATH_SEP wxPATH_SEP_DOS | |
c801d85f KB |
633 | #endif // Unix/Windows |
634 | ||
92abb45d VZ |
635 | // this is useful for wxString::IsSameAs(): to compare two file names use |
636 | // filename1.IsSameAs(filename2, wxARE_FILENAMES_CASE_SENSITIVE) | |
28e5e577 | 637 | #if defined(__UNIX__) && !defined(__DARWIN__) && !defined(__OS2__) |
a62848fd | 638 | #define wxARE_FILENAMES_CASE_SENSITIVE true |
3369df87 | 639 | #else // Windows, Mac OS and OS/2 |
a62848fd | 640 | #define wxARE_FILENAMES_CASE_SENSITIVE false |
92abb45d VZ |
641 | #endif // Unix/Windows |
642 | ||
c801d85f | 643 | // is the char a path separator? |
9d2f3c71 | 644 | inline bool wxIsPathSeparator(wxChar c) |
903b61cc VZ |
645 | { |
646 | // under DOS/Windows we should understand both Unix and DOS file separators | |
a62848fd | 647 | #if ( defined(__UNIX__) && !defined(__OS2__) )|| defined(__MAC__) |
903b61cc VZ |
648 | return c == wxFILE_SEP_PATH; |
649 | #else | |
650 | return c == wxFILE_SEP_PATH_DOS || c == wxFILE_SEP_PATH_UNIX; | |
651 | #endif | |
652 | } | |
c801d85f KB |
653 | |
654 | // does the string ends with path separator? | |
52de37c7 | 655 | WXDLLIMPEXP_BASE bool wxEndsWithPathSeparator(const wxString& filename); |
c801d85f | 656 | |
92abb45d VZ |
657 | // split the full path into path (including drive for DOS), name and extension |
658 | // (understands both '/' and '\\') | |
52de37c7 | 659 | WXDLLIMPEXP_BASE void wxSplitPath(const wxString& fileName, |
92abb45d VZ |
660 | wxString *pstrPath, |
661 | wxString *pstrName, | |
662 | wxString *pstrExt); | |
663 | ||
c801d85f | 664 | // find a file in a list of directories, returns false if not found |
52de37c7 | 665 | WXDLLIMPEXP_BASE bool wxFindFileInPath(wxString *pStr, const wxString& szPath, const wxString& szFile); |
c801d85f | 666 | |
631f1bfe JS |
667 | // Get the OS directory if appropriate (such as the Windows directory). |
668 | // On non-Windows platform, probably just return the empty string. | |
bddd7a8d | 669 | WXDLLIMPEXP_BASE wxString wxGetOSDirectory(); |
631f1bfe | 670 | |
2c5e5cbd VS |
671 | #if wxUSE_DATETIME |
672 | ||
a47ce4a7 | 673 | // Get file modification time |
bddd7a8d | 674 | WXDLLIMPEXP_BASE time_t wxFileModificationTime(const wxString& filename); |
a47ce4a7 | 675 | |
2c5e5cbd VS |
676 | #endif // wxUSE_DATETIME |
677 | ||
9e152a55 WS |
678 | // Parses the wildCard, returning the number of filters. |
679 | // Returns 0 if none or if there's a problem, | |
680 | // The arrays will contain an equal number of items found before the error. | |
681 | // wildCard is in the form: | |
682 | // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png" | |
daf32463 | 683 | WXDLLIMPEXP_BASE int wxParseCommonDialogsFilter(const wxString& wildCard, wxArrayString& descriptions, wxArrayString& filters); |
9e152a55 | 684 | |
45ea509a VZ |
685 | // ---------------------------------------------------------------------------- |
686 | // classes | |
687 | // ---------------------------------------------------------------------------- | |
688 | ||
8482e4bd VZ |
689 | #ifdef __UNIX__ |
690 | ||
691 | // set umask to the given value in ctor and reset it to the old one in dtor | |
692 | class WXDLLIMPEXP_BASE wxUmaskChanger | |
693 | { | |
694 | public: | |
695 | // change the umask to the given one if it is not -1: this allows to write | |
696 | // the same code whether you really want to change umask or not, as is in | |
697 | // wxFileConfig::Flush() for example | |
698 | wxUmaskChanger(int umaskNew) | |
699 | { | |
835fab50 | 700 | m_umaskOld = umaskNew == -1 ? -1 : (int)umask((mode_t)umaskNew); |
8482e4bd VZ |
701 | } |
702 | ||
703 | ~wxUmaskChanger() | |
704 | { | |
705 | if ( m_umaskOld != -1 ) | |
706 | umask((mode_t)m_umaskOld); | |
707 | } | |
708 | ||
709 | private: | |
710 | int m_umaskOld; | |
711 | }; | |
712 | ||
713 | // this macro expands to an "anonymous" wxUmaskChanger object under Unix and | |
714 | // nothing elsewhere | |
715 | #define wxCHANGE_UMASK(m) wxUmaskChanger wxMAKE_UNIQUE_NAME(umaskChanger_)(m) | |
716 | ||
717 | #else // !__UNIX__ | |
718 | ||
719 | #define wxCHANGE_UMASK(m) | |
720 | ||
721 | #endif // __UNIX__/!__UNIX__ | |
722 | ||
723 | ||
c801d85f | 724 | // Path searching |
8daf3c36 | 725 | class WXDLLIMPEXP_BASE wxPathList : public wxArrayString |
c801d85f | 726 | { |
a6f6393c | 727 | public: |
8daf3c36 VZ |
728 | wxPathList() {} |
729 | wxPathList(const wxArrayString &arr) | |
730 | { Add(arr); } | |
731 | ||
7af89395 VZ |
732 | // Adds all paths in environment variable |
733 | void AddEnvList(const wxString& envVariable); | |
c330a2cf | 734 | |
8daf3c36 | 735 | // Adds given path to this list |
34e2d943 | 736 | bool Add(const wxString& path); |
8daf3c36 VZ |
737 | void Add(const wxArrayString &paths); |
738 | ||
7af89395 | 739 | // Find the first full path for which the file exists |
8daf3c36 VZ |
740 | wxString FindValidPath(const wxString& filename) const; |
741 | ||
7af89395 VZ |
742 | // Find the first full path for which the file exists; ensure it's an |
743 | // absolute path that gets returned. | |
8daf3c36 VZ |
744 | wxString FindAbsoluteValidPath(const wxString& filename) const; |
745 | ||
7af89395 | 746 | // Given full path and filename, add path to list |
34e2d943 | 747 | bool EnsureFileAccessible(const wxString& path); |
a6f6393c | 748 | |
34e2d943 | 749 | #if WXWIN_COMPATIBILITY_2_6 |
8daf3c36 VZ |
750 | // Returns true if the path is in the list |
751 | wxDEPRECATED( bool Member(const wxString& path) const ); | |
34e2d943 | 752 | #endif |
c801d85f KB |
753 | }; |
754 | ||
8daf3c36 | 755 | #endif // _WX_FILEFN_H_ |