1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: stream classes
4 // Author: Guilhem Lavaux, Guillermo Rodriguez Garcia, Vadim Zeitlin
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_WXSTREAM_H__
13 #define _WX_WXSTREAM_H__
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "stream.h"
24 #include "wx/object.h"
25 #include "wx/string.h"
26 #include "wx/filefn.h" // for wxFileOffset, wxInvalidOffset and wxSeekMode
28 class WXDLLIMPEXP_BASE wxStreamBase
;
29 class WXDLLIMPEXP_BASE wxInputStream
;
30 class WXDLLIMPEXP_BASE wxOutputStream
;
32 typedef wxInputStream
& (*__wxInputManip
)(wxInputStream
&);
33 typedef wxOutputStream
& (*__wxOutputManip
)(wxOutputStream
&);
35 WXDLLIMPEXP_BASE wxOutputStream
& wxEndL(wxOutputStream
& o_stream
);
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
43 wxSTREAM_NO_ERROR
= 0, // stream is in good state
44 wxSTREAM_EOF
, // EOF reached in Read() or similar
45 wxSTREAM_WRITE_ERROR
, // generic write error
46 wxSTREAM_READ_ERROR
// generic read error
50 #if WXWIN_COMPATIBILITY_2_2
51 #define wxStream_NOERROR wxSTREAM_NOERROR
52 #define wxStream_EOF wxSTREAM_EOF
53 #define wxStream_WRITE_ERR wxSTREAM_WRITE_ERROR
54 #define wxStream_READ_ERR wxSTREAM_READ_ERROR
56 #define wxSTREAM_NO_ERR wxSTREAM_NO_ERROR
57 #define wxSTREAM_NOERROR wxSTREAM_NO_ERROR
58 #define wxSTREAM_WRITE_ERR wxSTREAM_WRITE_ERROR
59 #define wxSTREAM_READ_ERR wxSTREAM_READ_ERROR
60 #endif // WXWIN_COMPATIBILITY_2_2
62 // ============================================================================
63 // base stream classes: wxInputStream and wxOutputStream
64 // ============================================================================
66 // ---------------------------------------------------------------------------
67 // wxStreamBase: common (but non virtual!) base for all stream classes
68 // ---------------------------------------------------------------------------
70 class WXDLLIMPEXP_BASE wxStreamBase
74 virtual ~wxStreamBase();
77 wxStreamError
GetLastError() const { return m_lasterror
; }
78 bool IsOk() const { return GetLastError() == wxSTREAM_NO_ERROR
; }
79 bool operator!() const { return !IsOk(); }
81 // reset the stream state
82 void Reset() { m_lasterror
= wxSTREAM_NO_ERROR
; }
84 // this doesn't make sense for all streams, always test its return value
85 virtual size_t GetSize() const;
86 virtual wxFileOffset
GetLength() const { return wxInvalidOffset
; }
88 #if WXWIN_COMPATIBILITY_2_2
89 // deprecated, for compatibility only
90 wxStreamError
LastError() const { return m_lasterror
; }
91 size_t StreamSize() const { return GetSize(); }
92 #endif // WXWIN_COMPATIBILITY_2_2
95 virtual wxFileOffset
OnSysSeek(wxFileOffset seek
, wxSeekMode mode
);
96 virtual wxFileOffset
OnSysTell() const;
99 wxStreamError m_lasterror
;
101 friend class wxStreamBuffer
;
103 DECLARE_NO_COPY_CLASS(wxStreamBase
)
106 // ----------------------------------------------------------------------------
107 // wxInputStream: base class for the input streams
108 // ----------------------------------------------------------------------------
110 class WXDLLIMPEXP_BASE wxInputStream
: public wxStreamBase
113 // ctor and dtor, nothing exciting
115 virtual ~wxInputStream();
121 // return a character from the stream without removing it, i.e. it will
122 // still be returned by the next call to GetC()
124 // blocks until something appears in the stream if necessary, if nothing
125 // ever does (i.e. EOF) LastRead() will return 0 (and the return value is
126 // undefined), otherwise 1
129 // return one character from the stream, blocking until it appears if
132 // if EOF, return value is undefined and LastRead() will return 0 and not 1
135 // read at most the given number of bytes from the stream
137 // there are 2 possible situations here: either there is nothing at all in
138 // the stream right now in which case Read() blocks until something appears
139 // (use CanRead() to avoid this) or there is already some data available in
140 // the stream and then Read() doesn't block but returns just the data it
141 // can read without waiting for more
143 // in any case, if there are not enough bytes in the stream right now,
144 // LastRead() value will be less than size but greater than 0. If it is 0,
145 // it means that EOF has been reached.
146 virtual wxInputStream
& Read(void *buffer
, size_t size
);
148 // copy the entire contents of this stream into streamOut, stopping only
149 // when EOF is reached or an error occurs
150 wxInputStream
& Read(wxOutputStream
& streamOut
);
156 // returns the number of bytes read by the last call to Read(), GetC() or
159 // this should be used to discover whether that call succeeded in reading
160 // all the requested data or not
161 virtual size_t LastRead() const { return wxStreamBase::m_lastcount
; }
163 // returns true if some data is available in the stream right now, so that
164 // calling Read() wouldn't block
165 virtual bool CanRead() const;
167 // is the stream at EOF?
169 // note that this cannot be really implemented for all streams and
170 // CanRead() is more reliable than Eof()
171 virtual bool Eof() const;
177 // put back the specified number of bytes into the stream, they will be
178 // fetched by the next call to the read functions
180 // returns the number of bytes really stuffed back
181 size_t Ungetch(const void *buffer
, size_t size
);
183 // put back the specified character in the stream
185 // returns true if ok, false on error
186 bool Ungetch(char c
);
189 // position functions
190 // ------------------
192 // move the stream pointer to the given position (if the stream supports
195 // returns wxInvalidOffset on error
196 virtual wxFileOffset
SeekI(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
198 // return the current position of the stream pointer or wxInvalidOffset
199 virtual wxFileOffset
TellI() const;
202 // stream-like operators
203 // ---------------------
205 wxInputStream
& operator>>(wxOutputStream
& out
) { return Read(out
); }
206 wxInputStream
& operator>>(__wxInputManip func
) { return func(*this); }
209 // do read up to size bytes of data into the provided buffer
211 // this method should return 0 if EOF has been reached or an error occured
212 // (m_lasterror should be set accordingly as well) or the number of bytes
214 virtual size_t OnSysRead(void *buffer
, size_t size
) = 0;
216 // write-back buffer support
217 // -------------------------
219 // return the pointer to a buffer big enough to hold sizeNeeded bytes
220 char *AllocSpaceWBack(size_t sizeNeeded
);
222 // read up to size data from the write back buffer, return the number of
224 size_t GetWBack(void *buf
, size_t size
);
226 // write back buffer or NULL if none
229 // the size of the buffer
232 // the current position in the buffer
235 friend class wxStreamBuffer
;
237 DECLARE_NO_COPY_CLASS(wxInputStream
)
240 // ----------------------------------------------------------------------------
241 // wxOutputStream: base for the output streams
242 // ----------------------------------------------------------------------------
244 class WXDLLIMPEXP_BASE wxOutputStream
: public wxStreamBase
248 virtual ~wxOutputStream();
251 virtual wxOutputStream
& Write(const void *buffer
, size_t size
);
252 wxOutputStream
& Write(wxInputStream
& stream_in
);
254 virtual wxFileOffset
SeekO(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
255 virtual wxFileOffset
TellO() const;
257 virtual size_t LastWrite() const { return wxStreamBase::m_lastcount
; }
261 wxOutputStream
& operator<<(wxInputStream
& out
) { return Write(out
); }
262 wxOutputStream
& operator<<( __wxOutputManip func
) { return func(*this); }
265 // to be implemented in the derived classes (it should have been pure
267 virtual size_t OnSysWrite(const void *buffer
, size_t bufsize
);
269 friend class wxStreamBuffer
;
271 DECLARE_NO_COPY_CLASS(wxOutputStream
)
274 // ============================================================================
275 // helper stream classes
276 // ============================================================================
278 // ---------------------------------------------------------------------------
279 // A stream for measuring streamed output
280 // ---------------------------------------------------------------------------
282 class WXDLLIMPEXP_BASE wxCountingOutputStream
: public wxOutputStream
285 wxCountingOutputStream();
287 wxFileOffset
GetLength() const;
288 bool Ok() const { return true; }
291 virtual size_t OnSysWrite(const void *buffer
, size_t size
);
292 virtual wxFileOffset
OnSysSeek(wxFileOffset pos
, wxSeekMode mode
);
293 virtual wxFileOffset
OnSysTell() const;
297 DECLARE_NO_COPY_CLASS(wxCountingOutputStream
)
300 // ---------------------------------------------------------------------------
302 // ---------------------------------------------------------------------------
304 class WXDLLIMPEXP_BASE wxFilterInputStream
: public wxInputStream
307 wxFilterInputStream();
308 wxFilterInputStream(wxInputStream
& stream
);
309 virtual ~wxFilterInputStream();
311 char Peek() { return m_parent_i_stream
->Peek(); }
313 wxFileOffset
GetLength() const { return m_parent_i_stream
->GetLength(); }
315 wxInputStream
*GetFilterInputStream() const { return m_parent_i_stream
; }
318 wxInputStream
*m_parent_i_stream
;
320 DECLARE_NO_COPY_CLASS(wxFilterInputStream
)
323 class WXDLLIMPEXP_BASE wxFilterOutputStream
: public wxOutputStream
326 wxFilterOutputStream();
327 wxFilterOutputStream(wxOutputStream
& stream
);
328 virtual ~wxFilterOutputStream();
330 wxFileOffset
GetLength() const { return m_parent_o_stream
->GetLength(); }
332 wxOutputStream
*GetFilterOutputStream() const { return m_parent_o_stream
; }
335 wxOutputStream
*m_parent_o_stream
;
337 DECLARE_NO_COPY_CLASS(wxFilterOutputStream
)
340 // ============================================================================
342 // ============================================================================
344 // ---------------------------------------------------------------------------
345 // Stream buffer: this class can be derived from and passed to
346 // wxBufferedStreams to implement custom buffering
347 // ---------------------------------------------------------------------------
349 class WXDLLIMPEXP_BASE wxStreamBuffer
359 wxStreamBuffer(wxStreamBase
& stream
, BufMode mode
);
360 wxStreamBuffer(const wxStreamBuffer
& buf
);
361 virtual ~wxStreamBuffer();
364 virtual size_t Read(void *buffer
, size_t size
);
365 size_t Read(wxStreamBuffer
*buf
);
366 virtual size_t Write(const void *buffer
, size_t size
);
367 size_t Write(wxStreamBuffer
*buf
);
370 virtual char GetChar();
371 virtual void PutChar(char c
);
372 virtual wxFileOffset
Tell() const;
373 virtual wxFileOffset
Seek(wxFileOffset pos
, wxSeekMode mode
);
378 // NB: the buffer must always be allocated with malloc() if takeOwn is
379 // true as it will be deallocated by free()
380 void SetBufferIO(void *start
, void *end
, bool takeOwnership
= false);
381 void SetBufferIO(void *start
, size_t len
, bool takeOwnership
= false);
382 void SetBufferIO(size_t bufsize
);
383 void *GetBufferStart() const { return m_buffer_start
; }
384 void *GetBufferEnd() const { return m_buffer_end
; }
385 void *GetBufferPos() const { return m_buffer_pos
; }
386 size_t GetBufferSize() const { return m_buffer_size
; }
387 size_t GetIntPosition() const { return m_buffer_pos
- m_buffer_start
; }
388 void SetIntPosition(size_t pos
) { m_buffer_pos
= m_buffer_start
+ pos
; }
389 size_t GetLastAccess() const { return m_buffer_end
- m_buffer_start
; }
390 size_t GetBytesLeft() const { return m_buffer_end
- m_buffer_pos
; }
392 void Fixed(bool fixed
) { m_fixed
= fixed
; }
393 void Flushable(bool f
) { m_flushable
= f
; }
397 size_t GetDataLeft();
400 wxStreamBase
*GetStream() const { return m_stream
; }
401 bool HasBuffer() const { return m_buffer_size
!= 0; }
403 bool IsFixed() const { return m_fixed
; }
404 bool IsFlushable() const { return m_flushable
; }
406 // only for input/output buffers respectively, returns NULL otherwise
407 wxInputStream
*GetInputStream() const;
408 wxOutputStream
*GetOutputStream() const;
410 // deprecated, for compatibility only
411 wxStreamBase
*Stream() { return m_stream
; }
413 // this constructs a dummy wxStreamBuffer, used by (and exists for)
414 // wxMemoryStreams only, don't use!
415 wxStreamBuffer(BufMode mode
);
418 void GetFromBuffer(void *buffer
, size_t size
);
419 void PutToBuffer(const void *buffer
, size_t size
);
421 // set the last error to the specified value if we didn't have it before
422 void SetError(wxStreamError err
);
424 // common part of several ctors
427 // init buffer variables to be empty
430 // free the buffer (always safe to call)
433 // the buffer itself: the pointers to its start and end and the current
434 // position in the buffer
435 char *m_buffer_start
,
440 // FIXME: isn't it the same as m_buffer_end - m_buffer_start? (VZ)
441 size_t m_buffer_size
;
443 // the stream we're associated with
444 wxStreamBase
*m_stream
;
450 bool m_destroybuf
, // deallocate buffer?
456 // DECLARE_NO_COPY_CLASS(wxStreamBuffer)
457 // because copy constructor is explicitly declared above;
458 // but no copy assignment operator is defined, so declare
459 // it private to prevent the compiler from defining it:
460 wxStreamBuffer
& operator=(const wxStreamBuffer
&);
463 // ---------------------------------------------------------------------------
464 // wxBufferedInputStream
465 // ---------------------------------------------------------------------------
467 class WXDLLIMPEXP_BASE wxBufferedInputStream
: public wxFilterInputStream
470 // if a non NULL buffer is given to the stream, it will be deleted by it
471 wxBufferedInputStream(wxInputStream
& stream
,
472 wxStreamBuffer
*buffer
= NULL
);
473 virtual ~wxBufferedInputStream();
476 wxInputStream
& Read(void *buffer
, size_t size
);
478 // Position functions
479 wxFileOffset
SeekI(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
480 wxFileOffset
TellI() const;
482 // the buffer given to the stream will be deleted by it
483 void SetInputStreamBuffer(wxStreamBuffer
*buffer
);
484 wxStreamBuffer
*GetInputStreamBuffer() const { return m_i_streambuf
; }
486 // deprecated, for compatibility only
487 wxStreamBuffer
*InputStreamBuffer() const { return m_i_streambuf
; }
490 virtual size_t OnSysRead(void *buffer
, size_t bufsize
);
491 virtual wxFileOffset
OnSysSeek(wxFileOffset seek
, wxSeekMode mode
);
492 virtual wxFileOffset
OnSysTell() const;
494 wxStreamBuffer
*m_i_streambuf
;
496 DECLARE_NO_COPY_CLASS(wxBufferedInputStream
)
499 // ----------------------------------------------------------------------------
500 // wxBufferedOutputStream
501 // ----------------------------------------------------------------------------
503 class WXDLLIMPEXP_BASE wxBufferedOutputStream
: public wxFilterOutputStream
506 // if a non NULL buffer is given to the stream, it will be deleted by it
507 wxBufferedOutputStream(wxOutputStream
& stream
,
508 wxStreamBuffer
*buffer
= NULL
);
509 virtual ~wxBufferedOutputStream();
511 wxOutputStream
& Write(const void *buffer
, size_t size
);
513 // Position functions
514 wxFileOffset
SeekO(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
515 wxFileOffset
TellO() const;
519 wxFileOffset
GetLength() const;
521 // the buffer given to the stream will be deleted by it
522 void SetOutputStreamBuffer(wxStreamBuffer
*buffer
);
523 wxStreamBuffer
*GetOutputStreamBuffer() const { return m_o_streambuf
; }
525 // deprecated, for compatibility only
526 wxStreamBuffer
*OutputStreamBuffer() const { return m_o_streambuf
; }
529 virtual size_t OnSysWrite(const void *buffer
, size_t bufsize
);
530 virtual wxFileOffset
OnSysSeek(wxFileOffset seek
, wxSeekMode mode
);
531 virtual wxFileOffset
OnSysTell() const;
533 wxStreamBuffer
*m_o_streambuf
;
535 DECLARE_NO_COPY_CLASS(wxBufferedOutputStream
)
538 #endif // wxUSE_STREAMS
540 #endif // _WX_WXSTREAM_H__