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