]> git.saurik.com Git - wxWidgets.git/blame - src/common/filefn.cpp
replacing old core graphics with new graphics context implementation
[wxWidgets.git] / src / common / filefn.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
6d3d756a 2// Name: src/common/filefn.cpp
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
e90c1d2a
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
c801d85f
KB
22
23#ifdef __BORLANDC__
7af89395 24 #pragma hdrstop
c801d85f
KB
25#endif
26
8898456d
WS
27#ifndef WX_PRECOMP
28 #include "wx/intl.h"
e4db172a 29 #include "wx/log.h"
de6185e2 30 #include "wx/utils.h"
8898456d
WS
31#endif
32
6294ac2e 33#include "wx/file.h" // This does include filefn.h
9e8d8607 34#include "wx/filename.h"
8ff12342 35#include "wx/dir.h"
c801d85f 36
8daf3c36
VZ
37#include "wx/tokenzr.h"
38
fd3f686c 39// there are just too many of those...
3f4a0c5b 40#ifdef __VISUALC__
fd3f686c
VZ
41 #pragma warning(disable:4706) // assignment within conditional expression
42#endif // VC++
43
c801d85f
KB
44#include <ctype.h>
45#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
13ff2485 48#if !wxONLY_WATCOM_EARLIER_THAN(1,4)
3f4a0c5b
VZ
49 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
50 #include <errno.h>
51 #endif
c801d85f 52#endif
3f4a0c5b 53
76a5e5d2 54#if defined(__WXMAC__)
28301089 55 #include "wx/mac/private.h" // includes mac headers
76a5e5d2
SC
56#endif
57
34138703 58#ifdef __WINDOWS__
18a1516c 59 #include "wx/msw/private.h"
3d5231db 60 #include "wx/msw/mslu.h"
b0091f58 61
3ffbc733
VZ
62 // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
63 //
64 // note that it must be included after <windows.h>
65 #ifdef __GNUWIN32__
e02e8816
MB
66 #ifdef __CYGWIN__
67 #include <sys/cygwin.h>
68 #endif
3ffbc733 69 #endif // __GNUWIN32__
18a1516c
MW
70
71 // io.h is needed for _get_osfhandle()
72 // Already included by filefn.h for many Windows compilers
73 #if defined __MWERKS__ || defined __CYGWIN__
74 #include <io.h>
75 #endif
3ffbc733 76#endif // __WINDOWS__
c801d85f 77
68351053 78#if defined(__VMS__)
3c70014d
MW
79 #include <fab.h>
80#endif
81
13b1f8a7
VZ
82// TODO: Borland probably has _wgetcwd as well?
83#ifdef _MSC_VER
84 #define HAVE_WGETCWD
85#endif
86
e90c1d2a
VZ
87// ----------------------------------------------------------------------------
88// constants
89// ----------------------------------------------------------------------------
90
13b1f8a7
VZ
91#ifndef _MAXPATHLEN
92 #define _MAXPATHLEN 1024
93#endif
c801d85f 94
da2b4b7a 95#ifdef __WXMAC__
2d4e4f80 96# include "MoreFilesX.h"
17dff81c 97#endif
c801d85f 98
e90c1d2a
VZ
99// ----------------------------------------------------------------------------
100// private globals
101// ----------------------------------------------------------------------------
102
1f1070e2 103// MT-FIXME: get rid of this horror and all code using it
e90c1d2a
VZ
104static wxChar wxFileFunctionsBuffer[4*_MAXPATHLEN];
105
5d33ed2c
DW
106#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
107//
32e768ae 108// VisualAge C++ V4.0 cannot have any external linkage const decs
5d33ed2c
DW
109// in headers included by more than one primary source
110//
30984dea 111const int wxInvalidOffset = -1;
5d33ed2c
DW
112#endif
113
a339970a
VZ
114// ----------------------------------------------------------------------------
115// macros
116// ----------------------------------------------------------------------------
117
118// we need to translate Mac filenames before passing them to OS functions
334d2448 119#define OS_FILENAME(s) (s.fn_str())
a339970a 120
e90c1d2a
VZ
121// ============================================================================
122// implementation
123// ============================================================================
124
92980e90
RR
125#ifdef wxNEED_WX_UNISTD_H
126
127WXDLLEXPORT int wxStat( const wxChar *file_name, wxStructStat *buf )
128{
129 return stat( wxConvFile.cWX2MB( file_name ), buf );
130}
131
132WXDLLEXPORT int wxAccess( const wxChar *pathname, int mode )
133{
134 return access( wxConvFile.cWX2MB( pathname ), mode );
135}
136
137WXDLLEXPORT int wxOpen( const wxChar *pathname, int flags, mode_t mode )
138{
139 return open( wxConvFile.cWX2MB( pathname ), flags, mode );
140}
141
142#endif
143 // wxNEED_WX_UNISTD_H
144
145// ----------------------------------------------------------------------------
146// wxPathList
147// ----------------------------------------------------------------------------
148
31a8bf3f 149void wxPathList::Add(const wxString& path)
f526f752 150{
31a8bf3f
RR
151 // add a path separator to force wxFileName to interpret it always as a directory
152 // (i.e. if we are called with '/home/user' we want to consider it a folder and
153 // not, as wxFileName would consider, a filename).
8daf3c36 154 wxFileName fn(path + wxFileName::GetPathSeparator());
31a8bf3f
RR
155
156 // add only normalized relative/absolute paths
157 fn.Normalize(wxPATH_NORM_DOTS|wxPATH_NORM_TILDE|wxPATH_NORM_LONG|wxPATH_NORM_ENV_VARS);
f526f752 158
8daf3c36
VZ
159 wxString toadd = fn.GetPath();
160 if (Index(toadd) == wxNOT_FOUND)
161 wxArrayString::Add(toadd); // do not add duplicates
f526f752
MB
162}
163
8daf3c36 164void wxPathList::Add(const wxArrayString &arr)
c801d85f 165{
8daf3c36
VZ
166 for (size_t j=0; j < arr.GetCount(); j++)
167 Add(arr[j]);
c801d85f
KB
168}
169
170// Add paths e.g. from the PATH environment variable
7bea7b91 171void wxPathList::AddEnvList (const wxString& WXUNUSED_IN_WINCE(envVariable))
c801d85f 172{
1c193821
JS
173 // No environment variables on WinCE
174#ifndef __WXWINCE__
8daf3c36
VZ
175
176 // The space has been removed from the tokenizers, otherwise a
177 // path such as "C:\Program Files" would be split into 2 paths:
178 // "C:\Program" and "Files"; this is true for both Windows and Unix.
179
db4444f0 180 static const wxChar PATH_TOKS[] =
5a3912f2 181#if defined(__WINDOWS__) || defined(__OS2__)
3103e8a9 182 wxT(";"); // Don't separate with colon in DOS (used for drive)
c801d85f 183#else
8daf3c36 184 wxT(":;");
c801d85f
KB
185#endif
186
8daf3c36
VZ
187 wxString val;
188 if ( wxGetEnv(envVariable, &val) )
c801d85f 189 {
8daf3c36
VZ
190 // split into an array of string the value of the env var
191 wxArrayString arr = wxStringTokenize(val, PATH_TOKS);
192 WX_APPEND_ARRAY(*this, arr);
c801d85f 193 }
7bea7b91 194#endif // !__WXWINCE__
c801d85f
KB
195}
196
197// Given a full filename (with path), ensure that that file can
198// be accessed again USING FILENAME ONLY by adding the path
199// to the list if not already there.
200void wxPathList::EnsureFileAccessible (const wxString& path)
201{
7af89395 202 wxString path_only(wxPathOnly(path));
a6f4dbbd 203 if ( !path_only.empty() )
7af89395 204 {
8daf3c36 205 if ( Index(path_only) == wxNOT_FOUND )
7af89395
VZ
206 Add(path_only);
207 }
c801d85f
KB
208}
209
8daf3c36
VZ
210// deprecated !
211bool wxPathList::Member (const wxString& path) const
c801d85f 212{
8daf3c36 213 return Index(path) != wxNOT_FOUND;
c801d85f
KB
214}
215
8daf3c36 216wxString wxPathList::FindValidPath (const wxString& file) const
c801d85f 217{
31a8bf3f
RR
218 // normalize the given string as it could be a path + a filename
219 // and not only a filename
8daf3c36
VZ
220 wxFileName fn(file);
221 wxString strend;
c801d85f 222
31a8bf3f
RR
223 // NB: normalize without making absolute !
224 fn.Normalize(wxPATH_NORM_DOTS|wxPATH_NORM_TILDE|wxPATH_NORM_LONG|wxPATH_NORM_ENV_VARS);
225
226 wxASSERT_MSG(!fn.IsDir(), wxT("Cannot search for directories; only for files"));
8daf3c36 227 if (fn.IsAbsolute())
31a8bf3f 228 strend = fn.GetFullName(); // search for the file name and ignore the path part
8daf3c36
VZ
229 else
230 strend = fn.GetFullPath();
c801d85f 231
8daf3c36 232 for (size_t i=0; i<GetCount(); i++)
c801d85f 233 {
8daf3c36
VZ
234 wxString strstart = Item(i);
235 if (!strstart.IsEmpty() && strstart.Last() != wxFileName::GetPathSeparator())
236 strstart += wxFileName::GetPathSeparator();
c801d85f 237
8daf3c36
VZ
238 if (wxFileExists(strstart + strend))
239 return strstart + strend; // Found!
240 }
241
242 return wxEmptyString; // Not found
c801d85f
KB
243}
244
8daf3c36 245wxString wxPathList::FindAbsoluteValidPath (const wxString& file) const
c801d85f 246{
e90c1d2a 247 wxString f = FindValidPath(file);
fc447c7f 248 if ( f.empty() || wxIsAbsolutePath(f) )
e90c1d2a
VZ
249 return f;
250
ce045aed 251 wxString buf = ::wxGetCwd();
13b1f8a7 252
e90c1d2a 253 if ( !wxEndsWithPathSeparator(buf) )
c801d85f 254 {
e90c1d2a 255 buf += wxFILE_SEP_PATH;
c801d85f 256 }
e90c1d2a
VZ
257 buf += f;
258
259 return buf;
c801d85f
KB
260}
261
8daf3c36
VZ
262// ----------------------------------------------------------------------------
263// miscellaneous global functions (TOFIX!)
264// ----------------------------------------------------------------------------
265
266static inline wxChar* MYcopystring(const wxString& s)
267{
268 wxChar* copy = new wxChar[s.length() + 1];
269 return wxStrcpy(copy, s.c_str());
270}
271
272static inline wxChar* MYcopystring(const wxChar* s)
273{
274 wxChar* copy = new wxChar[wxStrlen(s) + 1];
275 return wxStrcpy(copy, s);
276}
277
278
3f4a0c5b 279bool
c801d85f
KB
280wxFileExists (const wxString& filename)
281{
68351053
WS
282#if defined(__WXPALMOS__)
283 return false;
284#elif defined(__WIN32__) && !defined(__WXMICROWIN__)
4ea2c29f
VZ
285 // we must use GetFileAttributes() instead of the ANSI C functions because
286 // it can cope with network (UNC) paths unlike them
2db300c6 287 DWORD ret = ::GetFileAttributes(filename);
2db300c6 288
a28ae409 289 return (ret != (DWORD)-1) && !(ret & FILE_ATTRIBUTE_DIRECTORY);
4ea2c29f 290#else // !__WIN32__
27d98837
MW
291 #ifndef S_ISREG
292 #define S_ISREG(mode) ((mode) & S_IFREG)
293 #endif
4ea2c29f 294 wxStructStat st;
f3660dcb 295#ifndef wxNEED_WX_UNISTD_H
27d98837 296 return (wxStat( filename.fn_str() , &st) == 0 && S_ISREG(st.st_mode))
bf58daba
SN
297#ifdef __OS2__
298 || (errno == EACCES) // if access is denied something with that name
299 // exists and is opened in exclusive mode.
300#endif
301 ;
f3660dcb 302#else
27d98837 303 return wxStat( filename , &st) == 0 && S_ISREG(st.st_mode);
f3660dcb 304#endif
4ea2c29f 305#endif // __WIN32__/!__WIN32__
c801d85f
KB
306}
307
3f4a0c5b 308bool
c801d85f
KB
309wxIsAbsolutePath (const wxString& filename)
310{
b494c48b 311 if (!filename.empty())
2985ad5d 312 {
e8e1d09e
GD
313#if defined(__WXMAC__) && !defined(__DARWIN__)
314 // Classic or Carbon CodeWarrior like
315 // Carbon with Apple DevTools is Unix like
2db300c6 316
2985ad5d
RR
317 // This seems wrong to me, but there is no fix. since
318 // "MacOS:MyText.txt" is absolute whereas "MyDir:MyText.txt"
319 // is not. Or maybe ":MyDir:MyText.txt" has to be used? RR.
2985ad5d 320 if (filename.Find(':') != wxNOT_FOUND && filename[0] != ':')
79e162f5 321 return true ;
cd378f94 322#else
e8e1d09e
GD
323 // Unix like or Windows
324 if (filename[0] == wxT('/'))
79e162f5 325 return true;
e8e1d09e 326#endif
c801d85f 327#ifdef __VMS__
e8e1d09e 328 if ((filename[0] == wxT('[') && filename[1] != wxT('.')))
79e162f5 329 return true;
c801d85f 330#endif
5a3912f2 331#if defined(__WINDOWS__) || defined(__OS2__)
e8e1d09e
GD
332 // MSDOS like
333 if (filename[0] == wxT('\\') || (wxIsalpha (filename[0]) && filename[1] == wxT(':')))
79e162f5 334 return true;
c801d85f 335#endif
c801d85f 336 }
79e162f5 337 return false ;
c801d85f
KB
338}
339
340/*
341 * Strip off any extension (dot something) from end of file,
342 * IF one exists. Inserts zero into buffer.
343 *
344 */
3f4a0c5b 345
50920146 346void wxStripExtension(wxChar *buffer)
c801d85f 347{
b0c5cd0f
WS
348 int len = wxStrlen(buffer);
349 int i = len-1;
350 while (i > 0)
c801d85f 351 {
b0c5cd0f
WS
352 if (buffer[i] == wxT('.'))
353 {
354 buffer[i] = 0;
355 break;
356 }
357 i --;
c801d85f 358 }
c801d85f
KB
359}
360
47fa7969
JS
361void wxStripExtension(wxString& buffer)
362{
a6f4dbbd 363 //RN: Be careful about the handling the case where
ce045aed
WS
364 //buffer.length() == 0
365 for(size_t i = buffer.length() - 1; i != wxString::npos; --i)
47fa7969 366 {
2cbfa061
RN
367 if (buffer.GetChar(i) == wxT('.'))
368 {
369 buffer = buffer.Left(i);
370 break;
371 }
47fa7969 372 }
47fa7969
JS
373}
374
c801d85f 375// Destructive removal of /./ and /../ stuff
50920146 376wxChar *wxRealPath (wxChar *path)
c801d85f 377{
2049ba38 378#ifdef __WXMSW__
223d09f6 379 static const wxChar SEP = wxT('\\');
2b5f62a0 380 wxUnix2DosFilename(path);
c801d85f 381#else
223d09f6 382 static const wxChar SEP = wxT('/');
c801d85f
KB
383#endif
384 if (path[0] && path[1]) {
385 /* MATTHEW: special case "/./x" */
50920146 386 wxChar *p;
223d09f6 387 if (path[2] == SEP && path[1] == wxT('.'))
c801d85f
KB
388 p = &path[0];
389 else
390 p = &path[2];
391 for (; *p; p++)
392 {
3f4a0c5b
VZ
393 if (*p == SEP)
394 {
223d09f6 395 if (p[1] == wxT('.') && p[2] == wxT('.') && (p[3] == SEP || p[3] == wxT('\0')))
3f4a0c5b 396 {
50920146 397 wxChar *q;
f0e1c343
JS
398 for (q = p - 1; q >= path && *q != SEP; q--)
399 {
400 // Empty
401 }
402
223d09f6 403 if (q[0] == SEP && (q[1] != wxT('.') || q[2] != wxT('.') || q[3] != SEP)
3f4a0c5b
VZ
404 && (q - 1 <= path || q[-1] != SEP))
405 {
50920146 406 wxStrcpy (q, p + 3);
223d09f6 407 if (path[0] == wxT('\0'))
3f4a0c5b
VZ
408 {
409 path[0] = SEP;
223d09f6 410 path[1] = wxT('\0');
3f4a0c5b 411 }
5a3912f2 412#if defined(__WXMSW__) || defined(__OS2__)
3f4a0c5b 413 /* Check that path[2] is NULL! */
223d09f6 414 else if (path[1] == wxT(':') && !path[2])
3f4a0c5b
VZ
415 {
416 path[2] = SEP;
223d09f6 417 path[3] = wxT('\0');
3f4a0c5b
VZ
418 }
419#endif
420 p = q - 1;
421 }
422 }
223d09f6 423 else if (p[1] == wxT('.') && (p[2] == SEP || p[2] == wxT('\0')))
50920146 424 wxStrcpy (p, p + 2);
3f4a0c5b 425 }
c801d85f
KB
426 }
427 }
428 return path;
429}
430
ce045aed
WS
431wxString wxRealPath(const wxString& path)
432{
433 wxChar *buf1=MYcopystring(path);
434 wxChar *buf2=wxRealPath(buf1);
435 wxString buf(buf2);
436 delete [] buf1;
437 return buf;
438}
439
440
c801d85f 441// Must be destroyed
50920146 442wxChar *wxCopyAbsolutePath(const wxString& filename)
c801d85f 443{
ce045aed
WS
444 if (filename.empty())
445 return (wxChar *) NULL;
c801d85f 446
ce045aed
WS
447 if (! wxIsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer, filename)))
448 {
449 wxString buf = ::wxGetCwd();
450 wxChar ch = buf.Last();
2049ba38 451#ifdef __WXMSW__
ce045aed
WS
452 if (ch != wxT('\\') && ch != wxT('/'))
453 buf << wxT("\\");
c801d85f 454#else
ce045aed
WS
455 if (ch != wxT('/'))
456 buf << wxT("/");
c801d85f 457#endif
ce045aed
WS
458 buf << wxFileFunctionsBuffer;
459 buf = wxRealPath( buf );
460 return MYcopystring( buf );
461 }
462 return MYcopystring( wxFileFunctionsBuffer );
c801d85f
KB
463}
464
465/*-
466 Handles:
467 ~/ => home dir
468 ~user/ => user's home dir
469 If the environment variable a = "foo" and b = "bar" then:
470 Unix:
3f4a0c5b
VZ
471 $a => foo
472 $a$b => foobar
473 $a.c => foo.c
474 xxx$a => xxxfoo
475 ${a}! => foo!
476 $(b)! => bar!
477 \$a => \$a
c801d85f 478 MSDOS:
3f4a0c5b
VZ
479 $a ==> $a
480 $(a) ==> foo
481 $(a)$b ==> foo$b
482 $(a)$(b)==> foobar
483 test.$$ ==> test.$$
c801d85f
KB
484 */
485
486/* input name in name, pathname output to buf. */
487
50920146 488wxChar *wxExpandPath(wxChar *buf, const wxChar *name)
c801d85f 489{
50920146
OK
490 register wxChar *d, *s, *nm;
491 wxChar lnm[_MAXPATHLEN];
33ac7e6f 492 int q;
c801d85f
KB
493
494 // Some compilers don't like this line.
223d09f6 495// const wxChar trimchars[] = wxT("\n \t");
c801d85f 496
50920146 497 wxChar trimchars[4];
223d09f6
KB
498 trimchars[0] = wxT('\n');
499 trimchars[1] = wxT(' ');
500 trimchars[2] = wxT('\t');
c801d85f
KB
501 trimchars[3] = 0;
502
2049ba38 503#ifdef __WXMSW__
a62848fd 504 const wxChar SEP = wxT('\\');
c801d85f 505#else
a62848fd 506 const wxChar SEP = wxT('/');
c801d85f 507#endif
223d09f6
KB
508 buf[0] = wxT('\0');
509 if (name == NULL || *name == wxT('\0'))
3f4a0c5b 510 return buf;
f526f752 511 nm = MYcopystring(name); // Make a scratch copy
50920146 512 wxChar *nm_tmp = nm;
c801d85f
KB
513
514 /* Skip leading whitespace and cr */
50920146 515 while (wxStrchr((wxChar *)trimchars, *nm) != NULL)
3f4a0c5b 516 nm++;
c801d85f 517 /* And strip off trailing whitespace and cr */
50920146
OK
518 s = nm + (q = wxStrlen(nm)) - 1;
519 while (q-- && wxStrchr((wxChar *)trimchars, *s) != NULL)
223d09f6 520 *s = wxT('\0');
c801d85f
KB
521
522 s = nm;
523 d = lnm;
2049ba38 524#ifdef __WXMSW__
dc259b79 525 q = FALSE;
c801d85f 526#else
223d09f6 527 q = nm[0] == wxT('\\') && nm[1] == wxT('~');
c801d85f
KB
528#endif
529
530 /* Expand inline environment variables */
c2ff79b1
DW
531#ifdef __VISAGECPP__
532 while (*d)
533 {
534 *d++ = *s;
223d09f6 535 if(*s == wxT('\\'))
c2ff79b1
DW
536 {
537 *(d - 1) = *++s;
538 if (*d)
539 {
540 s++;
541 continue;
542 }
543 else
544 break;
545 }
546 else
547#else
22394d24 548 while ((*d++ = *s) != 0) {
c2ff79b1 549# ifndef __WXMSW__
223d09f6 550 if (*s == wxT('\\')) {
c40158e4 551 if ((*(d - 1) = *++s)!=0) {
3f4a0c5b
VZ
552 s++;
553 continue;
554 } else
555 break;
556 } else
c2ff79b1 557# endif
c801d85f 558#endif
1c193821
JS
559 // No env variables on WinCE
560#ifndef __WXWINCE__
2049ba38 561#ifdef __WXMSW__
223d09f6 562 if (*s++ == wxT('$') && (*s == wxT('{') || *s == wxT(')')))
c801d85f 563#else
223d09f6 564 if (*s++ == wxT('$'))
3f4a0c5b
VZ
565#endif
566 {
50920146 567 register wxChar *start = d;
223d09f6 568 register int braces = (*s == wxT('{') || *s == wxT('('));
50920146 569 register wxChar *value;
22394d24 570 while ((*d++ = *s) != 0)
223d09f6 571 if (braces ? (*s == wxT('}') || *s == wxT(')')) : !(wxIsalnum(*s) || *s == wxT('_')) )
3f4a0c5b
VZ
572 break;
573 else
574 s++;
575 *--d = 0;
50920146 576 value = wxGetenv(braces ? start + 1 : start);
3f4a0c5b 577 if (value) {
f0e1c343
JS
578 for ((d = start - 1); (*d++ = *value++) != 0;)
579 {
580 // Empty
581 }
582
3f4a0c5b
VZ
583 d--;
584 if (braces && *s)
585 s++;
586 }
587 }
1c193821
JS
588#endif
589 // __WXWINCE__
c801d85f
KB
590 }
591
592 /* Expand ~ and ~user */
593 nm = lnm;
223d09f6 594 if (nm[0] == wxT('~') && !q)
c801d85f 595 {
3f4a0c5b
VZ
596 /* prefix ~ */
597 if (nm[1] == SEP || nm[1] == 0)
598 { /* ~/filename */
f6bcfd97 599 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
b494c48b 600 if ((s = WXSTRINGCAST wxGetUserHome(wxEmptyString)) != NULL) {
3f4a0c5b
VZ
601 if (*++nm)
602 nm++;
603 }
c801d85f 604 } else
3f4a0c5b 605 { /* ~user/filename */
50920146
OK
606 register wxChar *nnm;
607 register wxChar *home;
f0e1c343
JS
608 for (s = nm; *s && *s != SEP; s++)
609 {
610 // Empty
611 }
3f4a0c5b 612 int was_sep; /* MATTHEW: Was there a separator, or NULL? */
c801d85f 613 was_sep = (*s == SEP);
3f4a0c5b
VZ
614 nnm = *s ? s + 1 : s;
615 *s = 0;
f6bcfd97 616 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
7448de8d
WS
617 if ((home = WXSTRINGCAST wxGetUserHome(wxString(nm + 1))) == NULL)
618 {
619 if (was_sep) /* replace only if it was there: */
620 *s = SEP;
295272bd 621 s = NULL;
7448de8d
WS
622 }
623 else
624 {
3f4a0c5b
VZ
625 nm = nnm;
626 s = home;
627 }
628 }
c801d85f
KB
629 }
630
631 d = buf;
632 if (s && *s) { /* MATTHEW: s could be NULL if user '~' didn't exist */
3f4a0c5b 633 /* Copy home dir */
223d09f6 634 while (wxT('\0') != (*d++ = *s++))
3f4a0c5b
VZ
635 /* loop */;
636 // Handle root home
637 if (d - 1 > buf && *(d - 2) != SEP)
638 *(d - 1) = SEP;
c801d85f
KB
639 }
640 s = nm;
f0e1c343
JS
641 while ((*d++ = *s++) != 0)
642 {
643 // Empty
644 }
c801d85f
KB
645 delete[] nm_tmp; // clean up alloc
646 /* Now clean up the buffer */
647 return wxRealPath(buf);
648}
649
c801d85f
KB
650/* Contract Paths to be build upon an environment variable
651 component:
652
653 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
654
655 The call wxExpandPath can convert these back!
656 */
50920146 657wxChar *
7bea7b91
WS
658wxContractPath (const wxString& filename,
659 const wxString& WXUNUSED_IN_WINCE(envname),
660 const wxString& user)
c801d85f 661{
50920146 662 static wxChar dest[_MAXPATHLEN];
c801d85f 663
b494c48b 664 if (filename.empty())
50920146 665 return (wxChar *) NULL;
c801d85f 666
50920146 667 wxStrcpy (dest, WXSTRINGCAST filename);
2049ba38 668#ifdef __WXMSW__
2b5f62a0 669 wxUnix2DosFilename(dest);
c801d85f
KB
670#endif
671
672 // Handle environment
999836aa 673 const wxChar *val;
1c193821 674#ifndef __WXWINCE__
999836aa 675 wxChar *tcp;
489f6cf7 676 if (!envname.empty() && (val = wxGetenv (WXSTRINGCAST envname)) != NULL &&
50920146 677 (tcp = wxStrstr (dest, val)) != NULL)
c801d85f 678 {
e90c1d2a 679 wxStrcpy (wxFileFunctionsBuffer, tcp + wxStrlen (val));
223d09f6
KB
680 *tcp++ = wxT('$');
681 *tcp++ = wxT('{');
50920146 682 wxStrcpy (tcp, WXSTRINGCAST envname);
223d09f6 683 wxStrcat (tcp, wxT("}"));
e90c1d2a 684 wxStrcat (tcp, wxFileFunctionsBuffer);
c801d85f 685 }
1c193821 686#endif
c801d85f
KB
687
688 // Handle User's home (ignore root homes!)
844ca096
VZ
689 val = wxGetUserHome (user);
690 if (!val)
691 return dest;
692
693 const size_t len = wxStrlen(val);
694 if (len <= 2)
695 return dest;
696
697 if (wxStrncmp(dest, val, len) == 0)
698 {
699 wxStrcpy(wxFileFunctionsBuffer, wxT("~"));
b494c48b 700 if (!user.empty())
844ca096
VZ
701 wxStrcat(wxFileFunctionsBuffer, (const wxChar*) user);
702 wxStrcat(wxFileFunctionsBuffer, dest + len);
703 wxStrcpy (dest, wxFileFunctionsBuffer);
704 }
c801d85f
KB
705
706 return dest;
707}
708
1f1070e2 709// Return just the filename, not the path (basename)
50920146 710wxChar *wxFileNameFromPath (wxChar *path)
c801d85f 711{
1f1070e2
VZ
712 wxString p = path;
713 wxString n = wxFileNameFromPath(p);
2db300c6 714
1f1070e2 715 return path + p.length() - n.length();
c801d85f
KB
716}
717
1f1070e2 718wxString wxFileNameFromPath (const wxString& path)
c801d85f 719{
1f1070e2
VZ
720 wxString name, ext;
721 wxFileName::SplitPath(path, NULL, &name, &ext);
2db300c6 722
1f1070e2
VZ
723 wxString fullname = name;
724 if ( !ext.empty() )
725 {
726 fullname << wxFILE_SEP_EXT << ext;
c801d85f 727 }
1f1070e2
VZ
728
729 return fullname;
c801d85f
KB
730}
731
732// Return just the directory, or NULL if no directory
50920146
OK
733wxChar *
734wxPathOnly (wxChar *path)
c801d85f 735{
e8e1d09e 736 if (path && *path)
c801d85f 737 {
e8e1d09e 738 static wxChar buf[_MAXPATHLEN];
2db300c6 739
e8e1d09e
GD
740 // Local copy
741 wxStrcpy (buf, path);
2db300c6 742
e8e1d09e
GD
743 int l = wxStrlen(path);
744 int i = l - 1;
2db300c6 745
e8e1d09e
GD
746 // Search backward for a backward or forward slash
747 while (i > -1)
748 {
749#if defined(__WXMAC__) && !defined(__DARWIN__)
750 // Classic or Carbon CodeWarrior like
751 // Carbon with Apple DevTools is Unix like
752 if (path[i] == wxT(':') )
753 {
754 buf[i] = 0;
755 return buf;
756 }
bedaf53e 757#else
e8e1d09e
GD
758 // Unix like or Windows
759 if (path[i] == wxT('/') || path[i] == wxT('\\'))
760 {
761 buf[i] = 0;
762 return buf;
763 }
bedaf53e 764#endif
c801d85f 765#ifdef __VMS__
e8e1d09e
GD
766 if (path[i] == wxT(']'))
767 {
768 buf[i+1] = 0;
769 return buf;
770 }
a339970a 771#endif
e8e1d09e 772 i --;
c801d85f 773 }
2db300c6 774
5a3912f2 775#if defined(__WXMSW__) || defined(__OS2__)
e8e1d09e
GD
776 // Try Drive specifier
777 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b 778 {
e8e1d09e
GD
779 // A:junk --> A:. (since A:.\junk Not A:\junk)
780 buf[2] = wxT('.');
781 buf[3] = wxT('\0');
782 return buf;
3f4a0c5b 783 }
c801d85f
KB
784#endif
785 }
e8e1d09e 786 return (wxChar *) NULL;
c801d85f
KB
787}
788
789// Return just the directory, or NULL if no directory
790wxString wxPathOnly (const wxString& path)
791{
b494c48b 792 if (!path.empty())
c801d85f 793 {
e8e1d09e 794 wxChar buf[_MAXPATHLEN];
2db300c6 795
e8e1d09e
GD
796 // Local copy
797 wxStrcpy (buf, WXSTRINGCAST path);
2db300c6 798
ce045aed 799 int l = path.length();
e8e1d09e
GD
800 int i = l - 1;
801
802 // Search backward for a backward or forward slash
803 while (i > -1)
804 {
805#if defined(__WXMAC__) && !defined(__DARWIN__)
806 // Classic or Carbon CodeWarrior like
807 // Carbon with Apple DevTools is Unix like
808 if (path[i] == wxT(':') )
809 {
810 buf[i] = 0;
811 return wxString(buf);
812 }
bedaf53e 813#else
e8e1d09e
GD
814 // Unix like or Windows
815 if (path[i] == wxT('/') || path[i] == wxT('\\'))
816 {
5c760b84
JS
817 // Don't return an empty string
818 if (i == 0)
819 i ++;
e8e1d09e
GD
820 buf[i] = 0;
821 return wxString(buf);
822 }
bedaf53e 823#endif
c801d85f 824#ifdef __VMS__
e8e1d09e
GD
825 if (path[i] == wxT(']'))
826 {
827 buf[i+1] = 0;
828 return wxString(buf);
829 }
a339970a 830#endif
e8e1d09e 831 i --;
c801d85f 832 }
2db300c6 833
5a3912f2 834#if defined(__WXMSW__) || defined(__OS2__)
e8e1d09e
GD
835 // Try Drive specifier
836 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b 837 {
e8e1d09e
GD
838 // A:junk --> A:. (since A:.\junk Not A:\junk)
839 buf[2] = wxT('.');
840 buf[3] = wxT('\0');
841 return wxString(buf);
3f4a0c5b 842 }
c801d85f
KB
843#endif
844 }
b494c48b 845 return wxEmptyString;
c801d85f
KB
846}
847
848// Utility for converting delimiters in DOS filenames to UNIX style
849// and back again - or we get nasty problems with delimiters.
850// Also, convert to lower case, since case is significant in UNIX.
851
da2b4b7a 852#if defined(__WXMAC__)
b0091f58 853
a2b77260
SC
854#if TARGET_API_MAC_OSX
855#define kDefaultPathStyle kCFURLPOSIXPathStyle
a1c34a78 856#else
a2b77260 857#define kDefaultPathStyle kCFURLHFSPathStyle
a1c34a78
GD
858#endif
859
a62848fd 860wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent )
a2b77260 861{
a62848fd 862 CFURLRef fullURLRef;
a2b77260
SC
863 fullURLRef = CFURLCreateFromFSRef(NULL, fsRef);
864 if ( additionalPathComponent )
865 {
866 CFURLRef parentURLRef = fullURLRef ;
867 fullURLRef = CFURLCreateCopyAppendingPathComponent(NULL, parentURLRef,
868 additionalPathComponent,false);
869 CFRelease( parentURLRef ) ;
870 }
a62848fd
WS
871 CFStringRef cfString = CFURLCopyFileSystemPath(fullURLRef, kDefaultPathStyle);
872 CFRelease( fullURLRef ) ;
739cb14a
SC
873 CFMutableStringRef cfMutableString = CFStringCreateMutableCopy(NULL, 0, cfString);
874 CFRelease( cfString );
a8d69700
VZ
875 CFStringNormalize(cfMutableString,kCFStringNormalizationFormC);
876 return wxMacCFStringHolder(cfMutableString).AsString();
bedaf53e 877}
e7549107 878
a62848fd 879OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef )
bedaf53e 880{
b1d4dd7a 881 OSStatus err = noErr ;
a8d69700
VZ
882 CFMutableStringRef cfMutableString = CFStringCreateMutableCopy(NULL, 0, wxMacCFStringHolder(path));
883 CFStringNormalize(cfMutableString,kCFStringNormalizationFormD);
739cb14a
SC
884 CFURLRef url = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfMutableString , kDefaultPathStyle, false);
885 CFRelease( cfMutableString );
a62848fd
WS
886 if ( NULL != url )
887 {
888 if ( CFURLGetFSRef(url, fsRef) == false )
889 err = fnfErr ;
a2b77260 890 CFRelease( url ) ;
bfc2bf62
SC
891 }
892 else
893 {
a2b77260 894 err = fnfErr ;
bfc2bf62 895 }
a2b77260 896 return err ;
bedaf53e
SC
897}
898
a62848fd 899wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname )
c4e41ce3 900{
a2b77260
SC
901 CFStringRef cfname = CFStringCreateWithCharacters( kCFAllocatorDefault,
902 uniname->unicode,
903 uniname->length );
739cb14a
SC
904 CFMutableStringRef cfMutableString = CFStringCreateMutableCopy(NULL, 0, cfname);
905 CFRelease( cfname );
a8d69700 906 CFStringNormalize(cfMutableString,kCFStringNormalizationFormC);
739cb14a 907 return wxMacCFStringHolder(cfMutableString).AsString() ;
c4e41ce3 908}
e7549107 909
fb743cab
SC
910#ifndef __LP64__
911
a2b77260 912wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
17dff81c 913{
a2b77260
SC
914 FSRef fsRef ;
915 if ( FSpMakeFSRef( spec , &fsRef) == noErr )
e7549107 916 {
a2b77260 917 return wxMacFSRefToPath( &fsRef ) ;
e7549107 918 }
a2b77260 919 return wxEmptyString ;
17dff81c 920}
e7549107 921
a2b77260 922void wxMacFilename2FSSpec( const wxString& path , FSSpec *spec )
e7549107 923{
a2b77260
SC
924 OSStatus err = noErr ;
925 FSRef fsRef ;
926 wxMacPathToFSRef( path , &fsRef ) ;
927 err = FSRefMakeFSSpec( &fsRef , spec ) ;
e7549107 928}
fb743cab 929#endif
12d67f8a 930
e8e1d09e
GD
931#endif // __WXMAC__
932
3f4a0c5b 933void
4603b4f9 934wxDos2UnixFilename (wxChar *s)
c801d85f
KB
935{
936 if (s)
937 while (*s)
938 {
4603b4f9
JS
939 if (*s == _T('\\'))
940 *s = _T('/');
e7549107 941#ifdef __WXMSW__
3f4a0c5b 942 else
254a2129 943 *s = (wxChar)wxTolower (*s); // Case INDEPENDENT
c801d85f 944#endif
3f4a0c5b 945 s++;
c801d85f
KB
946 }
947}
948
3f4a0c5b 949void
5a3912f2 950#if defined(__WXMSW__) || defined(__OS2__)
5b735202 951wxUnix2DosFilename (wxChar *s)
46dc76ba 952#else
5b735202 953wxUnix2DosFilename (wxChar *WXUNUSED(s) )
46dc76ba 954#endif
c801d85f
KB
955{
956// Yes, I really mean this to happen under DOS only! JACS
5a3912f2 957#if defined(__WXMSW__) || defined(__OS2__)
c801d85f
KB
958 if (s)
959 while (*s)
960 {
223d09f6
KB
961 if (*s == wxT('/'))
962 *s = wxT('\\');
3f4a0c5b 963 s++;
c801d85f
KB
964 }
965#endif
966}
967
968// Concatenate two files to form third
3f4a0c5b 969bool
c801d85f
KB
970wxConcatFiles (const wxString& file1, const wxString& file2, const wxString& file3)
971{
b0c5cd0f
WS
972#if wxUSE_FILE
973
974 wxFile in1(file1), in2(file2);
975 wxTempFile out(file3);
976
977 if ( !in1.IsOpened() || !in2.IsOpened() || !out.IsOpened() )
978 return false;
979
980 ssize_t ofs;
981 unsigned char buf[1024];
982
983 for( int i=0; i<2; i++)
c801d85f 984 {
b0c5cd0f
WS
985 wxFile *in = i==0 ? &in1 : &in2;
986 do{
987 if ( (ofs = in->Read(buf,WXSIZEOF(buf))) == wxInvalidOffset ) return false;
988 if ( ofs > 0 )
989 if ( !out.Write(buf,ofs) )
990 return false;
991 } while ( ofs == (ssize_t)WXSIZEOF(buf) );
c801d85f
KB
992 }
993
b0c5cd0f
WS
994 return out.Commit();
995
996#else
c801d85f 997
b0c5cd0f
WS
998 wxUnusedVar(file1);
999 wxUnusedVar(file2);
1000 wxUnusedVar(file3);
1001 return false;
c801d85f 1002
b0c5cd0f 1003#endif
c801d85f
KB
1004}
1005
1006// Copy files
3f4a0c5b 1007bool
4658c44e 1008wxCopyFile (const wxString& file1, const wxString& file2, bool overwrite)
c801d85f 1009{
04ef50df 1010#if defined(__WIN32__) && !defined(__WXMICROWIN__)
4658c44e
VZ
1011 // CopyFile() copies file attributes and modification time too, so use it
1012 // instead of our code if available
1013 //
1014 // NB: 3rd parameter is bFailIfExists i.e. the inverse of overwrite
564225a1
VZ
1015 if ( !::CopyFile(file1, file2, !overwrite) )
1016 {
1017 wxLogSysError(_("Failed to copy the file '%s' to '%s'"),
1018 file1.c_str(), file2.c_str());
1019
79e162f5 1020 return false;
564225a1 1021 }
5a3912f2 1022#elif defined(__OS2__)
18ed8e00 1023 if ( ::DosCopy((PSZ)file1.c_str(), (PSZ)file2.c_str(), overwrite ? DCPY_EXISTING : 0) != 0 )
79e162f5 1024 return false;
68351053
WS
1025#elif defined(__PALMOS__)
1026 // TODO with http://www.palmos.com/dev/support/docs/protein_books/Memory_Databases_Files/
1027 return false;
98438730 1028#elif wxUSE_FILE // !Win32
32f31043 1029
b1ac3b56 1030 wxStructStat fbuf;
32f31043 1031 // get permissions of file1
b1ac3b56 1032 if ( wxStat( file1.c_str(), &fbuf) != 0 )
32f31043
VZ
1033 {
1034 // the file probably doesn't exist or we haven't the rights to read
1035 // from it anyhow
1036 wxLogSysError(_("Impossible to get permissions for file '%s'"),
1037 file1.c_str());
79e162f5 1038 return false;
32f31043
VZ
1039 }
1040
1041 // open file1 for reading
1042 wxFile fileIn(file1, wxFile::read);
a339970a 1043 if ( !fileIn.IsOpened() )
79e162f5 1044 return false;
c801d85f 1045
32f31043
VZ
1046 // remove file2, if it exists. This is needed for creating
1047 // file2 with the correct permissions in the next step
4658c44e 1048 if ( wxFileExists(file2) && (!overwrite || !wxRemoveFile(file2)))
32f31043
VZ
1049 {
1050 wxLogSysError(_("Impossible to overwrite the file '%s'"),
1051 file2.c_str());
79e162f5 1052 return false;
32f31043
VZ
1053 }
1054
32f31043
VZ
1055 // reset the umask as we want to create the file with exactly the same
1056 // permissions as the original one
8482e4bd 1057 wxCHANGE_UMASK(0);
32f31043
VZ
1058
1059 // create file2 with the same permissions than file1 and open it for
1060 // writing
dc259b79 1061
32f31043 1062 wxFile fileOut;
4658c44e 1063 if ( !fileOut.Create(file2, overwrite, fbuf.st_mode & 0777) )
79e162f5 1064 return false;
c801d85f 1065
32f31043 1066 // copy contents of file1 to file2
a339970a
VZ
1067 char buf[4096];
1068 size_t count;
1069 for ( ;; )
c7386783 1070 {
a339970a
VZ
1071 count = fileIn.Read(buf, WXSIZEOF(buf));
1072 if ( fileIn.Error() )
79e162f5 1073 return false;
a339970a
VZ
1074
1075 // end of file?
1076 if ( !count )
1077 break;
1078
1079 if ( fileOut.Write(buf, count) < count )
79e162f5 1080 return false;
c7386783 1081 }
c801d85f 1082
abb74e97
VZ
1083 // we can expect fileIn to be closed successfully, but we should ensure
1084 // that fileOut was closed as some write errors (disk full) might not be
1085 // detected before doing this
1086 if ( !fileIn.Close() || !fileOut.Close() )
79e162f5 1087 return false;
abb74e97 1088
5fde6fcc 1089#if !defined(__VISAGECPP__) && !defined(__WXMAC__) || defined(__UNIX__)
abb74e97
VZ
1090 // no chmod in VA. Should be some permission API for HPFS386 partitions
1091 // however
c3396917 1092 if ( chmod(OS_FILENAME(file2), fbuf.st_mode) != 0 )
32f31043
VZ
1093 {
1094 wxLogSysError(_("Impossible to set permissions for the file '%s'"),
1095 file2.c_str());
79e162f5 1096 return false;
32f31043 1097 }
4658c44e 1098#endif // OS/2 || Mac
98438730
WS
1099
1100#else // !Win32 && ! wxUSE_FILE
1101
1102 // impossible to simulate with wxWidgets API
1103 wxUnusedVar(file1);
1104 wxUnusedVar(file2);
1105 wxUnusedVar(overwrite);
1106 return false;
1107
564225a1 1108#endif // __WXMSW__ && __WIN32__
4658c44e 1109
79e162f5 1110 return true;
c801d85f
KB
1111}
1112
3f4a0c5b 1113bool
57e988b8 1114wxRenameFile(const wxString& file1, const wxString& file2, bool overwrite)
c801d85f 1115{
57e988b8
VZ
1116 if ( !overwrite && wxFileExists(file2) )
1117 {
1118 wxLogSysError
1119 (
1120 _("Failed to rename the file '%s' to '%s' because the destination file already exists."),
1121 file1.c_str(), file2.c_str()
1122 );
1123
1124 return false;
1125 }
1126
68351053 1127#if !defined(__WXWINCE__) && !defined(__WXPALMOS__)
1c193821 1128 // Normal system call
c3396917 1129 if ( wxRename (file1, file2) == 0 )
79e162f5 1130 return true;
1c193821 1131#endif
a339970a 1132
c801d85f 1133 // Try to copy
57e988b8 1134 if (wxCopyFile(file1, file2, overwrite)) {
c801d85f 1135 wxRemoveFile(file1);
79e162f5 1136 return true;
c801d85f
KB
1137 }
1138 // Give up
79e162f5 1139 return false;
c801d85f
KB
1140}
1141
1142bool wxRemoveFile(const wxString& file)
1143{
161f4f73
VZ
1144#if defined(__VISUALC__) \
1145 || defined(__BORLANDC__) \
1146 || defined(__WATCOMC__) \
ba1e9d6c 1147 || defined(__DMC__) \
e874f867
SC
1148 || defined(__GNUWIN32__) \
1149 || (defined(__MWERKS__) && defined(__MSL__))
68351053 1150 int res = wxRemove(file);
c4e41ce3 1151#elif defined(__WXMAC__)
68351053
WS
1152 int res = unlink(wxFNCONV(file));
1153#elif defined(__WXPALMOS__)
1154 int res = 1;
1155 // TODO with VFSFileDelete()
c801d85f 1156#else
68351053 1157 int res = unlink(OS_FILENAME(file));
c801d85f 1158#endif
a339970a 1159
68351053 1160 return res == 0;
c801d85f
KB
1161}
1162
1a33c3ba 1163bool wxMkdir(const wxString& dir, int perm)
c801d85f 1164{
68351053
WS
1165#if defined(__WXPALMOS__)
1166 return false;
1167#elif defined(__WXMAC__) && !defined(__UNIX__)
1168 return (mkdir( wxFNCONV(dir) , 0 ) == 0);
7708abe9 1169#else // !Mac
50920146 1170 const wxChar *dirname = dir.c_str();
1a33c3ba 1171
c2ff79b1 1172 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
7708abe9 1173 // for the GNU compiler
5a3912f2 1174#if (!(defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WINE__) || defined(__WXMICROWIN__)
9c8cd106 1175 #if defined(MSVCRT)
79e162f5 1176 wxUnusedVar(perm);
2e38557f 1177 if ( mkdir(wxFNCONV(dirname)) != 0 )
9c8cd106
WS
1178 #else
1179 if ( mkdir(wxFNCONV(dirname), perm) != 0 )
2e38557f 1180 #endif
5a3912f2 1181#elif defined(__OS2__)
7a893a31 1182 wxUnusedVar(perm);
f6bcfd97 1183 if (::DosCreateDir((PSZ)dirname, NULL) != 0) // enhance for EAB's??
b916f809
VS
1184#elif defined(__DOS__)
1185 #if defined(__WATCOMC__)
1186 (void)perm;
1187 if ( wxMkDir(wxFNSTRINGCAST wxFNCONV(dirname)) != 0 )
1188 #elif defined(__DJGPP__)
1189 if ( mkdir(wxFNCONV(dirname), perm) != 0 )
1190 #else
1191 #error "Unsupported DOS compiler!"
1192 #endif
1193#else // !MSW, !DOS and !OS/2 VAC++
a6f4dbbd 1194 wxUnusedVar(perm);
1c193821
JS
1195#ifdef __WXWINCE__
1196 if ( !CreateDirectory(dirname, NULL) )
1197#else
a6f4dbbd 1198 if ( wxMkDir(dir.fn_str()) != 0 )
1c193821 1199#endif
7708abe9 1200#endif // !MSW/MSW
1a33c3ba
VZ
1201 {
1202 wxLogSysError(_("Directory '%s' couldn't be created"), dirname);
1203
79e162f5 1204 return false;
1a33c3ba
VZ
1205 }
1206
79e162f5 1207 return true;
e7549107 1208#endif // Mac/!Mac
c801d85f
KB
1209}
1210
1211bool wxRmdir(const wxString& dir, int WXUNUSED(flags))
1212{
68351053 1213#if defined(__VMS__)
79e162f5 1214 return false; //to be changed since rmdir exists in VMS7.x
5a3912f2 1215#elif defined(__OS2__)
1c193821 1216 return (::DosDeleteDir((PSZ)dir.c_str()) == 0);
68351053 1217#elif defined(__WXWINCE__)
1c193821 1218 return (CreateDirectory(dir, NULL) != 0);
68351053
WS
1219#elif defined(__WXPALMOS__)
1220 // TODO with VFSFileRename()
1221 return false;
a3ef5bf5 1222#else
1c193821 1223 return (wxRmDir(OS_FILENAME(dir)) == 0);
c801d85f 1224#endif
c801d85f
KB
1225}
1226
c801d85f 1227// does the path exists? (may have or not '/' or '\\' at the end)
da865fdd 1228bool wxDirExists(const wxChar *pszPathName)
c801d85f 1229{
f6bcfd97 1230 wxString strPath(pszPathName);
e32d659d 1231
5a3912f2 1232#if defined(__WINDOWS__) || defined(__OS2__)
f6bcfd97
BP
1233 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1234 // so remove all trailing backslashes from the path - but don't do this for
1235 // the pathes "d:\" (which are different from "d:") nor for just "\"
1236 while ( wxEndsWithPathSeparator(strPath) )
1237 {
1238 size_t len = strPath.length();
cc4a1ce1 1239 if ( len == 1 || (len == 3 && strPath[len - 2] == _T(':')) )
f6bcfd97 1240 break;
c801d85f 1241
f6bcfd97
BP
1242 strPath.Truncate(len - 1);
1243 }
1244#endif // __WINDOWS__
1245
5a3912f2
SN
1246#ifdef __OS2__
1247 // OS/2 can't handle "d:", it wants either "d:\" or "d:."
1d4f9cb7 1248 if (strPath.length() == 2 && strPath[1u] == _T(':'))
5a3912f2
SN
1249 strPath << _T('.');
1250#endif
1251
68351053
WS
1252#if defined(__WXPALMOS__)
1253 return false;
1254#elif defined(__WIN32__) && !defined(__WXMICROWIN__)
e32d659d
VZ
1255 // stat() can't cope with network paths
1256 DWORD ret = ::GetFileAttributes(strPath);
2db300c6 1257
a28ae409 1258 return (ret != (DWORD)-1) && (ret & FILE_ATTRIBUTE_DIRECTORY);
27b2dd53 1259#elif defined(__OS2__)
fe1f34f8
SN
1260 FILESTATUS3 Info = {{0}};
1261 APIRET rc = ::DosQueryPathInfo((PSZ)(WXSTRINGCAST strPath), FIL_STANDARD,
1262 (void*) &Info, sizeof(FILESTATUS3));
1263
1264 return ((rc == NO_ERROR) && (Info.attrFile & FILE_DIRECTORY)) ||
1265 (rc == ERROR_SHARING_VIOLATION);
1266 // If we got a sharing violation, there must be something with this name.
e32d659d 1267#else // !__WIN32__
4c97e024 1268
f6bcfd97 1269 wxStructStat st;
71c97a89 1270#ifndef __VISAGECPP__
5a3912f2 1271 return wxStat(strPath.c_str(), &st) == 0 && ((st.st_mode & S_IFMT) == S_IFDIR);
71c97a89
DW
1272#else
1273 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
92980e90 1274 return wxStat(pszPathName, &st) == 0 && (st.st_mode == S_IFDIR);
71c97a89
DW
1275#endif
1276
e32d659d 1277#endif // __WIN32__/!__WIN32__
c801d85f
KB
1278}
1279
1280// Get a temporary filename, opening and closing the file.
50920146 1281wxChar *wxGetTempFileName(const wxString& prefix, wxChar *buf)
c801d85f 1282{
e44d5a58
VZ
1283 wxString filename;
1284 if ( !wxGetTempFileName(prefix, filename) )
ade35f11 1285 return NULL;
c801d85f 1286
ade35f11
VZ
1287 if ( buf )
1288 wxStrcpy(buf, filename);
1289 else
f526f752 1290 buf = MYcopystring(filename);
c801d85f 1291
ade35f11 1292 return buf;
c801d85f
KB
1293}
1294
c0ab6adf
JS
1295bool wxGetTempFileName(const wxString& prefix, wxString& buf)
1296{
e44d5a58 1297#if wxUSE_FILE
522d32e5 1298 buf = wxFileName::CreateTempFileName(prefix);
ade35f11
VZ
1299
1300 return !buf.empty();
e44d5a58
VZ
1301#else // !wxUSE_FILE
1302 wxUnusedVar(prefix);
1303 wxUnusedVar(buf);
1304
1305 return false;
1306#endif // wxUSE_FILE/!wxUSE_FILE
c0ab6adf
JS
1307}
1308
c801d85f
KB
1309// Get first file name matching given wild card.
1310
8ff12342
VS
1311static wxDir *gs_dir = NULL;
1312static wxString gs_dirPath;
1313
1314wxString wxFindFirstFile(const wxChar *spec, int flags)
1315{
9a5ead1e 1316 wxSplitPath(spec, &gs_dirPath, NULL, NULL);
a6f4dbbd 1317 if ( gs_dirPath.empty() )
8ff12342 1318 gs_dirPath = wxT(".");
083f7497 1319 if ( !wxEndsWithPathSeparator(gs_dirPath ) )
8ff12342
VS
1320 gs_dirPath << wxFILE_SEP_PATH;
1321
1322 if (gs_dir)
1323 delete gs_dir;
1324 gs_dir = new wxDir(gs_dirPath);
2db300c6 1325
8ff12342
VS
1326 if ( !gs_dir->IsOpened() )
1327 {
1328 wxLogSysError(_("Can not enumerate files '%s'"), spec);
1329 return wxEmptyString;
1330 }
2db300c6 1331
999836aa 1332 int dirFlags;
8ff12342
VS
1333 switch (flags)
1334 {
1335 case wxDIR: dirFlags = wxDIR_DIRS; break;
1336 case wxFILE: dirFlags = wxDIR_FILES; break;
1337 default: dirFlags = wxDIR_DIRS | wxDIR_FILES; break;
1338 }
2db300c6 1339
8ff12342 1340 wxString result;
1f1070e2 1341 gs_dir->GetFirst(&result, wxFileNameFromPath(wxString(spec)), dirFlags);
a6f4dbbd 1342 if ( result.empty() )
e168b6ac 1343 {
8ff12342 1344 wxDELETE(gs_dir);
e168b6ac
VS
1345 return result;
1346 }
8ff12342
VS
1347
1348 return gs_dirPath + result;
1349}
1350
1351wxString wxFindNextFile()
1352{
1353 wxASSERT_MSG( gs_dir, wxT("You must call wxFindFirstFile before!") );
1354
1355 wxString result;
1356 gs_dir->GetNext(&result);
2db300c6 1357
a6f4dbbd 1358 if ( result.empty() )
e168b6ac 1359 {
8ff12342 1360 wxDELETE(gs_dir);
e168b6ac
VS
1361 return result;
1362 }
2db300c6 1363
8ff12342
VS
1364 return gs_dirPath + result;
1365}
1366
c801d85f
KB
1367
1368// Get current working directory.
ce045aed
WS
1369// If buf is NULL, allocates space using new, else copies into buf.
1370// wxGetWorkingDirectory() is obsolete, use wxGetCwd()
1371// wxDoGetCwd() is their common core to be moved
1372// to wxGetCwd() once wxGetWorkingDirectory() will be removed.
1373// Do not expose wxDoGetCwd in headers!
1374
1375wxChar *wxDoGetCwd(wxChar *buf, int sz)
c801d85f 1376{
68351053 1377#if defined(__WXPALMOS__)
ce045aed
WS
1378 // TODO
1379 if(buf && sz>0) buf[0] = _T('\0');
cdc05919 1380 return buf;
68351053 1381#elif defined(__WXWINCE__)
abf912c5 1382 // TODO
ce045aed 1383 if(buf && sz>0) buf[0] = _T('\0');
cdc05919 1384 return buf;
1c193821 1385#else
13b1f8a7 1386 if ( !buf )
f6bcfd97 1387 {
13b1f8a7
VZ
1388 buf = new wxChar[sz + 1];
1389 }
1390
79e162f5 1391 bool ok wxDUMMY_INITIALIZE(false);
13b1f8a7
VZ
1392
1393 // for the compilers which have Unicode version of _getcwd(), call it
1394 // directly, for the others call the ANSI version and do the translation
dbc38199 1395#if !wxUSE_UNICODE
247f8a77 1396 #define cbuf buf
dbc38199 1397#else // wxUSE_UNICODE
79e162f5 1398 bool needsANSI = true;
dbc38199 1399
247f8a77 1400 #if !defined(HAVE_WGETCWD) || wxUSE_UNICODE_MSLU
c35c94f6 1401 char cbuf[_MAXPATHLEN];
247f8a77 1402 #endif
dbc38199 1403
13b1f8a7 1404 #ifdef HAVE_WGETCWD
247f8a77 1405 #if wxUSE_UNICODE_MSLU
406d283a 1406 if ( wxGetOsVersion() != wxOS_WINDOWS_9X )
f5c0e657 1407 #else
79e162f5 1408 char *cbuf = NULL; // never really used because needsANSI will always be false
247f8a77
VS
1409 #endif
1410 {
1411 ok = _wgetcwd(buf, sz) != NULL;
79e162f5 1412 needsANSI = false;
247f8a77 1413 }
13b1f8a7 1414 #endif
13b1f8a7 1415
247f8a77 1416 if ( needsANSI )
dbc38199 1417#endif // wxUSE_UNICODE
247f8a77 1418 {
29d0a26e 1419 #if defined(_MSC_VER) || defined(__MINGW32__)
dbc38199 1420 ok = _getcwd(cbuf, sz) != NULL;
13b1f8a7 1421 #elif defined(__WXMAC__) && !defined(__DARWIN__)
a2b77260
SC
1422 char lbuf[1024] ;
1423 if ( getcwd( lbuf , sizeof( lbuf ) ) )
13b1f8a7 1424 {
a2b77260 1425 wxString res( lbuf , *wxConvCurrent ) ;
a62848fd 1426 wxStrcpy( buf , res ) ;
79e162f5 1427 ok = true;
13b1f8a7
VZ
1428 }
1429 else
a2b77260 1430 ok = false ;
5a3912f2 1431 #elif defined(__OS2__)
13b1f8a7 1432 APIRET rc;
5a3912f2
SN
1433 ULONG ulDriveNum = 0;
1434 ULONG ulDriveMap = 0;
a62848fd 1435 rc = ::DosQueryCurrentDisk(&ulDriveNum, &ulDriveMap);
5a3912f2 1436 ok = rc == 0;
a62848fd
WS
1437 if (ok)
1438 {
1439 sz -= 3;
1440 rc = ::DosQueryCurrentDir( 0 // current drive
5a3912f2
SN
1441 ,cbuf + 3
1442 ,(PULONG)&sz
1443 );
7a893a31 1444 cbuf[0] = char('A' + (ulDriveNum - 1));
5a3912f2
SN
1445 cbuf[1] = ':';
1446 cbuf[2] = '\\';
1447 ok = rc == 0;
1448 }
13b1f8a7 1449 #else // !Win32/VC++ !Mac !OS2
dbc38199 1450 ok = getcwd(cbuf, sz) != NULL;
13b1f8a7 1451 #endif // platform
247f8a77 1452
7a21e692 1453 #if wxUSE_UNICODE && !(defined(__WXMAC__) && !defined(__DARWIN__))
247f8a77
VS
1454 // finally convert the result to Unicode if needed
1455 wxConvFile.MB2WC(buf, cbuf, sz);
1456 #endif // wxUSE_UNICODE
1457 }
13b1f8a7
VZ
1458
1459 if ( !ok )
19193a2c 1460 {
13b1f8a7 1461 wxLogSysError(_("Failed to get the working directory"));
19193a2c 1462
13b1f8a7
VZ
1463 // VZ: the old code used to return "." on error which didn't make any
1464 // sense at all to me - empty string is a better error indicator
1465 // (NULL might be even better but I'm afraid this could lead to
1466 // problems with the old code assuming the return is never NULL)
1467 buf[0] = _T('\0');
19193a2c 1468 }
13b1f8a7 1469 else // ok, but we might need to massage the path into the right format
19193a2c 1470 {
4b00a538 1471#ifdef __DJGPP__
13b1f8a7
VZ
1472 // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths
1473 // with / deliminers. We don't like that.
1474 for (wxChar *ch = buf; *ch; ch++)
1475 {
1476 if (*ch == wxT('/'))
1477 *ch = wxT('\\');
1478 }
1479#endif // __DJGPP__
1480
17234b26
MB
1481// MBN: we hope that in the case the user is compiling a GTK+/Motif app,
1482// he needs Unix as opposed to Win32 pathnames
1483#if defined( __CYGWIN__ ) && defined( __WINDOWS__ )
3ffbc733 1484 // another example of DOS/Unix mix (Cygwin)
13b1f8a7 1485 wxString pathUnix = buf;
7682e22e
VZ
1486#if wxUSE_UNICODE
1487 char bufA[_MAXPATHLEN];
1488 cygwin_conv_to_full_win32_path(pathUnix.mb_str(wxConvFile), bufA);
1489 wxConvFile.MB2WC(buf, bufA, sz);
1490#else
13b1f8a7 1491 cygwin_conv_to_full_win32_path(pathUnix, buf);
7682e22e 1492#endif // wxUSE_UNICODE
e02e8816 1493#endif // __CYGWIN__
13b1f8a7 1494 }
4b00a538 1495
13b1f8a7 1496 return buf;
dbc38199
VS
1497
1498#if !wxUSE_UNICODE
247f8a77 1499 #undef cbuf
dbc38199 1500#endif
1c193821
JS
1501
1502#endif
1503 // __WXWINCE__
c801d85f
KB
1504}
1505
ce045aed
WS
1506#if WXWIN_COMPATIBILITY_2_6
1507wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
7af89395 1508{
ce045aed
WS
1509 return wxDoGetCwd(buf,sz);
1510}
1511#endif // WXWIN_COMPATIBILITY_2_6
dc259b79 1512
ce045aed
WS
1513wxString wxGetCwd()
1514{
1515 wxString str;
1516 wxDoGetCwd(wxStringBuffer(str, _MAXPATHLEN), _MAXPATHLEN);
eac2aeb0 1517 return str;
7af89395
VZ
1518}
1519
c801d85f
KB
1520bool wxSetWorkingDirectory(const wxString& d)
1521{
5a3912f2 1522#if defined(__OS2__)
1c193821 1523 return (::DosSetCurrentDir((PSZ)d.c_str()) == 0);
5a3912f2
SN
1524#elif defined(__UNIX__) || defined(__WXMAC__) || defined(__DOS__)
1525 return (chdir(wxFNSTRINGCAST d.fn_str()) == 0);
34138703 1526#elif defined(__WINDOWS__)
a62848fd 1527
c801d85f 1528#ifdef __WIN32__
1c193821
JS
1529#ifdef __WXWINCE__
1530 // No equivalent in WinCE
abf912c5 1531 wxUnusedVar(d);
79e162f5 1532 return false;
c801d85f 1533#else
1c193821
JS
1534 return (bool)(SetCurrentDirectory(d) != 0);
1535#endif
1536#else
1537 // Must change drive, too.
1538 bool isDriveSpec = ((strlen(d) > 1) && (d[1] == ':'));
1539 if (isDriveSpec)
c801d85f 1540 {
1c193821 1541 wxChar firstChar = d[0];
a62848fd 1542
1c193821
JS
1543 // To upper case
1544 if (firstChar > 90)
1545 firstChar = firstChar - 32;
a62848fd 1546
1c193821
JS
1547 // To a drive number
1548 unsigned int driveNo = firstChar - 64;
1549 if (driveNo > 0)
1550 {
1551 unsigned int noDrives;
1552 _dos_setdrive(driveNo, &noDrives);
1553 }
c801d85f 1554 }
1c193821 1555 bool success = (chdir(WXSTRINGCAST d) == 0);
a62848fd 1556
1c193821 1557 return success;
c801d85f 1558#endif
a62848fd 1559
c801d85f
KB
1560#endif
1561}
1562
631f1bfe
JS
1563// Get the OS directory if appropriate (such as the Windows directory).
1564// On non-Windows platform, probably just return the empty string.
1565wxString wxGetOSDirectory()
1566{
1c193821
JS
1567#ifdef __WXWINCE__
1568 return wxString(wxT("\\Windows"));
1569#elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
50920146 1570 wxChar buf[256];
631f1bfe
JS
1571 GetWindowsDirectory(buf, 256);
1572 return wxString(buf);
2d3441d7
GD
1573#elif defined(__WXMAC__)
1574 return wxMacFindFolder(kOnSystemDisk, 'macs', false);
631f1bfe
JS
1575#else
1576 return wxEmptyString;
1577#endif
1578}
1579
a907da15 1580bool wxEndsWithPathSeparator(const wxChar *pszFileName)
c801d85f 1581{
903b61cc
VZ
1582 size_t len = wxStrlen(pszFileName);
1583
1584 return len && wxIsPathSeparator(pszFileName[len - 1]);
c801d85f
KB
1585}
1586
79e162f5 1587// find a file in a list of directories, returns false if not found
50920146 1588bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, const wxChar *pszFile)
c801d85f 1589{
a17e237f 1590 // we assume that it's not empty
79e162f5 1591 wxCHECK_MSG( !wxIsEmpty(pszFile), false,
f6bcfd97 1592 _T("empty file name in wxFindFileInPath"));
a17e237f
VZ
1593
1594 // skip path separator in the beginning of the file name if present
1595 if ( wxIsPathSeparator(*pszFile) )
1596 pszFile++;
1597
1598 // copy the path (strtok will modify it)
1599 wxChar *szPath = new wxChar[wxStrlen(pszPath) + 1];
1600 wxStrcpy(szPath, pszPath);
1601
1602 wxString strFile;
1603 wxChar *pc, *save_ptr;
1604 for ( pc = wxStrtok(szPath, wxPATH_SEP, &save_ptr);
1605 pc != NULL;
1606 pc = wxStrtok((wxChar *) NULL, wxPATH_SEP, &save_ptr) )
1607 {
1608 // search for the file in this directory
1609 strFile = pc;
1610 if ( !wxEndsWithPathSeparator(pc) )
1611 strFile += wxFILE_SEP_PATH;
1612 strFile += pszFile;
1613
2b5f62a0 1614 if ( wxFileExists(strFile) ) {
a17e237f
VZ
1615 *pStr = strFile;
1616 break;
1617 }
c801d85f 1618 }
c801d85f 1619
a17e237f
VZ
1620 // suppress warning about unused variable save_ptr when wxStrtok() is a
1621 // macro which throws away its third argument
1622 save_ptr = pc;
1623
1624 delete [] szPath;
c801d85f 1625
79e162f5 1626 return pc != NULL; // if true => we breaked from the loop
c801d85f
KB
1627}
1628
50920146 1629void WXDLLEXPORT wxSplitPath(const wxChar *pszFileName,
3826db3e
VZ
1630 wxString *pstrPath,
1631 wxString *pstrName,
1632 wxString *pstrExt)
1633{
d37fd2fa 1634 // it can be empty, but it shouldn't be NULL
223d09f6 1635 wxCHECK_RET( pszFileName, wxT("NULL file name in wxSplitPath") );
3826db3e 1636
9e8d8607 1637 wxFileName::SplitPath(pszFileName, pstrPath, pstrName, pstrExt);
3826db3e 1638}
7f555861 1639
2c5e5cbd
VS
1640#if wxUSE_DATETIME
1641
a47ce4a7
VS
1642time_t WXDLLEXPORT wxFileModificationTime(const wxString& filename)
1643{
2936a6b1
VZ
1644 wxDateTime mtime;
1645 if ( !wxFileName(filename).GetTimes(NULL, &mtime, NULL) )
1646 return (time_t)-1;
a62848fd 1647
2936a6b1 1648 return mtime.GetTicks();
a47ce4a7
VS
1649}
1650
2c5e5cbd
VS
1651#endif // wxUSE_DATETIME
1652
a47ce4a7 1653
9e152a55
WS
1654// Parses the filterStr, returning the number of filters.
1655// Returns 0 if none or if there's a problem.
daf32463 1656// filterStr is in the form: "All files (*.*)|*.*|JPEG Files (*.jpeg)|*.jpeg"
9e152a55 1657
7bea7b91
WS
1658int WXDLLEXPORT wxParseCommonDialogsFilter(const wxString& filterStr,
1659 wxArrayString& descriptions,
1660 wxArrayString& filters)
9e152a55
WS
1661{
1662 descriptions.Clear();
1663 filters.Clear();
1664
1665 wxString str(filterStr);
1666
1667 wxString description, filter;
1668 int pos = 0;
1669 while( pos != wxNOT_FOUND )
1670 {
1671 pos = str.Find(wxT('|'));
1672 if ( pos == wxNOT_FOUND )
1673 {
1674 // if there are no '|'s at all in the string just take the entire
daf32463 1675 // string as filter and make description empty for later autocompletion
9e152a55
WS
1676 if ( filters.IsEmpty() )
1677 {
daf32463 1678 descriptions.Add(wxEmptyString);
9e152a55
WS
1679 filters.Add(filterStr);
1680 }
1681 else
1682 {
1683 wxFAIL_MSG( _T("missing '|' in the wildcard string!") );
1684 }
1685
1686 break;
1687 }
1688
1689 description = str.Left(pos);
1690 str = str.Mid(pos + 1);
1691 pos = str.Find(wxT('|'));
1692 if ( pos == wxNOT_FOUND )
1693 {
1694 filter = str;
1695 }
1696 else
1697 {
1698 filter = str.Left(pos);
1699 str = str.Mid(pos + 1);
1700 }
1701
1702 descriptions.Add(description);
1703 filters.Add(filter);
1704 }
1705
daf32463
WS
1706#if defined(__WXMOTIF__)
1707 // split it so there is one wildcard per entry
1708 for( size_t i = 0 ; i < descriptions.GetCount() ; i++ )
1709 {
1710 pos = filters[i].Find(wxT(';'));
1711 if (pos != wxNOT_FOUND)
1712 {
1713 // first split only filters
1714 descriptions.Insert(descriptions[i],i+1);
1715 filters.Insert(filters[i].Mid(pos+1),i+1);
1716 filters[i]=filters[i].Left(pos);
1717
1718 // autoreplace new filter in description with pattern:
1719 // C/C++ Files(*.cpp;*.c;*.h)|*.cpp;*.c;*.h
1720 // cause split into:
1721 // C/C++ Files(*.cpp)|*.cpp
1722 // C/C++ Files(*.c;*.h)|*.c;*.h
1723 // and next iteration cause another split into:
1724 // C/C++ Files(*.cpp)|*.cpp
1725 // C/C++ Files(*.c)|*.c
1726 // C/C++ Files(*.h)|*.h
1727 for ( size_t k=i;k<i+2;k++ )
1728 {
1729 pos = descriptions[k].Find(filters[k]);
1730 if (pos != wxNOT_FOUND)
1731 {
1732 wxString before = descriptions[k].Left(pos);
1733 wxString after = descriptions[k].Mid(pos+filters[k].Len());
1734 pos = before.Find(_T('('),true);
1735 if (pos>before.Find(_T(')'),true))
1736 {
1737 before = before.Left(pos+1);
1738 before << filters[k];
1739 pos = after.Find(_T(')'));
1740 int pos1 = after.Find(_T('('));
1741 if (pos != wxNOT_FOUND && (pos<pos1 || pos1==wxNOT_FOUND))
1742 {
1743 before << after.Mid(pos);
1744 descriptions[k] = before;
1745 }
1746 }
1747 }
1748 }
1749 }
1750 }
1751#endif
1752
1753 // autocompletion
1754 for( size_t j = 0 ; j < descriptions.GetCount() ; j++ )
1755 {
489f6cf7 1756 if ( descriptions[j].empty() && !filters[j].empty() )
daf32463
WS
1757 {
1758 descriptions[j].Printf(_("Files (%s)"), filters[j].c_str());
1759 }
1760 }
1761
9e152a55
WS
1762 return filters.GetCount();
1763}
1764
3ff07edb
RR
1765#if defined( __WINDOWS__ )
1766bool wxCheckGenericPermission(const wxString &path, DWORD access)
1767{
1768 // quoting the MSDN: "To obtain a handle to a directory, call the
1769 // CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag"
1770 wxWinVersion ver = wxGetWinVersion();
1771 bool isdir = wxDirExists(path);
1772 if (isdir && (ver == wxWinVersion_95 || ver == wxWinVersion_98 || ver == wxWinVersion_ME))
1773 {
1774 // however Win95/98/ME do not support FILE_FLAG_BACKUP_SEMANTICS...
1775 if (access == GENERIC_READ)
1776 {
1777 WIN32_FILE_ATTRIBUTE_DATA data;
1778 if (GetFileAttributesEx(path.c_str(), GetFileExInfoStandard, &data) == 0)
1779 return false; // cannot query attributes
1780 return (data.dwFileAttributes & FILE_ATTRIBUTE_READONLY) == 0;
1781 }
1782
1783 // FIXME: is it true that directories are always writable & executable on Win9X family ?
1784 return true;
1785 }
1786 else
1787 {
1788 HANDLE h = CreateFile(path.c_str(), access,
1789 FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL,
1790 OPEN_EXISTING, isdir ? FILE_FLAG_BACKUP_SEMANTICS : 0, NULL);
1791 if (h != INVALID_HANDLE_VALUE)
1792 CloseHandle(h);
1793
1794 return h != INVALID_HANDLE_VALUE;
1795 }
1796}
1797#endif
1798
1799bool wxIsWritable(const wxString &path)
1800{
1801#if defined( __UNIX__ )
1802 // access() will take in count also symbolic links
1803 return access(wxConvFile.cWX2MB(path), W_OK) == 0;
1804#elif defined( __WINDOWS__ )
1805 return wxCheckGenericPermission(path, GENERIC_WRITE);
1806#else
a8b6a1b1 1807 wxUnusedVar(path);
3ff07edb
RR
1808 // TODO
1809 return false;
1810#endif
1811}
1812
1813bool wxIsReadable(const wxString &path)
1814{
1815#if defined( __UNIX__ )
1816 // access() will take in count also symbolic links
1817 return access(wxConvFile.cWX2MB(path), R_OK) == 0;
1818#elif defined( __WINDOWS__ )
1819 return wxCheckGenericPermission(path, GENERIC_READ);
1820#else
a8b6a1b1 1821 wxUnusedVar(path);
3ff07edb
RR
1822 // TODO
1823 return false;
1824#endif
1825}
1826
1827bool wxIsExecutable(const wxString &path)
1828{
1829#if defined( __UNIX__ )
1830 // access() will take in count also symbolic links
1831 return access(wxConvFile.cWX2MB(path), X_OK) == 0;
1832#elif defined( __WINDOWS__ )
1833 return wxCheckGenericPermission(path, GENERIC_EXECUTE);
1834#else
a8b6a1b1 1835 wxUnusedVar(path);
3ff07edb
RR
1836 // TODO
1837 return false;
1838#endif
1839}
1840
9e152a55 1841
7f555861
JS
1842//------------------------------------------------------------------------
1843// wild character routines
1844//------------------------------------------------------------------------
1845
1846bool wxIsWild( const wxString& pattern )
1847{
2b5f62a0
VZ
1848 wxString tmp = pattern;
1849 wxChar *pat = WXSTRINGCAST(tmp);
dc259b79 1850 while (*pat)
2b5f62a0 1851 {
dc259b79 1852 switch (*pat++)
2b5f62a0 1853 {
223d09f6 1854 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
79e162f5 1855 return true;
223d09f6 1856 case wxT('\\'):
3f4a0c5b 1857 if (!*pat++)
79e162f5 1858 return false;
3f4a0c5b 1859 }
7f555861 1860 }
79e162f5 1861 return false;
dfcb1ae0 1862}
dfcb1ae0 1863
2b5f62a0
VZ
1864/*
1865* Written By Douglas A. Lewis <dalewis@cs.Buffalo.EDU>
1866*
1867* The match procedure is public domain code (from ircII's reg.c)
b931e275 1868* but modified to suit our tastes (RN: No "%" syntax I guess)
2b5f62a0 1869*/
7be1f0d9 1870
2b5f62a0 1871bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
7f555861 1872{
7448de8d
WS
1873 if (text.empty())
1874 {
1875 /* Match if both are empty. */
1876 return pat.empty();
1877 }
1878
1879 const wxChar *m = pat.c_str(),
1880 *n = text.c_str(),
1881 *ma = NULL,
b931e275 1882 *na = NULL;
7448de8d 1883 int just = 0,
7448de8d
WS
1884 acount = 0,
1885 count = 0;
1886
1887 if (dot_special && (*n == wxT('.')))
1888 {
1889 /* Never match so that hidden Unix files
1890 * are never found. */
1891 return false;
1892 }
1893
1894 for (;;)
1895 {
1896 if (*m == wxT('*'))
2b5f62a0 1897 {
7448de8d
WS
1898 ma = ++m;
1899 na = n;
1900 just = 1;
7448de8d 1901 acount = count;
2b5f62a0 1902 }
7448de8d 1903 else if (*m == wxT('?'))
2b5f62a0 1904 {
7448de8d
WS
1905 m++;
1906 if (!*n++)
79e162f5 1907 return false;
2b5f62a0 1908 }
7448de8d 1909 else
2b5f62a0 1910 {
7448de8d
WS
1911 if (*m == wxT('\\'))
1912 {
1913 m++;
1914 /* Quoting "nothing" is a bad thing */
1915 if (!*m)
1916 return false;
1917 }
1918 if (!*m)
1919 {
1920 /*
1921 * If we are out of both strings or we just
1922 * saw a wildcard, then we can say we have a
1923 * match
1924 */
1925 if (!*n)
1926 return true;
1927 if (just)
1928 return true;
1929 just = 0;
1930 goto not_matched;
1931 }
1932 /*
1933 * We could check for *n == NULL at this point, but
1934 * since it's more common to have a character there,
1935 * check to see if they match first (m and n) and
1936 * then if they don't match, THEN we can check for
1937 * the NULL of n
1938 */
1939 just = 0;
1940 if (*m == *n)
1941 {
1942 m++;
7448de8d
WS
1943 count++;
1944 n++;
1945 }
1946 else
1947 {
1948
1949 not_matched:
1950
1951 /*
1952 * If there are no more characters in the
1953 * string, but we still need to find another
1954 * character (*m != NULL), then it will be
1955 * impossible to match it
1956 */
1957 if (!*n)
1958 return false;
2b5f62a0 1959
7448de8d
WS
1960 if (ma)
1961 {
1962 m = ma;
1963 n = ++na;
1964 count = acount;
3f4a0c5b 1965 }
7448de8d
WS
1966 else
1967 return false;
1968 }
3f4a0c5b 1969 }
7448de8d 1970 }
2b5f62a0 1971}
fd3f686c 1972
3c70014d
MW
1973// Return the type of an open file
1974//
18a1516c
MW
1975// Some file types on some platforms seem seekable but in fact are not.
1976// The main use of this function is to allow such cases to be detected
1977// (IsSeekable() is implemented as wxGetFileKind() == wxFILE_KIND_DISK).
1978//
1979// This is important for the archive streams, which benefit greatly from
1980// being able to seek on a stream, but which will produce corrupt archives
1981// if they unknowingly seek on a non-seekable stream.
27b2dd53 1982//
18a1516c
MW
1983// wxFILE_KIND_DISK is a good catch all return value, since other values
1984// disable features of the archive streams. Some other value must be returned
1985// for a file type that appears seekable but isn't.
1986//
1987// Known examples:
1988// * Pipes on Windows
1989// * Files on VMS with a record format other than StreamLF
1990//
0912690b 1991wxFileKind wxGetFileKind(int fd)
3c70014d 1992{
8df9a8a0 1993#if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle
3c70014d
MW
1994 switch (::GetFileType(wxGetOSFHandle(fd)) & ~FILE_TYPE_REMOTE)
1995 {
18a1516c
MW
1996 case FILE_TYPE_CHAR:
1997 return wxFILE_KIND_TERMINAL;
3c70014d 1998 case FILE_TYPE_DISK:
0912690b 1999 return wxFILE_KIND_DISK;
3c70014d 2000 case FILE_TYPE_PIPE:
0912690b 2001 return wxFILE_KIND_PIPE;
3c70014d
MW
2002 }
2003
0912690b 2004 return wxFILE_KIND_UNKNOWN;
3c70014d 2005
68351053 2006#elif defined(__UNIX__)
18a1516c
MW
2007 if (isatty(fd))
2008 return wxFILE_KIND_TERMINAL;
2009
3c70014d
MW
2010 struct stat st;
2011 fstat(fd, &st);
2012
2013 if (S_ISFIFO(st.st_mode))
0912690b 2014 return wxFILE_KIND_PIPE;
3c70014d 2015 if (!S_ISREG(st.st_mode))
0912690b 2016 return wxFILE_KIND_UNKNOWN;
3c70014d 2017
68351053 2018 #if defined(__VMS__)
3c70014d 2019 if (st.st_fab_rfm != FAB$C_STMLF)
0912690b 2020 return wxFILE_KIND_UNKNOWN;
3c70014d
MW
2021 #endif
2022
0912690b 2023 return wxFILE_KIND_DISK;
3c70014d
MW
2024
2025#else
9802983f 2026 #define wxFILEKIND_STUB
18a1516c
MW
2027 (void)fd;
2028 return wxFILE_KIND_DISK;
3c70014d
MW
2029#endif
2030}
7f555861 2031
9802983f
MW
2032wxFileKind wxGetFileKind(FILE *fp)
2033{
9af00f5f
MW
2034 // Note: The watcom rtl dll doesn't have fileno (the static lib does).
2035 // Should be fixed in version 1.4.
6d3d756a 2036#if defined(wxFILEKIND_STUB) || wxONLY_WATCOM_EARLIER_THAN(1,4)
9802983f
MW
2037 (void)fp;
2038 return wxFILE_KIND_DISK;
9af00f5f 2039#else
217e77c3 2040 return fp ? wxGetFileKind(fileno(fp)) : wxFILE_KIND_UNKNOWN;
9802983f
MW
2041#endif
2042}
2043
3f4a0c5b 2044#ifdef __VISUALC__
fd3f686c 2045 #pragma warning(default:4706) // assignment within conditional expression
53c6e7cc 2046#endif // VC++