File: stream.tex

package info (click to toggle)
wxwidgets2.8 2.8.10.1-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 239,052 kB
  • ctags: 289,550
  • sloc: cpp: 1,838,857; xml: 396,717; python: 282,506; ansic: 126,171; makefile: 51,406; sh: 14,581; asm: 299; sql: 258; lex: 194; perl: 139; yacc: 128; pascal: 95; php: 39; lisp: 38; tcl: 24; haskell: 20; java: 18; cs: 18; erlang: 17; ruby: 16; ada: 9; ml: 9; csh: 9
file content (313 lines) | stat: -rw-r--r-- 10,159 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
\section{\class{wxStreamBuffer}}\label{wxstreambuffer}

\wxheading{Derived from}

None

\wxheading{Include files}

<wx/stream.h>

\wxheading{See also}

\helpref{wxStreamBase}{wxstreambase}

% ---------------------------------------------------------------------------
% Members
% ---------------------------------------------------------------------------
\latexignore{\rtfignore{\wxheading{Members}}}

% -----------
% ctor & dtor
% -----------
\membersection{wxStreamBuffer::wxStreamBuffer}\label{wxstreambufferctor}

\func{}{wxStreamBuffer}{\param{wxStreamBase\&}{ stream}, \param{BufMode}{ mode}}

Constructor, creates a new stream buffer using {\it stream} as a parent stream
and {\it mode} as the IO mode. {\it mode} can be: wxStreamBuffer::read,
wxStreamBuffer::write, wxStreamBuffer::read\_write.

One stream can have many stream buffers but only one is used internally to
pass IO call (e.g. wxInputStream::Read() -> wxStreamBuffer::Read()), but you
can call directly wxStreamBuffer::Read without any problems. Note that
all errors and messages linked to the stream are stored in the stream, not
the stream buffers:

\begin{verbatim}
  streambuffer.Read(...);
  streambuffer2.Read(...); /* This call erases previous error messages set by 
                              ``streambuffer'' */
\end{verbatim}

\func{}{wxStreamBuffer}{\param{BufMode}{ mode}}

Constructor, creates a new empty stream buffer which won't flush any data
to a stream. {\it mode} specifies the type of the buffer (read, write, read\_write).
This stream buffer has the advantage to be stream independent and to
work only on memory buffers but it is still compatible with the rest of the
wxStream classes. You can write, read to this special stream and it will
grow (if it is allowed by the user) its internal buffer. Briefly, it has all
functionality of a ``normal'' stream.

\wxheading{Warning}

The "read\_write" mode doesn't currently work for standalone stream buffers.

\func{}{wxStreamBuffer}{\param{const wxStreamBuffer\&}{buffer}}

Constructor. It initializes the stream buffer with the data of the specified
stream buffer. The new stream buffer has the same attributes, size, position
and they share the same buffer. This will cause problems if the stream to
which the stream buffer belong is destroyed and the newly cloned stream
buffer continues to be used, trying to call functions in the (destroyed)
stream. It is advised to use this feature only in very local area of the
program.

\wxheading{See also}

\helpref{wxStreamBuffer:SetBufferIO}{wxstreambuffersetbufferio}

\membersection{wxStreamBuffer::\destruct{wxStreamBuffer}}\label{wxstreambufferdtor}

\func{}{wxStreamBuffer}{\destruct{wxStreamBuffer}}

Destructor. It finalizes all IO calls and frees all internal buffers if
necessary.

% -----------
% Filtered IO
% -----------
\membersection{wxStreamBuffer::Read}\label{wxstreambufferread}

\func{size\_t}{Read}{\param{void *}{buffer}, \param{size\_t }{size}}

Reads a block of the specified {\it size} and stores the data in {\it buffer}.
This function tries to read from the buffer first and if more data has been
requested, reads more data from the associated stream and updates the buffer
accordingly until all requested data is read.

\wxheading{Return value}

It returns the size of the data read. If the returned size is different of the specified 
{\it size}, an error has occurred and should be tested using 
\helpref{GetLastError}{wxstreambasegetlasterror}.

\func{size\_t}{Read}{\param{wxStreamBuffer *}{buffer}}

Copies data to {\it buffer}. The function returns when {\it buffer} is full or when there isn't
any more data in the current buffer.

\wxheading{See also}

\helpref{wxStreamBuffer::Write}{wxstreambufferwrite}

\membersection{wxStreamBuffer::Write}\label{wxstreambufferwrite}

\func{size\_t}{Write}{\param{const void *}{buffer}, \param{size\_t }{size}}

Writes a block of the specified {\it size} using data of {\it buffer}. The data
are cached in a buffer before being sent in one block to the stream.

\func{size\_t}{Write}{\param{wxStreamBuffer *}{buffer}}

See \helpref{Read}{wxstreambufferread}.

\membersection{wxStreamBuffer::GetChar}\label{wxstreambuffergetchar}

\func{char}{GetChar}{\void}

Gets a single char from the stream buffer. It acts like the Read call.

\wxheading{Problem}

You aren't directly notified if an error occurred during the IO call.

\wxheading{See also}

\helpref{wxStreamBuffer::Read}{wxstreambufferread}

\membersection{wxStreamBuffer::PutChar}\label{wxstreambufferputchar}

\func{void}{PutChar}{\param{char }{c}}

Puts a single char to the stream buffer.

\wxheading{Problem}

You aren't directly notified if an error occurred during the IO call.

\wxheading{See also}

\helpref{wxStreamBuffer::Read}{wxstreambufferwrite}

\membersection{wxStreamBuffer::Tell}\label{wxstreambuffertell}

\constfunc{off\_t}{Tell}{\void}

Gets the current position in the stream. This position is calculated from
the {\it real} position in the stream and from the internal buffer position: so
it gives you the position in the {\it real} stream counted from the start of
the stream.

\wxheading{Return value}

Returns the current position in the stream if possible, wxInvalidOffset in the
other case.

\membersection{wxStreamBuffer::Seek}\label{wxstreambufferseek}

\func{off\_t}{Seek}{\param{off\_t }{pos}, \param{wxSeekMode }{mode}}

Changes the current position.

{\it mode} may be one of the following:

\twocolwidtha{5cm}
\begin{twocollist}\itemsep=0pt
\twocolitem{{\bf wxFromStart}}{The position is counted from the start of the stream.}
\twocolitem{{\bf wxFromCurrent}}{The position is counted from the current position of the stream.}
\twocolitem{{\bf wxFromEnd}}{The position is counted from the end of the stream.}
\end{twocollist}

\wxheading{Return value}

Upon successful completion, it returns the new offset as measured in bytes from
the beginning of the stream. Otherwise, it returns wxInvalidOffset.

% --------------
% Buffer control
% --------------
\membersection{wxStreamBuffer::ResetBuffer}\label{wxstreambufferresetbuffer}

\func{void}{ResetBuffer}{\void}

Resets to the initial state variables concerning the buffer.

\membersection{wxStreamBuffer::SetBufferIO}\label{wxstreambuffersetbufferio}

\func{void}{SetBufferIO}{\param{char*}{ buffer\_start}, \param{char*}{ buffer\_end}}

Specifies which pointers to use for stream buffering. You need to pass a pointer on the
start of the buffer end and another on the end. The object will use this buffer
to cache stream data. It may be used also as a source/destination buffer when
you create an empty stream buffer (See \helpref{wxStreamBuffer::wxStreamBuffer}{wxstreambufferctor}).

\wxheading{Remarks}

When you use this function, you will have to destroy the IO buffers yourself
after the stream buffer is destroyed or don't use it anymore.
In the case you use it with an empty buffer, the stream buffer will not resize
it when it is full.

\wxheading{See also}

\helpref{wxStreamBuffer constructor}{wxstreambufferctor}\\
\helpref{wxStreamBuffer::Fixed}{wxstreambufferfixed}\\
\helpref{wxStreamBuffer::Flushable}{wxstreambufferflushable}

\func{void}{SetBufferIO}{\param{size\_t}{ bufsize}}

Destroys or invalidates the previous IO buffer and allocates a new one of the
specified size.

\wxheading{Warning}

All previous pointers aren't valid anymore.

\wxheading{Remark}

The created IO buffer is growable by the object.

\wxheading{See also}

\helpref{wxStreamBuffer::Fixed}{wxstreambufferfixed}\\
\helpref{wxStreamBuffer::Flushable}{wxstreambufferflushable}

\membersection{wxStreamBuffer::GetBufferStart}\label{wxstreambuffergetbufferstart}

\constfunc{void *}{GetBufferStart}{\void}

Returns a pointer on the start of the stream buffer.

\membersection{wxStreamBuffer::GetBufferEnd}\label{wxstreambuffergetbufferend}

\constfunc{void *}{GetBufferEnd}{\void}

Returns a pointer on the end of the stream buffer.

\membersection{wxStreamBuffer::GetBufferPos}\label{wxstreambuffergetbufferpos}

\constfunc{void *}{GetBufferPos}{\void}

Returns a pointer on the current position of the stream buffer.

\membersection{wxStreamBuffer::GetIntPosition}\label{wxstreambuffergetintposition}

\constfunc{off\_t}{GetIntPosition}{\void}

Returns the current position (counted in bytes) in the stream buffer.

\membersection{wxStreamBuffer::SetIntPosition}\label{wxstreambuffersetintposition}

\func{void}{SetIntPosition}{\param{size\_t}{ pos}}

Sets the current position (in bytes) in the stream buffer.

\wxheading{Warning}

Since it is a very low-level function, there is no check on the position:
specifying an invalid position can induce unexpected results.

\membersection{wxStreamBuffer::GetLastAccess}\label{wxstreambuffergetlastaccess}

\constfunc{size\_t}{GetLastAccess}{\void}

Returns the amount of bytes read during the last IO call to the parent stream.

\membersection{wxStreamBuffer::Fixed}\label{wxstreambufferfixed}

\func{void}{Fixed}{\param{bool}{ fixed}}

Toggles the fixed flag. Usually this flag is toggled at the same time as 
{\it flushable}. This flag allows (when it has the false value) or forbids
(when it has the true value) the stream buffer to resize dynamically the IO buffer.

\wxheading{See also}

\helpref{wxStreamBuffer::SetBufferIO}{wxstreambuffersetbufferio}

\membersection{wxStreamBuffer::Flushable}\label{wxstreambufferflushable}

\func{void}{Flushable}{\param{bool}{ flushable}}

Toggles the flushable flag. If {\it flushable} is disabled, no data are sent
to the parent stream.

\membersection{wxStreamBuffer::FlushBuffer}\label{wxstreambufferflushbuffer}

\func{bool}{FlushBuffer}{\void}

Flushes the IO buffer.

\membersection{wxStreamBuffer::FillBuffer}\label{wxstreambufferfillbuffer}

\func{bool}{FillBuffer}{\void}

Fill the IO buffer.

\membersection{wxStreamBuffer::GetDataLeft}\label{wxstreambuffergetdataleft}

\func{size\_t}{GetDataLeft}{\void}

Returns the amount of available data in the buffer.

% --------------
% Administration
% --------------
\membersection{wxStreamBuffer::Stream}\label{wxstreambufferstream}

\func{wxStreamBase*}{Stream}{\void}

Returns the parent stream of the stream buffer.