]> git.saurik.com Git - wxWidgets.git/blame - src/common/filefn.cpp
Committing in .
[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
3f4a0c5b 9// Licence: wxWindows license
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
e90c1d2a
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f 20#ifdef __GNUG__
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"
c801d85f 34
fd3f686c 35// there are just too many of those...
3f4a0c5b 36#ifdef __VISUALC__
fd3f686c
VZ
37 #pragma warning(disable:4706) // assignment within conditional expression
38#endif // VC++
39
c801d85f
KB
40#include <ctype.h>
41#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44#if !defined(__WATCOMC__)
3f4a0c5b
VZ
45 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
46 #include <errno.h>
47 #endif
c801d85f 48#endif
3f4a0c5b 49
c801d85f 50#include <time.h>
3f4a0c5b 51
469e1e5c 52#ifndef __MWERKS__
7af89395
VZ
53 #include <sys/types.h>
54 #include <sys/stat.h>
469e1e5c 55#else
7af89395
VZ
56 #include <stat.h>
57 #include <unistd.h>
469e1e5c 58#endif
c801d85f 59
aad5220b 60#ifdef __UNIX__
7af89395
VZ
61 #include <unistd.h>
62 #include <dirent.h>
aad5220b 63#endif
c801d85f 64
f6bcfd97 65#ifdef __WXPM__
c2ff79b1 66 #include <process.h>
f6bcfd97 67 #include "wx/os2/private.h"
c2ff79b1 68#endif
34138703 69#ifdef __WINDOWS__
a3ef5bf5 70#if !defined( __GNUWIN32__ ) && !defined( __MWERKS__ ) && !defined(__SALFORDC__)
7af89395
VZ
71 #include <direct.h>
72 #include <dos.h>
73#endif // __WINDOWS__
74#endif // native Win compiler
c801d85f
KB
75
76#ifdef __GNUWIN32__
7af89395
VZ
77 #ifndef __TWIN32__
78 #include <sys/unistd.h>
79 #endif
c801d85f
KB
80#endif
81
82#ifdef __BORLANDC__ // Please someone tell me which version of Borland needs
83 // this (3.1 I believe) and how to test for it.
84 // If this works for Borland 4.0 as well, then no worries.
7af89395 85 #include <dir.h>
c801d85f
KB
86#endif
87
a3ef5bf5 88#ifdef __SALFORDC__
7af89395
VZ
89 #include <dir.h>
90 #include <unix.h>
a3ef5bf5
JS
91#endif
92
dfcb1ae0 93#include "wx/setup.h"
f5abe911 94#include "wx/log.h"
99cc00ed 95
7be1f0d9
JS
96// No, Cygwin doesn't appear to have fnmatch.h after all.
97#if defined(HAVE_FNMATCH_H)
7af89395 98 #include "fnmatch.h"
dfcb1ae0
KB
99#endif
100
34138703 101#ifdef __WINDOWS__
7af89395 102 #include "windows.h"
c801d85f
KB
103#endif
104
e90c1d2a
VZ
105// ----------------------------------------------------------------------------
106// constants
107// ----------------------------------------------------------------------------
108
c801d85f
KB
109#define _MAXPATHLEN 500
110
08942a0c 111extern wxChar *wxBuffer;
e7549107 112
17dff81c 113#ifdef __WXMAC__
e7549107
SC
114
115#include "morefile.h"
116#include "moreextr.h"
117#include "fullpath.h"
118#include "fspcompa.h"
17dff81c 119#endif
c801d85f 120
7af89395 121 IMPLEMENT_DYNAMIC_CLASS(wxPathList, wxStringList)
8a0a092b 122
e90c1d2a
VZ
123// ----------------------------------------------------------------------------
124// private globals
125// ----------------------------------------------------------------------------
126
127static wxChar wxFileFunctionsBuffer[4*_MAXPATHLEN];
128
5d33ed2c
DW
129#if defined(__VISAGECPP__) && __IBMCPP__ >= 400
130//
32e768ae 131// VisualAge C++ V4.0 cannot have any external linkage const decs
5d33ed2c
DW
132// in headers included by more than one primary source
133//
134const off_t wxInvalidOffset = (off_t)-1;
135#endif
136
e90c1d2a
VZ
137// ============================================================================
138// implementation
139// ============================================================================
140
c801d85f
KB
141void wxPathList::Add (const wxString& path)
142{
50920146 143 wxStringList::Add (WXSTRINGCAST path);
c801d85f
KB
144}
145
146// Add paths e.g. from the PATH environment variable
147void wxPathList::AddEnvList (const wxString& envVariable)
148{
50920146 149 static const wxChar PATH_TOKS[] =
34138703 150#ifdef __WINDOWS__
223d09f6 151 wxT(" ;"); // Don't seperate with colon in DOS (used for drive)
c801d85f 152#else
223d09f6 153 wxT(" :;");
c801d85f
KB
154#endif
155
50920146 156 wxChar *val = wxGetenv (WXSTRINGCAST envVariable);
c801d85f
KB
157 if (val && *val)
158 {
50920146
OK
159 wxChar *s = copystring (val);
160 wxChar *save_ptr, *token = wxStrtok (s, PATH_TOKS, &save_ptr);
c801d85f
KB
161
162 if (token)
a17e237f 163 {
3f4a0c5b
VZ
164 Add (copystring (token));
165 while (token)
a17e237f 166 {
50920146 167 if ((token = wxStrtok ((wxChar *) NULL, PATH_TOKS, &save_ptr)) != NULL)
a17e237f
VZ
168 Add (wxString(token));
169 }
170 }
171
172 // suppress warning about unused variable save_ptr when wxStrtok() is a
173 // macro which throws away its third argument
174 save_ptr = token;
175
176 delete [] s;
c801d85f
KB
177 }
178}
179
180// Given a full filename (with path), ensure that that file can
181// be accessed again USING FILENAME ONLY by adding the path
182// to the list if not already there.
183void wxPathList::EnsureFileAccessible (const wxString& path)
184{
7af89395
VZ
185 wxString path_only(wxPathOnly(path));
186 if ( !path_only.IsEmpty() )
187 {
188 if ( !Member(path_only) )
189 Add(path_only);
190 }
c801d85f
KB
191}
192
193bool wxPathList::Member (const wxString& path)
194{
195 for (wxNode * node = First (); node != NULL; node = node->Next ())
196 {
50920146 197 wxString path2((wxChar *) node->Data ());
c801d85f 198 if (
17dff81c 199#if defined(__WINDOWS__) || defined(__VMS__) || defined (__WXMAC__)
c801d85f 200 // Case INDEPENDENT
3f4a0c5b 201 path.CompareTo (path2, wxString::ignoreCase) == 0
c801d85f 202#else
3f4a0c5b
VZ
203 // Case sensitive File System
204 path.CompareTo (path2) == 0
c801d85f 205#endif
3f4a0c5b
VZ
206 )
207 return TRUE;
c801d85f
KB
208 }
209 return FALSE;
210}
211
212wxString wxPathList::FindValidPath (const wxString& file)
213{
e90c1d2a
VZ
214 if (wxFileExists (wxExpandPath(wxFileFunctionsBuffer, file)))
215 return wxString(wxFileFunctionsBuffer);
c801d85f 216
50920146 217 wxChar buf[_MAXPATHLEN];
e90c1d2a 218 wxStrcpy(buf, wxFileFunctionsBuffer);
c801d85f 219
50920146
OK
220 wxChar *filename = (wxChar*) NULL; /* shut up buggy egcs warning */
221 filename = IsAbsolutePath (buf) ? wxFileNameFromPath (buf) : (wxChar *)buf;
c801d85f
KB
222
223 for (wxNode * node = First (); node; node = node->Next ())
224 {
50920146 225 wxChar *path = (wxChar *) node->Data ();
e90c1d2a
VZ
226 wxStrcpy (wxFileFunctionsBuffer, path);
227 wxChar ch = wxFileFunctionsBuffer[wxStrlen(wxFileFunctionsBuffer)-1];
223d09f6
KB
228 if (ch != wxT('\\') && ch != wxT('/'))
229 wxStrcat (wxFileFunctionsBuffer, wxT("/"));
e90c1d2a 230 wxStrcat (wxFileFunctionsBuffer, filename);
34138703 231#ifdef __WINDOWS__
e90c1d2a 232 Unix2DosFilename (wxFileFunctionsBuffer);
c801d85f 233#endif
e90c1d2a 234 if (wxFileExists (wxFileFunctionsBuffer))
c801d85f 235 {
e90c1d2a 236 return wxString(wxFileFunctionsBuffer); // Found!
c801d85f 237 }
3f4a0c5b 238 } // for()
c801d85f 239
223d09f6 240 return wxString(wxT("")); // Not found
c801d85f
KB
241}
242
243wxString wxPathList::FindAbsoluteValidPath (const wxString& file)
244{
e90c1d2a
VZ
245 wxString f = FindValidPath(file);
246 if ( wxIsAbsolutePath(f) )
247 return f;
248
249 wxString buf;
250 wxGetWorkingDirectory(buf.GetWriteBuf(_MAXPATHLEN), _MAXPATHLEN - 1);
251 buf.UngetWriteBuf();
252 if ( !wxEndsWithPathSeparator(buf) )
c801d85f 253 {
e90c1d2a 254 buf += wxFILE_SEP_PATH;
c801d85f 255 }
e90c1d2a
VZ
256 buf += f;
257
258 return buf;
c801d85f
KB
259}
260
3f4a0c5b 261bool
c801d85f
KB
262wxFileExists (const wxString& filename)
263{
6b037754
JS
264#ifdef __GNUWIN32__ // (fix a B20 bug)
265 if (GetFileAttributes(filename) == 0xFFFFFFFF)
266 return FALSE;
267 else
268 return TRUE;
17dff81c 269#elif defined(__WXMAC__)
3f4a0c5b 270 struct stat stbuf;
e7549107
SC
271 if (filename && stat (wxUnix2MacFilename(filename), &stbuf) == 0 )
272 return TRUE;
17dff81c 273 return FALSE ;
6b037754 274#else
a3ef5bf5 275
f6bcfd97
BP
276 wxStructStat stbuf;
277 if ((filename != wxT("")) && wxStat (wxFNSTRINGCAST filename.fn_str(), &stbuf) == 0)
c801d85f 278 return TRUE;
f6bcfd97 279
c801d85f 280 return FALSE;
6b037754 281#endif
c801d85f
KB
282}
283
284/* Vadim's alternative implementation
285
286// does the file exist?
287bool wxFileExists(const char *pszFileName)
288{
289 struct stat st;
290 return !access(pszFileName, 0) &&
291 !stat(pszFileName, &st) &&
292 (st.st_mode & S_IFREG);
293}
294*/
295
3f4a0c5b 296bool
c801d85f
KB
297wxIsAbsolutePath (const wxString& filename)
298{
223d09f6 299 if (filename != wxT(""))
c801d85f 300 {
223d09f6 301 if (filename[0] == wxT('/')
c801d85f 302#ifdef __VMS__
223d09f6 303 || (filename[0] == wxT('[') && filename[1] != wxT('.'))
c801d85f 304#endif
34138703 305#ifdef __WINDOWS__
c801d85f 306 /* MSDOS */
223d09f6 307 || filename[0] == wxT('\\') || (wxIsalpha (filename[0]) && filename[1] == wxT(':'))
c801d85f 308#endif
3f4a0c5b
VZ
309 )
310 return TRUE;
c801d85f
KB
311 }
312 return FALSE;
313}
314
315/*
316 * Strip off any extension (dot something) from end of file,
317 * IF one exists. Inserts zero into buffer.
318 *
319 */
3f4a0c5b 320
50920146 321void wxStripExtension(wxChar *buffer)
c801d85f 322{
50920146 323 int len = wxStrlen(buffer);
c801d85f
KB
324 int i = len-1;
325 while (i > 0)
326 {
223d09f6 327 if (buffer[i] == wxT('.'))
c801d85f
KB
328 {
329 buffer[i] = 0;
330 break;
331 }
332 i --;
333 }
334}
335
47fa7969
JS
336void wxStripExtension(wxString& buffer)
337{
338 size_t len = buffer.Length();
339 size_t i = len-1;
340 while (i > 0)
341 {
223d09f6 342 if (buffer.GetChar(i) == wxT('.'))
47fa7969
JS
343 {
344 buffer = buffer.Left(i);
345 break;
346 }
347 i --;
348 }
349}
350
c801d85f 351// Destructive removal of /./ and /../ stuff
50920146 352wxChar *wxRealPath (wxChar *path)
c801d85f 353{
2049ba38 354#ifdef __WXMSW__
223d09f6 355 static const wxChar SEP = wxT('\\');
c801d85f
KB
356 Unix2DosFilename(path);
357#else
223d09f6 358 static const wxChar SEP = wxT('/');
c801d85f
KB
359#endif
360 if (path[0] && path[1]) {
361 /* MATTHEW: special case "/./x" */
50920146 362 wxChar *p;
223d09f6 363 if (path[2] == SEP && path[1] == wxT('.'))
c801d85f
KB
364 p = &path[0];
365 else
366 p = &path[2];
367 for (; *p; p++)
368 {
3f4a0c5b
VZ
369 if (*p == SEP)
370 {
223d09f6 371 if (p[1] == wxT('.') && p[2] == wxT('.') && (p[3] == SEP || p[3] == wxT('\0')))
3f4a0c5b 372 {
50920146 373 wxChar *q;
3f4a0c5b 374 for (q = p - 1; q >= path && *q != SEP; q--);
223d09f6 375 if (q[0] == SEP && (q[1] != wxT('.') || q[2] != wxT('.') || q[3] != SEP)
3f4a0c5b
VZ
376 && (q - 1 <= path || q[-1] != SEP))
377 {
50920146 378 wxStrcpy (q, p + 3);
223d09f6 379 if (path[0] == wxT('\0'))
3f4a0c5b
VZ
380 {
381 path[0] = SEP;
223d09f6 382 path[1] = wxT('\0');
3f4a0c5b 383 }
2049ba38 384#ifdef __WXMSW__
3f4a0c5b 385 /* Check that path[2] is NULL! */
223d09f6 386 else if (path[1] == wxT(':') && !path[2])
3f4a0c5b
VZ
387 {
388 path[2] = SEP;
223d09f6 389 path[3] = wxT('\0');
3f4a0c5b
VZ
390 }
391#endif
392 p = q - 1;
393 }
394 }
223d09f6 395 else if (p[1] == wxT('.') && (p[2] == SEP || p[2] == wxT('\0')))
50920146 396 wxStrcpy (p, p + 2);
3f4a0c5b 397 }
c801d85f
KB
398 }
399 }
400 return path;
401}
402
403// Must be destroyed
50920146 404wxChar *wxCopyAbsolutePath(const wxString& filename)
c801d85f 405{
223d09f6 406 if (filename == wxT(""))
50920146 407 return (wxChar *) NULL;
c801d85f 408
e90c1d2a 409 if (! IsAbsolutePath(wxExpandPath(wxFileFunctionsBuffer, filename))) {
50920146 410 wxChar buf[_MAXPATHLEN];
223d09f6 411 buf[0] = wxT('\0');
7af89395 412 wxGetWorkingDirectory(buf, WXSIZEOF(buf));
50920146 413 wxChar ch = buf[wxStrlen(buf) - 1];
2049ba38 414#ifdef __WXMSW__
223d09f6
KB
415 if (ch != wxT('\\') && ch != wxT('/'))
416 wxStrcat(buf, wxT("\\"));
c801d85f 417#else
223d09f6
KB
418 if (ch != wxT('/'))
419 wxStrcat(buf, wxT("/"));
c801d85f 420#endif
e90c1d2a 421 wxStrcat(buf, wxFileFunctionsBuffer);
c801d85f
KB
422 return copystring( wxRealPath(buf) );
423 }
e90c1d2a 424 return copystring( wxFileFunctionsBuffer );
c801d85f
KB
425}
426
427/*-
428 Handles:
429 ~/ => home dir
430 ~user/ => user's home dir
431 If the environment variable a = "foo" and b = "bar" then:
432 Unix:
3f4a0c5b
VZ
433 $a => foo
434 $a$b => foobar
435 $a.c => foo.c
436 xxx$a => xxxfoo
437 ${a}! => foo!
438 $(b)! => bar!
439 \$a => \$a
c801d85f 440 MSDOS:
3f4a0c5b
VZ
441 $a ==> $a
442 $(a) ==> foo
443 $(a)$b ==> foo$b
444 $(a)$(b)==> foobar
445 test.$$ ==> test.$$
c801d85f
KB
446 */
447
448/* input name in name, pathname output to buf. */
449
50920146 450wxChar *wxExpandPath(wxChar *buf, const wxChar *name)
c801d85f 451{
50920146
OK
452 register wxChar *d, *s, *nm;
453 wxChar lnm[_MAXPATHLEN];
3f4a0c5b 454 int q;
c801d85f
KB
455
456 // Some compilers don't like this line.
223d09f6 457// const wxChar trimchars[] = wxT("\n \t");
c801d85f 458
50920146 459 wxChar trimchars[4];
223d09f6
KB
460 trimchars[0] = wxT('\n');
461 trimchars[1] = wxT(' ');
462 trimchars[2] = wxT('\t');
c801d85f
KB
463 trimchars[3] = 0;
464
2049ba38 465#ifdef __WXMSW__
223d09f6 466 const wxChar SEP = wxT('\\');
c801d85f 467#else
223d09f6 468 const wxChar SEP = wxT('/');
c801d85f 469#endif
223d09f6
KB
470 buf[0] = wxT('\0');
471 if (name == NULL || *name == wxT('\0'))
3f4a0c5b 472 return buf;
c801d85f 473 nm = copystring(name); // Make a scratch copy
50920146 474 wxChar *nm_tmp = nm;
c801d85f
KB
475
476 /* Skip leading whitespace and cr */
50920146 477 while (wxStrchr((wxChar *)trimchars, *nm) != NULL)
3f4a0c5b 478 nm++;
c801d85f 479 /* And strip off trailing whitespace and cr */
50920146
OK
480 s = nm + (q = wxStrlen(nm)) - 1;
481 while (q-- && wxStrchr((wxChar *)trimchars, *s) != NULL)
223d09f6 482 *s = wxT('\0');
c801d85f
KB
483
484 s = nm;
485 d = lnm;
2049ba38 486#ifdef __WXMSW__
c801d85f
KB
487 q = FALSE;
488#else
223d09f6 489 q = nm[0] == wxT('\\') && nm[1] == wxT('~');
c801d85f
KB
490#endif
491
492 /* Expand inline environment variables */
c2ff79b1
DW
493#ifdef __VISAGECPP__
494 while (*d)
495 {
496 *d++ = *s;
223d09f6 497 if(*s == wxT('\\'))
c2ff79b1
DW
498 {
499 *(d - 1) = *++s;
500 if (*d)
501 {
502 s++;
503 continue;
504 }
505 else
506 break;
507 }
508 else
509#else
c801d85f 510 while ((*d++ = *s)) {
c2ff79b1 511# ifndef __WXMSW__
223d09f6 512 if (*s == wxT('\\')) {
3f4a0c5b
VZ
513 if ((*(d - 1) = *++s)) {
514 s++;
515 continue;
516 } else
517 break;
518 } else
c2ff79b1 519# endif
c801d85f 520#endif
2049ba38 521#ifdef __WXMSW__
223d09f6 522 if (*s++ == wxT('$') && (*s == wxT('{') || *s == wxT(')')))
c801d85f 523#else
223d09f6 524 if (*s++ == wxT('$'))
3f4a0c5b
VZ
525#endif
526 {
50920146 527 register wxChar *start = d;
223d09f6 528 register int braces = (*s == wxT('{') || *s == wxT('('));
50920146 529 register wxChar *value;
c2ff79b1
DW
530#ifdef __VISAGECPP__
531 // VA gives assignment in logical expr warning
532 while (*d)
533 *d++ = *s;
534#else
3f4a0c5b 535 while ((*d++ = *s))
c2ff79b1 536#endif
223d09f6 537 if (braces ? (*s == wxT('}') || *s == wxT(')')) : !(wxIsalnum(*s) || *s == wxT('_')) )
3f4a0c5b
VZ
538 break;
539 else
540 s++;
541 *--d = 0;
50920146 542 value = wxGetenv(braces ? start + 1 : start);
3f4a0c5b 543 if (value) {
c2ff79b1
DW
544#ifdef __VISAGECPP__
545 // VA gives assignment in logical expr warning
546 for ((d = start - 1); (*d); *d++ = *value++);
547#else
3f4a0c5b 548 for ((d = start - 1); (*d++ = *value++););
c2ff79b1 549#endif
3f4a0c5b
VZ
550 d--;
551 if (braces && *s)
552 s++;
553 }
554 }
c801d85f
KB
555 }
556
557 /* Expand ~ and ~user */
558 nm = lnm;
223d09f6
KB
559 s = wxT("");
560 if (nm[0] == wxT('~') && !q)
c801d85f 561 {
3f4a0c5b
VZ
562 /* prefix ~ */
563 if (nm[1] == SEP || nm[1] == 0)
564 { /* ~/filename */
f6bcfd97 565 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
223d09f6 566 if ((s = WXSTRINGCAST wxGetUserHome(wxT(""))) != NULL) {
3f4a0c5b
VZ
567 if (*++nm)
568 nm++;
569 }
c801d85f 570 } else
3f4a0c5b 571 { /* ~user/filename */
50920146
OK
572 register wxChar *nnm;
573 register wxChar *home;
3f4a0c5b
VZ
574 for (s = nm; *s && *s != SEP; s++);
575 int was_sep; /* MATTHEW: Was there a separator, or NULL? */
c801d85f 576 was_sep = (*s == SEP);
3f4a0c5b
VZ
577 nnm = *s ? s + 1 : s;
578 *s = 0;
f6bcfd97 579 // FIXME: wxGetUserHome could return temporary storage in Unicode mode
0e6667e2 580 if ((home = WXSTRINGCAST wxGetUserHome(wxString(nm + 1))) == NULL) {
c801d85f 581 if (was_sep) /* replace only if it was there: */
3f4a0c5b 582 *s = SEP;
223d09f6 583 s = wxT("");
3f4a0c5b
VZ
584 } else {
585 nm = nnm;
586 s = home;
587 }
588 }
c801d85f
KB
589 }
590
591 d = buf;
592 if (s && *s) { /* MATTHEW: s could be NULL if user '~' didn't exist */
3f4a0c5b 593 /* Copy home dir */
223d09f6 594 while (wxT('\0') != (*d++ = *s++))
3f4a0c5b
VZ
595 /* loop */;
596 // Handle root home
597 if (d - 1 > buf && *(d - 2) != SEP)
598 *(d - 1) = SEP;
c801d85f
KB
599 }
600 s = nm;
c2ff79b1
DW
601#ifdef __VISAGECPP__
602 // VA gives assignment in logical expr warning
603 while (*d)
604 *d++ = *s++;
605#else
c801d85f 606 while ((*d++ = *s++));
c2ff79b1 607#endif
c801d85f
KB
608 delete[] nm_tmp; // clean up alloc
609 /* Now clean up the buffer */
610 return wxRealPath(buf);
611}
612
c801d85f
KB
613/* Contract Paths to be build upon an environment variable
614 component:
615
616 example: "/usr/openwin/lib", OPENWINHOME --> ${OPENWINHOME}/lib
617
618 The call wxExpandPath can convert these back!
619 */
50920146 620wxChar *
c801d85f
KB
621wxContractPath (const wxString& filename, const wxString& envname, const wxString& user)
622{
50920146 623 static wxChar dest[_MAXPATHLEN];
c801d85f 624
223d09f6 625 if (filename == wxT(""))
50920146 626 return (wxChar *) NULL;
c801d85f 627
50920146 628 wxStrcpy (dest, WXSTRINGCAST filename);
2049ba38 629#ifdef __WXMSW__
c801d85f
KB
630 Unix2DosFilename(dest);
631#endif
632
633 // Handle environment
0e6667e2 634 const wxChar *val = (const wxChar *) NULL;
50920146
OK
635 wxChar *tcp = (wxChar *) NULL;
636 if (envname != WXSTRINGCAST NULL && (val = wxGetenv (WXSTRINGCAST envname)) != NULL &&
637 (tcp = wxStrstr (dest, val)) != NULL)
c801d85f 638 {
e90c1d2a 639 wxStrcpy (wxFileFunctionsBuffer, tcp + wxStrlen (val));
223d09f6
KB
640 *tcp++ = wxT('$');
641 *tcp++ = wxT('{');
50920146 642 wxStrcpy (tcp, WXSTRINGCAST envname);
223d09f6 643 wxStrcat (tcp, wxT("}"));
e90c1d2a 644 wxStrcat (tcp, wxFileFunctionsBuffer);
c801d85f
KB
645 }
646
647 // Handle User's home (ignore root homes!)
648 size_t len = 0;
649 if ((val = wxGetUserHome (user)) != NULL &&
50920146
OK
650 (len = wxStrlen(val)) > 2 &&
651 wxStrncmp(dest, val, len) == 0)
c801d85f 652 {
223d09f6
KB
653 wxStrcpy(wxFileFunctionsBuffer, wxT("~"));
654 if (user != wxT(""))
e90c1d2a 655 wxStrcat(wxFileFunctionsBuffer, (const wxChar*) user);
2049ba38 656#ifdef __WXMSW__
e90c1d2a 657// strcat(wxFileFunctionsBuffer, "\\");
c801d85f 658#else
e90c1d2a 659// strcat(wxFileFunctionsBuffer, "/");
c801d85f 660#endif
e90c1d2a
VZ
661 wxStrcat(wxFileFunctionsBuffer, dest + len);
662 wxStrcpy (dest, wxFileFunctionsBuffer);
c801d85f
KB
663 }
664
665 return dest;
666}
667
668// Return just the filename, not the path
669// (basename)
50920146 670wxChar *wxFileNameFromPath (wxChar *path)
c801d85f
KB
671{
672 if (path)
673 {
50920146 674 register wxChar *tcp;
c801d85f 675
50920146 676 tcp = path + wxStrlen (path);
c801d85f 677 while (--tcp >= path)
3f4a0c5b 678 {
223d09f6 679 if (*tcp == wxT('/') || *tcp == wxT('\\')
c801d85f 680#ifdef __VMS__
223d09f6 681 || *tcp == wxT(':') || *tcp == wxT(']'))
c801d85f
KB
682#else
683 )
684#endif
3f4a0c5b
VZ
685 return tcp + 1;
686 } /* while */
c2ff79b1 687#if defined(__WXMSW__) || defined(__WXPM__)
223d09f6 688 if (wxIsalpha (*path) && *(path + 1) == wxT(':'))
3f4a0c5b 689 return path + 2;
c801d85f
KB
690#endif
691 }
692 return path;
693}
694
695wxString wxFileNameFromPath (const wxString& path1)
696{
223d09f6 697 if (path1 != wxT(""))
c801d85f
KB
698 {
699
50920146
OK
700 wxChar *path = WXSTRINGCAST path1 ;
701 register wxChar *tcp;
c801d85f 702
50920146 703 tcp = path + wxStrlen (path);
c801d85f 704 while (--tcp >= path)
3f4a0c5b 705 {
223d09f6 706 if (*tcp == wxT('/') || *tcp == wxT('\\')
c801d85f 707#ifdef __VMS__
223d09f6 708 || *tcp == wxT(':') || *tcp == wxT(']'))
c801d85f
KB
709#else
710 )
711#endif
3f4a0c5b
VZ
712 return wxString(tcp + 1);
713 } /* while */
c2ff79b1 714#if defined(__WXMSW__) || defined(__WXPM__)
223d09f6 715 if (wxIsalpha (*path) && *(path + 1) == wxT(':'))
3f4a0c5b 716 return wxString(path + 2);
c801d85f
KB
717#endif
718 }
dface61c
JS
719 // Yes, this should return the path, not an empty string, otherwise
720 // we get "thing.txt" -> "".
721 return path1;
c801d85f
KB
722}
723
724// Return just the directory, or NULL if no directory
50920146
OK
725wxChar *
726wxPathOnly (wxChar *path)
c801d85f
KB
727{
728 if (path && *path)
729 {
50920146 730 static wxChar buf[_MAXPATHLEN];
c801d85f
KB
731
732 // Local copy
50920146 733 wxStrcpy (buf, path);
c801d85f 734
50920146 735 int l = wxStrlen(path);
c801d85f
KB
736 bool done = FALSE;
737
738 int i = l - 1;
739
740 // Search backward for a backward or forward slash
741 while (!done && i > -1)
742 {
743 // ] is for VMS
223d09f6 744 if (path[i] == wxT('/') || path[i] == wxT('\\') || path[i] == wxT(']'))
c801d85f
KB
745 {
746 done = TRUE;
747#ifdef __VMS__
748 buf[i+1] = 0;
749#else
750 buf[i] = 0;
751#endif
752
753 return buf;
754 }
755 else i --;
756 }
757
c2ff79b1 758#if defined(__WXMSW__) || defined(__WXPM__)
c801d85f 759 // Try Drive specifier
223d09f6 760 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b
VZ
761 {
762 // A:junk --> A:. (since A:.\junk Not A:\junk)
223d09f6
KB
763 buf[2] = wxT('.');
764 buf[3] = wxT('\0');
3f4a0c5b
VZ
765 return buf;
766 }
c801d85f
KB
767#endif
768 }
769
50920146 770 return (wxChar *) NULL;
c801d85f
KB
771}
772
773// Return just the directory, or NULL if no directory
774wxString wxPathOnly (const wxString& path)
775{
223d09f6 776 if (path != wxT(""))
c801d85f 777 {
50920146 778 wxChar buf[_MAXPATHLEN];
c801d85f
KB
779
780 // Local copy
50920146 781 wxStrcpy (buf, WXSTRINGCAST path);
c801d85f
KB
782
783 int l = path.Length();
784 bool done = FALSE;
785
786 int i = l - 1;
787
788 // Search backward for a backward or forward slash
789 while (!done && i > -1)
790 {
791 // ] is for VMS
223d09f6 792 if (path[i] == wxT('/') || path[i] == wxT('\\') || path[i] == wxT(']'))
c801d85f
KB
793 {
794 done = TRUE;
795#ifdef __VMS__
796 buf[i+1] = 0;
797#else
798 buf[i] = 0;
799#endif
800
801 return wxString(buf);
802 }
803 else i --;
804 }
805
c2ff79b1 806#if defined(__WXMSW__) || defined(__WXPM__)
c801d85f 807 // Try Drive specifier
223d09f6 808 if (wxIsalpha (buf[0]) && buf[1] == wxT(':'))
3f4a0c5b
VZ
809 {
810 // A:junk --> A:. (since A:.\junk Not A:\junk)
223d09f6
KB
811 buf[2] = wxT('.');
812 buf[3] = wxT('\0');
3f4a0c5b
VZ
813 return wxString(buf);
814 }
c801d85f
KB
815#endif
816 }
817
223d09f6 818 return wxString(wxT(""));
c801d85f
KB
819}
820
821// Utility for converting delimiters in DOS filenames to UNIX style
822// and back again - or we get nasty problems with delimiters.
823// Also, convert to lower case, since case is significant in UNIX.
824
17dff81c 825#ifdef __WXMAC__
e7549107
SC
826
827static char sMacFileNameConversion[ 1000 ] ;
828
829wxString wxMac2UnixFilename (const char *str)
17dff81c 830{
f6bcfd97
BP
831 char *s = sMacFileNameConversion ;
832 strcpy( s , str ) ;
e7549107
SC
833 if (s)
834 {
835 memmove( s+1 , s ,strlen( s ) + 1) ;
836 if ( *s == ':' )
837 *s = '.' ;
838 else
839 *s = '/' ;
840
841 while (*s)
842 {
843 if (*s == ':')
844 *s = '/';
845 else
846 *s = wxTolower (*s); // Case INDEPENDENT
847 s++;
848 }
849 }
850 return wxString (sMacFileNameConversion) ;
17dff81c
SC
851}
852
e7549107 853wxString wxUnix2MacFilename (const char *str)
17dff81c 854{
f6bcfd97
BP
855 char *s = sMacFileNameConversion ;
856 strcpy( s , str ) ;
e7549107
SC
857 if (s)
858 {
859 if ( *s == '.' )
860 {
861 // relative path , since it goes on with slash which is translated to a :
862 memmove( s , s+1 ,strlen( s ) ) ;
863 }
864 else if ( *s == '/' )
865 {
866 // absolute path -> on mac just start with the drive name
867 memmove( s , s+1 ,strlen( s ) ) ;
868 }
869 else
870 {
871 wxASSERT_MSG( 1 , "unkown path beginning" ) ;
872 }
873 while (*s)
874 {
875 if (*s == '/' || *s == '\\')
876 {
f6bcfd97
BP
877 // convert any back-directory situations
878 if ( *(s+1) == '.' && *(s+2) == '.' && ( (*(s+3) == '/' || *(s+3) == '\\') ) )
879 {
e7549107 880 *s = ':';
f6bcfd97
BP
881 memmove( s+1 , s+3 ,strlen( s+3 ) + 1 ) ;
882 }
883 else
e7549107
SC
884 *s = ':';
885 }
886
887 s++ ;
888 }
889 }
890 return wxString (sMacFileNameConversion) ;
17dff81c 891}
e7549107 892
f28538c5 893wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
e7549107 894{
f6bcfd97
BP
895 Handle myPath ;
896 short length ;
897
898 FSpGetFullPath( spec , &length , &myPath ) ;
899 ::SetHandleSize( myPath , length + 1 ) ;
900 ::HLock( myPath ) ;
901 (*myPath)[length] = 0 ;
902 if ( length > 0 && (*myPath)[length-1] ==':' )
903 (*myPath)[length-1] = 0 ;
904
905 wxString result( (char*) *myPath ) ;
906 ::HUnlock( myPath ) ;
907 ::DisposeHandle( myPath ) ;
908 return result ;
e7549107
SC
909}
910
911wxString wxMacFSSpec2UnixFilename( const FSSpec *spec )
912{
f6bcfd97 913 return wxMac2UnixFilename( wxMacFSSpec2MacFilename( spec) ) ;
e7549107
SC
914}
915
916void wxMacFilename2FSSpec( const char *path , FSSpec *spec )
917{
f6bcfd97 918 FSpLocationFromFullPath( strlen(path ) , path , spec ) ;
e7549107
SC
919}
920
921void wxUnixFilename2FSSpec( const char *path , FSSpec *spec )
922{
f6bcfd97
BP
923 wxString var = wxUnix2MacFilename( path ) ;
924 wxMacFilename2FSSpec( var , spec ) ;
e7549107
SC
925}
926
17dff81c 927#endif
3f4a0c5b 928void
e7549107 929wxDos2UnixFilename (char *s)
c801d85f
KB
930{
931 if (s)
932 while (*s)
933 {
e7549107
SC
934 if (*s == '\\')
935 *s = '/';
936#ifdef __WXMSW__
3f4a0c5b 937 else
e7549107 938 *s = wxTolower (*s); // Case INDEPENDENT
c801d85f 939#endif
3f4a0c5b 940 s++;
c801d85f
KB
941 }
942}
943
3f4a0c5b 944void
f28538c5 945#if defined(__WXMSW__) || defined(__WXPM__)
5b735202 946wxUnix2DosFilename (wxChar *s)
46dc76ba 947#else
5b735202 948wxUnix2DosFilename (wxChar *WXUNUSED(s) )
46dc76ba 949#endif
c801d85f
KB
950{
951// Yes, I really mean this to happen under DOS only! JACS
c2ff79b1 952#if defined(__WXMSW__) || defined(__WXPM__)
c801d85f
KB
953 if (s)
954 while (*s)
955 {
223d09f6
KB
956 if (*s == wxT('/'))
957 *s = wxT('\\');
3f4a0c5b 958 s++;
c801d85f
KB
959 }
960#endif
961}
962
963// Concatenate two files to form third
3f4a0c5b 964bool
c801d85f
KB
965wxConcatFiles (const wxString& file1, const wxString& file2, const wxString& file3)
966{
50920146 967 wxChar *outfile = wxGetTempFileName("cat");
c801d85f 968
c67daf87
UR
969 FILE *fp1 = (FILE *) NULL;
970 FILE *fp2 = (FILE *) NULL;
971 FILE *fp3 = (FILE *) NULL;
c801d85f 972 // Open the inputs and outputs
17dff81c 973#ifdef __WXMAC__
e7549107
SC
974 if ((fp1 = fopen (wxUnix2MacFilename( file1 ), "rb")) == NULL ||
975 (fp2 = fopen (wxUnix2MacFilename( file2 ), "rb")) == NULL ||
976 (fp3 = fopen (wxUnix2MacFilename( outfile ), "wb")) == NULL)
17dff81c 977#else
08942a0c
OK
978 if ((fp1 = wxFopen (WXSTRINGCAST file1, wxT("rb"))) == NULL ||
979 (fp2 = wxFopen (WXSTRINGCAST file2, wxT("rb"))) == NULL ||
980 (fp3 = wxFopen (outfile, wxT("wb"))) == NULL)
17dff81c 981#endif
c801d85f
KB
982 {
983 if (fp1)
3f4a0c5b 984 fclose (fp1);
c801d85f 985 if (fp2)
3f4a0c5b 986 fclose (fp2);
c801d85f 987 if (fp3)
3f4a0c5b 988 fclose (fp3);
c801d85f
KB
989 return FALSE;
990 }
991
992 int ch;
993 while ((ch = getc (fp1)) != EOF)
994 (void) putc (ch, fp3);
995 fclose (fp1);
996
997 while ((ch = getc (fp2)) != EOF)
998 (void) putc (ch, fp3);
999 fclose (fp2);
1000
1001 fclose (fp3);
1002 bool result = wxRenameFile(outfile, file3);
1003 delete[] outfile;
1004 return result;
1005}
1006
1007// Copy files
3f4a0c5b 1008bool
c801d85f
KB
1009wxCopyFile (const wxString& file1, const wxString& file2)
1010{
1011 FILE *fd1;
1012 FILE *fd2;
1013 int ch;
1014
17dff81c 1015#ifdef __WXMAC__
e7549107 1016 if ((fd1 = fopen (wxUnix2MacFilename( file1 ), "rb")) == NULL)
17dff81c 1017 return FALSE;
e7549107 1018 if ((fd2 = fopen (wxUnix2MacFilename( file2 ), "wb")) == NULL)
17dff81c 1019#else
08942a0c 1020 if ((fd1 = wxFopen (WXSTRINGCAST file1, wxT("rb"))) == NULL)
c801d85f 1021 return FALSE;
08942a0c 1022 if ((fd2 = wxFopen (WXSTRINGCAST file2, wxT("wb"))) == NULL)
17dff81c 1023#endif
c801d85f
KB
1024 {
1025 fclose (fd1);
1026 return FALSE;
1027 }
1028
1029 while ((ch = getc (fd1)) != EOF)
1030 (void) putc (ch, fd2);
1031
1032 fclose (fd1);
1033 fclose (fd2);
1034 return TRUE;
1035}
1036
3f4a0c5b 1037bool
c801d85f
KB
1038wxRenameFile (const wxString& file1, const wxString& file2)
1039{
17dff81c 1040#ifdef __WXMAC__
e7549107 1041 if (0 == rename (wxUnix2MacFilename( file1 ), wxUnix2MacFilename( file2 )))
17dff81c
SC
1042 return TRUE;
1043#else
c801d85f 1044 // Normal system call
f6bcfd97 1045 if (0 == wxRename (wxCSTRINGCAST file1, wxCSTRINGCAST file2))
c801d85f 1046 return TRUE;
17dff81c 1047#endif
c801d85f
KB
1048 // Try to copy
1049 if (wxCopyFile(file1, file2)) {
1050 wxRemoveFile(file1);
1051 return TRUE;
1052 }
1053 // Give up
1054 return FALSE;
1055}
1056
1057bool wxRemoveFile(const wxString& file)
1058{
3f4a0c5b 1059#if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__WATCOMC__)
66b3ec7f 1060 int flag = wxRemove(file);
17dff81c 1061#elif defined( __WXMAC__ )
e7549107 1062 int flag = unlink(wxUnix2MacFilename( file ));
c801d85f 1063#else
e90c1d2a 1064 int flag = unlink(wxFNSTRINGCAST file.fn_str());
c801d85f
KB
1065#endif
1066 return (flag == 0) ;
1067}
1068
1a33c3ba 1069bool wxMkdir(const wxString& dir, int perm)
c801d85f 1070{
1a33c3ba 1071#if defined( __WXMAC__ )
e7549107 1072 return (mkdir(wxUnix2MacFilename( dir ) , 0 ) == 0);
7708abe9 1073#else // !Mac
50920146 1074 const wxChar *dirname = dir.c_str();
1a33c3ba 1075
c2ff79b1 1076 // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
7708abe9 1077 // for the GNU compiler
f6bcfd97 1078#if (!(defined(__WXMSW__) || defined(__WXPM__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__)
50920146 1079 if ( mkdir(wxFNCONV(dirname), perm) != 0 )
f6bcfd97
BP
1080#elif defined(__WXPM__)
1081 if (::DosCreateDir((PSZ)dirname, NULL) != 0) // enhance for EAB's??
6fdbbb00 1082#else // !MSW and !OS/2 VAC++
f6bcfd97 1083 if ( wxMkDir(wxFNSTRINGCAST wxFNCONV(dirname)) != 0 )
7708abe9 1084#endif // !MSW/MSW
1a33c3ba
VZ
1085 {
1086 wxLogSysError(_("Directory '%s' couldn't be created"), dirname);
1087
1088 return FALSE;
1089 }
1090
1091 return TRUE;
e7549107 1092#endif // Mac/!Mac
c801d85f
KB
1093}
1094
1095bool wxRmdir(const wxString& dir, int WXUNUSED(flags))
1096{
1097#ifdef __VMS__
acdc3b6b 1098 return FALSE; //to be changed since rmdir exists in VMS7.x
17dff81c 1099#elif defined( __WXMAC__ )
e7549107 1100 return (rmdir(wxUnix2MacFilename( dir )) == 0);
f6bcfd97
BP
1101#elif defined(__WXPM__)
1102 return (::DosDeleteDir((PSZ)dir.c_str()) == 0);
c801d85f 1103#else
a3ef5bf5
JS
1104
1105#ifdef __SALFORDC__
1106 return FALSE; // What to do?
1107#else
f6bcfd97 1108 return (wxRmDir(wxFNSTRINGCAST dir.fn_str()) == 0);
c801d85f 1109#endif
a3ef5bf5
JS
1110
1111#endif
c801d85f
KB
1112}
1113
1114#if 0
1115bool wxDirExists(const wxString& dir)
1116{
1117#ifdef __VMS__
acdc3b6b 1118 return FALSE; //To be changed since stat exists in VMS7.x
2049ba38 1119#elif !defined(__WXMSW__)
c801d85f 1120 struct stat sbuf;
50920146 1121 return (stat(dir.fn_str(), &sbuf) != -1) && S_ISDIR(sbuf.st_mode) ? TRUE : FALSE;
c801d85f
KB
1122#else
1123
1124 /* MATTHEW: [6] Always use same code for Win32, call FindClose */
1125#if defined(__WIN32__)
1126 WIN32_FIND_DATA fileInfo;
1127#else
1128#ifdef __BORLANDC__
1129 struct ffblk fileInfo;
1130#else
1131 struct find_t fileInfo;
1132#endif
1133#endif
1134
1135#if defined(__WIN32__)
3f4a0c5b
VZ
1136 HANDLE h = FindFirstFile((LPTSTR) WXSTRINGCAST dir,(LPWIN32_FIND_DATA)&fileInfo);
1137
1138 if (h==INVALID_HANDLE_VALUE)
1139 return FALSE;
1140 else {
1141 FindClose(h);
1142 return ((fileInfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY);
1143 }
c801d85f
KB
1144#else
1145 // In Borland findfirst has a different argument
1146 // ordering from _dos_findfirst. But _dos_findfirst
1147 // _should_ be ok in both MS and Borland... why not?
1148#ifdef __BORLANDC__
1149 return ((findfirst(WXSTRINGCAST dir, &fileInfo, _A_SUBDIR) == 0 && (fileInfo.ff_attrib & _A_SUBDIR) != 0));
1150#else
1151 return (((_dos_findfirst(WXSTRINGCAST dir, _A_SUBDIR, &fileInfo) == 0) && (fileInfo.attrib & _A_SUBDIR)) != 0);
1152#endif
1153#endif
1154
1155#endif
1156}
1157
1158#endif
1159
1160// does the path exists? (may have or not '/' or '\\' at the end)
50920146 1161bool wxPathExists(const wxChar *pszPathName)
c801d85f 1162{
f6bcfd97
BP
1163 wxString strPath(pszPathName);
1164#ifdef __WINDOWS__
1165 // Windows fails to find directory named "c:\dir\" even if "c:\dir" exists,
1166 // so remove all trailing backslashes from the path - but don't do this for
1167 // the pathes "d:\" (which are different from "d:") nor for just "\"
1168 while ( wxEndsWithPathSeparator(strPath) )
1169 {
1170 size_t len = strPath.length();
1171 if ( len == 1 || strPath[len - 1] == _T(':') )
1172 break;
c801d85f 1173
f6bcfd97
BP
1174 strPath.Truncate(len - 1);
1175 }
1176#endif // __WINDOWS__
1177
1178 wxStructStat st;
71c97a89 1179#ifndef __VISAGECPP__
f6bcfd97
BP
1180 return wxStat(wxFNSTRINGCAST strPath.fn_str(), &st) == 0 &&
1181 ((st.st_mode & S_IFMT) == S_IFDIR);
71c97a89
DW
1182#else
1183 // S_IFMT not supported in VA compilers.. st_mode is a 2byte value only
1184 return wxStat(wxFNSTRINGCAST strPath.fn_str(), &st) == 0 &&
1185 (st.st_mode == S_IFDIR);
1186#endif
1187
c801d85f
KB
1188}
1189
1190// Get a temporary filename, opening and closing the file.
50920146 1191wxChar *wxGetTempFileName(const wxString& prefix, wxChar *buf)
c801d85f 1192{
34138703 1193#ifdef __WINDOWS__
c801d85f 1194
3f4a0c5b 1195#ifndef __WIN32__
50920146 1196 wxChar tmp[144];
c801d85f
KB
1197 ::GetTempFileName(0, WXSTRINGCAST prefix, 0, tmp);
1198#else
50920146
OK
1199 wxChar tmp[MAX_PATH];
1200 wxChar tmpPath[MAX_PATH];
c801d85f
KB
1201 ::GetTempPath(MAX_PATH, tmpPath);
1202 ::GetTempFileName(tmpPath, WXSTRINGCAST prefix, 0, tmp);
1203#endif
50920146 1204 if (buf) wxStrcpy(buf, tmp);
c801d85f
KB
1205 else buf = copystring(tmp);
1206 return buf;
1207
1208#else
3f4a0c5b 1209 static short last_temp = 0; // cache last to speed things a bit
c801d85f 1210 // At most 1000 temp files to a process! We use a ring count.
50920146 1211 wxChar tmp[100]; // FIXME static buffer
c801d85f
KB
1212
1213 for (short suffix = last_temp + 1; suffix != last_temp; ++suffix %= 1000)
1214 {
223d09f6 1215 wxSprintf (tmp, wxT("/tmp/%s%d.%03x"), WXSTRINGCAST prefix, (int) getpid (), (int) suffix);
c801d85f 1216 if (!wxFileExists( tmp ))
3f4a0c5b
VZ
1217 {
1218 // Touch the file to create it (reserve name)
50920146 1219 FILE *fd = fopen (wxFNCONV(tmp), "w");
3f4a0c5b
VZ
1220 if (fd)
1221 fclose (fd);
1222 last_temp = suffix;
c801d85f 1223 if (buf)
50920146 1224 wxStrcpy( buf, tmp);
3f4a0c5b
VZ
1225 else
1226 buf = copystring( tmp );
1227 return buf;
1228 }
c801d85f 1229 }
f5abe911 1230 wxLogError( _("wxWindows: error finding temporary file name.\n") );
c801d85f 1231 if (buf) buf[0] = 0;
50920146 1232 return (wxChar *) NULL;
c801d85f
KB
1233#endif
1234}
1235
c0ab6adf
JS
1236bool wxGetTempFileName(const wxString& prefix, wxString& buf)
1237{
1238 wxChar buf2[512];
1239 if (wxGetTempFileName(prefix, buf2) != (wxChar*) NULL)
1240 {
1241 buf = buf2;
1242 return TRUE;
1243 }
1244 else
1245 return FALSE;
1246}
1247
c801d85f
KB
1248// Get first file name matching given wild card.
1249
1250#ifdef __UNIX__
1251
1252// Get first file name matching given wild card.
1253// Flags are reserved for future use.
1254
acdc3b6b 1255#if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
7af89395
VZ
1256 static DIR *gs_dirStream = (DIR *) NULL;
1257 static wxString gs_strFileSpec;
1258 static int gs_findFlags = 0;
c801d85f
KB
1259#endif
1260
50920146 1261wxString wxFindFirstFile(const wxChar *spec, int flags)
c801d85f 1262{
7af89395
VZ
1263 wxString result;
1264
acdc3b6b 1265#if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
7af89395
VZ
1266 if (gs_dirStream)
1267 closedir(gs_dirStream); // edz 941103: better housekeping
c801d85f 1268
7af89395 1269 gs_findFlags = flags;
c801d85f 1270
7af89395 1271 gs_strFileSpec = spec;
c801d85f 1272
7af89395
VZ
1273 // Find path only so we can concatenate
1274 // found file onto path
1275 wxString path(wxPathOnly(gs_strFileSpec));
c801d85f 1276
7af89395 1277 // special case: path is really "/"
223d09f6
KB
1278 if ( !path && gs_strFileSpec[0u] == wxT('/') )
1279 path = wxT('/');
7af89395
VZ
1280 // path is empty => Local directory
1281 if ( !path )
223d09f6 1282 path = wxT('.');
3f4a0c5b 1283
50920146 1284 gs_dirStream = opendir(path.fn_str());
7af89395
VZ
1285 if ( !gs_dirStream )
1286 {
1287 wxLogSysError(_("Can not enumerate files in directory '%s'"),
1288 path.c_str());
1289 }
1290 else
1291 {
1292 result = wxFindNextFile();
1293 }
acdc3b6b 1294#endif // !VMS6.x or earlier
c801d85f 1295
7af89395 1296 return result;
c801d85f
KB
1297}
1298
7af89395 1299wxString wxFindNextFile()
c801d85f 1300{
7af89395 1301 wxString result;
c801d85f 1302
acdc3b6b 1303#if !defined( __VMS__ ) || ( __VMS_VER >= 70000000 )
223d09f6 1304 wxCHECK_MSG( gs_dirStream, result, wxT("must call wxFindFirstFile first") );
7af89395
VZ
1305
1306 // Find path only so we can concatenate
1307 // found file onto path
1308 wxString path(wxPathOnly(gs_strFileSpec));
1309 wxString name(wxFileNameFromPath(gs_strFileSpec));
1310
1311 /* MATTHEW: special case: path is really "/" */
223d09f6
KB
1312 if ( !path && gs_strFileSpec[0u] == wxT('/'))
1313 path = wxT('/');
7af89395
VZ
1314
1315 // Do the reading
1316 struct dirent *nextDir;
1317 for ( nextDir = readdir(gs_dirStream);
1318 nextDir != NULL;
1319 nextDir = readdir(gs_dirStream) )
1320 {
bf9e3e73 1321 if (wxMatchWild(name, nextDir->d_name, FALSE) && // RR: added FALSE to find hidden files
f6bcfd97
BP
1322 strcmp(nextDir->d_name, ".") &&
1323 strcmp(nextDir->d_name, "..") )
7af89395
VZ
1324 {
1325 result.Empty();
1326 if ( !path.IsEmpty() )
1327 {
1328 result = path;
223d09f6
KB
1329 if ( path != wxT('/') )
1330 result += wxT('/');
7af89395 1331 }
c801d85f 1332
7af89395 1333 result += nextDir->d_name;
c801d85f 1334
7af89395
VZ
1335 // Only return "." and ".." when they match
1336 bool isdir;
1337 if ( (strcmp(nextDir->d_name, ".") == 0) ||
1338 (strcmp(nextDir->d_name, "..") == 0))
1339 {
1340 if ( (gs_findFlags & wxDIR) != 0 )
1341 isdir = TRUE;
1342 else
1343 continue;
1344 }
1345 else
1346 isdir = wxDirExists(result);
c801d85f 1347
7af89395
VZ
1348 // and only return directories when flags & wxDIR
1349 if ( !gs_findFlags ||
1350 ((gs_findFlags & wxDIR) && isdir) ||
1351 ((gs_findFlags & wxFILE) && !isdir) )
1352 {
1353 return result;
1354 }
1355 }
1356 }
c801d85f 1357
7af89395 1358 result.Empty(); // not found
c801d85f 1359
7af89395
VZ
1360 closedir(gs_dirStream);
1361 gs_dirStream = (DIR *) NULL;
acdc3b6b 1362#endif // !VMS6.2 or earlier
c801d85f 1363
7af89395 1364 return result;
c801d85f
KB
1365}
1366
7c74e7fe
SC
1367#elif defined(__WXMAC__)
1368
1369struct MacDirectoryIterator
1370{
f6bcfd97
BP
1371 CInfoPBRec m_CPB ;
1372 wxInt16 m_index ;
1373 long m_dirId ;
1374 Str255 m_name ;
7c74e7fe
SC
1375} ;
1376
1377static int g_iter_flags ;
1378
1379static MacDirectoryIterator g_iter ;
1380
1381wxString wxFindFirstFile(const wxChar *spec, int flags)
1382{
1383 wxString result;
1384
1385 g_iter_flags = flags; /* MATTHEW: [5] Remember flags */
1386
1387 // Find path only so we can concatenate found file onto path
1388 wxString path(wxPathOnly(spec));
1389 if ( !path.IsEmpty() )
1390 result << path << wxT('\\');
1391
f6bcfd97
BP
1392 FSSpec fsspec ;
1393
1394 wxUnixFilename2FSSpec( result , &fsspec ) ;
1395 g_iter.m_CPB.hFileInfo.ioVRefNum = fsspec.vRefNum ;
1396 g_iter.m_CPB.hFileInfo.ioNamePtr = g_iter.m_name ;
1397 g_iter.m_index = 0 ;
1398
1399 Boolean isDir ;
1400 FSpGetDirectoryID( &fsspec , &g_iter.m_dirId , &isDir ) ;
1401 if ( !isDir )
1402 return wxEmptyString ;
1403
1404 return wxFindNextFile( ) ;
7c74e7fe
SC
1405}
1406
1407wxString wxFindNextFile()
1408{
1409 wxString result;
1410
f6bcfd97
BP
1411 short err = noErr ;
1412
1413 while ( err == noErr )
1414 {
1415 g_iter.m_index++ ;
1416 g_iter.m_CPB.dirInfo.ioFDirIndex = g_iter.m_index;
1417 g_iter.m_CPB.dirInfo.ioDrDirID = g_iter.m_dirId; /* we need to do this every time */
1418 err = PBGetCatInfoSync((CInfoPBPtr)&g_iter.m_CPB);
1419 if ( err != noErr )
1420 break ;
1421
1422 if ( ( g_iter.m_CPB.dirInfo.ioFlAttrib & ioDirMask) != 0 && (g_iter_flags & wxDIR) ) // we have a directory
1423 break ;
1424
1425 if ( ( g_iter.m_CPB.dirInfo.ioFlAttrib & ioDirMask) == 0 && !(g_iter_flags & wxFILE ) )
1426 continue ;
1427
1428 // hit !
1429 break ;
1430 }
1431 if ( err != noErr )
1432 {
1433 return wxEmptyString ;
1434 }
1435 FSSpec spec ;
1436
1437 FSMakeFSSpecCompat(g_iter.m_CPB.hFileInfo.ioVRefNum,
1438 g_iter.m_dirId,
1439 g_iter.m_name,
1440 &spec) ;
1441
1442 return wxMacFSSpec2UnixFilename( &spec ) ;
7c74e7fe
SC
1443}
1444
2049ba38 1445#elif defined(__WXMSW__)
c801d85f
KB
1446
1447#ifdef __WIN32__
7af89395
VZ
1448 static HANDLE gs_hFileStruct = INVALID_HANDLE_VALUE;
1449 static WIN32_FIND_DATA gs_findDataStruct;
1450#else // Win16
1451 #ifdef __BORLANDC__
1452 static struct ffblk gs_findDataStruct;
1453 #else
1454 static struct _find_t gs_findDataStruct;
1455 #endif // Borland
1456#endif // Win32/16
1457
1458static wxString gs_strFileSpec;
1459static int gs_findFlags = 0;
1460
50920146 1461wxString wxFindFirstFile(const wxChar *spec, int flags)
c801d85f 1462{
7af89395
VZ
1463 wxString result;
1464
1465 gs_strFileSpec = spec;
1466 gs_findFlags = flags; /* MATTHEW: [5] Remember flags */
1467
1468 // Find path only so we can concatenate found file onto path
1469 wxString path(wxPathOnly(gs_strFileSpec));
1470 if ( !path.IsEmpty() )
223d09f6 1471 result << path << wxT('\\');
c801d85f
KB
1472
1473#ifdef __WIN32__
7af89395
VZ
1474 if ( gs_hFileStruct != INVALID_HANDLE_VALUE )
1475 FindClose(gs_hFileStruct);
c801d85f 1476
7af89395 1477 gs_hFileStruct = ::FindFirstFile(WXSTRINGCAST spec, &gs_findDataStruct);
c801d85f 1478
7af89395
VZ
1479 if ( gs_hFileStruct == INVALID_HANDLE_VALUE )
1480 {
7af89395 1481 result.Empty();
c801d85f 1482
7af89395
VZ
1483 return result;
1484 }
c801d85f 1485
7af89395
VZ
1486 bool isdir = !!(gs_findDataStruct.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
1487
1488 if (isdir && !(flags & wxDIR))
1489 return wxFindNextFile();
1490 else if (!isdir && flags && !(flags & wxFILE))
1491 return wxFindNextFile();
c801d85f 1492
7af89395
VZ
1493 result += gs_findDataStruct.cFileName;
1494
1495 return result;
f6bcfd97 1496#else // !Win32
7af89395 1497 int flag = _A_NORMAL;
f6bcfd97 1498 if (flags & wxDIR)
7af89395 1499 flag = _A_SUBDIR;
c801d85f
KB
1500
1501#ifdef __BORLANDC__
7af89395 1502 if (findfirst(WXSTRINGCAST spec, &gs_findDataStruct, flag) == 0)
c801d85f 1503#else
7af89395 1504 if (_dos_findfirst(WXSTRINGCAST spec, flag, &gs_findDataStruct) == 0)
c801d85f 1505#endif
7af89395 1506 {
7af89395 1507 char attrib;
c801d85f
KB
1508
1509#ifdef __BORLANDC__
7af89395 1510 attrib = gs_findDataStruct.ff_attrib;
c801d85f 1511#else
7af89395 1512 attrib = gs_findDataStruct.attrib;
c801d85f
KB
1513#endif
1514
7af89395
VZ
1515 if (attrib & _A_SUBDIR) {
1516 if (!(gs_findFlags & wxDIR))
1517 return wxFindNextFile();
1518 } else if (gs_findFlags && !(gs_findFlags & wxFILE))
3f4a0c5b 1519 return wxFindNextFile();
c801d85f 1520
7af89395 1521 result +=
c801d85f 1522#ifdef __BORLANDC__
7af89395 1523 gs_findDataStruct.ff_name
c801d85f 1524#else
7af89395 1525 gs_findDataStruct.name
c801d85f 1526#endif
7af89395
VZ
1527 ;
1528 }
7af89395
VZ
1529
1530 return result;
f6bcfd97 1531#endif // __WIN32__
c801d85f
KB
1532}
1533
32e768ae 1534
7af89395 1535wxString wxFindNextFile()
c801d85f 1536{
7af89395 1537 wxString result;
3f4a0c5b 1538
7af89395
VZ
1539 // Find path only so we can concatenate found file onto path
1540 wxString path(wxPathOnly(gs_strFileSpec));
1541
1542try_again:
c801d85f
KB
1543
1544#ifdef __WIN32__
7af89395 1545 if (gs_hFileStruct == INVALID_HANDLE_VALUE)
59fcb8f8 1546 return result;
c801d85f 1547
7af89395
VZ
1548 bool success = (FindNextFile(gs_hFileStruct, &gs_findDataStruct) != 0);
1549 if (!success)
1550 {
1551 FindClose(gs_hFileStruct);
1552 gs_hFileStruct = INVALID_HANDLE_VALUE;
1553 }
1554 else
1555 {
1556 bool isdir = !!(gs_findDataStruct.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
c801d85f 1557
7af89395
VZ
1558 if (isdir && !(gs_findFlags & wxDIR))
1559 goto try_again;
1560 else if (!isdir && gs_findFlags && !(gs_findFlags & wxFILE))
1561 goto try_again;
c801d85f 1562
7af89395 1563 if ( !path.IsEmpty() )
223d09f6 1564 result << path << wxT('\\');
7af89395
VZ
1565 result << gs_findDataStruct.cFileName;
1566 }
1567
1568 return result;
1569#else // Win16
c801d85f
KB
1570
1571#ifdef __BORLANDC__
7af89395 1572 if (findnext(&gs_findDataStruct) == 0)
c801d85f 1573#else
7af89395 1574 if (_dos_findnext(&gs_findDataStruct) == 0)
c801d85f 1575#endif
7af89395
VZ
1576 {
1577 /* MATTHEW: [5] Check directory flag */
1578 char attrib;
c801d85f
KB
1579
1580#ifdef __BORLANDC__
7af89395 1581 attrib = gs_findDataStruct.ff_attrib;
c801d85f 1582#else
7af89395 1583 attrib = gs_findDataStruct.attrib;
c801d85f
KB
1584#endif
1585
7af89395
VZ
1586 if (attrib & _A_SUBDIR) {
1587 if (!(gs_findFlags & wxDIR))
1588 goto try_again;
1589 } else if (gs_findFlags && !(gs_findFlags & wxFILE))
1590 goto try_again;
c801d85f
KB
1591
1592
7af89395 1593 result +=
c801d85f 1594#ifdef __BORLANDC__
7af89395 1595 gs_findDataStruct.ff_name
c801d85f 1596#else
7af89395 1597 gs_findDataStruct.name
c801d85f 1598#endif
7af89395
VZ
1599 ;
1600 }
7af89395
VZ
1601
1602 return result;
f6bcfd97 1603#endif // Win32/16
c801d85f
KB
1604}
1605
32e768ae
DW
1606#elif defined(__WXPM__)
1607
1608wxString wxFindFirstFile(const wxChar *spec, int flags)
1609{
1610 wxString result;
1611
1612 /*
1613 // TODO: figure something out here for OS/2
1614 gs_strFileSpec = spec;
1615 gs_findFlags = flags;
1616
1617 // Find path only so we can concatenate found file onto path
1618 wxString path(wxPathOnly(gs_strFileSpec));
1619 if ( !path.IsEmpty() )
1620 result << path << wxT('\\');
1621
1622 int flag = _A_NORMAL;
1623 if (flags & wxDIR)
1624 flag = _A_SUBDIR;
1625
1626 if (_dos_findfirst(WXSTRINGCAST spec, flag, &gs_findDataStruct) == 0)
1627 {
1628 char attrib;
1629 attrib = gs_findDataStruct.attrib;
1630
1631 if (attrib & _A_SUBDIR) {
1632 if (!(gs_findFlags & wxDIR))
1633 return wxFindNextFile();
1634 } else if (gs_findFlags && !(gs_findFlags & wxFILE))
1635 return wxFindNextFile();
1636
1637 result += gs_findDataStruct.name;
1638 }
1639 */
1640 return result;
1641}
1642
1643wxString wxFindNextFile()
1644{
1645 wxString result;
1646 // TODO:
1647 return result;
1648}
1649
1650#endif // Unix/Windows/OS/2
c801d85f
KB
1651
1652// Get current working directory.
1653// If buf is NULL, allocates space using new, else
1654// copies into buf.
50920146 1655wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
c801d85f
KB
1656{
1657 if (!buf)
50920146
OK
1658 buf = new wxChar[sz+1];
1659#if wxUSE_UNICODE
1660 char *cbuf = new char[sz+1];
1661#ifdef _MSC_VER
1662 if (_getcwd(cbuf, sz) == NULL) {
e7549107 1663#elif defined( __WXMAC__)
f6bcfd97
BP
1664 enum
1665 {
1666 SFSaveDisk = 0x214, CurDirStore = 0x398
1667 };
1668 FSSpec cwdSpec ;
1669
1670 FSMakeFSSpec( - *(short *) SFSaveDisk , *(long *) CurDirStore , NULL , &cwdSpec ) ;
1671 wxString res = wxMacFSSpec2UnixFilename( &cwdSpec ) ;
1672 strcpy( buf , res ) ;
1673 if (0) {
50920146
OK
1674#else
1675 if (getcwd(cbuf, sz) == NULL) {
1676#endif
1677 delete [] cbuf;
7c74e7fe 1678#else // wxUnicode
3f4a0c5b 1679#ifdef _MSC_VER
c801d85f 1680 if (_getcwd(buf, sz) == NULL) {
7c74e7fe 1681#elif defined( __WXMAC__)
f6bcfd97
BP
1682 enum
1683 {
1684 SFSaveDisk = 0x214, CurDirStore = 0x398
1685 };
1686 FSSpec cwdSpec ;
1687
1688 FSMakeFSSpec( - *(short *) SFSaveDisk , *(long *) CurDirStore , NULL , &cwdSpec ) ;
1689 wxString res = wxMacFSSpec2UnixFilename( &cwdSpec ) ;
1690 strcpy( buf , res ) ;
1691 if (0) {
1692#elif(__VISAGECPP__)
1693 APIRET rc;
1694 rc = ::DosQueryCurrentDir( 0 // current drive
1695 ,buf
1696 ,(PULONG)&sz
1697 );
1698 if (rc != 0) {
c801d85f
KB
1699#else
1700 if (getcwd(buf, sz) == NULL) {
1701#endif
50920146 1702#endif
223d09f6
KB
1703 buf[0] = wxT('.');
1704 buf[1] = wxT('\0');
50920146
OK
1705 }
1706#if wxUSE_UNICODE
1707 else {
dcf924a3 1708 wxConvFile.MB2WC(buf, cbuf, sz);
50920146 1709 delete [] cbuf;
c801d85f 1710 }
50920146 1711#endif
c801d85f
KB
1712 return buf;
1713}
1714
7af89395
VZ
1715wxString wxGetCwd()
1716{
eac2aeb0
VZ
1717 static const size_t maxPathLen = 1024;
1718
1719 wxString str;
1720 wxGetWorkingDirectory(str.GetWriteBuf(maxPathLen), maxPathLen);
1721 str.UngetWriteBuf();
1722
1723 return str;
7af89395
VZ
1724}
1725
c801d85f
KB
1726bool wxSetWorkingDirectory(const wxString& d)
1727{
f6bcfd97 1728#if defined( __UNIX__ ) || defined( __WXMAC__ )
e90c1d2a 1729 return (chdir(wxFNSTRINGCAST d.fn_str()) == 0);
f6bcfd97
BP
1730#elif defined(__WXPM__)
1731 return (::DosSetCurrentDir((PSZ)d.c_str()) == 0);
34138703 1732#elif defined(__WINDOWS__)
c801d85f
KB
1733
1734#ifdef __WIN32__
1735 return (bool)(SetCurrentDirectory(d) != 0);
1736#else
1737 // Must change drive, too.
1738 bool isDriveSpec = ((strlen(d) > 1) && (d[1] == ':'));
1739 if (isDriveSpec)
1740 {
50920146 1741 wxChar firstChar = d[0];
c801d85f
KB
1742
1743 // To upper case
1744 if (firstChar > 90)
1745 firstChar = firstChar - 32;
1746
1747 // To a drive number
1748 unsigned int driveNo = firstChar - 64;
1749 if (driveNo > 0)
1750 {
1751 unsigned int noDrives;
1752 _dos_setdrive(driveNo, &noDrives);
1753 }
1754 }
1755 bool success = (chdir(WXSTRINGCAST d) == 0);
1756
1757 return success;
1758#endif
1759
1760#endif
1761}
1762
631f1bfe
JS
1763// Get the OS directory if appropriate (such as the Windows directory).
1764// On non-Windows platform, probably just return the empty string.
1765wxString wxGetOSDirectory()
1766{
1767#ifdef __WINDOWS__
50920146 1768 wxChar buf[256];
631f1bfe
JS
1769 GetWindowsDirectory(buf, 256);
1770 return wxString(buf);
1771#else
1772 return wxEmptyString;
1773#endif
1774}
1775
a907da15 1776bool wxEndsWithPathSeparator(const wxChar *pszFileName)
c801d85f 1777{
a907da15 1778 size_t len = wxStrlen(pszFileName);
c801d85f
KB
1779 if ( len == 0 )
1780 return FALSE;
1781 else
1782 return wxIsPathSeparator(pszFileName[len - 1]);
1783}
1784
1785// find a file in a list of directories, returns false if not found
50920146 1786bool wxFindFileInPath(wxString *pStr, const wxChar *pszPath, const wxChar *pszFile)
c801d85f 1787{
a17e237f
VZ
1788 // we assume that it's not empty
1789 wxCHECK_MSG( !wxIsEmpty(pszFile), FALSE,
f6bcfd97 1790 _T("empty file name in wxFindFileInPath"));
a17e237f
VZ
1791
1792 // skip path separator in the beginning of the file name if present
1793 if ( wxIsPathSeparator(*pszFile) )
1794 pszFile++;
1795
1796 // copy the path (strtok will modify it)
1797 wxChar *szPath = new wxChar[wxStrlen(pszPath) + 1];
1798 wxStrcpy(szPath, pszPath);
1799
1800 wxString strFile;
1801 wxChar *pc, *save_ptr;
1802 for ( pc = wxStrtok(szPath, wxPATH_SEP, &save_ptr);
1803 pc != NULL;
1804 pc = wxStrtok((wxChar *) NULL, wxPATH_SEP, &save_ptr) )
1805 {
1806 // search for the file in this directory
1807 strFile = pc;
1808 if ( !wxEndsWithPathSeparator(pc) )
1809 strFile += wxFILE_SEP_PATH;
1810 strFile += pszFile;
1811
1812 if ( FileExists(strFile) ) {
1813 *pStr = strFile;
1814 break;
1815 }
c801d85f 1816 }
c801d85f 1817
a17e237f
VZ
1818 // suppress warning about unused variable save_ptr when wxStrtok() is a
1819 // macro which throws away its third argument
1820 save_ptr = pc;
1821
1822 delete [] szPath;
c801d85f 1823
a17e237f 1824 return pc != NULL; // if true => we breaked from the loop
c801d85f
KB
1825}
1826
50920146 1827void WXDLLEXPORT wxSplitPath(const wxChar *pszFileName,
3826db3e
VZ
1828 wxString *pstrPath,
1829 wxString *pstrName,
1830 wxString *pstrExt)
1831{
d37fd2fa 1832 // it can be empty, but it shouldn't be NULL
223d09f6 1833 wxCHECK_RET( pszFileName, wxT("NULL file name in wxSplitPath") );
3826db3e 1834
50920146 1835 const wxChar *pDot = wxStrrchr(pszFileName, wxFILE_SEP_EXT);
3826db3e 1836
d37fd2fa
VZ
1837#ifdef __WXMSW__
1838 // under Windows we understand both separators
50920146
OK
1839 const wxChar *pSepUnix = wxStrrchr(pszFileName, wxFILE_SEP_PATH_UNIX);
1840 const wxChar *pSepDos = wxStrrchr(pszFileName, wxFILE_SEP_PATH_DOS);
1841 const wxChar *pLastSeparator = pSepUnix > pSepDos ? pSepUnix : pSepDos;
d37fd2fa 1842#else // assume Unix
50920146 1843 const wxChar *pLastSeparator = wxStrrchr(pszFileName, wxFILE_SEP_PATH_UNIX);
d37fd2fa 1844
b0230a69 1845 if ( pDot )
d37fd2fa 1846 {
b0230a69
VZ
1847 if ( (pDot == pszFileName) || (*(pDot - 1) == wxFILE_SEP_PATH_UNIX) )
1848 {
1849 // under Unix, dot may be (and commonly is) the first character of the
1850 // filename, don't treat the entire filename as extension in this case
1851 pDot = NULL;
1852 }
d37fd2fa
VZ
1853 }
1854#endif // MSW/Unix
c2ff79b1 1855
b0230a69 1856 if ( pDot && (pDot < pLastSeparator) )
d37fd2fa
VZ
1857 {
1858 // the dot is part of the path, not the start of the extension
1859 pDot = NULL;
1860 }
2a6f6231 1861
d37fd2fa
VZ
1862 if ( pstrPath )
1863 {
c2ff79b1 1864 if ( pLastSeparator )
d37fd2fa
VZ
1865 *pstrPath = wxString(pszFileName, pLastSeparator - pszFileName);
1866 else
1867 pstrPath->Empty();
1868 }
2a6f6231 1869
3826db3e 1870 if ( pstrName )
d37fd2fa 1871 {
50920146
OK
1872 const wxChar *start = pLastSeparator ? pLastSeparator + 1 : pszFileName;
1873 const wxChar *end = pDot ? pDot : pszFileName + wxStrlen(pszFileName);
d37fd2fa
VZ
1874
1875 *pstrName = wxString(start, end - start);
1876 }
1877
3826db3e 1878 if ( pstrExt )
d37fd2fa
VZ
1879 {
1880 if ( pDot )
1881 *pstrExt = wxString(pDot + 1);
1882 else
1883 pstrExt->Empty();
1884 }
3826db3e 1885}
7f555861 1886
a47ce4a7
VS
1887time_t WXDLLEXPORT wxFileModificationTime(const wxString& filename)
1888{
f6bcfd97 1889 wxStructStat buf;
a47ce4a7 1890
f6bcfd97 1891 wxStat(filename.fn_str(), &buf);
a47ce4a7
VS
1892 return buf.st_mtime;
1893}
1894
1895
7f555861
JS
1896//------------------------------------------------------------------------
1897// wild character routines
1898//------------------------------------------------------------------------
1899
1900bool wxIsWild( const wxString& pattern )
1901{
1902 wxString tmp = pattern;
50920146 1903 wxChar *pat = WXSTRINGCAST(tmp);
7f555861 1904 while (*pat) {
3f4a0c5b 1905 switch (*pat++) {
223d09f6 1906 case wxT('?'): case wxT('*'): case wxT('['): case wxT('{'):
3f4a0c5b 1907 return TRUE;
223d09f6 1908 case wxT('\\'):
3f4a0c5b
VZ
1909 if (!*pat++)
1910 return FALSE;
1911 }
7f555861
JS
1912 }
1913 return FALSE;
1914};
1915
b112d152 1916bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
99cc00ed 1917
7be1f0d9 1918#if defined(HAVE_FNMATCH_H)
dfcb1ae0 1919{
50920146 1920// this probably won't work well for multibyte chars in Unicode mode?
b112d152 1921 if(dot_special)
50920146 1922 return fnmatch(pat.fn_str(), text.fn_str(), FNM_PERIOD) == 0;
b112d152 1923 else
50920146 1924 return fnmatch(pat.fn_str(), text.fn_str(), 0) == 0;
dfcb1ae0
KB
1925}
1926#else
1927
7be1f0d9
JS
1928// #pragma error Broken implementation of wxMatchWild() -- needs fixing!
1929
dfcb1ae0
KB
1930 /*
1931 * WARNING: this code is broken!
1932 */
7f555861
JS
1933{
1934 wxString tmp1 = pat;
50920146 1935 wxChar *pattern = WXSTRINGCAST(tmp1);
7f555861 1936 wxString tmp2 = text;
50920146
OK
1937 wxChar *str = WXSTRINGCAST(tmp2);
1938 wxChar c;
1939 wxChar *cp;
7f555861
JS
1940 bool done = FALSE, ret_code, ok;
1941 // Below is for vi fans
223d09f6 1942 const wxChar OB = wxT('{'), CB = wxT('}');
7f555861
JS
1943
1944 // dot_special means '.' only matches '.'
223d09f6 1945 if (dot_special && *str == wxT('.') && *pattern != *str)
3f4a0c5b 1946 return FALSE;
7f555861 1947
223d09f6
KB
1948 while ((*pattern != wxT('\0')) && (!done)
1949 && (((*str==wxT('\0'))&&((*pattern==OB)||(*pattern==wxT('*'))))||(*str!=wxT('\0')))) {
3f4a0c5b 1950 switch (*pattern) {
223d09f6 1951 case wxT('\\'):
3f4a0c5b 1952 pattern++;
223d09f6 1953 if (*pattern != wxT('\0'))
3f4a0c5b
VZ
1954 pattern++;
1955 break;
223d09f6 1956 case wxT('*'):
3f4a0c5b
VZ
1957 pattern++;
1958 ret_code = FALSE;
223d09f6 1959 while ((*str!=wxT('\0'))
3f4a0c5b
VZ
1960 && (!(ret_code=wxMatchWild(pattern, str++, FALSE))))
1961 /*loop*/;
1962 if (ret_code) {
223d09f6 1963 while (*str != wxT('\0'))
3f4a0c5b 1964 str++;
223d09f6 1965 while (*pattern != wxT('\0'))
3f4a0c5b
VZ
1966 pattern++;
1967 }
1968 break;
223d09f6 1969 case wxT('['):
3f4a0c5b
VZ
1970 pattern++;
1971 repeat:
223d09f6 1972 if ((*pattern == wxT('\0')) || (*pattern == wxT(']'))) {
3f4a0c5b
VZ
1973 done = TRUE;
1974 break;
1975 }
223d09f6 1976 if (*pattern == wxT('\\')) {
3f4a0c5b 1977 pattern++;
223d09f6 1978 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
1979 done = TRUE;
1980 break;
1981 }
1982 }
223d09f6 1983 if (*(pattern + 1) == wxT('-')) {
3f4a0c5b
VZ
1984 c = *pattern;
1985 pattern += 2;
223d09f6 1986 if (*pattern == wxT(']')) {
3f4a0c5b
VZ
1987 done = TRUE;
1988 break;
1989 }
223d09f6 1990 if (*pattern == wxT('\\')) {
3f4a0c5b 1991 pattern++;
223d09f6 1992 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
1993 done = TRUE;
1994 break;
1995 }
1996 }
1997 if ((*str < c) || (*str > *pattern)) {
1998 pattern++;
1999 goto repeat;
2000 }
2001 } else if (*pattern != *str) {
2002 pattern++;
2003 goto repeat;
2004 }
2005 pattern++;
223d09f6
KB
2006 while ((*pattern != wxT(']')) && (*pattern != wxT('\0'))) {
2007 if ((*pattern == wxT('\\')) && (*(pattern + 1) != wxT('\0')))
3f4a0c5b
VZ
2008 pattern++;
2009 pattern++;
2010 }
223d09f6 2011 if (*pattern != wxT('\0')) {
3f4a0c5b
VZ
2012 pattern++, str++;
2013 }
2014 break;
223d09f6 2015 case wxT('?'):
3f4a0c5b
VZ
2016 pattern++;
2017 str++;
2018 break;
2019 case OB:
2020 pattern++;
223d09f6 2021 while ((*pattern != CB) && (*pattern != wxT('\0'))) {
3f4a0c5b
VZ
2022 cp = str;
2023 ok = TRUE;
223d09f6
KB
2024 while (ok && (*cp != wxT('\0')) && (*pattern != wxT('\0'))
2025 && (*pattern != wxT(',')) && (*pattern != CB)) {
2026 if (*pattern == wxT('\\'))
3f4a0c5b
VZ
2027 pattern++;
2028 ok = (*pattern++ == *cp++);
2029 }
223d09f6 2030 if (*pattern == wxT('\0')) {
3f4a0c5b
VZ
2031 ok = FALSE;
2032 done = TRUE;
2033 break;
2034 } else if (ok) {
2035 str = cp;
223d09f6
KB
2036 while ((*pattern != CB) && (*pattern != wxT('\0'))) {
2037 if (*++pattern == wxT('\\')) {
3f4a0c5b
VZ
2038 if (*++pattern == CB)
2039 pattern++;
2040 }
2041 }
2042 } else {
223d09f6
KB
2043 while (*pattern!=CB && *pattern!=wxT(',') && *pattern!=wxT('\0')) {
2044 if (*++pattern == wxT('\\')) {
2045 if (*++pattern == CB || *pattern == wxT(','))
3f4a0c5b
VZ
2046 pattern++;
2047 }
2048 }
2049 }
223d09f6 2050 if (*pattern != wxT('\0'))
3f4a0c5b
VZ
2051 pattern++;
2052 }
2053 break;
2054 default:
2055 if (*str == *pattern) {
2056 str++, pattern++;
2057 } else {
2058 done = TRUE;
2059 }
2060 }
7f555861 2061 }
223d09f6 2062 while (*pattern == wxT('*'))
3f4a0c5b 2063 pattern++;
223d09f6 2064 return ((*str == wxT('\0')) && (*pattern == wxT('\0')));
7f555861 2065};
fd3f686c 2066
dfcb1ae0 2067#endif
7f555861 2068
3f4a0c5b 2069#ifdef __VISUALC__
fd3f686c 2070 #pragma warning(default:4706) // assignment within conditional expression
53c6e7cc 2071#endif // VC++