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