1998-07-12 11:24:52 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-11-22 10:59:54 -05:00
|
|
|
// Name: wfstream.h
|
1998-07-12 11:24:52 -04:00
|
|
|
// Purpose: File stream classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 11/07/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-09-10 07:41:14 -04:00
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_WXFSTREAM_H__
|
|
|
|
#define _WX_WXFSTREAM_H__
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-09-10 07:41:14 -04:00
|
|
|
#ifdef __GNUG__
|
1998-11-22 10:59:54 -05:00
|
|
|
#pragma interface "wfstream.h"
|
1998-09-10 07:41:14 -04:00
|
|
|
#endif
|
|
|
|
|
1998-07-12 11:24:52 -04:00
|
|
|
#include <wx/object.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/stream.h>
|
1998-07-14 08:06:50 -04:00
|
|
|
#include <wx/file.h>
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-10-14 13:36:50 -04:00
|
|
|
class wxFileInputStream: public wxInputStream {
|
1998-07-12 11:24:52 -04:00
|
|
|
public:
|
1998-10-14 13:36:50 -04:00
|
|
|
wxFileInputStream(const wxString& ifileName);
|
|
|
|
wxFileInputStream(wxFile& file);
|
|
|
|
wxFileInputStream(int fd);
|
1998-10-28 13:29:51 -05:00
|
|
|
~wxFileInputStream();
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-10-28 13:29:51 -05:00
|
|
|
char Peek();
|
|
|
|
size_t StreamSize() const;
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-09-04 13:32:11 -04:00
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
1998-07-14 08:06:50 -04:00
|
|
|
|
|
|
|
protected:
|
1998-09-04 13:32:11 -04:00
|
|
|
wxFileInputStream();
|
1998-07-14 08:06:50 -04:00
|
|
|
|
1998-10-14 13:36:50 -04:00
|
|
|
size_t OnSysRead(void *buffer, size_t size);
|
|
|
|
off_t OnSysSeek(off_t pos, wxSeekMode mode);
|
|
|
|
off_t OnSysTell() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxFile *m_file;
|
|
|
|
bool m_file_destroy;
|
1998-07-14 08:06:50 -04:00
|
|
|
};
|
|
|
|
|
1998-10-14 13:36:50 -04:00
|
|
|
class wxFileOutputStream: public wxOutputStream {
|
1998-07-14 08:06:50 -04:00
|
|
|
public:
|
|
|
|
wxFileOutputStream(const wxString& fileName);
|
1998-10-14 13:36:50 -04:00
|
|
|
wxFileOutputStream(wxFile& file);
|
|
|
|
wxFileOutputStream(int fd);
|
1998-07-14 08:06:50 -04:00
|
|
|
virtual ~wxFileOutputStream();
|
|
|
|
|
1998-07-24 13:13:47 -04:00
|
|
|
// To solve an ambiguity on GCC
|
|
|
|
inline wxOutputStream& Write(const void *buffer, size_t size)
|
|
|
|
{ return wxOutputStream::Write(buffer, size); }
|
1998-07-12 11:24:52 -04:00
|
|
|
|
|
|
|
void Sync();
|
1998-10-28 13:29:51 -05:00
|
|
|
size_t StreamSize() const;
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-09-04 13:32:11 -04:00
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-07-14 08:06:50 -04:00
|
|
|
protected:
|
1998-09-04 13:32:11 -04:00
|
|
|
wxFileOutputStream();
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-10-14 13:36:50 -04:00
|
|
|
size_t OnSysWrite(const void *buffer, size_t size);
|
|
|
|
off_t OnSysSeek(off_t pos, wxSeekMode mode);
|
|
|
|
off_t OnSysTell() const;
|
1998-07-12 11:24:52 -04:00
|
|
|
|
1998-10-14 13:36:50 -04:00
|
|
|
protected:
|
|
|
|
wxFile *m_file;
|
|
|
|
bool m_file_destroy;
|
1998-07-12 11:24:52 -04:00
|
|
|
};
|
|
|
|
|
1998-10-28 13:29:51 -05:00
|
|
|
class wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
|
|
|
public:
|
|
|
|
wxFileStream(const wxString& fileName);
|
|
|
|
};
|
|
|
|
|
1998-07-12 11:24:52 -04:00
|
|
|
#endif
|