]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/stream.h
fixed @code sections
[wxWidgets.git] / docs / doxygen / overviews / stream.h
CommitLineData
15b6757b 1/////////////////////////////////////////////////////////////////////////////
23114fe1 2// Name: stream.h
15b6757b
FM
3// Purpose: topic overview
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/*!
36c9828f 10
23114fe1
BP
11@page overview_stream wxStreams Overview
12
13Classes:
14@li wxStreamBase
15@li wxStreamBuffer
16@li wxInputStream
17@li wxOutputStream
18@li wxFilterInputStream
19@li wxFilterOutputStream
20
21Standard C++ streams can cause problems on several platforms: they work quite
22well in most cases, but in the multi-threaded case, for example, they have many
23problems. Some Borland compilers refuse to work at all with them and using
24iostreams on Linux makes writing programs that are binary compatible across
25different Linux distributions, impossible.
26
27Therefore, wxStreams have been added to wxWidgets so that applications can
28reliably compile and run on all supported platforms without dependence on a
29particular release of libg++.
30
31wxStreams is divided in two main parts:
32
33@li The core: wxStreamBase, wxStreamBuffer, wxInputStream, wxOutputStream,
34 wxFilterIn/OutputStream
35@li The "IO" classes: wxSocketIn/OutputStream, wxDataIn/OutputStream,
36 wxFileIn/OutputStream, ...
37
38wxStreamBase is the base definition of a stream. It defines, for example, the
39API of OnSysRead, OnSysWrite, OnSysSeek and OnSysTell. These functions are
40really implemented by the "IO" classes. wxInputStream and wxOutputStream
41inherit from it.
42
43wxStreamBuffer is a cache manager for wxStreamBase: it manages a stream buffer
44linked to a stream. One stream can have multiple stream buffers but one stream
45have always one autoinitialized stream buffer.
46
47wxInputStream is the base class for read-only streams. It implements Read,
48SeekI (I for Input), and all read or IO generic related functions.
49wxOutputStream does the same thing but it is for write-only streams.
50
51wxFilterIn/OutputStream is the base class definition for stream filtering.
52Stream filtering means a stream which does no syscall but filters data which
53are passed to it and then pass them to another stream. For example,
54wxZLibInputStream is an inline stream decompressor.
55
56The "IO" classes implements the specific parts of the stream. This could be
57nothing in the case of wxMemoryIn/OutputStream which bases itself on
58wxStreamBuffer. This could also be a simple link to the a true syscall (for
59example read(...), write(...)).
60
61@section overview_stream_example Example
62
63Usage is simple. We can take the example of wxFileInputStream and here is some
64sample code:
65
66@code
67...
68// The constructor initializes the stream buffer and open the file descriptor
69// associated to the name of the file.
70wxFileInputStream in_stream("the_file_to_be_read");
71
72// Ok, read some bytes ... nb_datas is expressed in bytes.
73in_stream.Read(data, nb_datas);
74if (in_stream.LastError() != wxSTREAM_NOERROR) {
15b6757b
FM
75 // Oh oh, something bad happens.
76 // For a complete list, look into the documentation at wxStreamBase.
23114fe1 77}
36c9828f 78
23114fe1
BP
79// You can also inline all like this.
80if (in_stream.Read(data, nb_datas).LastError() != wxSTREAM_NOERROR) {
15b6757b 81 // Do something.
23114fe1 82}
36c9828f 83
23114fe1
BP
84// You can also get the last number of bytes REALLY put into the buffer.
85size_t really_read = in_stream.LastRead();
36c9828f 86
23114fe1
BP
87// Ok, moves to the beginning of the stream. SeekI returns the last position
88// in the stream counted from the beginning.
89off_t old_position = in_stream.SeekI(0, wxFromBeginning);
36c9828f 90
23114fe1
BP
91// What is my current position ?
92off_t position = in_stream.TellI();
36c9828f 93
23114fe1
BP
94// wxFileInputStream will close the file descriptor on destruction.
95@endcode
36c9828f 96
23114fe1 97*/
36c9828f 98