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