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