1998-07-12 15:24:52 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1998-11-22 15:59:54 +00:00
|
|
|
// Name: wfstream.h
|
1998-07-12 15:24:52 +00: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 11:41:14 +00:00
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXFSTREAM_H__
|
|
|
|
#define _WX_WXFSTREAM_H__
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-09-10 11:41:14 +00:00
|
|
|
#ifdef __GNUG__
|
1998-11-22 15:59:54 +00:00
|
|
|
#pragma interface "wfstream.h"
|
1998-09-10 11:41:14 +00:00
|
|
|
#endif
|
|
|
|
|
1999-06-16 06:03:04 +00:00
|
|
|
#include "wx/defs.h"
|
1999-06-15 20:21:59 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS && wxUSE_FILE
|
|
|
|
|
1999-08-20 22:52:21 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/stream.h"
|
|
|
|
#include "wx/file.h"
|
1999-08-22 16:12:48 +00:00
|
|
|
#include "wx/ffile.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFileStream using wxFile
|
|
|
|
// ----------------------------------------------------------------------------
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFileInputStream: public wxInputStream {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
1998-10-14 17:36:50 +00:00
|
|
|
wxFileInputStream(const wxString& ifileName);
|
|
|
|
wxFileInputStream(wxFile& file);
|
|
|
|
wxFileInputStream(int fd);
|
1998-10-28 18:29:51 +00:00
|
|
|
~wxFileInputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1999-07-24 10:50:13 +00:00
|
|
|
size_t GetSize() const;
|
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-10-14 17:36:50 +00: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 12:06:50 +00:00
|
|
|
};
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFileOutputStream: public wxOutputStream {
|
1998-07-14 12:06:50 +00:00
|
|
|
public:
|
|
|
|
wxFileOutputStream(const wxString& fileName);
|
1998-10-14 17:36:50 +00:00
|
|
|
wxFileOutputStream(wxFile& file);
|
|
|
|
wxFileOutputStream(int fd);
|
1998-07-14 12:06:50 +00:00
|
|
|
virtual ~wxFileOutputStream();
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// To solve an ambiguity on GCC
|
1999-04-26 18:16:56 +00:00
|
|
|
// inline wxOutputStream& Write(const void *buffer, size_t size)
|
|
|
|
// { return wxOutputStream::Write(buffer, size); }
|
1998-07-12 15:24:52 +00:00
|
|
|
|
|
|
|
void Sync();
|
1999-07-24 10:50:13 +00:00
|
|
|
size_t GetSize() const;
|
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-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-10-14 17:36:50 +00: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 15:24:52 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
protected:
|
|
|
|
wxFile *m_file;
|
|
|
|
bool m_file_destroy;
|
1998-07-12 15:24:52 +00:00
|
|
|
};
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFileStream: public wxFileInputStream, public wxFileOutputStream {
|
1998-10-28 18:29:51 +00:00
|
|
|
public:
|
|
|
|
wxFileStream(const wxString& fileName);
|
|
|
|
};
|
|
|
|
|
1999-08-22 16:12:48 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxFFileStream using wxFFile
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFFileInputStream: public wxInputStream {
|
1999-08-22 16:12:48 +00:00
|
|
|
public:
|
|
|
|
wxFFileInputStream(const wxString& ifileName);
|
|
|
|
wxFFileInputStream(wxFFile& file);
|
|
|
|
wxFFileInputStream(FILE *file);
|
|
|
|
~wxFFileInputStream();
|
|
|
|
|
|
|
|
size_t GetSize() const;
|
|
|
|
|
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxFFileInputStream();
|
|
|
|
|
|
|
|
size_t OnSysRead(void *buffer, size_t size);
|
|
|
|
off_t OnSysSeek(off_t pos, wxSeekMode mode);
|
|
|
|
off_t OnSysTell() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxFFile *m_file;
|
|
|
|
bool m_file_destroy;
|
|
|
|
};
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFFileOutputStream: public wxOutputStream {
|
1999-08-22 16:12:48 +00:00
|
|
|
public:
|
|
|
|
wxFFileOutputStream(const wxString& fileName);
|
|
|
|
wxFFileOutputStream(wxFFile& file);
|
|
|
|
wxFFileOutputStream(FILE *file);
|
|
|
|
virtual ~wxFFileOutputStream();
|
|
|
|
|
|
|
|
// To solve an ambiguity on GCC
|
|
|
|
// inline wxOutputStream& Write(const void *buffer, size_t size)
|
|
|
|
// { return wxOutputStream::Write(buffer, size); }
|
|
|
|
|
|
|
|
void Sync();
|
|
|
|
size_t GetSize() const;
|
|
|
|
|
|
|
|
bool Ok() const { return m_file->IsOpened(); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxFFileOutputStream();
|
|
|
|
|
|
|
|
size_t OnSysWrite(const void *buffer, size_t size);
|
|
|
|
off_t OnSysSeek(off_t pos, wxSeekMode mode);
|
|
|
|
off_t OnSysTell() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxFFile *m_file;
|
|
|
|
bool m_file_destroy;
|
|
|
|
};
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
class WXDLLEXPORT wxFFileStream: public wxFFileInputStream, public wxFFileOutputStream {
|
1999-08-22 16:12:48 +00:00
|
|
|
public:
|
|
|
|
wxFFileStream(const wxString& fileName);
|
|
|
|
};
|
1998-07-12 15:24:52 +00:00
|
|
|
#endif
|
1999-06-15 20:21:59 +00:00
|
|
|
// wxUSE_STREAMS && wxUSE_FILE
|
|
|
|
|
|
|
|
#endif
|
1999-07-09 15:30:31 +00:00
|
|
|
// _WX_WXFSTREAM_H__
|
|
|
|
|
1999-09-13 03:49:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|