added wxMBConv parameter for wxFFile::ReadAll() and documented it (improved patch 1041642)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32187 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-02-19 15:53:04 +00:00
parent b2f3b00bd2
commit 3e15dde396
4 changed files with 29 additions and 18 deletions

View File

@@ -51,6 +51,7 @@ All:
- Various changes to how wxListCtrl and wxTreeCtrl react to right - Various changes to how wxListCtrl and wxTreeCtrl react to right
mouse clicks and left mouse click for starting a drag operation. mouse clicks and left mouse click for starting a drag operation.
- "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU - "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
- wxFFile::ReadAll() now takes an optional wxMBConv parameter
All (GUI): All (GUI):

View File

@@ -208,6 +208,24 @@ Reads the specified number of bytes into a buffer, returning the actual number r
The number of bytes read. The number of bytes read.
\membersection{wxFFile::ReadAll}\label{wxffilereadall}
\func{bool}{ReadAll}{\param{wxString *}{ str}, \param{wxMBConv\&}{ conv = wxConvUTF8}}
Reads the entire contents of the file into a string.
\wxheading{Parameters}
\docparam{str}{String to read data into.}
\docparam{conv}{Conversion object to use in Unicode build; by default supposes
that file contents is encoded in UTF-8.}
\wxheading{Return value}
\true if file was read successfully, \false otherwise.
\membersection{wxFFile::Seek}\label{wxffileseek} \membersection{wxFFile::Seek}\label{wxffileseek}
\func{bool}{Seek}{\param{wxFileOffset }{ofs}, \param{wxSeekMode }{mode = wxFromStart}} \func{bool}{Seek}{\param{wxFileOffset }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}

View File

@@ -60,7 +60,7 @@ public:
// read/write (unbuffered) // read/write (unbuffered)
// read all data from the file into a string (useful for text files) // read all data from the file into a string (useful for text files)
bool ReadAll(wxString *str); bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8);
// returns number of bytes read - use Eof() and Error() to see if an error // returns number of bytes read - use Eof() and Error() to see if an error
// occured or not // occured or not
size_t Read(void *pBuf, size_t nCount); size_t Read(void *pBuf, size_t nCount);

View File

@@ -103,7 +103,7 @@ bool wxFFile::Close()
// read/write // read/write
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
bool wxFFile::ReadAll(wxString *str) bool wxFFile::ReadAll(wxString *str, wxMBConv& conv)
{ {
wxCHECK_MSG( str, false, wxT("invalid parameter") ); wxCHECK_MSG( str, false, wxT("invalid parameter") );
wxCHECK_MSG( IsOpened(), false, wxT("can't read from closed file") ); wxCHECK_MSG( IsOpened(), false, wxT("can't read from closed file") );
@@ -113,26 +113,18 @@ bool wxFFile::ReadAll(wxString *str)
clearerr(m_fp); clearerr(m_fp);
str->Empty(); const size_t fileLen = Length();
str->Alloc(length); wxCharBuffer buf(fileLen + 1);
if ( (fread(buf.data(), sizeof(char), fileLen, m_fp) < fileLen) || Error() )
wxChar buf[1024];
static const size_t nSize = WXSIZEOF(buf) - 1; // -1 for trailing '\0'
while ( !Eof() )
{ {
size_t nRead = fread(buf, sizeof(wxChar), nSize, m_fp); wxLogSysError(_("Read error on file '%s'"), m_name.c_str());
if ( (nRead < nSize) && Error() )
{
wxLogSysError(_("Read error on file '%s'"), m_name.c_str());
return false; return false;
}
//else: just EOF
buf[nRead] = 0;
*str += buf;
} }
buf.data()[fileLen] = 0;
*str = wxString(buf, conv);
return true; return true;
} }