1998-07-12 15:24:52 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: stream.h
|
|
|
|
// Purpose: "wxWindows stream" base classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 11/07/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_WXSTREAM_H__
|
|
|
|
#define _WX_WXSTREAM_H__
|
1998-07-12 15:24:52 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1998-07-14 12:06:50 +00:00
|
|
|
#pragma interface
|
1998-07-12 15:24:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1998-07-14 22:15:29 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
1998-07-24 17:13:47 +00:00
|
|
|
#include "wx/filefn.h" // for off_t, wxInvalidOffset and wxSeekMode
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxStreamBase;
|
1998-07-24 17:13:47 +00:00
|
|
|
class WXDLLEXPORT wxInputStream;
|
|
|
|
class WXDLLEXPORT wxOutputStream;
|
|
|
|
|
|
|
|
typedef wxInputStream& (*__wxInputManip)(wxInputStream&);
|
|
|
|
typedef wxOutputStream& (*__wxOutputManip)(wxOutputStream&);
|
|
|
|
|
1998-11-22 22:32:53 +00:00
|
|
|
WXDLLEXPORT wxOutputStream& wxEndL(wxOutputStream& o_stream);
|
1998-07-24 17:13:47 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// Stream buffer
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
class WXDLLEXPORT wxStreamBuffer {
|
|
|
|
public:
|
1998-10-14 17:36:50 +00:00
|
|
|
typedef enum {
|
1998-11-11 18:06:28 +00:00
|
|
|
read = 0, write, read_write
|
1998-10-14 17:36:50 +00:00
|
|
|
} BufMode;
|
|
|
|
|
|
|
|
// -----------
|
|
|
|
// ctor & dtor
|
|
|
|
// -----------
|
|
|
|
wxStreamBuffer(wxStreamBase& stream, BufMode mode);
|
1998-10-28 18:29:51 +00:00
|
|
|
wxStreamBuffer(BufMode mode);
|
|
|
|
wxStreamBuffer(const wxStreamBuffer& buf);
|
1998-07-24 17:13:47 +00:00
|
|
|
~wxStreamBuffer();
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
// -----------
|
|
|
|
// Filtered IO
|
|
|
|
// -----------
|
1998-11-11 18:06:28 +00:00
|
|
|
size_t Read(void *buffer, size_t size);
|
|
|
|
size_t Read(wxStreamBuffer *buf);
|
|
|
|
size_t Write(const void *buffer, size_t size);
|
|
|
|
size_t Write(wxStreamBuffer *buf);
|
|
|
|
|
|
|
|
size_t WriteBack(const char *buffer, size_t size);
|
1998-10-14 17:36:50 +00:00
|
|
|
bool WriteBack(char c);
|
1998-10-28 18:29:51 +00:00
|
|
|
char GetChar();
|
|
|
|
void PutChar(char c);
|
1998-10-14 17:36:50 +00:00
|
|
|
off_t Tell() const;
|
|
|
|
off_t Seek(off_t pos, wxSeekMode mode);
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
// Buffer control
|
|
|
|
// --------------
|
|
|
|
void ResetBuffer();
|
1998-07-24 17:13:47 +00:00
|
|
|
void SetBufferIO(char *buffer_start, char *buffer_end);
|
|
|
|
void SetBufferIO(size_t bufsize);
|
1998-10-14 17:36:50 +00:00
|
|
|
char *GetBufferStart() const { return m_buffer_start; }
|
|
|
|
char *GetBufferEnd() const { return m_buffer_end; }
|
|
|
|
char *GetBufferPos() const { return m_buffer_pos; }
|
|
|
|
off_t GetIntPosition() const { return m_buffer_pos-m_buffer_start; }
|
|
|
|
void SetIntPosition(off_t pos) { m_buffer_pos = m_buffer_start+pos; }
|
|
|
|
size_t GetLastAccess() const { return m_buffer_end-m_buffer_start; }
|
1998-10-28 18:29:51 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
void Fixed(bool fixed) { m_fixed = fixed; }
|
1998-10-28 18:29:51 +00:00
|
|
|
void Flushable(bool f) { m_flushable = f; }
|
1998-10-14 17:36:50 +00:00
|
|
|
|
|
|
|
bool FlushBuffer();
|
|
|
|
bool FillBuffer();
|
1998-11-11 18:06:28 +00:00
|
|
|
size_t GetDataLeft();
|
|
|
|
|
|
|
|
// --------------
|
|
|
|
// Administration
|
|
|
|
// --------------
|
|
|
|
wxStreamBase *Stream() { return m_stream; }
|
1998-10-14 17:36:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
char *AllocSpaceWBack(size_t needed_size);
|
|
|
|
size_t GetWBack(char *buf, size_t bsize);
|
|
|
|
|
|
|
|
void GetFromBuffer(void *buffer, size_t size);
|
|
|
|
void PutToBuffer(const void *buffer, size_t size);
|
1998-07-24 17:13:47 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
char *m_buffer_start, *m_buffer_end, *m_buffer_pos;
|
|
|
|
size_t m_buffer_size;
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
char *m_wback;
|
|
|
|
size_t m_wbacksize, m_wbackcur;
|
|
|
|
|
1998-10-28 18:29:51 +00:00
|
|
|
bool m_fixed, m_flushable;
|
1998-10-14 17:36:50 +00:00
|
|
|
|
|
|
|
wxStreamBase *m_stream;
|
|
|
|
BufMode m_mode;
|
1998-11-11 18:06:28 +00:00
|
|
|
bool m_destroybuf, m_destroystream;
|
1998-07-24 17:13:47 +00:00
|
|
|
};
|
1998-07-14 22:08:59 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// wxStream: base classes
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
typedef enum {
|
|
|
|
wxStream_NOERROR,
|
|
|
|
wxStream_EOF
|
|
|
|
} wxStreamError;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxStreamBase {
|
|
|
|
public:
|
|
|
|
wxStreamBase();
|
|
|
|
virtual ~wxStreamBase();
|
|
|
|
|
1998-10-28 18:29:51 +00:00
|
|
|
wxStreamError LastError() const { return m_lasterror; }
|
|
|
|
virtual size_t StreamSize() const { return ~((size_t)0); }
|
1998-10-14 17:36:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class wxStreamBuffer;
|
|
|
|
|
|
|
|
virtual size_t OnSysRead(void *buffer, size_t bufsize);
|
|
|
|
virtual size_t OnSysWrite(const void *buffer, size_t bufsize);
|
|
|
|
virtual off_t OnSysSeek(off_t seek, wxSeekMode mode);
|
1998-10-28 18:29:51 +00:00
|
|
|
virtual off_t OnSysTell() const;
|
1998-10-14 17:36:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
size_t m_lastcount;
|
|
|
|
wxStreamError m_lasterror;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxInputStream: public wxStreamBase {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
|
|
|
wxInputStream();
|
1998-10-14 17:36:50 +00:00
|
|
|
wxInputStream(wxStreamBuffer *sbuf);
|
1998-07-12 15:24:52 +00:00
|
|
|
virtual ~wxInputStream();
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// IO functions
|
1998-10-14 17:36:50 +00:00
|
|
|
virtual char Peek();
|
|
|
|
char GetC();
|
|
|
|
wxInputStream& Read(void *buffer, size_t size);
|
1998-07-12 15:24:52 +00:00
|
|
|
wxInputStream& Read(wxOutputStream& stream_out);
|
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// Position functions
|
1998-10-14 17:36:50 +00:00
|
|
|
off_t SeekI(off_t pos, wxSeekMode mode = wxFromStart);
|
|
|
|
off_t TellI() const;
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// State functions
|
|
|
|
wxStreamBuffer *InputStreamBuffer() { return m_i_streambuf; }
|
1998-10-14 17:36:50 +00:00
|
|
|
size_t LastRead() { return wxStreamBase::m_lastcount; }
|
1998-07-14 16:35:50 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
// Operators
|
1998-07-14 16:35:50 +00:00
|
|
|
wxInputStream& operator>>(wxOutputStream& out) { return Read(out); }
|
1998-07-24 17:13:47 +00:00
|
|
|
wxInputStream& operator>>(wxString& line);
|
|
|
|
wxInputStream& operator>>(char& c);
|
|
|
|
wxInputStream& operator>>(short& i);
|
1998-08-05 17:12:43 +00:00
|
|
|
wxInputStream& operator>>(int& i);
|
1998-07-24 17:13:47 +00:00
|
|
|
wxInputStream& operator>>(long& i);
|
1998-10-14 17:36:50 +00:00
|
|
|
wxInputStream& operator>>(double& i);
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_SERIAL
|
1998-08-05 17:12:43 +00:00
|
|
|
wxInputStream& operator>>(wxObject *& obj);
|
1998-09-07 07:58:29 +00:00
|
|
|
#endif
|
1998-08-05 17:12:43 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
wxInputStream& operator>>(float& f) { double d; operator>>((double&)d); f = (float)d; return *this; }
|
1998-08-05 17:12:43 +00:00
|
|
|
wxInputStream& operator>>(unsigned char& c) { return operator>>((char&)c); }
|
|
|
|
wxInputStream& operator>>(unsigned short& i) { return operator>>((short&)i); }
|
|
|
|
wxInputStream& operator>>(unsigned int& i) { return operator>>((int&)i); }
|
|
|
|
wxInputStream& operator>>(unsigned long& i) { return operator>>((long&)i); }
|
1998-07-24 17:13:47 +00:00
|
|
|
wxInputStream& operator>>( __wxInputManip func) { return func(*this); }
|
|
|
|
|
|
|
|
protected:
|
1998-10-14 17:36:50 +00:00
|
|
|
bool m_i_destroybuf;
|
1998-07-24 17:13:47 +00:00
|
|
|
wxStreamBuffer *m_i_streambuf;
|
1998-07-12 15:24:52 +00:00
|
|
|
};
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxOutputStream: public wxStreamBase {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
|
|
|
wxOutputStream();
|
1998-10-14 17:36:50 +00:00
|
|
|
wxOutputStream(wxStreamBuffer *sbuf);
|
1998-07-12 15:24:52 +00:00
|
|
|
virtual ~wxOutputStream();
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
wxOutputStream& Write(const void *buffer, size_t size);
|
1998-07-12 15:24:52 +00:00
|
|
|
wxOutputStream& Write(wxInputStream& stream_in);
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart);
|
|
|
|
off_t TellO() const;
|
1998-07-24 17:13:47 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
size_t LastWrite() const { return wxStreamBase::m_lastcount; }
|
1998-07-24 17:13:47 +00:00
|
|
|
wxStreamBuffer *OutputStreamBuffer() { return m_o_streambuf; }
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
void Sync();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-07-24 17:13:47 +00:00
|
|
|
wxOutputStream& operator<<(wxInputStream& out) { return Write(out); }
|
|
|
|
wxOutputStream& operator<<(const char *string);
|
|
|
|
wxOutputStream& operator<<(wxString& string);
|
|
|
|
wxOutputStream& operator<<(char c);
|
|
|
|
wxOutputStream& operator<<(short i);
|
|
|
|
wxOutputStream& operator<<(int i);
|
|
|
|
wxOutputStream& operator<<(long i);
|
|
|
|
wxOutputStream& operator<<(double f);
|
1998-09-25 13:28:52 +00:00
|
|
|
#if wxUSE_SERIAL
|
1998-08-05 17:12:43 +00:00
|
|
|
wxOutputStream& operator<<(wxObject& obj);
|
1998-09-07 07:58:29 +00:00
|
|
|
#endif
|
1998-07-24 17:13:47 +00:00
|
|
|
|
|
|
|
wxOutputStream& operator<<(float f) { return operator<<((double)f); }
|
|
|
|
wxOutputStream& operator<<(unsigned char c) { return operator<<((char)c); }
|
|
|
|
wxOutputStream& operator<<(unsigned short i) { return operator<<((short)i); }
|
|
|
|
wxOutputStream& operator<<(unsigned int i) { return operator<<((int)i); }
|
|
|
|
wxOutputStream& operator<<(unsigned long i) { return operator<<((long)i); }
|
|
|
|
wxOutputStream& operator<<( __wxOutputManip func) { return func(*this); }
|
|
|
|
|
|
|
|
protected:
|
1998-10-14 17:36:50 +00:00
|
|
|
bool m_o_destroybuf;
|
1998-07-24 17:13:47 +00:00
|
|
|
wxStreamBuffer *m_o_streambuf;
|
1998-07-12 15:24:52 +00:00
|
|
|
};
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// "Filter" streams
|
|
|
|
// ---------------------------------------------------------------------------
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxFilterInputStream: public wxInputStream {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
1998-09-06 18:28:00 +00:00
|
|
|
wxFilterInputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
wxFilterInputStream(wxInputStream& stream);
|
1998-09-06 18:28:00 +00:00
|
|
|
~wxFilterInputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
char Peek() { return m_parent_i_stream->Peek(); }
|
1998-07-12 15:24:52 +00:00
|
|
|
|
1998-10-28 18:29:51 +00:00
|
|
|
wxStreamError LastError() const { return m_parent_i_stream->LastError(); }
|
|
|
|
size_t StreamSize() const { return m_parent_i_stream->StreamSize(); }
|
|
|
|
|
1998-07-12 15:24:52 +00:00
|
|
|
protected:
|
|
|
|
wxInputStream *m_parent_i_stream;
|
|
|
|
};
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxFilterOutputStream: public wxOutputStream {
|
1998-07-12 15:24:52 +00:00
|
|
|
public:
|
1998-09-06 18:28:00 +00:00
|
|
|
wxFilterOutputStream();
|
1998-07-12 15:24:52 +00:00
|
|
|
wxFilterOutputStream(wxOutputStream& stream);
|
1998-10-14 17:36:50 +00:00
|
|
|
~wxFilterOutputStream();
|
1998-07-24 17:13:47 +00:00
|
|
|
|
1998-10-28 18:29:51 +00:00
|
|
|
wxStreamError LastError() const { return m_parent_o_stream->LastError(); }
|
|
|
|
size_t StreamSize() const { return m_parent_o_stream->StreamSize(); }
|
|
|
|
|
1998-07-12 15:24:52 +00:00
|
|
|
protected:
|
|
|
|
wxOutputStream *m_parent_o_stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|