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