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