1998-07-12 15:24:52 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fstream.h
|
|
|
|
// Purpose: File stream classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 11/07/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXFSTREAM_H__
|
|
|
|
#define _WX_WXFSTREAM_H__
|
1998-07-12 15:24:52 +00:00
|
|
|
|
|
|
|
#include <wx/object.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/stream.h>
|
1998-07-14 12:06:50 +00:00
|
|
|
#include <wx/file.h>
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-09-04 17:32:11 +00:00
|
|
|
class wxFileStreamBase {
|
|
|
|
protected:
|
|
|
|
wxFile *m_file;
|
|
|
|
bool m_file_destroy;
|
|
|
|
};
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
class wxFileInputStream: virtual public wxInputStream,
|
|
|
|
virtual public wxFileStreamBase {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
1998-07-14 12:06:50 +00:00
|
|
|
wxFileInputStream(const wxString& fileName);
|
|
|
|
virtual ~wxFileInputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
virtual char Peek();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-09-04 17:32:11 +00:00
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
1998-07-14 12:06:50 +00:00
|
|
|
|
|
|
|
protected:
|
1998-09-04 17:32:11 +00:00
|
|
|
wxFileInputStream();
|
1998-07-14 12:06:50 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
size_t DoRead(void *buffer, size_t size);
|
|
|
|
off_t DoSeekInput(off_t pos, wxSeekMode mode);
|
|
|
|
off_t DoTellInput() const;
|
1998-07-14 12:06:50 +00:00
|
|
|
};
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
class wxFileOutputStream: virtual public wxOutputStream,
|
|
|
|
virtual public wxFileStreamBase {
|
1998-07-14 12:06:50 +00:00
|
|
|
public:
|
|
|
|
wxFileOutputStream(const wxString& fileName);
|
|
|
|
virtual ~wxFileOutputStream();
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// To solve an ambiguity on GCC
|
|
|
|
inline wxOutputStream& Write(const void *buffer, size_t size)
|
|
|
|
{ return wxOutputStream::Write(buffer, size); }
|
1998-07-12 15:24:52 +00:00
|
|
|
|
|
|
|
void Sync();
|
|
|
|
|
1998-09-04 17:32:11 +00:00
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-07-14 12:06:50 +00:00
|
|
|
protected:
|
1998-09-04 17:32:11 +00:00
|
|
|
wxFileOutputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
size_t DoWrite(const void *buffer, size_t size);
|
|
|
|
off_t DoSeekOutput(off_t pos, wxSeekMode mode);
|
|
|
|
off_t DoTellOutput() const;
|
1998-07-12 15:24:52 +00:00
|
|
|
};
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
class wxFileStream: public wxStream,
|
|
|
|
public wxFileInputStream, public wxFileOutputStream {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
1998-07-14 12:06:50 +00:00
|
|
|
wxFileStream(const wxString& fileName);
|
|
|
|
virtual ~wxFileStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|