]>
git.saurik.com Git - wxWidgets.git/blob - src/common/ffile.cpp
78cf20c8c3801e9c6b7b64f56f7c941b12a03b2d
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFFile encapsulates "FILE *" IO stream
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "ffile.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
40 // ============================================================================
42 // ============================================================================
44 // ----------------------------------------------------------------------------
45 // seek and tell with large file support if available
46 // ----------------------------------------------------------------------------
49 # define wxFseek fseeko
50 # define wxFtell ftello
52 # define wxFseek fseek
53 # define wxFtell ftell
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 wxFFile::wxFFile(const wxChar
*filename
, const wxChar
*mode
)
64 (void)Open(filename
, mode
);
67 bool wxFFile::Open(const wxChar
*filename
, const wxChar
*mode
)
69 wxASSERT_MSG( !m_fp
, wxT("should close or detach the old file first") );
71 m_fp
= wxFopen(filename
, mode
);
75 wxLogSysError(_("can't open file '%s'"), filename
);
89 if ( fclose(m_fp
) != 0 )
91 wxLogSysError(_("can't close file '%s'"), m_name
.c_str());
102 // ----------------------------------------------------------------------------
104 // ----------------------------------------------------------------------------
106 bool wxFFile::ReadAll(wxString
*str
, wxMBConv
& conv
)
108 wxCHECK_MSG( str
, false, wxT("invalid parameter") );
109 wxCHECK_MSG( IsOpened(), false, wxT("can't read from closed file") );
110 wxCHECK_MSG( Length() >= 0, false, wxT("invalid length") );
111 size_t length
= (size_t)Length();
112 wxCHECK_MSG( (wxFileOffset
)length
== Length(), false, wxT("huge file not supported") );
116 const size_t fileLen
= Length();
117 wxCharBuffer
buf(fileLen
+ 1);
119 // note that realLen may be less than fileLen for text files with DOS EOLs
120 // ('\r's get dropped by CRT when reading which means that we have
121 // realLen = fileLen - numOfLinesInTheFile)
122 size_t realLen
= fread(buf
.data(), sizeof(char), fileLen
, m_fp
);
126 wxLogSysError(_("Read error on file '%s'"), m_name
.c_str());
131 buf
.data()[realLen
] = 0;
132 *str
= wxString(buf
, conv
);
137 size_t wxFFile::Read(void *pBuf
, size_t nCount
)
139 wxCHECK_MSG( pBuf
, FALSE
, wxT("invalid parameter") );
140 wxCHECK_MSG( IsOpened(), FALSE
, wxT("can't read from closed file") );
142 size_t nRead
= fread(pBuf
, 1, nCount
, m_fp
);
143 if ( (nRead
< nCount
) && Error() )
145 wxLogSysError(_("Read error on file '%s'"), m_name
.c_str());
151 size_t wxFFile::Write(const void *pBuf
, size_t nCount
)
153 wxCHECK_MSG( pBuf
, FALSE
, wxT("invalid parameter") );
154 wxCHECK_MSG( IsOpened(), FALSE
, wxT("can't write to closed file") );
156 size_t nWritten
= fwrite(pBuf
, 1, nCount
, m_fp
);
157 if ( nWritten
< nCount
)
159 wxLogSysError(_("Write error on file '%s'"), m_name
.c_str());
165 bool wxFFile::Flush()
169 // fflush returns non-zero on error
173 wxLogSysError(_("failed to flush the file '%s'"), m_name
.c_str());
182 // ----------------------------------------------------------------------------
184 // ----------------------------------------------------------------------------
186 bool wxFFile::Seek(wxFileOffset ofs
, wxSeekMode mode
)
188 wxCHECK_MSG( IsOpened(), false, wxT("can't seek on closed file") );
194 wxFAIL_MSG(wxT("unknown seek mode"));
195 // still fall through
211 if ((long)ofs
!= ofs
)
213 wxLogError(_("Seek error on file '%s' (large files not supported by stdio)"), m_name
.c_str());
218 if ( wxFseek(m_fp
, (long)ofs
, origin
) != 0 )
220 if ( wxFseek(m_fp
, ofs
, origin
) != 0 )
223 wxLogSysError(_("Seek error on file '%s'"), m_name
.c_str());
231 wxFileOffset
wxFFile::Tell() const
233 wxCHECK_MSG( IsOpened(), wxInvalidOffset
,
234 _T("wxFFile::Tell(): file is closed!") );
236 wxFileOffset rc
= wxFtell(m_fp
);
237 if ( rc
== wxInvalidOffset
)
239 wxLogSysError(_("Can't find current position in file '%s'"),
246 wxFileOffset
wxFFile::Length() const
248 wxCHECK_MSG( IsOpened(), wxInvalidOffset
,
249 _T("wxFFile::Length(): file is closed!") );
251 wxFFile
& self
= *(wxFFile
*)this; // const_cast
253 wxFileOffset posOld
= Tell();
254 if ( posOld
!= wxInvalidOffset
)
256 if ( self
.SeekEnd() )
258 wxFileOffset len
= Tell();
260 (void)self
.Seek(posOld
);
266 return wxInvalidOffset
;
269 #endif // wxUSE_FFILE