]>
git.saurik.com Git - wxWidgets.git/blob - src/common/file.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFile - encapsulates low-level "file descriptor"
5 // Author: Vadim Zeitlin
9 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
18 #pragma implementation "file.h"
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
31 #if defined(__WXMSW__) && !defined(__GNUWIN32__) && !defined(__WXWINE__) && !defined(__WXMICROWIN__)
35 #define WIN32_LEAN_AND_MEAN
57 #elif (defined(__UNIX__) || defined(__GNUWIN32__))
62 #elif defined(__DOS__)
63 #if defined(__WATCOMC__)
65 #elif defined(__DJGPP__)
70 #error "Please specify the header with file functions declarations."
72 #elif (defined(__WXPM__))
76 #elif (defined(__WXSTUBS__))
77 // Have to ifdef this for different environments
79 #elif (defined(__WXMAC__))
81 int access( const char *path
, int mode
) { return 0 ; }
83 int _access( const char *path
, int mode
) { return 0 ; }
85 char* mktemp( char * path
) { return path
;}
91 #error "Please specify the header with file functions declarations."
94 #include <stdio.h> // SEEK_xxx constants
95 #include <fcntl.h> // O_RDONLY &c
98 #include <sys/types.h> // needed for stat
99 #include <sys/stat.h> // stat
100 #elif ( defined(__MWERKS__) && defined(__WXMSW__) )
101 #include <sys/types.h> // needed for stat
102 #include <sys/stat.h> // stat
105 #if defined(__BORLANDC__) || defined(_MSC_VER)
110 // there is no distinction between text and binary files under Unix, so define
111 // O_BINARY as 0 if the system headers don't do it already
112 #if defined(__UNIX__) && !defined(O_BINARY)
124 // some broken compilers don't have 3rd argument in open() and creat()
126 #define ACCESS(access)
128 #else // normal compiler
129 #define ACCESS(access) , (access)
134 #include "wx/string.h"
137 #endif // !WX_PRECOMP
139 #include "wx/filename.h"
142 // ============================================================================
143 // implementation of wxFile
144 // ============================================================================
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
149 bool wxFile::Exists(const wxChar
*name
)
152 #if wxUSE_UNICODE && wxMBFILES
153 wxCharBuffer fname
= wxConvFile
.cWC2MB(name
);
155 return !wxAccess(fname
, 0) &&
156 !wxStat(wxMBSTRINGCAST fname
, &st
) &&
157 (st
.st_mode
& S_IFREG
);
160 return !wxAccess(name
, 0) &&
161 !wxStat(name
, &st
) &&
162 (st
.st_mode
& S_IFREG
);
166 bool wxFile::Access(const wxChar
*name
, OpenMode mode
)
180 wxFAIL_MSG(wxT("bad wxFile::Access mode parameter."));
183 return wxAccess(wxFNCONV(name
), how
) == 0;
186 // ----------------------------------------------------------------------------
188 // ----------------------------------------------------------------------------
191 wxFile::wxFile(const wxChar
*szFileName
, OpenMode mode
)
196 Open(szFileName
, mode
);
199 // create the file, fail if it already exists and bOverwrite
200 bool wxFile::Create(const wxChar
*szFileName
, bool bOverwrite
, int accessMode
)
202 // if bOverwrite we create a new file or truncate the existing one,
203 // otherwise we only create the new file and fail if it already exists
204 #if defined(__WXMAC__) && !defined(__UNIX__)
205 // Dominic Mazzoni [dmazzoni+@cs.cmu.edu] reports that open is still broken on the mac, so we replace
206 // int fd = open(wxUnix2MacFilename( szFileName ), O_CREAT | (bOverwrite ? O_TRUNC : O_EXCL), access);
207 int fd
= creat( szFileName
, accessMode
);
209 int fd
= wxOpen(wxFNCONV(szFileName
),
210 O_BINARY
| O_WRONLY
| O_CREAT
|
211 (bOverwrite
? O_TRUNC
: O_EXCL
)
215 wxLogSysError(_("can't create file '%s'"), szFileName
);
225 bool wxFile::Open(const wxChar
*szFileName
, OpenMode mode
, int accessMode
)
227 int flags
= O_BINARY
;
235 if ( wxFile::Exists(szFileName
) )
237 flags
|= O_WRONLY
| O_APPEND
;
240 //else: fall through as write_append is the same as write if the
241 // file doesn't exist
244 flags
|= O_WRONLY
| O_CREAT
| O_TRUNC
;
248 flags
|= O_WRONLY
| O_CREAT
| O_EXCL
;
256 int fd
= wxOpen(wxFNCONV(szFileName
), flags
ACCESS(accessMode
));
258 wxLogSysError(_("can't open file '%s'"), szFileName
);
271 if ( close(m_fd
) == -1 ) {
272 wxLogSysError(_("can't close file descriptor %d"), m_fd
);
283 // ----------------------------------------------------------------------------
285 // ----------------------------------------------------------------------------
288 off_t
wxFile::Read(void *pBuf
, off_t nCount
)
290 wxCHECK( (pBuf
!= NULL
) && IsOpened(), 0 );
293 int iRc
= ::read(m_fd
, (char*) pBuf
, nCount
);
295 int iRc
= ::read(m_fd
, pBuf
, nCount
);
298 wxLogSysError(_("can't read from file descriptor %d"), m_fd
);
299 return wxInvalidOffset
;
306 size_t wxFile::Write(const void *pBuf
, size_t nCount
)
308 wxCHECK( (pBuf
!= NULL
) && IsOpened(), 0 );
311 #if __MSL__ >= 0x6000
312 int iRc
= ::write(m_fd
, (void*) pBuf
, nCount
);
314 int iRc
= ::write(m_fd
, (const char*) pBuf
, nCount
);
317 int iRc
= ::write(m_fd
, pBuf
, nCount
);
320 wxLogSysError(_("can't write to file descriptor %d"), m_fd
);
332 #if defined(__VISUALC__) || wxHAVE_FSYNC
333 if ( wxFsync(m_fd
) == -1 )
335 wxLogSysError(_("can't flush file descriptor %d"), m_fd
);
346 // ----------------------------------------------------------------------------
348 // ----------------------------------------------------------------------------
351 off_t
wxFile::Seek(off_t ofs
, wxSeekMode mode
)
353 wxASSERT( IsOpened() );
358 wxFAIL_MSG(_("unknown seek origin"));
373 int iRc
= lseek(m_fd
, ofs
, origin
);
375 wxLogSysError(_("can't seek on file descriptor %d"), m_fd
);
376 return wxInvalidOffset
;
383 off_t
wxFile::Tell() const
385 wxASSERT( IsOpened() );
387 int iRc
= wxTell(m_fd
);
389 wxLogSysError(_("can't get seek position on file descriptor %d"), m_fd
);
390 return wxInvalidOffset
;
396 // get current file length
397 off_t
wxFile::Length() const
399 wxASSERT( IsOpened() );
402 int iRc
= _filelength(m_fd
);
404 int iRc
= wxTell(m_fd
);
406 // @ have to use const_cast :-(
407 int iLen
= ((wxFile
*)this)->SeekEnd();
409 // restore old position
410 if ( ((wxFile
*)this)->Seek(iRc
) == -1 ) {
421 wxLogSysError(_("can't find length of file on file descriptor %d"), m_fd
);
422 return wxInvalidOffset
;
428 // is end of file reached?
429 bool wxFile::Eof() const
431 wxASSERT( IsOpened() );
435 #if defined(__DOS__) || defined(__UNIX__) || defined(__GNUWIN32__) || defined( __MWERKS__ ) || defined(__SALFORDC__)
436 // @@ this doesn't work, of course, on unseekable file descriptors
437 off_t ofsCur
= Tell(),
439 if ( ofsCur
== wxInvalidOffset
|| ofsMax
== wxInvalidOffset
)
442 iRc
= ofsCur
== ofsMax
;
443 #else // Windows and "native" compiler
445 #endif // Windows/Unix
455 wxLogSysError(_("can't determine if the end of file is reached on descriptor %d"), m_fd
);
459 wxFAIL_MSG(_("invalid eof() return value."));
465 // ============================================================================
466 // implementation of wxTempFile
467 // ============================================================================
469 // ----------------------------------------------------------------------------
471 // ----------------------------------------------------------------------------
473 wxTempFile::wxTempFile(const wxString
& strName
)
478 bool wxTempFile::Open(const wxString
& strName
)
480 // we must have an absolute filename because otherwise CreateTempFileName()
481 // would create the temp file in $TMP (i.e. the system standard location
482 // for the temp files) which might be on another volume/drive/mount and
483 // wxRename()ing it later to m_strName from Commit() would then fail
485 // with the absolute filename, the temp file is created in the same
486 // directory as this one which ensures that wxRename() may work later
487 wxFileName
fn(strName
);
488 if ( !fn
.IsAbsolute() )
490 fn
.Normalize(wxPATH_NORM_ABSOLUTE
);
493 m_strName
= fn
.GetFullPath();
495 m_strTemp
= wxFileName::CreateTempFileName(m_strName
, &m_file
);
497 if ( m_strTemp
.empty() )
499 // CreateTempFileName() failed
504 // the temp file should have the same permissions as the original one
508 if ( stat(m_strName
.fn_str(), &st
) == 0 )
514 // file probably didn't exist, just give it the default mode _using_
515 // user's umask (new files creation should respect umask)
516 mode_t mask
= umask(0777);
521 if ( chmod(m_strTemp
.mb_str(), mode
) == -1 )
523 wxLogSysError(_("Failed to set temporary file permissions"));
530 // ----------------------------------------------------------------------------
532 // ----------------------------------------------------------------------------
534 wxTempFile::~wxTempFile()
540 bool wxTempFile::Commit()
544 if ( wxFile::Exists(m_strName
) && wxRemove(m_strName
) != 0 ) {
545 wxLogSysError(_("can't remove file '%s'"), m_strName
.c_str());
549 if ( wxRename(m_strTemp
, m_strName
) != 0 ) {
550 wxLogSysError(_("can't commit changes to file '%s'"), m_strName
.c_str());
557 void wxTempFile::Discard()
560 if ( wxRemove(m_strTemp
) != 0 )
561 wxLogSysError(_("can't remove temporary file '%s'"), m_strTemp
.c_str());