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