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