added mode parameter to wxFFileStream ctors taking wxFFile
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -38,9 +38,9 @@ can seek beyond the end of the stream (file) and will thus not return
|
|||||||
|
|
||||||
\membersection{wxFFileInputStream::wxFFileInputStream}\label{wxffileinputstreamctor}
|
\membersection{wxFFileInputStream::wxFFileInputStream}\label{wxffileinputstreamctor}
|
||||||
|
|
||||||
\func{}{wxFFileInputStream}{\param{const wxString\&}{ ifileName}}
|
\func{}{wxFFileInputStream}{\param{const wxString\&}{ filename}, \param{const wxChar *}{ mode = "rb"}}
|
||||||
|
|
||||||
Opens the specified file using its {\it ifilename} name in read-only mode.
|
Opens the specified file using its {\it filename} name using the specified mode.
|
||||||
|
|
||||||
\func{}{wxFFileInputStream}{\param{wxFFile\&}{ file}}
|
\func{}{wxFFileInputStream}{\param{wxFFile\&}{ file}}
|
||||||
|
|
||||||
@@ -102,10 +102,9 @@ can seek beyond the end of the stream (file) and will thus not return
|
|||||||
|
|
||||||
\membersection{wxFFileOutputStream::wxFFileOutputStream}\label{wxffileoutputstreamctor}
|
\membersection{wxFFileOutputStream::wxFFileOutputStream}\label{wxffileoutputstreamctor}
|
||||||
|
|
||||||
\func{}{wxFFileOutputStream}{\param{const wxString\&}{ ofileName}}
|
\func{}{wxFFileOutputStream}{\param{const wxString\&}{ filename}, \param{const wxChar *}{ mode="w+b"}}
|
||||||
|
|
||||||
Creates a new file with {\it ofilename} name and initializes the stream in
|
Opens the file with the given {\it filename} name in the specified mode.
|
||||||
write-only mode.
|
|
||||||
|
|
||||||
\func{}{wxFFileOutputStream}{\param{wxFFile\&}{ file}}
|
\func{}{wxFFileOutputStream}{\param{wxFFile\&}{ file}}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: wfstream.h
|
// Name: wx/wfstream.h
|
||||||
// Purpose: File stream classes
|
// Purpose: File stream classes
|
||||||
// Author: Guilhem Lavaux
|
// Author: Guilhem Lavaux
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -30,58 +30,56 @@
|
|||||||
// wxFileStream using wxFile
|
// wxFileStream using wxFile
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxFileInputStream: public wxInputStream {
|
class WXDLLIMPEXP_BASE wxFileInputStream : public wxInputStream
|
||||||
public:
|
{
|
||||||
wxFileInputStream(const wxString& ifileName);
|
public:
|
||||||
wxFileInputStream(wxFile& file);
|
wxFileInputStream(const wxString& ifileName);
|
||||||
wxFileInputStream(int fd);
|
wxFileInputStream(wxFile& file);
|
||||||
~wxFileInputStream();
|
wxFileInputStream(int fd);
|
||||||
|
~wxFileInputStream();
|
||||||
|
|
||||||
wxFileOffset GetLength() const;
|
wxFileOffset GetLength() const;
|
||||||
|
|
||||||
bool Ok() const { return m_file->IsOpened(); }
|
bool Ok() const { return m_file->IsOpened(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxFileInputStream();
|
wxFileInputStream();
|
||||||
|
|
||||||
size_t OnSysRead(void *buffer, size_t size);
|
size_t OnSysRead(void *buffer, size_t size);
|
||||||
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
||||||
wxFileOffset OnSysTell() const;
|
wxFileOffset OnSysTell() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxFile *m_file;
|
wxFile *m_file;
|
||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
|
|
||||||
DECLARE_NO_COPY_CLASS(wxFileInputStream)
|
DECLARE_NO_COPY_CLASS(wxFileInputStream)
|
||||||
};
|
};
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxFileOutputStream: public wxOutputStream {
|
class WXDLLIMPEXP_BASE wxFileOutputStream : public wxOutputStream
|
||||||
public:
|
{
|
||||||
wxFileOutputStream(const wxString& fileName);
|
public:
|
||||||
wxFileOutputStream(wxFile& file);
|
wxFileOutputStream(const wxString& fileName);
|
||||||
wxFileOutputStream(int fd);
|
wxFileOutputStream(wxFile& file);
|
||||||
virtual ~wxFileOutputStream();
|
wxFileOutputStream(int fd);
|
||||||
|
virtual ~wxFileOutputStream();
|
||||||
|
|
||||||
// To solve an ambiguity on GCC
|
void Sync();
|
||||||
// inline wxOutputStream& Write(const void *buffer, size_t size)
|
bool Close() { return m_file_destroy ? m_file->Close() : true; }
|
||||||
// { return wxOutputStream::Write(buffer, size); }
|
wxFileOffset GetLength() const;
|
||||||
|
|
||||||
void Sync();
|
bool Ok() const { return m_file->IsOpened(); }
|
||||||
bool Close() { return m_file_destroy ? m_file->Close() : true; }
|
|
||||||
wxFileOffset GetLength() const;
|
|
||||||
|
|
||||||
bool Ok() const { return m_file->IsOpened(); }
|
protected:
|
||||||
|
wxFileOutputStream();
|
||||||
|
|
||||||
protected:
|
size_t OnSysWrite(const void *buffer, size_t size);
|
||||||
wxFileOutputStream();
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
||||||
|
wxFileOffset OnSysTell() const;
|
||||||
|
|
||||||
size_t OnSysWrite(const void *buffer, size_t size);
|
protected:
|
||||||
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
wxFile *m_file;
|
||||||
wxFileOffset OnSysTell() const;
|
bool m_file_destroy;
|
||||||
|
|
||||||
protected:
|
|
||||||
wxFile *m_file;
|
|
||||||
bool m_file_destroy;
|
|
||||||
|
|
||||||
DECLARE_NO_COPY_CLASS(wxFileOutputStream)
|
DECLARE_NO_COPY_CLASS(wxFileOutputStream)
|
||||||
};
|
};
|
||||||
@@ -100,58 +98,56 @@ private:
|
|||||||
// wxFFileStream using wxFFile
|
// wxFFileStream using wxFFile
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxFFileInputStream: public wxInputStream {
|
class WXDLLIMPEXP_BASE wxFFileInputStream : public wxInputStream
|
||||||
public:
|
{
|
||||||
wxFFileInputStream(const wxString& ifileName);
|
public:
|
||||||
wxFFileInputStream(wxFFile& file);
|
wxFFileInputStream(const wxString& fileName, const wxChar *mode = _T("rb"));
|
||||||
wxFFileInputStream(FILE *file);
|
wxFFileInputStream(wxFFile& file);
|
||||||
~wxFFileInputStream();
|
wxFFileInputStream(FILE *file);
|
||||||
|
~wxFFileInputStream();
|
||||||
|
|
||||||
wxFileOffset GetLength() const;
|
wxFileOffset GetLength() const;
|
||||||
|
|
||||||
bool Ok() const { return m_file->IsOpened(); }
|
bool Ok() const { return m_file->IsOpened(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxFFileInputStream();
|
wxFFileInputStream();
|
||||||
|
|
||||||
size_t OnSysRead(void *buffer, size_t size);
|
size_t OnSysRead(void *buffer, size_t size);
|
||||||
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
||||||
wxFileOffset OnSysTell() const;
|
wxFileOffset OnSysTell() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxFFile *m_file;
|
wxFFile *m_file;
|
||||||
bool m_file_destroy;
|
bool m_file_destroy;
|
||||||
|
|
||||||
DECLARE_NO_COPY_CLASS(wxFFileInputStream)
|
DECLARE_NO_COPY_CLASS(wxFFileInputStream)
|
||||||
};
|
};
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxFFileOutputStream: public wxOutputStream {
|
class WXDLLIMPEXP_BASE wxFFileOutputStream : public wxOutputStream
|
||||||
public:
|
{
|
||||||
wxFFileOutputStream(const wxString& fileName);
|
public:
|
||||||
wxFFileOutputStream(wxFFile& file);
|
wxFFileOutputStream(const wxString& fileName, const wxChar *mode = _T("w+b"));
|
||||||
wxFFileOutputStream(FILE *file);
|
wxFFileOutputStream(wxFFile& file);
|
||||||
virtual ~wxFFileOutputStream();
|
wxFFileOutputStream(FILE *file);
|
||||||
|
virtual ~wxFFileOutputStream();
|
||||||
|
|
||||||
// To solve an ambiguity on GCC
|
void Sync();
|
||||||
// inline wxOutputStream& Write(const void *buffer, size_t size)
|
bool Close() { return m_file_destroy ? m_file->Close() : true; }
|
||||||
// { return wxOutputStream::Write(buffer, size); }
|
wxFileOffset GetLength() const;
|
||||||
|
|
||||||
void Sync();
|
bool Ok() const { return m_file->IsOpened(); }
|
||||||
bool Close() { return m_file_destroy ? m_file->Close() : true; }
|
|
||||||
wxFileOffset GetLength() const;
|
|
||||||
|
|
||||||
bool Ok() const { return m_file->IsOpened(); }
|
protected:
|
||||||
|
wxFFileOutputStream();
|
||||||
|
|
||||||
protected:
|
size_t OnSysWrite(const void *buffer, size_t size);
|
||||||
wxFFileOutputStream();
|
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
||||||
|
wxFileOffset OnSysTell() const;
|
||||||
|
|
||||||
size_t OnSysWrite(const void *buffer, size_t size);
|
protected:
|
||||||
wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode);
|
wxFFile *m_file;
|
||||||
wxFileOffset OnSysTell() const;
|
bool m_file_destroy;
|
||||||
|
|
||||||
protected:
|
|
||||||
wxFFile *m_file;
|
|
||||||
bool m_file_destroy;
|
|
||||||
|
|
||||||
DECLARE_NO_COPY_CLASS(wxFFileOutputStream)
|
DECLARE_NO_COPY_CLASS(wxFFileOutputStream)
|
||||||
};
|
};
|
||||||
@@ -166,16 +162,6 @@ private:
|
|||||||
DECLARE_NO_COPY_CLASS(wxFFileStream)
|
DECLARE_NO_COPY_CLASS(wxFFileStream)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // wxUSE_STREAMS && wxUSE_FILE
|
||||||
// wxUSE_STREAMS && wxUSE_FILE
|
|
||||||
|
|
||||||
#endif
|
|
||||||
// _WX_WXFSTREAM_H__
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif // _WX_WXFSTREAM_H__
|
||||||
|
@@ -195,18 +195,19 @@ wxFileStream::wxFileStream(const wxString& fileName)
|
|||||||
// wxFFileInputStream
|
// wxFFileInputStream
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
wxFFileInputStream::wxFFileInputStream(const wxString& fileName)
|
wxFFileInputStream::wxFFileInputStream(const wxString& fileName,
|
||||||
: wxInputStream()
|
const wxChar *mode)
|
||||||
|
: wxInputStream()
|
||||||
{
|
{
|
||||||
m_file = new wxFFile(fileName, _T("rb"));
|
m_file = new wxFFile(fileName, mode);
|
||||||
m_file_destroy = true;
|
m_file_destroy = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFFileInputStream::wxFFileInputStream()
|
wxFFileInputStream::wxFFileInputStream()
|
||||||
: wxInputStream()
|
: wxInputStream()
|
||||||
{
|
{
|
||||||
m_file_destroy = false;
|
|
||||||
m_file = NULL;
|
m_file = NULL;
|
||||||
|
m_file_destroy = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFFileInputStream::wxFFileInputStream(wxFFile& file)
|
wxFFileInputStream::wxFFileInputStream(wxFFile& file)
|
||||||
@@ -262,9 +263,10 @@ wxFileOffset wxFFileInputStream::OnSysTell() const
|
|||||||
// wxFFileOutputStream
|
// wxFFileOutputStream
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
wxFFileOutputStream::wxFFileOutputStream(const wxString& fileName)
|
wxFFileOutputStream::wxFFileOutputStream(const wxString& fileName,
|
||||||
|
const wxChar *mode)
|
||||||
{
|
{
|
||||||
m_file = new wxFFile(fileName, _T("w+b"));
|
m_file = new wxFFile(fileName, mode);
|
||||||
m_file_destroy = true;
|
m_file_destroy = true;
|
||||||
|
|
||||||
if (!m_file->IsOpened())
|
if (!m_file->IsOpened())
|
||||||
@@ -285,10 +287,10 @@ wxFFileOutputStream::wxFFileOutputStream(wxFFile& file)
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxFFileOutputStream::wxFFileOutputStream()
|
wxFFileOutputStream::wxFFileOutputStream()
|
||||||
: wxOutputStream()
|
: wxOutputStream()
|
||||||
{
|
{
|
||||||
m_file_destroy = false;
|
|
||||||
m_file = NULL;
|
m_file = NULL;
|
||||||
|
m_file_destroy = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxFFileOutputStream::wxFFileOutputStream(FILE *file)
|
wxFFileOutputStream::wxFFileOutputStream(FILE *file)
|
||||||
@@ -348,6 +350,5 @@ wxFFileStream::wxFFileStream(const wxString& fileName)
|
|||||||
wxFFileOutputStream::m_file = wxFFileInputStream::m_file;
|
wxFFileOutputStream::m_file = wxFFileInputStream::m_file;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // wxUSE_STREAMS && wxUSE_FILE
|
||||||
// wxUSE_STREAMS && wxUSE_FILE
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user