]> git.saurik.com Git - wxWidgets.git/blame - src/common/filename.cpp
replace more __WXDEBUG__ occurrences with wxDEBUG_LEVEL
[wxWidgets.git] / src / common / filename.cpp
CommitLineData
df5ddbca 1/////////////////////////////////////////////////////////////////////////////
097ead30
VZ
2// Name: src/common/filename.cpp
3// Purpose: wxFileName - encapsulates a file path
844f90fb 4// Author: Robert Roebling, Vadim Zeitlin
df5ddbca
RR
5// Modified by:
6// Created: 28.12.2000
7// RCS-ID: $Id$
8// Copyright: (c) 2000 Robert Roebling
65571936 9// Licence: wxWindows licence
df5ddbca
RR
10/////////////////////////////////////////////////////////////////////////////
11
04c943b1
VZ
12/*
13 Here are brief descriptions of the filename formats supported by this class:
14
2bc60417
RR
15 wxPATH_UNIX: standard Unix format, used under Darwin as well, absolute file
16 names have the form:
04c943b1
VZ
17 /dir1/dir2/.../dirN/filename, "." and ".." stand for the
18 current and parent directory respectively, "~" is parsed as the
19 user HOME and "~username" as the HOME of that user
20
2bc60417 21 wxPATH_DOS: DOS/Windows format, absolute file names have the form:
04c943b1
VZ
22 drive:\dir1\dir2\...\dirN\filename.ext where drive is a single
23 letter. "." and ".." as for Unix but no "~".
24
25 There are also UNC names of the form \\share\fullpath
26
ae4d7004 27 wxPATH_MAC: Mac OS 8/9 and Mac OS X under CodeWarrior 7 format, absolute file
2bc60417 28 names have the form
04c943b1
VZ
29 volume:dir1:...:dirN:filename
30 and the relative file names are either
31 :dir1:...:dirN:filename
32 or just
33 filename
34 (although :filename works as well).
a385b5df 35 Since the volume is just part of the file path, it is not
353f41cb 36 treated like a separate entity as it is done under DOS and
90a68369 37 VMS, it is just treated as another dir.
04c943b1
VZ
38
39 wxPATH_VMS: VMS native format, absolute file names have the form
40 <device>:[dir1.dir2.dir3]file.txt
41 or
42 <device>:[000000.dir1.dir2.dir3]file.txt
43
44 the <device> is the physical device (i.e. disk). 000000 is the
45 root directory on the device which can be omitted.
46
47 Note that VMS uses different separators unlike Unix:
48 : always after the device. If the path does not contain : than
49 the default (the device of the current directory) is assumed.
ba623ba2 50 [ start of directory specification
04c943b1
VZ
51 . separator between directory and subdirectory
52 ] between directory and file
53 */
54
097ead30
VZ
55// ============================================================================
56// declarations
57// ============================================================================
58
59// ----------------------------------------------------------------------------
60// headers
61// ----------------------------------------------------------------------------
62
df5ddbca
RR
63// For compilers that support precompilation, includes "wx.h".
64#include "wx/wxprec.h"
65
66#ifdef __BORLANDC__
0b9ab0bd 67#pragma hdrstop
df5ddbca
RR
68#endif
69
70#ifndef WX_PRECOMP
57bd4c60
WS
71 #ifdef __WXMSW__
72 #include "wx/msw/wrapwin.h" // For GetShort/LongPathName
73 #endif
ad9835c9
WS
74 #include "wx/dynarray.h"
75 #include "wx/intl.h"
76 #include "wx/log.h"
de6185e2 77 #include "wx/utils.h"
0bf751e7 78 #include "wx/crt.h"
df5ddbca
RR
79#endif
80
81#include "wx/filename.h"
b70a2866 82#include "wx/private/filename.h"
df5ddbca 83#include "wx/tokenzr.h"
844f90fb 84#include "wx/config.h" // for wxExpandEnvVars
35a6691a 85#include "wx/dynlib.h"
110c5094 86#include "wx/dir.h"
df5ddbca 87
57bd4c60
WS
88#if defined(__WIN32__) && defined(__MINGW32__)
89 #include "wx/msw/gccpriv.h"
951cd180
VZ
90#endif
91
1c193821
JS
92#ifdef __WXWINCE__
93#include "wx/msw/private.h"
94#endif
95
76a5e5d2 96#if defined(__WXMAC__)
c933e267 97 #include "wx/osx/private.h" // includes mac headers
76a5e5d2
SC
98#endif
99
951cd180
VZ
100// utime() is POSIX so should normally be available on all Unices
101#ifdef __UNIX_LIKE__
0b9ab0bd
RL
102#include <sys/types.h>
103#include <utime.h>
104#include <sys/stat.h>
105#include <unistd.h>
9e9b65c1
JS
106#endif
107
444d61ba
VS
108#ifdef __DJGPP__
109#include <unistd.h>
110#endif
111
01d981ec 112#ifdef __MWERKS__
31907d03
SC
113#ifdef __MACH__
114#include <sys/types.h>
115#include <utime.h>
116#include <sys/stat.h>
117#include <unistd.h>
118#else
0b9ab0bd
RL
119#include <stat.h>
120#include <unistd.h>
121#include <unix.h>
01d981ec 122#endif
31907d03 123#endif
01d981ec 124
d9f54bb0 125#ifdef __WATCOMC__
0b9ab0bd
RL
126#include <io.h>
127#include <sys/utime.h>
128#include <sys/stat.h>
d9f54bb0
VS
129#endif
130
24eb81cb
DW
131#ifdef __VISAGECPP__
132#ifndef MAX_PATH
133#define MAX_PATH 256
134#endif
135#endif
136
01c9a906 137#ifdef __EMX__
5d66debf 138#include <os2.h>
01c9a906
SN
139#define MAX_PATH _MAX_PATH
140#endif
141
23b8a262 142
bd08f2f7 143#if wxUSE_LONGLONG
060668a1 144extern const wxULongLong wxInvalidSize = (unsigned)-1;
bd08f2f7 145#endif // wxUSE_LONGLONG
23b8a262
JS
146
147
951cd180
VZ
148// ----------------------------------------------------------------------------
149// private classes
150// ----------------------------------------------------------------------------
151
152// small helper class which opens and closes the file - we use it just to get
153// a file handle for the given file name to pass it to some Win32 API function
c67d6888 154#if defined(__WIN32__) && !defined(__WXMICROWIN__)
951cd180
VZ
155
156class wxFileHandle
157{
158public:
6dbb903b
VZ
159 enum OpenMode
160 {
161 Read,
162 Write
163 };
164
6bc176b4 165 wxFileHandle(const wxString& filename, OpenMode mode, int flags = 0)
951cd180
VZ
166 {
167 m_hFile = ::CreateFile
168 (
e0a050e3 169 filename.fn_str(), // name
0ea621cc 170 mode == Read ? GENERIC_READ // access mask
6dbb903b 171 : GENERIC_WRITE,
54bcff35
VZ
172 FILE_SHARE_READ | // sharing mode
173 FILE_SHARE_WRITE, // (allow everything)
6dbb903b
VZ
174 NULL, // no secutity attr
175 OPEN_EXISTING, // creation disposition
6bc176b4 176 flags, // flags
6dbb903b 177 NULL // no template file
951cd180
VZ
178 );
179
180 if ( m_hFile == INVALID_HANDLE_VALUE )
181 {
49a70977
VS
182 if ( mode == Read )
183 wxLogSysError(_("Failed to open '%s' for reading"),
184 filename.c_str());
185 else
186 wxLogSysError(_("Failed to open '%s' for writing"),
187 filename.c_str());
951cd180
VZ
188 }
189 }
190
191 ~wxFileHandle()
192 {
193 if ( m_hFile != INVALID_HANDLE_VALUE )
194 {
195 if ( !::CloseHandle(m_hFile) )
196 {
197 wxLogSysError(_("Failed to close file handle"));
198 }
199 }
200 }
201
f363e05c 202 // return true only if the file could be opened successfully
951cd180
VZ
203 bool IsOk() const { return m_hFile != INVALID_HANDLE_VALUE; }
204
205 // get the handle
206 operator HANDLE() const { return m_hFile; }
207
208private:
209 HANDLE m_hFile;
210};
211
212#endif // __WIN32__
213
214// ----------------------------------------------------------------------------
215// private functions
216// ----------------------------------------------------------------------------
217
e2b87f38 218#if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
951cd180
VZ
219
220// convert between wxDateTime and FILETIME which is a 64-bit value representing
221// the number of 100-nanosecond intervals since January 1, 1601.
222
d56e2b97 223static void ConvertFileTimeToWx(wxDateTime *dt, const FILETIME &ft)
951cd180 224{
752f10a8 225 FILETIME ftcopy = ft;
6dbb903b 226 FILETIME ftLocal;
752f10a8 227 if ( !::FileTimeToLocalFileTime(&ftcopy, &ftLocal) )
6dbb903b
VZ
228 {
229 wxLogLastError(_T("FileTimeToLocalFileTime"));
230 }
d56e2b97 231
6dbb903b
VZ
232 SYSTEMTIME st;
233 if ( !::FileTimeToSystemTime(&ftLocal, &st) )
234 {
235 wxLogLastError(_T("FileTimeToSystemTime"));
236 }
d56e2b97 237
6dbb903b
VZ
238 dt->Set(st.wDay, wxDateTime::Month(st.wMonth - 1), st.wYear,
239 st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
951cd180
VZ
240}
241
d56e2b97 242static void ConvertWxToFileTime(FILETIME *ft, const wxDateTime& dt)
951cd180 243{
6dbb903b
VZ
244 SYSTEMTIME st;
245 st.wDay = dt.GetDay();
ad816476
WS
246 st.wMonth = (WORD)(dt.GetMonth() + 1);
247 st.wYear = (WORD)dt.GetYear();
6dbb903b
VZ
248 st.wHour = dt.GetHour();
249 st.wMinute = dt.GetMinute();
250 st.wSecond = dt.GetSecond();
251 st.wMilliseconds = dt.GetMillisecond();
252
253 FILETIME ftLocal;
254 if ( !::SystemTimeToFileTime(&st, &ftLocal) )
255 {
256 wxLogLastError(_T("SystemTimeToFileTime"));
257 }
d56e2b97 258
6dbb903b
VZ
259 if ( !::LocalFileTimeToFileTime(&ftLocal, ft) )
260 {
261 wxLogLastError(_T("LocalFileTimeToFileTime"));
262 }
951cd180
VZ
263}
264
e2b87f38 265#endif // wxUSE_DATETIME && __WIN32__
951cd180 266
67c34f64
VZ
267// return a string with the volume par
268static wxString wxGetVolumeString(const wxString& volume, wxPathFormat format)
269{
270 wxString path;
271
272 if ( !volume.empty() )
273 {
6ce27aa2
VZ
274 format = wxFileName::GetFormat(format);
275
67c34f64
VZ
276 // Special Windows UNC paths hack, part 2: undo what we did in
277 // SplitPath() and make an UNC path if we have a drive which is not a
278 // single letter (hopefully the network shares can't be one letter only
279 // although I didn't find any authoritative docs on this)
280 if ( format == wxPATH_DOS && volume.length() > 1 )
281 {
282 path << wxFILE_SEP_PATH_DOS << wxFILE_SEP_PATH_DOS << volume;
283 }
284 else if ( format == wxPATH_DOS || format == wxPATH_VMS )
285 {
286 path << volume << wxFileName::GetVolumeSeparator(format);
287 }
288 // else ignore
289 }
290
291 return path;
292}
293
9e1c7236
VZ
294// return true if the format used is the DOS/Windows one and the string looks
295// like a UNC path
296static bool IsUNCPath(const wxString& path, wxPathFormat format)
297{
298 return format == wxPATH_DOS &&
299 path.length() >= 4 && // "\\a" can't be a UNC path
300 path[0u] == wxFILE_SEP_PATH_DOS &&
301 path[1u] == wxFILE_SEP_PATH_DOS &&
302 path[2u] != wxFILE_SEP_PATH_DOS;
303}
304
097ead30
VZ
305// ============================================================================
306// implementation
307// ============================================================================
308
309// ----------------------------------------------------------------------------
844f90fb 310// wxFileName construction
097ead30 311// ----------------------------------------------------------------------------
df5ddbca 312
a35b27b1
RR
313void wxFileName::Assign( const wxFileName &filepath )
314{
04c943b1 315 m_volume = filepath.GetVolume();
844f90fb 316 m_dirs = filepath.GetDirs();
04c943b1
VZ
317 m_name = filepath.GetName();
318 m_ext = filepath.GetExt();
a2fa5040 319 m_relative = filepath.m_relative;
dfecbee5 320 m_hasExt = filepath.m_hasExt;
df5ddbca
RR
321}
322
04c943b1
VZ
323void wxFileName::Assign(const wxString& volume,
324 const wxString& path,
325 const wxString& name,
326 const wxString& ext,
dfecbee5 327 bool hasExt,
9e1c7236 328 wxPathFormat format)
a7b51bc8 329{
9e1c7236
VZ
330 // we should ignore paths which look like UNC shares because we already
331 // have the volume here and the UNC notation (\\server\path) is only valid
332 // for paths which don't start with a volume, so prevent SetPath() from
333 // recognizing "\\foo\bar" in "c:\\foo\bar" as an UNC path
334 //
335 // note also that this is a rather ugly way to do what we want (passing
336 // some kind of flag telling to ignore UNC paths to SetPath() would be
337 // better) but this is the safest thing to do to avoid breaking backwards
338 // compatibility in 2.8
339 if ( IsUNCPath(path, format) )
340 {
341 // remove one of the 2 leading backslashes to ensure that it's not
342 // recognized as an UNC path by SetPath()
343 wxString pathNonUNC(path, 1, wxString::npos);
344 SetPath(pathNonUNC, format);
345 }
346 else // no UNC complications
347 {
348 SetPath(path, format);
349 }
a7b51bc8
RR
350
351 m_volume = volume;
352 m_ext = ext;
353 m_name = name;
dfecbee5
VZ
354
355 m_hasExt = hasExt;
a7b51bc8
RR
356}
357
f1e77933 358void wxFileName::SetPath( const wxString& pathOrig, wxPathFormat format )
df5ddbca 359{
844f90fb 360 m_dirs.Clear();
90a68369 361
f1e77933 362 if ( pathOrig.empty() )
df5ddbca 363 {
f1e77933
VZ
364 // no path at all
365 m_relative = true;
a2fa5040 366
f1e77933
VZ
367 return;
368 }
90a68369 369
f1e77933 370 format = GetFormat( format );
a2fa5040 371
f1e77933
VZ
372 // 0) deal with possible volume part first
373 wxString volume,
374 path;
375 SplitVolume(pathOrig, &volume, &path, format);
376 if ( !volume.empty() )
377 {
378 m_relative = false;
a2fa5040 379
f1e77933
VZ
380 SetVolume(volume);
381 }
f363e05c 382
f1e77933
VZ
383 // 1) Determine if the path is relative or absolute.
384 wxChar leadingChar = path[0u];
a2fa5040 385
f1e77933
VZ
386 switch (format)
387 {
388 case wxPATH_MAC:
389 m_relative = leadingChar == wxT(':');
390
391 // We then remove a leading ":". The reason is in our
392 // storage form for relative paths:
393 // ":dir:file.txt" actually means "./dir/file.txt" in
394 // DOS notation and should get stored as
395 // (relative) (dir) (file.txt)
396 // "::dir:file.txt" actually means "../dir/file.txt"
397 // stored as (relative) (..) (dir) (file.txt)
398 // This is important only for the Mac as an empty dir
399 // actually means <UP>, whereas under DOS, double
400 // slashes can be ignored: "\\\\" is the same as "\\".
401 if (m_relative)
402 path.erase( 0, 1 );
403 break;
a2fa5040 404
f1e77933
VZ
405 case wxPATH_VMS:
406 // TODO: what is the relative path format here?
407 m_relative = false;
408 break;
90a68369 409
f1e77933
VZ
410 default:
411 wxFAIL_MSG( _T("Unknown path format") );
412 // !! Fall through !!
90a68369 413
f1e77933
VZ
414 case wxPATH_UNIX:
415 // the paths of the form "~" or "~username" are absolute
416 m_relative = leadingChar != wxT('/') && leadingChar != _T('~');
417 break;
353f41cb 418
f1e77933
VZ
419 case wxPATH_DOS:
420 m_relative = !IsPathSeparator(leadingChar, format);
421 break;
844f90fb 422
df5ddbca 423 }
f1e77933
VZ
424
425 // 2) Break up the path into its members. If the original path
426 // was just "/" or "\\", m_dirs will be empty. We know from
427 // the m_relative field, if this means "nothing" or "root dir".
428
429 wxStringTokenizer tn( path, GetPathSeparators(format) );
430
431 while ( tn.HasMoreTokens() )
a7b51bc8 432 {
f1e77933
VZ
433 wxString token = tn.GetNextToken();
434
435 // Remove empty token under DOS and Unix, interpret them
436 // as .. under Mac.
437 if (token.empty())
438 {
439 if (format == wxPATH_MAC)
440 m_dirs.Add( wxT("..") );
441 // else ignore
442 }
443 else
444 {
445 m_dirs.Add( token );
446 }
a7b51bc8 447 }
844f90fb
VZ
448}
449
450void wxFileName::Assign(const wxString& fullpath,
451 wxPathFormat format)
452{
04c943b1 453 wxString volume, path, name, ext;
dfecbee5
VZ
454 bool hasExt;
455 SplitPath(fullpath, &volume, &path, &name, &ext, &hasExt, format);
844f90fb 456
dfecbee5 457 Assign(volume, path, name, ext, hasExt, format);
844f90fb
VZ
458}
459
81f25632 460void wxFileName::Assign(const wxString& fullpathOrig,
844f90fb
VZ
461 const wxString& fullname,
462 wxPathFormat format)
463{
81f25632
VZ
464 // always recognize fullpath as directory, even if it doesn't end with a
465 // slash
466 wxString fullpath = fullpathOrig;
69858116 467 if ( !fullpath.empty() && !wxEndsWithPathSeparator(fullpath) )
81f25632 468 {
33b97389 469 fullpath += GetPathSeparator(format);
81f25632
VZ
470 }
471
52dbd056 472 wxString volume, path, name, ext;
dfecbee5 473 bool hasExt;
81f25632 474
4b6a582b
VZ
475 // do some consistency checks: the name should be really just the filename
476 // and the path should be really just a path
dfecbee5 477 wxString volDummy, pathDummy, nameDummy, extDummy;
81f25632 478
dfecbee5 479 SplitPath(fullname, &volDummy, &pathDummy, &name, &ext, &hasExt, format);
81f25632 480
dfecbee5 481 wxASSERT_MSG( volDummy.empty() && pathDummy.empty(),
81f25632
VZ
482 _T("the file name shouldn't contain the path") );
483
484 SplitPath(fullpath, &volume, &path, &nameDummy, &extDummy, format);
485
486 wxASSERT_MSG( nameDummy.empty() && extDummy.empty(),
487 _T("the path shouldn't contain file name nor extension") );
488
dfecbee5 489 Assign(volume, path, name, ext, hasExt, format);
52dbd056
VZ
490}
491
4c2deb19
VZ
492void wxFileName::Assign(const wxString& pathOrig,
493 const wxString& name,
494 const wxString& ext,
495 wxPathFormat format)
496{
497 wxString volume,
498 path;
499 SplitVolume(pathOrig, &volume, &path, format);
500
501 Assign(volume, path, name, ext, format);
502}
503
52dbd056
VZ
504void wxFileName::AssignDir(const wxString& dir, wxPathFormat format)
505{
b494c48b 506 Assign(dir, wxEmptyString, format);
844f90fb
VZ
507}
508
509void wxFileName::Clear()
510{
511 m_dirs.Clear();
04c943b1
VZ
512
513 m_volume =
844f90fb
VZ
514 m_name =
515 m_ext = wxEmptyString;
fb969475
VZ
516
517 // we don't have any absolute path for now
f363e05c 518 m_relative = true;
dfecbee5
VZ
519
520 // nor any extension
521 m_hasExt = false;
844f90fb
VZ
522}
523
524/* static */
520200fd 525wxFileName wxFileName::FileName(const wxString& file, wxPathFormat format)
844f90fb 526{
520200fd 527 return wxFileName(file, format);
844f90fb
VZ
528}
529
530/* static */
520200fd 531wxFileName wxFileName::DirName(const wxString& dir, wxPathFormat format)
844f90fb
VZ
532{
533 wxFileName fn;
520200fd 534 fn.AssignDir(dir, format);
844f90fb 535 return fn;
df5ddbca
RR
536}
537
844f90fb
VZ
538// ----------------------------------------------------------------------------
539// existence tests
540// ----------------------------------------------------------------------------
541
8e41796c 542bool wxFileName::FileExists() const
df5ddbca 543{
a35b27b1
RR
544 return wxFileName::FileExists( GetFullPath() );
545}
546
547bool wxFileName::FileExists( const wxString &file )
548{
549 return ::wxFileExists( file );
df5ddbca
RR
550}
551
8e41796c 552bool wxFileName::DirExists() const
df5ddbca 553{
db759dde 554 return wxFileName::DirExists( GetPath() );
a35b27b1
RR
555}
556
557bool wxFileName::DirExists( const wxString &dir )
558{
da865fdd 559 return ::wxDirExists( dir );
df5ddbca
RR
560}
561
844f90fb
VZ
562// ----------------------------------------------------------------------------
563// CWD and HOME stuff
564// ----------------------------------------------------------------------------
565
6f91bc33 566void wxFileName::AssignCwd(const wxString& volume)
df5ddbca 567{
6f91bc33 568 AssignDir(wxFileName::GetCwd(volume));
a35b27b1
RR
569}
570
844f90fb 571/* static */
6f91bc33 572wxString wxFileName::GetCwd(const wxString& volume)
a35b27b1 573{
6f91bc33
VZ
574 // if we have the volume, we must get the current directory on this drive
575 // and to do this we have to chdir to this volume - at least under Windows,
576 // I don't know how to get the current drive on another volume elsewhere
577 // (TODO)
578 wxString cwdOld;
579 if ( !volume.empty() )
580 {
581 cwdOld = wxGetCwd();
582 SetCwd(volume + GetVolumeSeparator());
583 }
584
585 wxString cwd = ::wxGetCwd();
586
587 if ( !volume.empty() )
588 {
589 SetCwd(cwdOld);
590 }
ae4d7004 591
6f91bc33 592 return cwd;
a35b27b1
RR
593}
594
595bool wxFileName::SetCwd()
596{
db759dde 597 return wxFileName::SetCwd( GetPath() );
df5ddbca
RR
598}
599
a35b27b1 600bool wxFileName::SetCwd( const wxString &cwd )
df5ddbca 601{
a35b27b1 602 return ::wxSetWorkingDirectory( cwd );
df5ddbca
RR
603}
604
a35b27b1
RR
605void wxFileName::AssignHomeDir()
606{
844f90fb 607 AssignDir(wxFileName::GetHomeDir());
a35b27b1 608}
844f90fb 609
a35b27b1
RR
610wxString wxFileName::GetHomeDir()
611{
612 return ::wxGetHomeDir();
613}
844f90fb 614
68351053 615
b70a2866
MW
616// ----------------------------------------------------------------------------
617// CreateTempFileName
618// ----------------------------------------------------------------------------
619
620#if wxUSE_FILE || wxUSE_FFILE
621
622
623#if !defined wx_fdopen && defined HAVE_FDOPEN
624 #define wx_fdopen fdopen
625#endif
626
627// NB: GetTempFileName() under Windows creates the file, so using
628// O_EXCL there would fail
629#ifdef __WINDOWS__
630 #define wxOPEN_EXCL 0
631#else
632 #define wxOPEN_EXCL O_EXCL
633#endif
634
635
636#ifdef wxOpenOSFHandle
637#define WX_HAVE_DELETE_ON_CLOSE
638// On Windows create a file with the FILE_FLAGS_DELETE_ON_CLOSE flags.
639//
640static int wxOpenWithDeleteOnClose(const wxString& filename)
df5ddbca 641{
b70a2866
MW
642 DWORD access = GENERIC_READ | GENERIC_WRITE;
643
644 DWORD disposition = OPEN_ALWAYS;
645
646 DWORD attributes = FILE_ATTRIBUTE_TEMPORARY |
647 FILE_FLAG_DELETE_ON_CLOSE;
648
e0a050e3 649 HANDLE h = ::CreateFile(filename.fn_str(), access, 0, NULL,
b70a2866
MW
650 disposition, attributes, NULL);
651
693bfcaf 652 return wxOpenOSFHandle(h, wxO_BINARY);
ade35f11 653}
b70a2866 654#endif // wxOpenOSFHandle
ade35f11 655
b70a2866
MW
656
657// Helper to open the file
658//
659static int wxTempOpen(const wxString& path, bool *deleteOnClose)
660{
661#ifdef WX_HAVE_DELETE_ON_CLOSE
662 if (*deleteOnClose)
663 return wxOpenWithDeleteOnClose(path);
664#endif
665
666 *deleteOnClose = false;
667
668 return wxOpen(path, wxO_BINARY | O_RDWR | O_CREAT | wxOPEN_EXCL, 0600);
669}
670
671
672#if wxUSE_FFILE
673// Helper to open the file and attach it to the wxFFile
674//
675static bool wxTempOpen(wxFFile *file, const wxString& path, bool *deleteOnClose)
ade35f11 676{
b70a2866
MW
677#ifndef wx_fdopen
678 *deleteOnClose = false;
679 return file->Open(path, _T("w+b"));
680#else // wx_fdopen
681 int fd = wxTempOpen(path, deleteOnClose);
693bfcaf 682 if (fd == -1)
b70a2866
MW
683 return false;
684 file->Attach(wx_fdopen(fd, "w+b"));
685 return file->IsOpened();
686#endif // wx_fdopen
687}
688#endif // wxUSE_FFILE
689
690
691#if !wxUSE_FILE
692 #define WXFILEARGS(x, y) y
693#elif !wxUSE_FFILE
694 #define WXFILEARGS(x, y) x
695#else
696 #define WXFILEARGS(x, y) x, y
697#endif
698
699
700// Implementation of wxFileName::CreateTempFileName().
701//
702static wxString wxCreateTempImpl(
703 const wxString& prefix,
704 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp),
705 bool *deleteOnClose = NULL)
706{
707#if wxUSE_FILE && wxUSE_FFILE
708 wxASSERT(fileTemp == NULL || ffileTemp == NULL);
709#endif
ade35f11 710 wxString path, dir, name;
b70a2866
MW
711 bool wantDeleteOnClose = false;
712
713 if (deleteOnClose)
714 {
715 // set the result to false initially
716 wantDeleteOnClose = *deleteOnClose;
717 *deleteOnClose = false;
718 }
719 else
720 {
721 // easier if it alwasys points to something
722 deleteOnClose = &wantDeleteOnClose;
723 }
ade35f11
VZ
724
725 // use the directory specified by the prefix
b70a2866 726 wxFileName::SplitPath(prefix, &dir, &name, NULL /* extension */);
ade35f11 727
6091caf0
JS
728 if (dir.empty())
729 {
8d7d6dea 730 dir = wxFileName::GetTempDir();
6091caf0
JS
731 }
732
1c193821 733#if defined(__WXWINCE__)
f05ba7ff 734 path = dir + wxT("\\") + name;
1c193821 735 int i = 1;
b70a2866 736 while (wxFileName::FileExists(path))
1c193821 737 {
f05ba7ff 738 path = dir + wxT("\\") + name ;
1c193821
JS
739 path << i;
740 i ++;
741 }
ade35f11 742
1c193821 743#elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
e0a050e3
VS
744 if ( !::GetTempFileName(dir.fn_str(), name.fn_str(), 0,
745 wxStringBuffer(path, MAX_PATH + 1)) )
ade35f11
VZ
746 {
747 wxLogLastError(_T("GetTempFileName"));
748
749 path.clear();
750 }
ade35f11 751
5a3912f2 752#else // !Windows
ade35f11
VZ
753 path = dir;
754
755 if ( !wxEndsWithPathSeparator(dir) &&
756 (name.empty() || !wxIsPathSeparator(name[0u])) )
757 {
d9f54bb0 758 path += wxFILE_SEP_PATH;
ade35f11
VZ
759 }
760
761 path += name;
762
7070f55b 763#if defined(HAVE_MKSTEMP)
ade35f11
VZ
764 // scratch space for mkstemp()
765 path += _T("XXXXXX");
766
74cf9763 767 // we need to copy the path to the buffer in which mkstemp() can modify it
86501081 768 wxCharBuffer buf(path.fn_str());
74cf9763
VZ
769
770 // cast is safe because the string length doesn't change
ca11abde 771 int fdTemp = mkstemp( (char*)(const char*) buf );
df22f860 772 if ( fdTemp == -1 )
ade35f11
VZ
773 {
774 // this might be not necessary as mkstemp() on most systems should have
775 // already done it but it doesn't hurt neither...
776 path.clear();
777 }
df22f860
VZ
778 else // mkstemp() succeeded
779 {
ca11abde 780 path = wxConvFile.cMB2WX( (const char*) buf );
a62848fd 781
b70a2866 782 #if wxUSE_FILE
df22f860
VZ
783 // avoid leaking the fd
784 if ( fileTemp )
785 {
786 fileTemp->Attach(fdTemp);
787 }
788 else
b70a2866
MW
789 #endif
790
791 #if wxUSE_FFILE
792 if ( ffileTemp )
793 {
794 #ifdef wx_fdopen
795 ffileTemp->Attach(wx_fdopen(fdTemp, "r+b"));
796 #else
797 ffileTemp->Open(path, _T("r+b"));
798 close(fdTemp);
799 #endif
800 }
801 else
802 #endif
803
df22f860
VZ
804 {
805 close(fdTemp);
806 }
807 }
ade35f11
VZ
808#else // !HAVE_MKSTEMP
809
810#ifdef HAVE_MKTEMP
811 // same as above
812 path += _T("XXXXXX");
813
ca11abde 814 wxCharBuffer buf = wxConvFile.cWX2MB( path );
b70a2866 815 if ( !mktemp( (char*)(const char*) buf ) )
ade35f11
VZ
816 {
817 path.clear();
818 }
aed08d79
RR
819 else
820 {
ca11abde 821 path = wxConvFile.cMB2WX( (const char*) buf );
aed08d79 822 }
7070f55b 823#else // !HAVE_MKTEMP (includes __DOS__)
ade35f11 824 // generate the unique file name ourselves
68351053 825 #if !defined(__DOS__) && !defined(__PALMOS__) && (!defined(__MWERKS__) || defined(__DARWIN__) )
ade35f11 826 path << (unsigned int)getpid();
7070f55b 827 #endif
ade35f11
VZ
828
829 wxString pathTry;
830
831 static const size_t numTries = 1000;
832 for ( size_t n = 0; n < numTries; n++ )
833 {
834 // 3 hex digits is enough for numTries == 1000 < 4096
3e778e3b 835 pathTry = path + wxString::Format(_T("%.03x"), (unsigned int) n);
b70a2866 836 if ( !wxFileName::FileExists(pathTry) )
ade35f11
VZ
837 {
838 break;
839 }
840
841 pathTry.clear();
842 }
843
844 path = pathTry;
845#endif // HAVE_MKTEMP/!HAVE_MKTEMP
846
df22f860
VZ
847#endif // HAVE_MKSTEMP/!HAVE_MKSTEMP
848
849#endif // Windows/!Windows
850
851 if ( path.empty() )
852 {
853 wxLogSysError(_("Failed to create a temporary file name"));
854 }
b70a2866 855 else
df22f860 856 {
b70a2866
MW
857 bool ok = true;
858
df22f860 859 // open the file - of course, there is a race condition here, this is
ade35f11 860 // why we always prefer using mkstemp()...
b70a2866
MW
861 #if wxUSE_FILE
862 if ( fileTemp && !fileTemp->IsOpened() )
863 {
864 *deleteOnClose = wantDeleteOnClose;
865 int fd = wxTempOpen(path, deleteOnClose);
866 if (fd != -1)
867 fileTemp->Attach(fd);
868 else
869 ok = false;
870 }
871 #endif
872
873 #if wxUSE_FFILE
874 if ( ffileTemp && !ffileTemp->IsOpened() )
875 {
876 *deleteOnClose = wantDeleteOnClose;
877 ok = wxTempOpen(ffileTemp, path, deleteOnClose);
878 }
879 #endif
880
881 if ( !ok )
ade35f11
VZ
882 {
883 // FIXME: If !ok here should we loop and try again with another
884 // file name? That is the standard recourse if open(O_EXCL)
885 // fails, though of course it should be protected against
886 // possible infinite looping too.
887
888 wxLogError(_("Failed to open temporary file."));
889
890 path.clear();
891 }
892 }
ade35f11
VZ
893
894 return path;
df5ddbca
RR
895}
896
b70a2866
MW
897
898static bool wxCreateTempImpl(
899 const wxString& prefix,
900 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp),
901 wxString *name)
902{
903 bool deleteOnClose = true;
904
905 *name = wxCreateTempImpl(prefix,
906 WXFILEARGS(fileTemp, ffileTemp),
907 &deleteOnClose);
908
909 bool ok = !name->empty();
910
911 if (deleteOnClose)
912 name->clear();
913#ifdef __UNIX__
914 else if (ok && wxRemoveFile(*name))
915 name->clear();
916#endif
917
918 return ok;
919}
920
921
922static void wxAssignTempImpl(
923 wxFileName *fn,
924 const wxString& prefix,
925 WXFILEARGS(wxFile *fileTemp, wxFFile *ffileTemp))
926{
927 wxString tempname;
928 tempname = wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, ffileTemp));
929
930 if ( tempname.empty() )
931 {
932 // error, failed to get temp file name
933 fn->Clear();
934 }
935 else // ok
936 {
937 fn->Assign(tempname);
938 }
939}
940
941
942void wxFileName::AssignTempFileName(const wxString& prefix)
943{
944 wxAssignTempImpl(this, prefix, WXFILEARGS(NULL, NULL));
945}
946
947/* static */
948wxString wxFileName::CreateTempFileName(const wxString& prefix)
949{
950 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, NULL));
951}
952
953#endif // wxUSE_FILE || wxUSE_FFILE
954
955
956#if wxUSE_FILE
957
958wxString wxCreateTempFileName(const wxString& prefix,
959 wxFile *fileTemp,
960 bool *deleteOnClose)
961{
962 return wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, NULL), deleteOnClose);
963}
964
965bool wxCreateTempFile(const wxString& prefix,
966 wxFile *fileTemp,
967 wxString *name)
968{
969 return wxCreateTempImpl(prefix, WXFILEARGS(fileTemp, NULL), name);
970}
971
972void wxFileName::AssignTempFileName(const wxString& prefix, wxFile *fileTemp)
973{
974 wxAssignTempImpl(this, prefix, WXFILEARGS(fileTemp, NULL));
975}
976
977/* static */
978wxString
979wxFileName::CreateTempFileName(const wxString& prefix, wxFile *fileTemp)
980{
981 return wxCreateTempFileName(prefix, fileTemp);
982}
983
68351053
WS
984#endif // wxUSE_FILE
985
b70a2866
MW
986
987#if wxUSE_FFILE
988
989wxString wxCreateTempFileName(const wxString& prefix,
990 wxFFile *fileTemp,
991 bool *deleteOnClose)
992{
993 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, fileTemp), deleteOnClose);
994}
995
996bool wxCreateTempFile(const wxString& prefix,
997 wxFFile *fileTemp,
998 wxString *name)
999{
1000 return wxCreateTempImpl(prefix, WXFILEARGS(NULL, fileTemp), name);
1001
1002}
1003
1004void wxFileName::AssignTempFileName(const wxString& prefix, wxFFile *fileTemp)
1005{
1006 wxAssignTempImpl(this, prefix, WXFILEARGS(NULL, fileTemp));
1007}
1008
1009/* static */
1010wxString
1011wxFileName::CreateTempFileName(const wxString& prefix, wxFFile *fileTemp)
1012{
1013 return wxCreateTempFileName(prefix, fileTemp);
1014}
1015
1016#endif // wxUSE_FFILE
1017
1018
844f90fb
VZ
1019// ----------------------------------------------------------------------------
1020// directory operations
1021// ----------------------------------------------------------------------------
1022
8758875e
VZ
1023// helper of GetTempDir(): check if the given directory exists and return it if
1024// it does or an empty string otherwise
1025namespace
8d7d6dea 1026{
8d7d6dea 1027
8758875e
VZ
1028wxString CheckIfDirExists(const wxString& dir)
1029{
1030 return wxFileName::DirExists(dir) ? dir : wxString();
1031}
1032
1033} // anonymous namespace
1034
1035wxString wxFileName::GetTempDir()
1036{
1037 // first try getting it from environment: this allows overriding the values
1038 // used by default if the user wants to create temporary files in another
1039 // directory
1040 wxString dir = CheckIfDirExists(wxGetenv("TMPDIR"));
1041 if ( dir.empty() )
8d7d6dea 1042 {
8758875e
VZ
1043 dir = CheckIfDirExists(wxGetenv("TMP"));
1044 if ( dir.empty() )
1045 dir = CheckIfDirExists(wxGetenv("TEMP"));
8d7d6dea 1046 }
8d7d6dea 1047
8758875e 1048 // if no environment variables are set, use the system default
8d7d6dea
JS
1049 if ( dir.empty() )
1050 {
8758875e
VZ
1051#if defined(__WXWINCE__)
1052 dir = CheckIfDirExists(wxT("\\temp"));
1053#elif defined(__WINDOWS__) && !defined(__WXMICROWIN__)
8d7d6dea
JS
1054 if ( !::GetTempPath(MAX_PATH, wxStringBuffer(dir, MAX_PATH + 1)) )
1055 {
1056 wxLogLastError(_T("GetTempPath"));
1057 }
8758875e
VZ
1058#elif defined(__WXMAC__) && wxOSX_USE_CARBON
1059 dir = wxMacFindFolder(short(kOnSystemDisk), kTemporaryFolderType, kCreateFolder);
1060#endif // systems with native way
8d7d6dea 1061 }
8d7d6dea 1062
8758875e 1063 // fall back to hard coded value
8d7d6dea
JS
1064 if ( dir.empty() )
1065 {
8758875e
VZ
1066#ifdef __UNIX_LIKE__
1067 dir = CheckIfDirExists("/tmp");
1068 if ( dir.empty() )
1069#endif // __UNIX_LIKE__
1070 dir = ".";
8d7d6dea 1071 }
8d7d6dea
JS
1072
1073 return dir;
1074}
1075
1527281e 1076bool wxFileName::Mkdir( int perm, int flags )
a35b27b1 1077{
db759dde 1078 return wxFileName::Mkdir(GetPath(), perm, flags);
a35b27b1
RR
1079}
1080
1527281e 1081bool wxFileName::Mkdir( const wxString& dir, int perm, int flags )
df5ddbca 1082{
1527281e 1083 if ( flags & wxPATH_MKDIR_FULL )
f0ce3409 1084 {
1527281e
VZ
1085 // split the path in components
1086 wxFileName filename;
1087 filename.AssignDir(dir);
f0ce3409 1088
f0ce3409 1089 wxString currPath;
0ea621cc
VZ
1090 if ( filename.HasVolume())
1091 {
1527281e 1092 currPath << wxGetVolumeString(filename.GetVolume(), wxPATH_NATIVE);
0ea621cc 1093 }
f0ce3409 1094
1527281e
VZ
1095 wxArrayString dirs = filename.GetDirs();
1096 size_t count = dirs.GetCount();
1097 for ( size_t i = 0; i < count; i++ )
1098 {
e0d81eac 1099 if ( i > 0 || filename.IsAbsolute() )
f0ce3409 1100 currPath += wxFILE_SEP_PATH;
1527281e 1101 currPath += dirs[i];
f0ce3409
JS
1102
1103 if (!DirExists(currPath))
1527281e 1104 {
f0ce3409 1105 if (!wxMkdir(currPath, perm))
1527281e
VZ
1106 {
1107 // no need to try creating further directories
f363e05c 1108 return false;
1527281e
VZ
1109 }
1110 }
f0ce3409
JS
1111 }
1112
f363e05c 1113 return true;
f0ce3409
JS
1114
1115 }
1527281e
VZ
1116
1117 return ::wxMkdir( dir, perm );
df5ddbca
RR
1118}
1119
110c5094 1120bool wxFileName::Rmdir(int flags)
df5ddbca 1121{
110c5094 1122 return wxFileName::Rmdir( GetPath(), flags );
df5ddbca
RR
1123}
1124
110c5094 1125bool wxFileName::Rmdir(const wxString& dir, int flags)
df5ddbca 1126{
110c5094
VZ
1127#ifdef __WXMSW__
1128 if ( flags & wxPATH_RMDIR_RECURSIVE )
1129 {
1130 // SHFileOperation needs double null termination string
1131 // but without separator at the end of the path
1132 wxString path(dir);
1133 if ( path.Last() == wxFILE_SEP_PATH )
1134 path.RemoveLast();
1135 path += _T('\0');
1136
1137 SHFILEOPSTRUCT fileop;
1138 wxZeroMemory(fileop);
1139 fileop.wFunc = FO_DELETE;
1140 fileop.pFrom = path.fn_str();
1141 fileop.fFlags = FOF_SILENT | FOF_NOCONFIRMATION;
1142 #ifndef __WXWINCE__
1143 // FOF_NOERRORUI is not defined in WinCE
1144 fileop.fFlags |= FOF_NOERRORUI;
1145 #endif
1146
1147 int ret = SHFileOperation(&fileop);
1148 if ( ret != 0 )
1149 {
1150 // SHFileOperation may return non-Win32 error codes, so the error
1151 // message can be incorrect
1152 wxLogApiError(_T("SHFileOperation"), ret);
1153 return false;
1154 }
1155
1156 return true;
1157 }
1158 else if ( flags & wxPATH_RMDIR_FULL )
1159#else // !__WXMSW__
1160 if ( flags != 0 ) // wxPATH_RMDIR_FULL or wxPATH_RMDIR_RECURSIVE
1161#endif // !__WXMSW__
1162 {
1163 wxString path(dir);
1164 if ( path.Last() != wxFILE_SEP_PATH )
1165 path += wxFILE_SEP_PATH;
1166
1167 wxDir d(path);
1168
1169 if ( !d.IsOpened() )
1170 return false;
1171
1172 wxString filename;
1173
1174 // first delete all subdirectories
1175 bool cont = d.GetFirst(&filename, "", wxDIR_DIRS | wxDIR_HIDDEN);
1176 while ( cont )
1177 {
1178 wxFileName::Rmdir(path + filename, flags);
1179 cont = d.GetNext(&filename);
1180 }
1181
1182#ifndef __WXMSW__
1183 if ( flags & wxPATH_RMDIR_RECURSIVE )
1184 {
1185 // delete all files too
1186 cont = d.GetFirst(&filename, "", wxDIR_FILES | wxDIR_HIDDEN);
1187 while ( cont )
1188 {
1189 ::wxRemoveFile(path + filename);
1190 cont = d.GetNext(&filename);
1191 }
1192 }
1193#endif // !__WXMSW__
1194 }
1195
1196 return ::wxRmdir(dir);
df5ddbca
RR
1197}
1198
844f90fb
VZ
1199// ----------------------------------------------------------------------------
1200// path normalization
1201// ----------------------------------------------------------------------------
1202
32a0d013 1203bool wxFileName::Normalize(int flags,
844f90fb
VZ
1204 const wxString& cwd,
1205 wxPathFormat format)
a35b27b1 1206{
05e1201c
VZ
1207 // deal with env vars renaming first as this may seriously change the path
1208 if ( flags & wxPATH_NORM_ENV_VARS )
1209 {
1210 wxString pathOrig = GetFullPath(format);
1211 wxString path = wxExpandEnvVars(pathOrig);
1212 if ( path != pathOrig )
1213 {
1214 Assign(path);
1215 }
1216 }
1217
844f90fb
VZ
1218 // the existing path components
1219 wxArrayString dirs = GetDirs();
1220
1221 // the path to prepend in front to make the path absolute
1222 wxFileName curDir;
1223
1224 format = GetFormat(format);
ae4d7004 1225
bf7f7793 1226 // set up the directory to use for making the path absolute later
a2fa5040 1227 if ( (flags & wxPATH_NORM_ABSOLUTE) && !IsAbsolute(format) )
a35b27b1 1228 {
844f90fb 1229 if ( cwd.empty() )
6f91bc33
VZ
1230 {
1231 curDir.AssignCwd(GetVolume());
1232 }
1233 else // cwd provided
1234 {
844f90fb 1235 curDir.AssignDir(cwd);
6f91bc33 1236 }
a35b27b1 1237 }
ae4d7004 1238
844f90fb
VZ
1239 // handle ~ stuff under Unix only
1240 if ( (format == wxPATH_UNIX) && (flags & wxPATH_NORM_TILDE) )
a35b27b1 1241 {
844f90fb
VZ
1242 if ( !dirs.IsEmpty() )
1243 {
1244 wxString dir = dirs[0u];
1245 if ( !dir.empty() && dir[0u] == _T('~') )
1246 {
bf7f7793 1247 // to make the path absolute use the home directory
844f90fb
VZ
1248 curDir.AssignDir(wxGetUserHome(dir.c_str() + 1));
1249
bf7f7793
RR
1250 // if we are expanding the tilde, then this path
1251 // *should* be already relative (since we checked for
1252 // the tilde only in the first char of the first dir);
1253 // if m_relative==false, it's because it was initialized
1254 // from a string which started with /~; in that case
1255 // we reach this point but then need m_relative=true
1256 // for relative->absolute expansion later
1257 m_relative = true;
1258
da2fd5ac 1259 dirs.RemoveAt(0u);
844f90fb
VZ
1260 }
1261 }
a35b27b1 1262 }
844f90fb 1263
52dbd056 1264 // transform relative path into abs one
844f90fb 1265 if ( curDir.IsOk() )
a35b27b1 1266 {
bf7f7793
RR
1267 // this path may be relative because it doesn't have the volume name
1268 // and still have m_relative=true; in this case we shouldn't modify
1269 // our directory components but just set the current volume
1270 if ( !HasVolume() && curDir.HasVolume() )
844f90fb 1271 {
bf7f7793
RR
1272 SetVolume(curDir.GetVolume());
1273
1274 if ( !m_relative )
1275 {
1276 // yes, it was the case - we don't need curDir then
1277 curDir.Clear();
1278 }
844f90fb
VZ
1279 }
1280
bf7f7793
RR
1281 // finally, prepend curDir to the dirs array
1282 wxArrayString dirsNew = curDir.GetDirs();
1283 WX_PREPEND_ARRAY(dirs, dirsNew);
1284
1285 // if we used e.g. tilde expansion previously and wxGetUserHome didn't
1286 // return for some reason an absolute path, then curDir maybe not be absolute!
1287 if ( curDir.IsAbsolute(format) )
1288 {
1289 // we have prepended an absolute path and thus we are now an absolute
1290 // file name too
1291 m_relative = false;
1292 }
1293 // else if (flags & wxPATH_NORM_ABSOLUTE):
1294 // should we warn the user that we didn't manage to make the path absolute?
a35b27b1 1295 }
844f90fb
VZ
1296
1297 // now deal with ".", ".." and the rest
1298 m_dirs.Empty();
1299 size_t count = dirs.GetCount();
1300 for ( size_t n = 0; n < count; n++ )
a35b27b1 1301 {
844f90fb
VZ
1302 wxString dir = dirs[n];
1303
2bc60417 1304 if ( flags & wxPATH_NORM_DOTS )
844f90fb
VZ
1305 {
1306 if ( dir == wxT(".") )
1307 {
1308 // just ignore
1309 continue;
1310 }
1311
1312 if ( dir == wxT("..") )
1313 {
1314 if ( m_dirs.IsEmpty() )
1315 {
1316 wxLogError(_("The path '%s' contains too many \"..\"!"),
1317 GetFullPath().c_str());
f363e05c 1318 return false;
844f90fb
VZ
1319 }
1320
ae4d7004 1321 m_dirs.RemoveAt(m_dirs.GetCount() - 1);
844f90fb
VZ
1322 continue;
1323 }
1324 }
1325
844f90fb 1326 m_dirs.Add(dir);
a35b27b1 1327 }
a62848fd 1328
6bda7391 1329#if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
21f60945
JS
1330 if ( (flags & wxPATH_NORM_SHORTCUT) )
1331 {
1332 wxString filename;
1333 if (GetShortcutTarget(GetFullPath(format), filename))
1334 {
21f60945
JS
1335 m_relative = false;
1336 Assign(filename);
1337 }
1338 }
1339#endif
844f90fb 1340
9a0c5c01
VZ
1341#if defined(__WIN32__)
1342 if ( (flags & wxPATH_NORM_LONG) && (format == wxPATH_DOS) )
844f90fb 1343 {
9a0c5c01
VZ
1344 Assign(GetLongPath());
1345 }
1346#endif // Win32
844f90fb 1347
9a0c5c01
VZ
1348 // Change case (this should be kept at the end of the function, to ensure
1349 // that the path doesn't change any more after we normalize its case)
1350 if ( (flags & wxPATH_NORM_CASE) && !IsCaseSensitive(format) )
1351 {
55268a3a 1352 m_volume.MakeLower();
844f90fb
VZ
1353 m_name.MakeLower();
1354 m_ext.MakeLower();
844f90fb 1355
9a0c5c01
VZ
1356 // directory entries must be made lower case as well
1357 count = m_dirs.GetCount();
1358 for ( size_t i = 0; i < count; i++ )
1359 {
1360 m_dirs[i].MakeLower();
1361 }
9e9b65c1 1362 }
9e9b65c1 1363
f363e05c 1364 return true;
a2fa5040
VZ
1365}
1366
395f3aa8
FM
1367#ifndef __WXWINCE__
1368bool wxFileName::ReplaceEnvVariable(const wxString& envname,
1369 const wxString& replacementFmtString,
1370 wxPathFormat format)
1371{
1372 // look into stringForm for the contents of the given environment variable
1373 wxString val;
1374 if (envname.empty() ||
1375 !wxGetEnv(envname, &val))
1376 return false;
1377 if (val.empty())
1378 return false;
1379
1380 wxString stringForm = GetPath(wxPATH_GET_VOLUME, format);
1381 // do not touch the file name and the extension
1382
1383 wxString replacement = wxString::Format(replacementFmtString, envname);
1384 stringForm.Replace(val, replacement);
1385
1386 // Now assign ourselves the modified path:
1387 Assign(stringForm, GetFullName(), format);
1388
1389 return true;
1390}
1391#endif
1392
1393bool wxFileName::ReplaceHomeDir(wxPathFormat format)
1394{
1395 wxString homedir = wxGetHomeDir();
1396 if (homedir.empty())
1397 return false;
1398
1399 wxString stringForm = GetPath(wxPATH_GET_VOLUME, format);
1400 // do not touch the file name and the extension
1401
1402 stringForm.Replace(homedir, "~");
1403
1404 // Now assign ourselves the modified path:
1405 Assign(stringForm, GetFullName(), format);
1406
1407 return true;
1408}
1409
21f60945
JS
1410// ----------------------------------------------------------------------------
1411// get the shortcut target
1412// ----------------------------------------------------------------------------
1413
5671b3b6
JS
1414// WinCE (3) doesn't have CLSID_ShellLink, IID_IShellLink definitions.
1415// The .lnk file is a plain text file so it should be easy to
1416// make it work. Hint from Google Groups:
1417// "If you open up a lnk file, you'll see a
1418// number, followed by a pound sign (#), followed by more text. The
1419// number is the number of characters that follows the pound sign. The
1420// characters after the pound sign are the command line (which _can_
1421// include arguments) to be executed. Any path (e.g. \windows\program
1422// files\myapp.exe) that includes spaces needs to be enclosed in
1423// quotation marks."
1424
6bda7391 1425#if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE
5671b3b6
JS
1426// The following lines are necessary under WinCE
1427// #include "wx/msw/private.h"
1428// #include <ole2.h>
21f60945 1429#include <shlobj.h>
5671b3b6
JS
1430#if defined(__WXWINCE__)
1431#include <shlguid.h>
1432#endif
21f60945 1433
cea0869c
VZ
1434bool wxFileName::GetShortcutTarget(const wxString& shortcutPath,
1435 wxString& targetFilename,
1436 wxString* arguments)
21f60945 1437{
21f60945 1438 wxString path, file, ext;
bd365871 1439 wxFileName::SplitPath(shortcutPath, & path, & file, & ext);
a62848fd
WS
1440
1441 HRESULT hres;
1442 IShellLink* psl;
1443 bool success = false;
21f60945
JS
1444
1445 // Assume it's not a shortcut if it doesn't end with lnk
489f6cf7 1446 if (ext.CmpNoCase(wxT("lnk"))!=0)
a62848fd
WS
1447 return false;
1448
1449 // create a ShellLink object
1450 hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1451 IID_IShellLink, (LPVOID*) &psl);
1452
1453 if (SUCCEEDED(hres))
1454 {
1455 IPersistFile* ppf;
1456 hres = psl->QueryInterface( IID_IPersistFile, (LPVOID *) &ppf);
1457 if (SUCCEEDED(hres))
1458 {
1459 WCHAR wsz[MAX_PATH];
1460
1461 MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, shortcutPath.mb_str(), -1, wsz,
1462 MAX_PATH);
1463
1464 hres = ppf->Load(wsz, 0);
cea0869c
VZ
1465 ppf->Release();
1466
a62848fd
WS
1467 if (SUCCEEDED(hres))
1468 {
21f60945 1469 wxChar buf[2048];
59ba321b
JS
1470 // Wrong prototype in early versions
1471#if defined(__MINGW32__) && !wxCHECK_W32API_VERSION(2, 2)
1472 psl->GetPath((CHAR*) buf, 2048, NULL, SLGP_UNCPRIORITY);
1473#else
a62848fd 1474 psl->GetPath(buf, 2048, NULL, SLGP_UNCPRIORITY);
59ba321b 1475#endif
a62848fd 1476 targetFilename = wxString(buf);
21f60945
JS
1477 success = (shortcutPath != targetFilename);
1478
a62848fd 1479 psl->GetArguments(buf, 2048);
21f60945 1480 wxString args(buf);
b494c48b 1481 if (!args.empty() && arguments)
21f60945
JS
1482 {
1483 *arguments = args;
a62848fd
WS
1484 }
1485 }
1486 }
cea0869c
VZ
1487
1488 psl->Release();
a62848fd 1489 }
a62848fd 1490 return success;
21f60945 1491}
cea0869c
VZ
1492
1493#endif // __WIN32__ && !__WXWINCE__
21f60945
JS
1494
1495
a2fa5040
VZ
1496// ----------------------------------------------------------------------------
1497// absolute/relative paths
1498// ----------------------------------------------------------------------------
1499
1500bool wxFileName::IsAbsolute(wxPathFormat format) const
1501{
1502 // if our path doesn't start with a path separator, it's not an absolute
1503 // path
1504 if ( m_relative )
f363e05c 1505 return false;
a2fa5040
VZ
1506
1507 if ( !GetVolumeSeparator(format).empty() )
1508 {
1509 // this format has volumes and an absolute path must have one, it's not
1510 // enough to have the full path to bean absolute file under Windows
1511 if ( GetVolume().empty() )
f363e05c 1512 return false;
a2fa5040
VZ
1513 }
1514
f363e05c 1515 return true;
a35b27b1
RR
1516}
1517
f7d886af
VZ
1518bool wxFileName::MakeRelativeTo(const wxString& pathBase, wxPathFormat format)
1519{
cef9731a 1520 wxFileName fnBase = wxFileName::DirName(pathBase, format);
f7d886af
VZ
1521
1522 // get cwd only once - small time saving
1523 wxString cwd = wxGetCwd();
b5b62eea
JS
1524 Normalize(wxPATH_NORM_ALL & ~wxPATH_NORM_CASE, cwd, format);
1525 fnBase.Normalize(wxPATH_NORM_ALL & ~wxPATH_NORM_CASE, cwd, format);
f7d886af
VZ
1526
1527 bool withCase = IsCaseSensitive(format);
1528
1529 // we can't do anything if the files live on different volumes
1530 if ( !GetVolume().IsSameAs(fnBase.GetVolume(), withCase) )
1531 {
1532 // nothing done
f363e05c 1533 return false;
f7d886af
VZ
1534 }
1535
1536 // same drive, so we don't need our volume
1537 m_volume.clear();
1538
1539 // remove common directories starting at the top
1540 while ( !m_dirs.IsEmpty() && !fnBase.m_dirs.IsEmpty() &&
1541 m_dirs[0u].IsSameAs(fnBase.m_dirs[0u], withCase) )
1542 {
ae4d7004
VZ
1543 m_dirs.RemoveAt(0);
1544 fnBase.m_dirs.RemoveAt(0);
f7d886af
VZ
1545 }
1546
1547 // add as many ".." as needed
1548 size_t count = fnBase.m_dirs.GetCount();
1549 for ( size_t i = 0; i < count; i++ )
1550 {
1551 m_dirs.Insert(wxT(".."), 0u);
1552 }
90a68369 1553
2db991f4
VZ
1554 if ( format == wxPATH_UNIX || format == wxPATH_DOS )
1555 {
1556 // a directory made relative with respect to itself is '.' under Unix
1557 // and DOS, by definition (but we don't have to insert "./" for the
1558 // files)
1559 if ( m_dirs.IsEmpty() && IsDir() )
1560 {
1561 m_dirs.Add(_T('.'));
0ea621cc 1562 }
2db991f4
VZ
1563 }
1564
f363e05c 1565 m_relative = true;
f7d886af
VZ
1566
1567 // we were modified
f363e05c 1568 return true;
f7d886af
VZ
1569}
1570
844f90fb
VZ
1571// ----------------------------------------------------------------------------
1572// filename kind tests
1573// ----------------------------------------------------------------------------
1574
2b5f62a0 1575bool wxFileName::SameAs(const wxFileName& filepath, wxPathFormat format) const
df5ddbca 1576{
844f90fb
VZ
1577 wxFileName fn1 = *this,
1578 fn2 = filepath;
1579
1580 // get cwd only once - small time saving
1581 wxString cwd = wxGetCwd();
55268a3a
VZ
1582 fn1.Normalize(wxPATH_NORM_ALL | wxPATH_NORM_CASE, cwd, format);
1583 fn2.Normalize(wxPATH_NORM_ALL | wxPATH_NORM_CASE, cwd, format);
844f90fb
VZ
1584
1585 if ( fn1.GetFullPath() == fn2.GetFullPath() )
f363e05c 1586 return true;
844f90fb
VZ
1587
1588 // TODO: compare inodes for Unix, this works even when filenames are
1589 // different but files are the same (symlinks) (VZ)
1590
f363e05c 1591 return false;
df5ddbca
RR
1592}
1593
844f90fb 1594/* static */
df5ddbca
RR
1595bool wxFileName::IsCaseSensitive( wxPathFormat format )
1596{
04c943b1
VZ
1597 // only Unix filenames are truely case-sensitive
1598 return GetFormat(format) == wxPATH_UNIX;
df5ddbca
RR
1599}
1600
f363e05c
VZ
1601/* static */
1602wxString wxFileName::GetForbiddenChars(wxPathFormat format)
1603{
1604 // Inits to forbidden characters that are common to (almost) all platforms.
1605 wxString strForbiddenChars = wxT("*?");
1606
1c6f2414 1607 // If asserts, wxPathFormat has been changed. In case of a new path format
f363e05c 1608 // addition, the following code might have to be updated.
1c6f2414 1609 wxCOMPILE_TIME_ASSERT(wxPATH_MAX == 5, wxPathFormatChanged);
f363e05c
VZ
1610 switch ( GetFormat(format) )
1611 {
1612 default :
1613 wxFAIL_MSG( wxT("Unknown path format") );
1614 // !! Fall through !!
1615
1616 case wxPATH_UNIX:
1617 break;
1618
1619 case wxPATH_MAC:
1620 // On a Mac even names with * and ? are allowed (Tested with OS
1621 // 9.2.1 and OS X 10.2.5)
1622 strForbiddenChars = wxEmptyString;
1623 break;
1624
1625 case wxPATH_DOS:
1626 strForbiddenChars += wxT("\\/:\"<>|");
1627 break;
1628
1629 case wxPATH_VMS:
1630 break;
1631 }
1632
1633 return strForbiddenChars;
1634}
1635
04c943b1 1636/* static */
bcfa2b31 1637wxString wxFileName::GetVolumeSeparator(wxPathFormat WXUNUSED_IN_WINCE(format))
844f90fb 1638{
bcfa2b31
WS
1639#ifdef __WXWINCE__
1640 return wxEmptyString;
1641#else
04c943b1
VZ
1642 wxString sepVol;
1643
a385b5df
RR
1644 if ( (GetFormat(format) == wxPATH_DOS) ||
1645 (GetFormat(format) == wxPATH_VMS) )
04c943b1 1646 {
04c943b1
VZ
1647 sepVol = wxFILE_SEP_DSK;
1648 }
a385b5df 1649 //else: leave empty
04c943b1
VZ
1650
1651 return sepVol;
bcfa2b31 1652#endif
844f90fb
VZ
1653}
1654
1655/* static */
1656wxString wxFileName::GetPathSeparators(wxPathFormat format)
1657{
1658 wxString seps;
1659 switch ( GetFormat(format) )
df5ddbca 1660 {
844f90fb 1661 case wxPATH_DOS:
04c943b1
VZ
1662 // accept both as native APIs do but put the native one first as
1663 // this is the one we use in GetFullPath()
1664 seps << wxFILE_SEP_PATH_DOS << wxFILE_SEP_PATH_UNIX;
844f90fb
VZ
1665 break;
1666
1667 default:
f363e05c 1668 wxFAIL_MSG( _T("Unknown wxPATH_XXX style") );
844f90fb
VZ
1669 // fall through
1670
1671 case wxPATH_UNIX:
9e8d8607 1672 seps = wxFILE_SEP_PATH_UNIX;
844f90fb
VZ
1673 break;
1674
1675 case wxPATH_MAC:
9e8d8607 1676 seps = wxFILE_SEP_PATH_MAC;
844f90fb 1677 break;
04c943b1 1678
3c621059
JJ
1679 case wxPATH_VMS:
1680 seps = wxFILE_SEP_PATH_VMS;
1681 break;
df5ddbca
RR
1682 }
1683
844f90fb 1684 return seps;
df5ddbca
RR
1685}
1686
f1e77933
VZ
1687/* static */
1688wxString wxFileName::GetPathTerminators(wxPathFormat format)
1689{
1690 format = GetFormat(format);
1691
1692 // under VMS the end of the path is ']', not the path separator used to
1693 // separate the components
1694 return format == wxPATH_VMS ? wxString(_T(']')) : GetPathSeparators(format);
1695}
1696
844f90fb
VZ
1697/* static */
1698bool wxFileName::IsPathSeparator(wxChar ch, wxPathFormat format)
df5ddbca 1699{
04c943b1 1700 // wxString::Find() doesn't work as expected with NUL - it will always find
2fb5a4ce
VZ
1701 // it, so test for it separately
1702 return ch != _T('\0') && GetPathSeparators(format).Find(ch) != wxNOT_FOUND;
df5ddbca
RR
1703}
1704
844f90fb
VZ
1705// ----------------------------------------------------------------------------
1706// path components manipulation
1707// ----------------------------------------------------------------------------
1708
5bb9aeb2
VZ
1709/* static */ bool wxFileName::IsValidDirComponent(const wxString& dir)
1710{
1711 if ( dir.empty() )
1712 {
1713 wxFAIL_MSG( _T("empty directory passed to wxFileName::InsertDir()") );
1714
1715 return false;
1716 }
1717
1718 const size_t len = dir.length();
1719 for ( size_t n = 0; n < len; n++ )
1720 {
1721 if ( dir[n] == GetVolumeSeparator() || IsPathSeparator(dir[n]) )
1722 {
1723 wxFAIL_MSG( _T("invalid directory component in wxFileName") );
1724
1725 return false;
1726 }
1727 }
1728
1729 return true;
1730}
1731
2458d90b 1732void wxFileName::AppendDir( const wxString& dir )
df5ddbca 1733{
5bb9aeb2
VZ
1734 if ( IsValidDirComponent(dir) )
1735 m_dirs.Add( dir );
df5ddbca
RR
1736}
1737
2458d90b 1738void wxFileName::PrependDir( const wxString& dir )
df5ddbca 1739{
5bb9aeb2 1740 InsertDir(0, dir);
df5ddbca
RR
1741}
1742
2458d90b 1743void wxFileName::InsertDir(size_t before, const wxString& dir)
df5ddbca 1744{
5bb9aeb2 1745 if ( IsValidDirComponent(dir) )
2458d90b 1746 m_dirs.Insert(dir, before);
df5ddbca
RR
1747}
1748
2458d90b 1749void wxFileName::RemoveDir(size_t pos)
df5ddbca 1750{
2458d90b 1751 m_dirs.RemoveAt(pos);
df5ddbca
RR
1752}
1753
844f90fb
VZ
1754// ----------------------------------------------------------------------------
1755// accessors
1756// ----------------------------------------------------------------------------
1757
7124df9b
VZ
1758void wxFileName::SetFullName(const wxString& fullname)
1759{
dfecbee5
VZ
1760 SplitPath(fullname, NULL /* no volume */, NULL /* no path */,
1761 &m_name, &m_ext, &m_hasExt);
7124df9b
VZ
1762}
1763
844f90fb 1764wxString wxFileName::GetFullName() const
a35b27b1 1765{
844f90fb 1766 wxString fullname = m_name;
dfecbee5 1767 if ( m_hasExt )
a35b27b1 1768 {
9e8d8607 1769 fullname << wxFILE_SEP_EXT << m_ext;
a35b27b1 1770 }
a35b27b1 1771
844f90fb 1772 return fullname;
a35b27b1
RR
1773}
1774
33b97389 1775wxString wxFileName::GetPath( int flags, wxPathFormat format ) const
df5ddbca
RR
1776{
1777 format = GetFormat( format );
844f90fb 1778
353f41cb
RR
1779 wxString fullpath;
1780
33b97389
VZ
1781 // return the volume with the path as well if requested
1782 if ( flags & wxPATH_GET_VOLUME )
1783 {
1784 fullpath += wxGetVolumeString(GetVolume(), format);
1785 }
1786
034742fc
VZ
1787 // the leading character
1788 switch ( format )
1789 {
1790 case wxPATH_MAC:
1791 if ( m_relative )
1792 fullpath += wxFILE_SEP_PATH_MAC;
1793 break;
1794
1795 case wxPATH_DOS:
1796 if ( !m_relative )
1797 fullpath += wxFILE_SEP_PATH_DOS;
1798 break;
1799
1800 default:
1801 wxFAIL_MSG( wxT("Unknown path format") );
1802 // fall through
1803
1804 case wxPATH_UNIX:
1805 if ( !m_relative )
1806 {
1807 // normally the absolute file names start with a slash
1808 // with one exception: the ones like "~/foo.bar" don't
1809 // have it
9b3a3820 1810 if ( m_dirs.IsEmpty() || m_dirs[0u] != _T('~') )
034742fc
VZ
1811 {
1812 fullpath += wxFILE_SEP_PATH_UNIX;
1813 }
1814 }
1815 break;
1816
1817 case wxPATH_VMS:
1818 // no leading character here but use this place to unset
1819 // wxPATH_GET_SEPARATOR flag: under VMS it doesn't make sense
1820 // as, if I understand correctly, there should never be a dot
1821 // before the closing bracket
1822 flags &= ~wxPATH_GET_SEPARATOR;
1823 }
1824
1825 if ( m_dirs.empty() )
1826 {
1827 // there is nothing more
1828 return fullpath;
1829 }
1830
1831 // then concatenate all the path components using the path separator
1832 if ( format == wxPATH_VMS )
1833 {
1834 fullpath += wxT('[');
1835 }
1836
5bb9aeb2 1837 const size_t dirCount = m_dirs.GetCount();
034742fc 1838 for ( size_t i = 0; i < dirCount; i++ )
353f41cb 1839 {
034742fc 1840 switch (format)
5bb9aeb2
VZ
1841 {
1842 case wxPATH_MAC:
034742fc
VZ
1843 if ( m_dirs[i] == wxT(".") )
1844 {
1845 // skip appending ':', this shouldn't be done in this
1846 // case as "::" is interpreted as ".." under Unix
1847 continue;
1848 }
2361ce82 1849
034742fc 1850 // convert back from ".." to nothing
489f6cf7 1851 if ( !m_dirs[i].IsSameAs(wxT("..")) )
034742fc 1852 fullpath += m_dirs[i];
5bb9aeb2 1853 break;
2361ce82 1854
5bb9aeb2 1855 default:
034742fc
VZ
1856 wxFAIL_MSG( wxT("Unexpected path format") );
1857 // still fall through
2361ce82 1858
034742fc 1859 case wxPATH_DOS:
5bb9aeb2 1860 case wxPATH_UNIX:
034742fc 1861 fullpath += m_dirs[i];
5bb9aeb2 1862 break;
2361ce82 1863
5bb9aeb2 1864 case wxPATH_VMS:
034742fc 1865 // TODO: What to do with ".." under VMS
353f41cb 1866
034742fc 1867 // convert back from ".." to nothing
489f6cf7 1868 if ( !m_dirs[i].IsSameAs(wxT("..")) )
353f41cb 1869 fullpath += m_dirs[i];
034742fc 1870 break;
4175794e
VZ
1871 }
1872
034742fc
VZ
1873 if ( (flags & wxPATH_GET_SEPARATOR) || (i != dirCount - 1) )
1874 fullpath += GetPathSeparator(format);
df5ddbca 1875 }
034742fc
VZ
1876
1877 if ( format == wxPATH_VMS )
5bb9aeb2 1878 {
034742fc 1879 fullpath += wxT(']');
5bb9aeb2 1880 }
844f90fb 1881
353f41cb 1882 return fullpath;
df5ddbca
RR
1883}
1884
1885wxString wxFileName::GetFullPath( wxPathFormat format ) const
1886{
4175794e
VZ
1887 // we already have a function to get the path
1888 wxString fullpath = GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR,
1889 format);
04c943b1 1890
4175794e 1891 // now just add the file name and extension to it
04c943b1
VZ
1892 fullpath += GetFullName();
1893
1894 return fullpath;
df5ddbca
RR
1895}
1896
9e9b65c1
JS
1897// Return the short form of the path (returns identity on non-Windows platforms)
1898wxString wxFileName::GetShortPath() const
1899{
9e9b65c1 1900 wxString path(GetFullPath());
2f3d9587
VZ
1901
1902#if defined(__WXMSW__) && defined(__WIN32__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
e0a050e3 1903 DWORD sz = ::GetShortPathName(path.fn_str(), NULL, 0);
2f3d9587 1904 if ( sz != 0 )
9e9b65c1 1905 {
2f3d9587
VZ
1906 wxString pathOut;
1907 if ( ::GetShortPathName
75ef5722 1908 (
e0a050e3 1909 path.fn_str(),
de564874 1910 wxStringBuffer(pathOut, sz),
75ef5722 1911 sz
2f3d9587
VZ
1912 ) != 0 )
1913 {
1914 return pathOut;
1915 }
9e9b65c1 1916 }
2f3d9587 1917#endif // Windows
5716a1ab
VZ
1918
1919 return path;
9e9b65c1
JS
1920}
1921
1922// Return the long form of the path (returns identity on non-Windows platforms)
1923wxString wxFileName::GetLongPath() const
1924{
52dbd056
VZ
1925 wxString pathOut,
1926 path = GetFullPath();
1927
b517351b 1928#if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__)
05e7001c 1929
0e207280 1930#if wxUSE_DYNLIB_CLASS
62dcaed6 1931 typedef DWORD (WINAPI *GET_LONG_PATH_NAME)(const wxChar *, wxChar *, DWORD);
05e7001c 1932
2f3d9587
VZ
1933 // this is MT-safe as in the worst case we're going to resolve the function
1934 // twice -- but as the result is the same in both threads, it's ok
1935 static GET_LONG_PATH_NAME s_pfnGetLongPathName = NULL;
1936 if ( !s_pfnGetLongPathName )
9e9b65c1 1937 {
2f3d9587 1938 static bool s_triedToLoad = false;
2361ce82 1939
2f3d9587 1940 if ( !s_triedToLoad )
05e7001c 1941 {
2f3d9587
VZ
1942 s_triedToLoad = true;
1943
1944 wxDynamicLibrary dllKernel(_T("kernel32"));
1945
4377d3ab
WS
1946 const wxChar* GetLongPathName = _T("GetLongPathName")
1947#if wxUSE_UNICODE
1948 _T("W");
1949#else // ANSI
1950 _T("A");
1951#endif // Unicode/ANSI
1952
1953 if ( dllKernel.HasSymbol(GetLongPathName) )
05e7001c 1954 {
2f3d9587 1955 s_pfnGetLongPathName = (GET_LONG_PATH_NAME)
4377d3ab 1956 dllKernel.GetSymbol(GetLongPathName);
05e7001c 1957 }
2f3d9587
VZ
1958
1959 // note that kernel32.dll can be unloaded, it stays in memory
1960 // anyhow as all Win32 programs link to it and so it's safe to call
1961 // GetLongPathName() even after unloading it
05e7001c 1962 }
9e9b65c1 1963 }
2361ce82 1964
2f3d9587
VZ
1965 if ( s_pfnGetLongPathName )
1966 {
e0a050e3 1967 DWORD dwSize = (*s_pfnGetLongPathName)(path.fn_str(), NULL, 0);
2f3d9587
VZ
1968 if ( dwSize > 0 )
1969 {
1970 if ( (*s_pfnGetLongPathName)
1971 (
e0a050e3 1972 path.fn_str(),
2f3d9587
VZ
1973 wxStringBuffer(pathOut, dwSize),
1974 dwSize
1975 ) != 0 )
1976 {
1977 return pathOut;
1978 }
1979 }
1980 }
0e207280 1981#endif // wxUSE_DYNLIB_CLASS
05e7001c 1982
2f3d9587
VZ
1983 // The OS didn't support GetLongPathName, or some other error.
1984 // We need to call FindFirstFile on each component in turn.
05e7001c 1985
2f3d9587
VZ
1986 WIN32_FIND_DATA findFileData;
1987 HANDLE hFind;
b5b62eea 1988
2f3d9587
VZ
1989 if ( HasVolume() )
1990 pathOut = GetVolume() +
1991 GetVolumeSeparator(wxPATH_DOS) +
1992 GetPathSeparator(wxPATH_DOS);
1993 else
1994 pathOut = wxEmptyString;
05e7001c 1995
2f3d9587
VZ
1996 wxArrayString dirs = GetDirs();
1997 dirs.Add(GetFullName());
77fe02a8 1998
2f3d9587 1999 wxString tmpPath;
5d978d07 2000
2f3d9587
VZ
2001 size_t count = dirs.GetCount();
2002 for ( size_t i = 0; i < count; i++ )
2003 {
ea6319cb
VZ
2004 const wxString& dir = dirs[i];
2005
2f3d9587
VZ
2006 // We're using pathOut to collect the long-name path, but using a
2007 // temporary for appending the last path component which may be
2008 // short-name
ea6319cb
VZ
2009 tmpPath = pathOut + dir;
2010
2011 // We must not process "." or ".." here as they would be (unexpectedly)
2012 // replaced by the corresponding directory names so just leave them
2013 // alone
2014 //
2015 // And we can't pass a drive and root dir to FindFirstFile (VZ: why?)
2016 if ( tmpPath.empty() || dir == '.' || dir == ".." ||
2017 tmpPath.Last() == GetVolumeSeparator(wxPATH_DOS) )
2f3d9587 2018 {
2f3d9587
VZ
2019 tmpPath += wxFILE_SEP_PATH;
2020 pathOut = tmpPath;
2021 continue;
2022 }
05e7001c 2023
e0a050e3 2024 hFind = ::FindFirstFile(tmpPath.fn_str(), &findFileData);
2f3d9587
VZ
2025 if (hFind == INVALID_HANDLE_VALUE)
2026 {
2027 // Error: most likely reason is that path doesn't exist, so
2028 // append any unprocessed parts and return
2029 for ( i += 1; i < count; i++ )
2030 tmpPath += wxFILE_SEP_PATH + dirs[i];
b5b62eea 2031
2f3d9587
VZ
2032 return tmpPath;
2033 }
05e7001c 2034
2f3d9587
VZ
2035 pathOut += findFileData.cFileName;
2036 if ( (i < (count-1)) )
2037 pathOut += wxFILE_SEP_PATH;
52dbd056 2038
2f3d9587 2039 ::FindClose(hFind);
05e7001c 2040 }
52dbd056
VZ
2041#else // !Win32
2042 pathOut = path;
2043#endif // Win32/!Win32
5716a1ab 2044
05e7001c 2045 return pathOut;
9e9b65c1
JS
2046}
2047
df5ddbca
RR
2048wxPathFormat wxFileName::GetFormat( wxPathFormat format )
2049{
2050 if (format == wxPATH_NATIVE)
2051 {
5a3912f2 2052#if defined(__WXMSW__) || defined(__OS2__) || defined(__DOS__)
df5ddbca 2053 format = wxPATH_DOS;
3c621059 2054#elif defined(__VMS)
04c943b1 2055 format = wxPATH_VMS;
844f90fb 2056#else
df5ddbca
RR
2057 format = wxPATH_UNIX;
2058#endif
2059 }
2060 return format;
2061}
a35b27b1 2062
35c2aa4f
VZ
2063#ifdef wxHAS_FILESYSTEM_VOLUMES
2064
2065/* static */
2066wxString wxFileName::GetVolumeString(char drive, int flags)
2067{
2068 wxASSERT_MSG( !(flags & ~wxPATH_GET_SEPARATOR), "invalid flag specified" );
2069
2070 wxString vol(drive);
2071 vol += wxFILE_SEP_DSK;
2072 if ( flags & wxPATH_GET_SEPARATOR )
2073 vol += wxFILE_SEP_PATH;
2074
2075 return vol;
2076}
2077
2078#endif // wxHAS_FILESYSTEM_VOLUMES
2079
9e8d8607
VZ
2080// ----------------------------------------------------------------------------
2081// path splitting function
2082// ----------------------------------------------------------------------------
2083
6f91bc33 2084/* static */
f1e77933
VZ
2085void
2086wxFileName::SplitVolume(const wxString& fullpathWithVolume,
2087 wxString *pstrVolume,
2088 wxString *pstrPath,
2089 wxPathFormat format)
9e8d8607
VZ
2090{
2091 format = GetFormat(format);
2092
04c943b1
VZ
2093 wxString fullpath = fullpathWithVolume;
2094
04c943b1 2095 // special Windows UNC paths hack: transform \\share\path into share:path
9e1c7236 2096 if ( IsUNCPath(fullpath, format) )
9e8d8607 2097 {
9e1c7236 2098 fullpath.erase(0, 2);
04c943b1 2099
9e1c7236
VZ
2100 size_t posFirstSlash =
2101 fullpath.find_first_of(GetPathTerminators(format));
2102 if ( posFirstSlash != wxString::npos )
2103 {
2104 fullpath[posFirstSlash] = wxFILE_SEP_DSK;
04c943b1 2105
9e1c7236
VZ
2106 // UNC paths are always absolute, right? (FIXME)
2107 fullpath.insert(posFirstSlash + 1, 1, wxFILE_SEP_PATH_DOS);
3c621059
JJ
2108 }
2109 }
04c943b1 2110
a385b5df
RR
2111 // We separate the volume here
2112 if ( format == wxPATH_DOS || format == wxPATH_VMS )
04c943b1 2113 {
a385b5df 2114 wxString sepVol = GetVolumeSeparator(format);
24eb81cb 2115
04c943b1
VZ
2116 size_t posFirstColon = fullpath.find_first_of(sepVol);
2117 if ( posFirstColon != wxString::npos )
2118 {
2119 if ( pstrVolume )
2120 {
2121 *pstrVolume = fullpath.Left(posFirstColon);
2122 }
2123
2124 // remove the volume name and the separator from the full path
2125 fullpath.erase(0, posFirstColon + sepVol.length());
2126 }
2127 }
2128
f1e77933
VZ
2129 if ( pstrPath )
2130 *pstrPath = fullpath;
2131}
2132
2133/* static */
2134void wxFileName::SplitPath(const wxString& fullpathWithVolume,
2135 wxString *pstrVolume,
2136 wxString *pstrPath,
2137 wxString *pstrName,
2138 wxString *pstrExt,
dfecbee5 2139 bool *hasExt,
f1e77933
VZ
2140 wxPathFormat format)
2141{
2142 format = GetFormat(format);
2143
2144 wxString fullpath;
2145 SplitVolume(fullpathWithVolume, pstrVolume, &fullpath, format);
2146
04c943b1
VZ
2147 // find the positions of the last dot and last path separator in the path
2148 size_t posLastDot = fullpath.find_last_of(wxFILE_SEP_EXT);
f1e77933 2149 size_t posLastSlash = fullpath.find_last_of(GetPathTerminators(format));
04c943b1 2150
e5a573a2 2151 // check whether this dot occurs at the very beginning of a path component
04c943b1 2152 if ( (posLastDot != wxString::npos) &&
e5a573a2
VZ
2153 (posLastDot == 0 ||
2154 IsPathSeparator(fullpath[posLastDot - 1]) ||
2155 (format == wxPATH_VMS && fullpath[posLastDot - 1] == _T(']'))) )
f1e77933
VZ
2156 {
2157 // dot may be (and commonly -- at least under Unix -- is) the first
2158 // character of the filename, don't treat the entire filename as
2159 // extension in this case
2160 posLastDot = wxString::npos;
2161 }
9e8d8607 2162
8e7dda21
VZ
2163 // if we do have a dot and a slash, check that the dot is in the name part
2164 if ( (posLastDot != wxString::npos) &&
2165 (posLastSlash != wxString::npos) &&
2166 (posLastDot < posLastSlash) )
9e8d8607
VZ
2167 {
2168 // the dot is part of the path, not the start of the extension
2169 posLastDot = wxString::npos;
2170 }
2171
2172 // now fill in the variables provided by user
2173 if ( pstrPath )
2174 {
2175 if ( posLastSlash == wxString::npos )
2176 {
2177 // no path at all
2178 pstrPath->Empty();
2179 }
2180 else
2181 {
04c943b1 2182 // take everything up to the path separator but take care to make
353f41cb 2183 // the path equal to something like '/', not empty, for the files
04c943b1
VZ
2184 // immediately under root directory
2185 size_t len = posLastSlash;
91b4bd63
SC
2186
2187 // this rule does not apply to mac since we do not start with colons (sep)
2188 // except for relative paths
2189 if ( !len && format != wxPATH_MAC)
04c943b1
VZ
2190 len++;
2191
2192 *pstrPath = fullpath.Left(len);
2193
2194 // special VMS hack: remove the initial bracket
2195 if ( format == wxPATH_VMS )
2196 {
2197 if ( (*pstrPath)[0u] == _T('[') )
2198 pstrPath->erase(0, 1);
2199 }
9e8d8607
VZ
2200 }
2201 }
2202
2203 if ( pstrName )
2204 {
42b1f941
VZ
2205 // take all characters starting from the one after the last slash and
2206 // up to, but excluding, the last dot
9e8d8607 2207 size_t nStart = posLastSlash == wxString::npos ? 0 : posLastSlash + 1;
8e7dda21
VZ
2208 size_t count;
2209 if ( posLastDot == wxString::npos )
2210 {
2211 // take all until the end
2212 count = wxString::npos;
2213 }
2214 else if ( posLastSlash == wxString::npos )
2215 {
2216 count = posLastDot;
2217 }
2218 else // have both dot and slash
2219 {
2220 count = posLastDot - posLastSlash - 1;
2221 }
9e8d8607
VZ
2222
2223 *pstrName = fullpath.Mid(nStart, count);
2224 }
2225
dfecbee5
VZ
2226 // finally deal with the extension here: we have an added complication that
2227 // extension may be empty (but present) as in "foo." where trailing dot
2228 // indicates the empty extension at the end -- and hence we must remember
2229 // that we have it independently of pstrExt
2230 if ( posLastDot == wxString::npos )
9e8d8607 2231 {
dfecbee5
VZ
2232 // no extension
2233 if ( pstrExt )
2234 pstrExt->clear();
2235 if ( hasExt )
2236 *hasExt = false;
2237 }
2238 else
2239 {
2240 // take everything after the dot
2241 if ( pstrExt )
9e8d8607 2242 *pstrExt = fullpath.Mid(posLastDot + 1);
dfecbee5
VZ
2243 if ( hasExt )
2244 *hasExt = true;
9e8d8607
VZ
2245 }
2246}
951cd180 2247
6f91bc33
VZ
2248/* static */
2249void wxFileName::SplitPath(const wxString& fullpath,
2250 wxString *path,
2251 wxString *name,
2252 wxString *ext,
2253 wxPathFormat format)
2254{
2255 wxString volume;
2256 SplitPath(fullpath, &volume, path, name, ext, format);
2257
67c34f64 2258 if ( path )
6f91bc33 2259 {
67c34f64 2260 path->Prepend(wxGetVolumeString(volume, format));
6f91bc33
VZ
2261 }
2262}
2263
951cd180
VZ
2264// ----------------------------------------------------------------------------
2265// time functions
2266// ----------------------------------------------------------------------------
2267
e2b87f38
VZ
2268#if wxUSE_DATETIME
2269
6dbb903b
VZ
2270bool wxFileName::SetTimes(const wxDateTime *dtAccess,
2271 const wxDateTime *dtMod,
2272 const wxDateTime *dtCreate)
951cd180 2273{
2b5f62a0 2274#if defined(__WIN32__)
6bc176b4
VZ
2275 FILETIME ftAccess, ftCreate, ftWrite;
2276
2277 if ( dtCreate )
2278 ConvertWxToFileTime(&ftCreate, *dtCreate);
2279 if ( dtAccess )
2280 ConvertWxToFileTime(&ftAccess, *dtAccess);
2281 if ( dtMod )
2282 ConvertWxToFileTime(&ftWrite, *dtMod);
2283
2284 wxString path;
2285 int flags;
2b5f62a0
VZ
2286 if ( IsDir() )
2287 {
6bc176b4
VZ
2288 if ( wxGetOsVersion() == wxOS_WINDOWS_9X )
2289 {
2290 wxLogError(_("Setting directory access times is not supported "
2291 "under this OS version"));
2292 return false;
2293 }
2294
2295 path = GetPath();
2296 flags = FILE_FLAG_BACKUP_SEMANTICS;
2b5f62a0
VZ
2297 }
2298 else // file
2299 {
6bc176b4
VZ
2300 path = GetFullPath();
2301 flags = 0;
2302 }
2303
2304 wxFileHandle fh(path, wxFileHandle::Write, flags);
2305 if ( fh.IsOk() )
2306 {
2307 if ( ::SetFileTime(fh,
2308 dtCreate ? &ftCreate : NULL,
2309 dtAccess ? &ftAccess : NULL,
2310 dtMod ? &ftWrite : NULL) )
2b5f62a0 2311 {
6bc176b4 2312 return true;
2b5f62a0
VZ
2313 }
2314 }
2315#elif defined(__UNIX_LIKE__) || (defined(__DOS__) && defined(__WATCOMC__))
17a1ebd1
VZ
2316 wxUnusedVar(dtCreate);
2317
246c704f
VZ
2318 if ( !dtAccess && !dtMod )
2319 {
2320 // can't modify the creation time anyhow, don't try
f363e05c 2321 return true;
246c704f
VZ
2322 }
2323
2324 // if dtAccess or dtMod is not specified, use the other one (which must be
2325 // non NULL because of the test above) for both times
951cd180 2326 utimbuf utm;
246c704f
VZ
2327 utm.actime = dtAccess ? dtAccess->GetTicks() : dtMod->GetTicks();
2328 utm.modtime = dtMod ? dtMod->GetTicks() : dtAccess->GetTicks();
401eb3de 2329 if ( utime(GetFullPath().fn_str(), &utm) == 0 )
951cd180 2330 {
f363e05c 2331 return true;
951cd180 2332 }
951cd180 2333#else // other platform
7a893a31
WS
2334 wxUnusedVar(dtAccess);
2335 wxUnusedVar(dtMod);
2336 wxUnusedVar(dtCreate);
951cd180
VZ
2337#endif // platforms
2338
2339 wxLogSysError(_("Failed to modify file times for '%s'"),
2340 GetFullPath().c_str());
2341
f363e05c 2342 return false;
951cd180
VZ
2343}
2344
2345bool wxFileName::Touch()
2346{
2347#if defined(__UNIX_LIKE__)
2348 // under Unix touching file is simple: just pass NULL to utime()
401eb3de 2349 if ( utime(GetFullPath().fn_str(), NULL) == 0 )
951cd180 2350 {
f363e05c 2351 return true;
951cd180
VZ
2352 }
2353
2354 wxLogSysError(_("Failed to touch the file '%s'"), GetFullPath().c_str());
2355
f363e05c 2356 return false;
951cd180
VZ
2357#else // other platform
2358 wxDateTime dtNow = wxDateTime::Now();
2359
6dbb903b 2360 return SetTimes(&dtNow, &dtNow, NULL /* don't change create time */);
951cd180
VZ
2361#endif // platforms
2362}
2363
2364bool wxFileName::GetTimes(wxDateTime *dtAccess,
2365 wxDateTime *dtMod,
6dbb903b 2366 wxDateTime *dtCreate) const
951cd180 2367{
2b5f62a0
VZ
2368#if defined(__WIN32__)
2369 // we must use different methods for the files and directories under
2370 // Windows as CreateFile(GENERIC_READ) doesn't work for the directories and
2371 // CreateFile(FILE_FLAG_BACKUP_SEMANTICS) works -- but only under NT and
2372 // not 9x
2373 bool ok;
2374 FILETIME ftAccess, ftCreate, ftWrite;
9a0c5c01 2375 if ( IsDir() )
2b5f62a0
VZ
2376 {
2377 // implemented in msw/dir.cpp
2378 extern bool wxGetDirectoryTimes(const wxString& dirname,
2379 FILETIME *, FILETIME *, FILETIME *);
2380
2381 // we should pass the path without the trailing separator to
2382 // wxGetDirectoryTimes()
2383 ok = wxGetDirectoryTimes(GetPath(wxPATH_GET_VOLUME),
2384 &ftAccess, &ftCreate, &ftWrite);
2385 }
2386 else // file
2387 {
2388 wxFileHandle fh(GetFullPath(), wxFileHandle::Read);
2389 if ( fh.IsOk() )
2390 {
2391 ok = ::GetFileTime(fh,
2392 dtCreate ? &ftCreate : NULL,
2393 dtAccess ? &ftAccess : NULL,
2394 dtMod ? &ftWrite : NULL) != 0;
2395 }
2396 else
2397 {
f363e05c 2398 ok = false;
2b5f62a0
VZ
2399 }
2400 }
2401
2402 if ( ok )
2403 {
2404 if ( dtCreate )
2405 ConvertFileTimeToWx(dtCreate, ftCreate);
2406 if ( dtAccess )
2407 ConvertFileTimeToWx(dtAccess, ftAccess);
2408 if ( dtMod )
2409 ConvertFileTimeToWx(dtMod, ftWrite);
2410
f363e05c 2411 return true;
2b5f62a0 2412 }
bf58daba 2413#elif defined(__UNIX_LIKE__) || defined(__WXMAC__) || defined(__OS2__) || (defined(__DOS__) && defined(__WATCOMC__))
51cb1a65 2414 // no need to test for IsDir() here
951cd180 2415 wxStructStat stBuf;
92980e90 2416 if ( wxStat( GetFullPath().c_str(), &stBuf) == 0 )
951cd180
VZ
2417 {
2418 if ( dtAccess )
2419 dtAccess->Set(stBuf.st_atime);
2420 if ( dtMod )
2421 dtMod->Set(stBuf.st_mtime);
6dbb903b
VZ
2422 if ( dtCreate )
2423 dtCreate->Set(stBuf.st_ctime);
951cd180 2424
f363e05c 2425 return true;
951cd180 2426 }
951cd180 2427#else // other platform
7a893a31
WS
2428 wxUnusedVar(dtAccess);
2429 wxUnusedVar(dtMod);
2430 wxUnusedVar(dtCreate);
951cd180
VZ
2431#endif // platforms
2432
2433 wxLogSysError(_("Failed to retrieve file times for '%s'"),
2434 GetFullPath().c_str());
2435
f363e05c 2436 return false;
951cd180
VZ
2437}
2438
e2b87f38
VZ
2439#endif // wxUSE_DATETIME
2440
23b8a262
JS
2441
2442// ----------------------------------------------------------------------------
2443// file size functions
2444// ----------------------------------------------------------------------------
2445
bd08f2f7
VZ
2446#if wxUSE_LONGLONG
2447
23b8a262
JS
2448/* static */
2449wxULongLong wxFileName::GetSize(const wxString &filename)
2450{
2451 if (!wxFileExists(filename))
2452 return wxInvalidSize;
2453
cdbce971
WS
2454#if defined(__WXPALMOS__)
2455 // TODO
2456 return wxInvalidSize;
2457#elif defined(__WIN32__)
23b8a262
JS
2458 wxFileHandle f(filename, wxFileHandle::Read);
2459 if (!f.IsOk())
2460 return wxInvalidSize;
2461
2462 DWORD lpFileSizeHigh;
2463 DWORD ret = GetFileSize(f, &lpFileSizeHigh);
5ab9534b 2464 if ( ret == INVALID_FILE_SIZE && ::GetLastError() != NO_ERROR )
23b8a262
JS
2465 return wxInvalidSize;
2466
5ab9534b
VZ
2467 return wxULongLong(lpFileSizeHigh, ret);
2468#else // ! __WIN32__
23b8a262
JS
2469 wxStructStat st;
2470#ifndef wxNEED_WX_UNISTD_H
2471 if (wxStat( filename.fn_str() , &st) != 0)
2472#else
2473 if (wxStat( filename, &st) != 0)
2474#endif
2475 return wxInvalidSize;
2476 return wxULongLong(st.st_size);
2477#endif
2478}
2479
2480/* static */
2481wxString wxFileName::GetHumanReadableSize(const wxULongLong &bs,
2482 const wxString &nullsize,
2483 int precision)
2484{
2485 static const double KILOBYTESIZE = 1024.0;
2486 static const double MEGABYTESIZE = 1024.0*KILOBYTESIZE;
2487 static const double GIGABYTESIZE = 1024.0*MEGABYTESIZE;
2488 static const double TERABYTESIZE = 1024.0*GIGABYTESIZE;
2489
2490 if (bs == 0 || bs == wxInvalidSize)
2491 return nullsize;
2492
2493 double bytesize = bs.ToDouble();
2494 if (bytesize < KILOBYTESIZE)
2495 return wxString::Format(_("%s B"), bs.ToString().c_str());
2496 if (bytesize < MEGABYTESIZE)
2497 return wxString::Format(_("%.*f kB"), precision, bytesize/KILOBYTESIZE);
2498 if (bytesize < GIGABYTESIZE)
2499 return wxString::Format(_("%.*f MB"), precision, bytesize/MEGABYTESIZE);
2500 if (bytesize < TERABYTESIZE)
2501 return wxString::Format(_("%.*f GB"), precision, bytesize/GIGABYTESIZE);
2502
2503 return wxString::Format(_("%.*f TB"), precision, bytesize/TERABYTESIZE);
2504}
2505
2506wxULongLong wxFileName::GetSize() const
2507{
2508 return GetSize(GetFullPath());
2509}
2510
2511wxString wxFileName::GetHumanReadableSize(const wxString &failmsg, int precision) const
2512{
2513 return GetHumanReadableSize(GetSize(), failmsg, precision);
2514}
2515
bd08f2f7 2516#endif // wxUSE_LONGLONG
23b8a262
JS
2517
2518// ----------------------------------------------------------------------------
2519// Mac-specific functions
2520// ----------------------------------------------------------------------------
2521
26eef304 2522#if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
4dfbcdd5 2523
56ce942b
VZ
2524namespace
2525{
2526
0ca4ae93 2527class MacDefaultExtensionRecord
4dfbcdd5 2528{
56ce942b
VZ
2529public:
2530 MacDefaultExtensionRecord()
2531 {
2532 m_type =
2533 m_creator = 0 ;
2534 }
4dfbcdd5 2535
56ce942b 2536 // default copy ctor, assignment operator and dtor are ok
0ca4ae93 2537
56ce942b
VZ
2538 MacDefaultExtensionRecord(const wxString& ext, OSType type, OSType creator)
2539 : m_ext(ext)
2540 {
2541 m_type = type;
2542 m_creator = creator;
2543 }
2544
2545 wxString m_ext;
2546 OSType m_type;
2547 OSType m_creator;
2548};
2549
2550WX_DECLARE_OBJARRAY(MacDefaultExtensionRecord, MacDefaultExtensionArray);
2551
2552bool gMacDefaultExtensionsInited = false;
0ca4ae93 2553
4dfbcdd5 2554#include "wx/arrimpl.cpp"
0ca4ae93 2555
56ce942b 2556WX_DEFINE_EXPORTED_OBJARRAY(MacDefaultExtensionArray);
4dfbcdd5 2557
56ce942b 2558MacDefaultExtensionArray gMacDefaultExtensions;
4dfbcdd5 2559
5974c3cf 2560// load the default extensions
56ce942b 2561const MacDefaultExtensionRecord gDefaults[] =
4dfbcdd5 2562{
56ce942b
VZ
2563 MacDefaultExtensionRecord( "txt", 'TEXT', 'ttxt' ),
2564 MacDefaultExtensionRecord( "tif", 'TIFF', '****' ),
2565 MacDefaultExtensionRecord( "jpg", 'JPEG', '****' ),
2566};
0ea621cc 2567
56ce942b 2568void MacEnsureDefaultExtensionsLoaded()
5974c3cf
SC
2569{
2570 if ( !gMacDefaultExtensionsInited )
4dfbcdd5 2571 {
5974c3cf
SC
2572 // we could load the pc exchange prefs here too
2573 for ( size_t i = 0 ; i < WXSIZEOF( gDefaults ) ; ++i )
2574 {
2575 gMacDefaultExtensions.Add( gDefaults[i] ) ;
2576 }
56ce942b 2577 gMacDefaultExtensionsInited = true;
0ea621cc 2578 }
4dfbcdd5 2579}
a2b77260 2580
56ce942b
VZ
2581} // anonymous namespace
2582
0ea621cc 2583bool wxFileName::MacSetTypeAndCreator( wxUint32 type , wxUint32 creator )
4dfbcdd5 2584{
a2b77260
SC
2585 FSRef fsRef ;
2586 FSCatalogInfo catInfo;
2587 FileInfo *finfo ;
4dfbcdd5 2588
a2b77260
SC
2589 if ( wxMacPathToFSRef( GetFullPath() , &fsRef ) == noErr )
2590 {
a62848fd
WS
2591 if ( FSGetCatalogInfo (&fsRef, kFSCatInfoFinderInfo, &catInfo, NULL, NULL, NULL) == noErr )
2592 {
2593 finfo = (FileInfo*)&catInfo.finderInfo;
2594 finfo->fileType = type ;
2595 finfo->fileCreator = creator ;
2596 FSSetCatalogInfo( &fsRef, kFSCatInfoFinderInfo, &catInfo ) ;
a2b77260 2597 return true ;
a62848fd 2598 }
a2b77260
SC
2599 }
2600 return false ;
4dfbcdd5
SC
2601}
2602
0ea621cc 2603bool wxFileName::MacGetTypeAndCreator( wxUint32 *type , wxUint32 *creator )
4dfbcdd5 2604{
a2b77260
SC
2605 FSRef fsRef ;
2606 FSCatalogInfo catInfo;
2607 FileInfo *finfo ;
4dfbcdd5 2608
a2b77260
SC
2609 if ( wxMacPathToFSRef( GetFullPath() , &fsRef ) == noErr )
2610 {
a62848fd
WS
2611 if ( FSGetCatalogInfo (&fsRef, kFSCatInfoFinderInfo, &catInfo, NULL, NULL, NULL) == noErr )
2612 {
2613 finfo = (FileInfo*)&catInfo.finderInfo;
2614 *type = finfo->fileType ;
2615 *creator = finfo->fileCreator ;
a2b77260 2616 return true ;
a62848fd 2617 }
a2b77260
SC
2618 }
2619 return false ;
4dfbcdd5
SC
2620}
2621
2622bool wxFileName::MacSetDefaultTypeAndCreator()
2623{
2624 wxUint32 type , creator ;
2625 if ( wxFileName::MacFindDefaultTypeAndCreator(GetExt() , &type ,
2626 &creator ) )
2627 {
f63fb56d
GD
2628 return MacSetTypeAndCreator( type , creator ) ;
2629 }
2630 return false;
4dfbcdd5
SC
2631}
2632
0ea621cc 2633bool wxFileName::MacFindDefaultTypeAndCreator( const wxString& ext , wxUint32 *type , wxUint32 *creator )
4dfbcdd5
SC
2634{
2635 MacEnsureDefaultExtensionsLoaded() ;
2636 wxString extl = ext.Lower() ;
2637 for( int i = gMacDefaultExtensions.Count() - 1 ; i >= 0 ; --i )
2638 {
2639 if ( gMacDefaultExtensions.Item(i).m_ext == extl )
2640 {
2641 *type = gMacDefaultExtensions.Item(i).m_type ;
2642 *creator = gMacDefaultExtensions.Item(i).m_creator ;
2643 return true ;
2644 }
2645 }
2646 return false ;
2647}
2648
2649void wxFileName::MacRegisterDefaultTypeAndCreator( const wxString& ext , wxUint32 type , wxUint32 creator )
2650{
56ce942b
VZ
2651 MacEnsureDefaultExtensionsLoaded();
2652 MacDefaultExtensionRecord rec(ext.Lower(), type, creator);
2653 gMacDefaultExtensions.Add( rec );
4dfbcdd5 2654}
56ce942b
VZ
2655
2656#endif // defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON