2008-02-18 19:04:03 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-02-27 13:37:48 -05:00
|
|
|
// Name: stream.h
|
2008-02-18 19:04:03 -05:00
|
|
|
// Purpose: topic overview
|
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-03-12 04:50:42 -04:00
|
|
|
/**
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-12-17 17:42:05 -05:00
|
|
|
@page overview_stream Stream classes overview
|
2008-02-27 13:37:48 -05:00
|
|
|
|
|
|
|
Classes:
|
|
|
|
@li wxStreamBase
|
|
|
|
@li wxStreamBuffer
|
|
|
|
@li wxInputStream
|
|
|
|
@li wxOutputStream
|
|
|
|
@li wxFilterInputStream
|
|
|
|
@li wxFilterOutputStream
|
2008-12-17 17:42:05 -05:00
|
|
|
@li wxFileInputStream
|
|
|
|
@li wxFileOutputStream
|
|
|
|
@li wxTextInputStream
|
|
|
|
@li wxTextOutputStream
|
|
|
|
@li wxDataInputStream
|
|
|
|
@li wxDataOutputStream
|
2008-02-27 13:37:48 -05:00
|
|
|
|
2008-03-02 10:33:26 -05:00
|
|
|
@li @ref overview_stream_intro
|
|
|
|
@li @ref overview_stream_example
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@section overview_stream_intro Introduction
|
|
|
|
|
2008-12-17 17:42:05 -05:00
|
|
|
wxWidgets provides its own set of stream classes in order to be
|
|
|
|
independent of the standard C++ stream class and their different
|
|
|
|
implementations.
|
2008-02-27 13:37:48 -05:00
|
|
|
|
2008-12-14 09:51:42 -05:00
|
|
|
Besides, using @c std::iostream on Linux makes impossible to write programs that are
|
|
|
|
binary compatible across different Linux distributions.
|
|
|
|
|
|
|
|
Therefore, wxStreams have been added to wxWidgets so that an applications can
|
2008-02-27 13:37:48 -05:00
|
|
|
reliably compile and run on all supported platforms without dependence on a
|
|
|
|
particular release of libg++.
|
|
|
|
|
2008-12-14 09:51:42 -05:00
|
|
|
wxStream classes are divided in two main groups:
|
2008-02-27 13:37:48 -05:00
|
|
|
|
|
|
|
@li The core: wxStreamBase, wxStreamBuffer, wxInputStream, wxOutputStream,
|
2008-12-14 09:51:42 -05:00
|
|
|
wxFilterInputStream, wxFilterOutputStream
|
|
|
|
@li The "IO" classes: wxSocketInputStream, wxSocketOutputStream,
|
|
|
|
wxFileInputStream, wxFileOutputStream, ...
|
2008-12-17 17:42:05 -05:00
|
|
|
@li Classes for reading text or binary data from a particular stream
|
|
|
|
such as wxTextInputStream, wxTextOutputStream, wxDataInputStream
|
|
|
|
and wxDataOutputStream
|
2008-02-27 13:37:48 -05:00
|
|
|
|
|
|
|
wxStreamBase is the base definition of a stream. It defines, for example, the
|
2008-12-14 09:51:42 -05:00
|
|
|
API of OnSysRead(), OnSysWrite(), OnSysSeek() and OnSysTell(). These functions are
|
|
|
|
really implemented by the "IO" classes.
|
|
|
|
wxInputStream and wxOutputStream classes inherit from wxStreamBase and provide
|
|
|
|
specialized methods for input and output.
|
2008-02-27 13:37:48 -05:00
|
|
|
|
|
|
|
wxStreamBuffer is a cache manager for wxStreamBase: it manages a stream buffer
|
2008-12-14 09:51:42 -05:00
|
|
|
linked to a stream. One stream can have multiple stream buffers but one stream
|
|
|
|
has always one autoinitialized stream buffer.
|
2008-02-27 13:37:48 -05:00
|
|
|
|
2008-12-14 09:51:42 -05:00
|
|
|
wxInputStream is the base class for read-only streams. It implements Read(),
|
|
|
|
SeekI() (I for Input), and all read or IO generic related functions.
|
|
|
|
wxOutputStream does the same thing for write-only streams.
|
2008-02-27 13:37:48 -05:00
|
|
|
|
2008-12-14 09:51:42 -05:00
|
|
|
wxFilterInputStream and wxFileterOutputStream are the base class definitions for
|
|
|
|
stream filtering.
|
2008-02-27 13:37:48 -05:00
|
|
|
Stream filtering means a stream which does no syscall but filters data which
|
2008-12-14 09:51:42 -05:00
|
|
|
are passed to it and then pass them to another stream.
|
|
|
|
For example, wxZLibInputStream is an inline stream decompressor.
|
2008-02-27 13:37:48 -05:00
|
|
|
|
|
|
|
The "IO" classes implements the specific parts of the stream. This could be
|
2008-12-14 09:51:42 -05:00
|
|
|
nothing in the case of wxMemoryInputStream and wxMemoryOutputStream which base
|
|
|
|
themselves on wxStreamBuffer.
|
|
|
|
This could also be a simple link to the true syscall (for example read(...), write(...)).
|
2008-02-27 13:37:48 -05:00
|
|
|
|
2008-03-02 10:33:26 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
@section overview_stream_example Example
|
|
|
|
|
|
|
|
Usage is simple. We can take the example of wxFileInputStream and here is some
|
|
|
|
sample code:
|
|
|
|
|
|
|
|
@code
|
|
|
|
...
|
|
|
|
// The constructor initializes the stream buffer and open the file descriptor
|
|
|
|
// associated to the name of the file.
|
|
|
|
wxFileInputStream in_stream("the_file_to_be_read");
|
|
|
|
|
|
|
|
// Ok, read some bytes ... nb_datas is expressed in bytes.
|
|
|
|
in_stream.Read(data, nb_datas);
|
|
|
|
if (in_stream.LastError() != wxSTREAM_NOERROR) {
|
2008-02-18 19:04:03 -05:00
|
|
|
// Oh oh, something bad happens.
|
|
|
|
// For a complete list, look into the documentation at wxStreamBase.
|
2008-02-27 13:37:48 -05:00
|
|
|
}
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
// You can also inline all like this.
|
|
|
|
if (in_stream.Read(data, nb_datas).LastError() != wxSTREAM_NOERROR) {
|
2008-02-18 19:04:03 -05:00
|
|
|
// Do something.
|
2008-02-27 13:37:48 -05:00
|
|
|
}
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
// You can also get the last number of bytes REALLY put into the buffer.
|
|
|
|
size_t really_read = in_stream.LastRead();
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-03-20 09:45:17 -04:00
|
|
|
// Ok, moves to the beginning of the stream. SeekI returns the last position
|
2008-02-27 13:37:48 -05:00
|
|
|
// in the stream counted from the beginning.
|
|
|
|
off_t old_position = in_stream.SeekI(0, wxFromBeginning);
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
// What is my current position ?
|
|
|
|
off_t position = in_stream.TellI();
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
// wxFileInputStream will close the file descriptor on destruction.
|
|
|
|
@endcode
|
2008-02-19 08:28:24 -05:00
|
|
|
|
2008-02-27 13:37:48 -05:00
|
|
|
*/
|
2008-02-19 08:28:24 -05:00
|
|
|
|