]>
git.saurik.com Git - wxWidgets.git/blob - src/common/file.cpp
05e18e8866ae12e87d9a910effc6d7a5aa3cc356
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"
30 #if defined(__WXMSW__) && !defined(__GNUWIN32__)
32 #elif (defined(__UNIX__) || defined(__GNUWIN32__))
35 #error "Please specify the header with file functions declarations."
38 #include <stdio.h> // SEEK_xxx constants
39 #include <fcntl.h> // O_RDONLY &c
40 #include <sys/types.h> // needed for stat
41 #include <sys/stat.h> // stat
43 // Microsoft compiler loves underscores, feed them to it
52 #define access _access
59 #define O_RDONLY _O_RDONLY
60 #define O_WRONLY _O_WRONLY
61 #define O_RDWR _O_RDWR
62 #define O_EXCL _O_EXCL
63 #define O_CREAT _O_CREAT
64 #define O_BINARY _O_BINARY
66 #define S_IFDIR _S_IFDIR
67 #define S_IFREG _S_IFREG
69 #define S_IREAD _S_IREAD
70 #define S_IWRITE _S_IWRITE
72 #define tell(fd) lseek(fd, 0, SEEK_CUR)
75 // there is no distinction between text and binary files under Unix
81 #include <wx/string.h>
87 // ============================================================================
88 // implementation of wxFile
89 // ============================================================================
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
94 bool wxFile::Exists(const char *sz
)
97 return !access(sz
, 0) && !stat(sz
, &st
) && (st
.st_mode
& S_IFREG
);
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
105 wxFile::wxFile(const char *szFileName
, OpenMode mode
)
110 Open(szFileName
, mode
);
119 // create the file, fail if it already exists and bOverwrite
120 bool wxFile::Create(const char *szFileName
, bool bOverwrite
)
122 // if bOverwrite we create a new file or truncate the existing one,
123 // otherwise we only create the new file and fail if it already exists
124 int fd
= open(szFileName
, O_CREAT
| (bOverwrite
? O_TRUNC
: O_EXCL
));
127 wxLogSysError("can't create file '%s'", szFileName
);
137 bool wxFile::Open(const char *szFileName
, OpenMode mode
)
139 int flags
= O_BINARY
;
147 flags
|= O_WRONLY
| O_CREAT
| O_TRUNC
;
151 flags
|= O_WRONLY
| O_APPEND
;
159 int fd
= open(szFileName
, flags
, S_IREAD
| S_IWRITE
);
162 wxLogSysError("can't open file '%s'", szFileName
);
175 if ( close(m_fd
) == -1 ) {
176 wxLogSysError("can't close file descriptor %d", m_fd
);
187 // ----------------------------------------------------------------------------
189 // ----------------------------------------------------------------------------
192 off_t
wxFile::Read(void *pBuf
, off_t nCount
)
194 wxCHECK( (pBuf
!= NULL
) && IsOpened(), 0 );
196 int iRc
= ::read(m_fd
, pBuf
, nCount
);
198 wxLogSysError("can't read from file descriptor %d", m_fd
);
206 uint
wxFile::Write(const void *pBuf
, uint nCount
)
208 wxCHECK( (pBuf
!= NULL
) && IsOpened(), 0 );
210 int iRc
= ::write(m_fd
, pBuf
, nCount
);
212 wxLogSysError("can't write to file descriptor %d", m_fd
);
224 // @@@ fsync() is not ANSI (BSDish)
225 // if ( fsync(m_fd) == -1 ) { // TODO
227 wxLogSysError("can't flush file descriptor %d", m_fd
);
235 // ----------------------------------------------------------------------------
237 // ----------------------------------------------------------------------------
240 off_t
wxFile::Seek(off_t ofs
, wxSeekMode mode
)
242 wxASSERT( IsOpened() );
259 wxFAIL_MSG("unknown seek origin");
262 int iRc
= lseek(m_fd
, ofs
, flag
);
264 wxLogSysError("can't seek on file descriptor %d", m_fd
);
272 off_t
wxFile::Tell() const
274 wxASSERT( IsOpened() );
276 int iRc
= tell(m_fd
);
278 wxLogSysError("can't get seek position on file descriptor %d", m_fd
);
285 // get current file length
286 off_t
wxFile::Length() const
288 wxASSERT( IsOpened() );
291 int iRc
= _filelength(m_fd
);
293 int iRc
= tell(m_fd
);
295 // @ have to use const_cast :-(
296 int iLen
= ((wxFile
*)this)->SeekEnd();
298 // restore old position
299 if ( ((wxFile
*)this)->Seek(iRc
) == -1 ) {
311 wxLogSysError("can't find length of file on file descriptor %d", m_fd
);
318 // is end of file reached?
319 bool wxFile::Eof() const
321 wxASSERT( IsOpened() );
325 #if defined(__UNIX__) || defined(__GNUWIN32__)
326 // @@ this doesn't work, of course, on unseekable file descriptors
327 off_t ofsCur
= Tell(),
329 if ( ofsCur
== ofsInvalid
|| ofsMax
== ofsInvalid
)
332 iRc
= ofsCur
== ofsMax
;
333 #else // Windows and "native" compiler
335 #endif // Windows/Unix
345 wxLogSysError("can't determine if the end of file is reached on "
346 "descriptor %d", m_fd
);
350 wxFAIL_MSG("invalid eof() return value.");
356 // ============================================================================
357 // implementation of wxTempFile
358 // ============================================================================
360 // ----------------------------------------------------------------------------
362 // ----------------------------------------------------------------------------
363 wxTempFile::wxTempFile(const wxString
& strName
)
368 bool wxTempFile::Open(const wxString
& strName
)
372 // we want to create the file in the same directory as strName because
373 // otherwise rename() in Commit() might not work (if the files are on
374 // different partitions for example). Unfortunately, the only standard
375 // (POSIX) temp file creation function tmpnam() can't do it.
377 static const char *szMktempSuffix
= "XXXXXX";
378 m_strTemp
<< strName
<< szMktempSuffix
;
379 mktemp((char *)m_strTemp
.c_str()); // @@@ even if the length doesn't change
380 //m_strTemp.UngetWriteBuf();
382 m_strTemp
= tmpnam(NULL
);
383 #endif // Windows/Unix
385 return m_file
.Open(m_strTemp
, wxFile::write
);
388 // ----------------------------------------------------------------------------
390 // ----------------------------------------------------------------------------
392 wxTempFile::~wxTempFile()
398 bool wxTempFile::Commit()
402 if ( wxFile::Exists(m_strName
) && remove(m_strName
) != 0 ) {
403 wxLogSysError("can't remove file '%s'", m_strName
.c_str());
407 if ( rename(m_strTemp
, m_strName
) != 0 ) {
408 wxLogSysError("can't commit changes to file '%s'", m_strName
.c_str());
415 void wxTempFile::Discard()
418 if ( remove(m_strTemp
) != 0 )
419 wxLogSysError("can't remove temporary file '%s'", m_strTemp
.c_str());