/////////////////////////////////////////////////////////////////////////////
-// Name: fstream.cpp
+// Name: src/common/fstream.cpp
// Purpose: "File stream" classes
// Author: Julian Smart
// Modified by:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "wfstream.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+ #pragma hdrstop
#endif
-#if wxUSE_STREAMS && wxUSE_FILE
+#if wxUSE_STREAMS
-#include <stdio.h>
-#include "wx/stream.h"
#include "wx/wfstream.h"
+#ifndef WX_PRECOMP
+ #include "wx/stream.h"
+#endif
+
+#include <stdio.h>
+
+#if wxUSE_FILE
+
// ----------------------------------------------------------------------------
// wxFileInputStream
// ----------------------------------------------------------------------------
{
m_file = new wxFile(fileName, wxFile::read);
m_file_destroy = true;
+ if ( !m_file->IsOpened() )
+ m_lasterror = wxSTREAM_READ_ERROR;
}
wxFileInputStream::wxFileInputStream()
return m_file->Tell();
}
+bool wxFileInputStream::IsOk() const
+{
+ return wxInputStream::IsOk() && m_file->IsOpened();
+}
+
// ----------------------------------------------------------------------------
// wxFileOutputStream
// ----------------------------------------------------------------------------
m_file_destroy = true;
if (!m_file->IsOpened())
- {
m_lasterror = wxSTREAM_WRITE_ERROR;
- }
- else
- {
- if (m_file->Error())
- m_lasterror = wxSTREAM_WRITE_ERROR;
- }
}
wxFileOutputStream::wxFileOutputStream(wxFile& file)
return m_file->Length();
}
+bool wxFileOutputStream::IsOk() const
+{
+ return wxOutputStream::IsOk() && m_file->IsOpened();
+}
+
+// ----------------------------------------------------------------------------
+// wxTempFileOutputStream
+// ----------------------------------------------------------------------------
+
+wxTempFileOutputStream::wxTempFileOutputStream(const wxString& fileName)
+{
+ m_file = new wxTempFile(fileName);
+
+ if (!m_file->IsOpened())
+ m_lasterror = wxSTREAM_WRITE_ERROR;
+}
+
+wxTempFileOutputStream::~wxTempFileOutputStream()
+{
+ if (m_file->IsOpened())
+ Discard();
+ delete m_file;
+}
+
+size_t wxTempFileOutputStream::OnSysWrite(const void *buffer, size_t size)
+{
+ if (IsOk() && m_file->Write(buffer, size))
+ return size;
+ m_lasterror = wxSTREAM_WRITE_ERROR;
+ return 0;
+}
+
// ----------------------------------------------------------------------------
// wxFileStream
// ----------------------------------------------------------------------------
wxFileOutputStream::m_file = wxFileInputStream::m_file;
}
+bool wxFileStream::IsOk() const
+{
+ return wxFileOutputStream::IsOk() && wxFileInputStream::IsOk();
+}
+
+#endif // wxUSE_FILE
+
+#if wxUSE_FFILE
+
// ----------------------------------------------------------------------------
// wxFFileInputStream
// ----------------------------------------------------------------------------
wxFFileInputStream::wxFFileInputStream(const wxString& fileName,
- const wxChar *mode)
+ const wxString& mode)
: wxInputStream()
{
m_file = new wxFFile(fileName, mode);
m_file_destroy = true;
+
+ if (!m_file->IsOpened())
+ m_lasterror = wxSTREAM_WRITE_ERROR;
}
wxFFileInputStream::wxFFileInputStream()
return m_file->Tell();
}
+bool wxFFileInputStream::IsOk() const
+{
+ return wxStreamBase::IsOk() && m_file->IsOpened();
+}
+
// ----------------------------------------------------------------------------
// wxFFileOutputStream
// ----------------------------------------------------------------------------
wxFFileOutputStream::wxFFileOutputStream(const wxString& fileName,
- const wxChar *mode)
+ const wxString& mode)
{
m_file = new wxFFile(fileName, mode);
m_file_destroy = true;
return m_file->Length();
}
+bool wxFFileOutputStream::IsOk() const
+{
+ return wxStreamBase::IsOk() && m_file->IsOpened();
+}
+
// ----------------------------------------------------------------------------
// wxFFileStream
// ----------------------------------------------------------------------------
wxFFileOutputStream::m_file = wxFFileInputStream::m_file;
}
-#endif // wxUSE_STREAMS && wxUSE_FILE
+bool wxFFileStream::IsOk() const
+{
+ return wxFFileOutputStream::IsOk() && wxFFileInputStream::IsOk();
+}
+
+#endif //wxUSE_FFILE
+#endif // wxUSE_STREAMS