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