sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#if !defined(__S32BUF_H__)
|
sl@0
|
17 |
#define __S32BUF_H__
|
sl@0
|
18 |
#if !defined(__E32STD_H__)
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
|
sl@0
|
22 |
/** Defines the type of location within a stream on which the calculation
|
sl@0
|
23 |
of a new seek position is based.
|
sl@0
|
24 |
|
sl@0
|
25 |
The type is used by the stream buffer SeekL() functions.
|
sl@0
|
26 |
|
sl@0
|
27 |
@see MStreamBuf::SeekL() */
|
sl@0
|
28 |
enum TStreamLocation
|
sl@0
|
29 |
/** The seek position is calculated relative to the beginning of the
|
sl@0
|
30 |
stream.*/
|
sl@0
|
31 |
{EStreamBeginning,
|
sl@0
|
32 |
/** The seek position is calculated relative to the end of the stream.*/
|
sl@0
|
33 |
EStreamMark,
|
sl@0
|
34 |
/** The seek position is calculated relative to the existing read or
|
sl@0
|
35 |
write mark in the stream. */
|
sl@0
|
36 |
EStreamEnd};
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
* @publishedAll
|
sl@0
|
40 |
* @released
|
sl@0
|
41 |
* Holds the position of the read or write mark within a seekable stream.
|
sl@0
|
42 |
|
sl@0
|
43 |
Position is the offset from the beginning of a seekable stream. The class
|
sl@0
|
44 |
provides convenient operators for performing arithmetic on the offset value
|
sl@0
|
45 |
and for doing comparisons between stream position objects.
|
sl@0
|
46 |
|
sl@0
|
47 |
It can be considered as an absolute stream position.
|
sl@0
|
48 |
|
sl@0
|
49 |
Objects of this type are usually created as a result of calling
|
sl@0
|
50 |
MStreamBuf::SeekL() or MStreamBuf::TellL(); they allow a program to remember
|
sl@0
|
51 |
the current read position in a stream buffer and reset it to the same
|
sl@0
|
52 |
location later.
|
sl@0
|
53 |
|
sl@0
|
54 |
@see MStreamBuf::SeekL()
|
sl@0
|
55 |
@see MStreamBuf::TellL()
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
class TStreamPos
|
sl@0
|
58 |
{
|
sl@0
|
59 |
public:
|
sl@0
|
60 |
/** Constructs an empty stream position object. */
|
sl@0
|
61 |
TStreamPos() {}
|
sl@0
|
62 |
inline TStreamPos(TInt anOffset);
|
sl@0
|
63 |
//
|
sl@0
|
64 |
inline TBool operator==(TStreamPos aPos) const;
|
sl@0
|
65 |
inline TBool operator!=(TStreamPos aPos) const;
|
sl@0
|
66 |
inline TBool operator<(TStreamPos aPos) const;
|
sl@0
|
67 |
inline TBool operator<=(TStreamPos aPos) const;
|
sl@0
|
68 |
inline TBool operator>(TStreamPos aPos) const;
|
sl@0
|
69 |
inline TBool operator>=(TStreamPos aPos) const;
|
sl@0
|
70 |
//
|
sl@0
|
71 |
inline TInt operator-(TStreamPos aPos) const;
|
sl@0
|
72 |
inline TStreamPos operator+(TInt anOffset) const;
|
sl@0
|
73 |
inline TStreamPos operator-(TInt anOffset) const;
|
sl@0
|
74 |
//
|
sl@0
|
75 |
inline TStreamPos& operator+=(TInt anOffset);
|
sl@0
|
76 |
inline TStreamPos& operator-=(TInt anOffset);
|
sl@0
|
77 |
//
|
sl@0
|
78 |
inline TInt Offset() const;
|
sl@0
|
79 |
private:
|
sl@0
|
80 |
TInt iOff;
|
sl@0
|
81 |
};
|
sl@0
|
82 |
inline TStreamPos operator+(TInt anOffset,TStreamPos aPos);
|
sl@0
|
83 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
84 |
/** Constructs a TStreamPos object that denotes the beginning of any seekable
|
sl@0
|
85 |
stream.
|
sl@0
|
86 |
|
sl@0
|
87 |
@see TStreamPos */
|
sl@0
|
88 |
#define KStreamBeginning TStreamPos(0)
|
sl@0
|
89 |
#else
|
sl@0
|
90 |
const TStreamPos KStreamBeginning=TStreamPos(0);
|
sl@0
|
91 |
#endif
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
* @publishedAll
|
sl@0
|
95 |
* @released
|
sl@0
|
96 |
* Stream transfer object.
|
sl@0
|
97 |
|
sl@0
|
98 |
Holds and maintains a value that represents how much data is to be transferred,
|
sl@0
|
99 |
or remains to be transferred, between streams.
|
sl@0
|
100 |
|
sl@0
|
101 |
Objects of this type are used by ReadL() and WriteL() functions of MStreamBuf.
|
sl@0
|
102 |
|
sl@0
|
103 |
@see MStreamBuf
|
sl@0
|
104 |
@see TStreamBuf
|
sl@0
|
105 |
@see TStreamMark
|
sl@0
|
106 |
@see TStreamExchange
|
sl@0
|
107 |
@see RShareBuf
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
class TStreamTransfer
|
sl@0
|
110 |
{
|
sl@0
|
111 |
public:
|
sl@0
|
112 |
/** An enumerator type passed to a constructor of this class to indicate
|
sl@0
|
113 |
that there is no explicit limit to the amount of data that can be
|
sl@0
|
114 |
transferred between streams. The enumeration is not used. */
|
sl@0
|
115 |
enum TUnlimited {EUnlimited};
|
sl@0
|
116 |
public:
|
sl@0
|
117 |
/** Constructs a stream transfer object specifying that there is no
|
sl@0
|
118 |
explicit limit to the amount of data that can be transferred between
|
sl@0
|
119 |
streams.
|
sl@0
|
120 |
|
sl@0
|
121 |
The amount of data to be transferred is only limited by the streams
|
sl@0
|
122 |
themselves.
|
sl@0
|
123 |
|
sl@0
|
124 |
The arithmetical operators do not change the state of an unlimited stream
|
sl@0
|
125 |
transfer object. */
|
sl@0
|
126 |
TStreamTransfer() {}
|
sl@0
|
127 |
inline TStreamTransfer(TInt aMaxLength);
|
sl@0
|
128 |
inline TStreamTransfer(TUnlimited);
|
sl@0
|
129 |
//
|
sl@0
|
130 |
inline TBool operator==(TInt aLength) const;
|
sl@0
|
131 |
inline TBool operator>(TInt aLength) const;
|
sl@0
|
132 |
inline TStreamTransfer operator-(TInt aLength) const;
|
sl@0
|
133 |
inline TInt operator[](TInt aMaxLength) const;
|
sl@0
|
134 |
//
|
sl@0
|
135 |
inline TStreamTransfer& operator-=(TInt aLength);
|
sl@0
|
136 |
//
|
sl@0
|
137 |
inline TInt Left() const;
|
sl@0
|
138 |
private:
|
sl@0
|
139 |
TInt iVal;
|
sl@0
|
140 |
private:
|
sl@0
|
141 |
IMPORT_C static void __DbgChkNonNegative(TInt aLength);
|
sl@0
|
142 |
};
|
sl@0
|
143 |
inline TBool operator==(TInt aLength,TStreamTransfer aTransfer);
|
sl@0
|
144 |
inline TBool operator<(TInt aLength,TStreamTransfer aTransfer);
|
sl@0
|
145 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
146 |
/** Constructs a TStreamTransfer object indicating that no explicit limit is
|
sl@0
|
147 |
imposed on transfers between streams.
|
sl@0
|
148 |
|
sl@0
|
149 |
@see TStreamTransfer
|
sl@0
|
150 |
@see MStreamBuf::ReadL()
|
sl@0
|
151 |
@see MStreamBuf::WriteL() */
|
sl@0
|
152 |
#define KStreamUnlimited TStreamTransfer(TStreamTransfer::EUnlimited)
|
sl@0
|
153 |
#else
|
sl@0
|
154 |
const TStreamTransfer KStreamUnlimited=TStreamTransfer::EUnlimited;
|
sl@0
|
155 |
#endif
|
sl@0
|
156 |
//
|
sl@0
|
157 |
class MStreamInput;
|
sl@0
|
158 |
class MStreamOutput;
|
sl@0
|
159 |
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
* @publishedAll
|
sl@0
|
162 |
* @released
|
sl@0
|
163 |
* A stream buffer that provides a generic I/O interface for streamed data.
|
sl@0
|
164 |
|
sl@0
|
165 |
A stream buffer:
|
sl@0
|
166 |
|
sl@0
|
167 |
may be buffered or unbuffered
|
sl@0
|
168 |
|
sl@0
|
169 |
may provide read-only, write-only or read/write capability
|
sl@0
|
170 |
|
sl@0
|
171 |
may be seekable, or unseekable.
|
sl@0
|
172 |
|
sl@0
|
173 |
A seekable stream buffer maintains independent read and write pointers, which
|
sl@0
|
174 |
can be manipulated separately. This is unlike the RFile interface which
|
sl@0
|
175 |
maintains a single current position in the file. For example, file streams
|
sl@0
|
176 |
and memory streams are seekable streams, but socket, serial-comms, and filtered
|
sl@0
|
177 |
streams are not.
|
sl@0
|
178 |
|
sl@0
|
179 |
Objects of this type are used by the stream interface classes derived from
|
sl@0
|
180 |
RReadStream and RWriteStream.
|
sl@0
|
181 |
|
sl@0
|
182 |
The class has no member data.
|
sl@0
|
183 |
|
sl@0
|
184 |
Derive from this class, if the stream has no intermediate buffering
|
sl@0
|
185 |
capabilities, otherwise derive from TStreamBuf.
|
sl@0
|
186 |
|
sl@0
|
187 |
Get a reference to the stream buffer used by a read stream by calling
|
sl@0
|
188 |
RReadStream::Source(). Get a reference to the stream buffer used by a write
|
sl@0
|
189 |
stream by calling RWriteStream::Sink()
|
sl@0
|
190 |
|
sl@0
|
191 |
@see RReadStream
|
sl@0
|
192 |
@see RWriteStream
|
sl@0
|
193 |
@see TStreamBuf
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
class MStreamBuf
|
sl@0
|
196 |
{
|
sl@0
|
197 |
public:
|
sl@0
|
198 |
/** Indicates that an operation applies to the read mark in a stream or to
|
sl@0
|
199 |
the read area in an stream buffer. */
|
sl@0
|
200 |
enum TRead {ERead=0x01};
|
sl@0
|
201 |
|
sl@0
|
202 |
/** Indicates that an operation applies to the write mark in a stream or
|
sl@0
|
203 |
to the write area in an stream buffer. */
|
sl@0
|
204 |
enum TWrite {EWrite=0x02};
|
sl@0
|
205 |
|
sl@0
|
206 |
/** Used to identify the type of mark in a stream.
|
sl@0
|
207 |
|
sl@0
|
208 |
The type is used by functions of this class and derived classes that perform
|
sl@0
|
209 |
seek operations to marks within a stream.
|
sl@0
|
210 |
|
sl@0
|
211 |
The type uses the ERead and EWrite enumeration values, as bit flags, to
|
sl@0
|
212 |
identify the read and write marks respectively.
|
sl@0
|
213 |
|
sl@0
|
214 |
ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite
|
sl@0
|
215 |
enumerator.
|
sl@0
|
216 |
|
sl@0
|
217 |
@see MStreamBuf::TRead
|
sl@0
|
218 |
@see MStreamBuf::TWrite */
|
sl@0
|
219 |
typedef TInt TMark;
|
sl@0
|
220 |
public:
|
sl@0
|
221 |
IMPORT_C void Close();
|
sl@0
|
222 |
inline void Release();
|
sl@0
|
223 |
IMPORT_C TInt Synch();
|
sl@0
|
224 |
inline void SynchL();
|
sl@0
|
225 |
//
|
sl@0
|
226 |
IMPORT_C void PushL();
|
sl@0
|
227 |
//
|
sl@0
|
228 |
inline TInt ReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
229 |
IMPORT_C TInt Read(TDes8& aDes,TRequestStatus& aStatus);
|
sl@0
|
230 |
IMPORT_C TInt Read(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
231 |
IMPORT_C TInt ReadL(TDes8& aDes,TRequestStatus& aStatus);
|
sl@0
|
232 |
inline TInt ReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
233 |
inline TStreamTransfer ReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
|
sl@0
|
234 |
IMPORT_C TInt ReadL(MStreamInput& anInput,TInt aMaxLength);
|
sl@0
|
235 |
inline void ReadL(MStreamInput& anInput);
|
sl@0
|
236 |
//
|
sl@0
|
237 |
inline void WriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
238 |
IMPORT_C TInt Write(const TDesC8& aDes,TRequestStatus& aStatus);
|
sl@0
|
239 |
IMPORT_C TInt Write(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
240 |
IMPORT_C TInt WriteL(const TDesC8& aDes,TRequestStatus& aStatus);
|
sl@0
|
241 |
inline TInt WriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
242 |
inline TStreamTransfer WriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
|
sl@0
|
243 |
IMPORT_C TInt WriteL(MStreamOutput& anOutput,TInt aMaxLength);
|
sl@0
|
244 |
inline void WriteL(MStreamOutput& anOutput);
|
sl@0
|
245 |
//
|
sl@0
|
246 |
inline void SeekL(TMark aMark,TStreamPos aPos);
|
sl@0
|
247 |
inline TStreamPos SeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset=0);
|
sl@0
|
248 |
inline TStreamPos SeekL(TRead,TStreamLocation aLocation,TInt anOffset=0);
|
sl@0
|
249 |
inline TStreamPos SeekL(TWrite,TStreamLocation aLocation,TInt anOffset=0);
|
sl@0
|
250 |
inline TStreamPos SeekL(TRead,TInt anOffset);
|
sl@0
|
251 |
inline TStreamPos SeekL(TWrite,TInt anOffset);
|
sl@0
|
252 |
//
|
sl@0
|
253 |
inline TStreamPos TellL(TRead) const;
|
sl@0
|
254 |
inline TStreamPos TellL(TWrite) const;
|
sl@0
|
255 |
inline TInt SizeL() const;
|
sl@0
|
256 |
protected:
|
sl@0
|
257 |
MStreamBuf() {}
|
sl@0
|
258 |
private:
|
sl@0
|
259 |
MStreamBuf(const MStreamBuf&);
|
sl@0
|
260 |
MStreamBuf& operator=(const MStreamBuf&);
|
sl@0
|
261 |
//
|
sl@0
|
262 |
virtual IMPORT_C void DoRelease();
|
sl@0
|
263 |
virtual IMPORT_C void DoSynchL();
|
sl@0
|
264 |
virtual IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
265 |
virtual IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
266 |
virtual IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
|
sl@0
|
267 |
virtual IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
268 |
virtual IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
269 |
virtual IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
|
sl@0
|
270 |
virtual IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
|
sl@0
|
271 |
};
|
sl@0
|
272 |
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
* @publishedAll
|
sl@0
|
275 |
* @released
|
sl@0
|
276 |
* An interface to an object that acts as a target for read operations from
|
sl@0
|
277 |
a stream. The object behaves as a generic data sink.
|
sl@0
|
278 |
|
sl@0
|
279 |
A stream input object can act as an intelligent buffer, and is useful for
|
sl@0
|
280 |
performing filtering, compression or any other general kind of conversion
|
sl@0
|
281 |
operation that might be needed after reading from a stream.
|
sl@0
|
282 |
|
sl@0
|
283 |
The class is pure interface and requires an implementation.
|
sl@0
|
284 |
|
sl@0
|
285 |
@see MStreamBuf::ReadL()
|
sl@0
|
286 |
*/
|
sl@0
|
287 |
class MStreamInput
|
sl@0
|
288 |
{
|
sl@0
|
289 |
public:
|
sl@0
|
290 |
/** Reads data from an intermediate buffer into this stream input object.
|
sl@0
|
291 |
|
sl@0
|
292 |
This function is called by the default implementation of
|
sl@0
|
293 |
TStreamBuf::DoReadL(MStreamInput&,TStreamTransfer)
|
sl@0
|
294 |
and assumes that the source is a stream buffer's intermediate buffer.
|
sl@0
|
295 |
|
sl@0
|
296 |
@param aPtr A pointer into the intermediate buffer from which the read
|
sl@0
|
297 |
operation starts.
|
sl@0
|
298 |
@param aMaxLength The maximum amount of data to be read.
|
sl@0
|
299 |
@return The amount of data read.
|
sl@0
|
300 |
@see TStreamBuf::DoReadL()
|
sl@0
|
301 |
@see TStreamBuf */
|
sl@0
|
302 |
virtual TInt PushL(const TAny* aPtr,TInt aMaxLength)=0;
|
sl@0
|
303 |
|
sl@0
|
304 |
/** Reads data from the specified stream into this stream input object.
|
sl@0
|
305 |
|
sl@0
|
306 |
This function is called by the default implementation of
|
sl@0
|
307 |
MStreamBuf::DoReadL(MStreamInput&,TStreamTransfer).
|
sl@0
|
308 |
It may also be called by TStreamBuf::DoReadL(MStreamInput&,TStreamTransfer),
|
sl@0
|
309 |
depending on the amount of data to be transferred and the nature of the
|
sl@0
|
310 |
buffering scheme.
|
sl@0
|
311 |
|
sl@0
|
312 |
@param aSource The stream from which data is to be read.
|
sl@0
|
313 |
@param aTransfer Defines the amount of data available to be read.
|
sl@0
|
314 |
@return The amount of data that was not consumed.
|
sl@0
|
315 |
@see MStreamBuf::DoReadL()
|
sl@0
|
316 |
@see TStreamBuf::DoReadL() */
|
sl@0
|
317 |
virtual TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer)=0;
|
sl@0
|
318 |
};
|
sl@0
|
319 |
|
sl@0
|
320 |
/**
|
sl@0
|
321 |
* @publishedAll
|
sl@0
|
322 |
* @released
|
sl@0
|
323 |
* An interface to an object that acts as source for write operations to a
|
sl@0
|
324 |
stream. The object behaves as a generic data source.
|
sl@0
|
325 |
|
sl@0
|
326 |
A stream output object can act as an intelligent buffer, and is useful for
|
sl@0
|
327 |
performing filtering, compression or any other general kind of conversion
|
sl@0
|
328 |
operation that might be needed before writing to a stream.
|
sl@0
|
329 |
|
sl@0
|
330 |
The class is pure interface and requires an implementation.
|
sl@0
|
331 |
|
sl@0
|
332 |
@see MStreamBuf::WriteL()
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
class MStreamOutput
|
sl@0
|
335 |
{
|
sl@0
|
336 |
public:
|
sl@0
|
337 |
/** Writes data to an intermediate buffer from this stream output object.
|
sl@0
|
338 |
|
sl@0
|
339 |
This function is called by the default implementation of
|
sl@0
|
340 |
TStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer)
|
sl@0
|
341 |
and assumes that the target is a stream buffer's intermediate buffer.
|
sl@0
|
342 |
|
sl@0
|
343 |
@param aPtr A pointer into the intermediate buffer where the write operation
|
sl@0
|
344 |
starts.
|
sl@0
|
345 |
@param aMaxLength The maximum amount of data to be written.
|
sl@0
|
346 |
@return The amount of data written.
|
sl@0
|
347 |
@see TStreamBuf::DoWriteL()
|
sl@0
|
348 |
@see TStreamBuf */
|
sl@0
|
349 |
virtual TInt PullL(TAny* aPtr,TInt aMaxLength)=0;
|
sl@0
|
350 |
|
sl@0
|
351 |
/** Writes data to the specified stream from this stream output object.
|
sl@0
|
352 |
|
sl@0
|
353 |
This function is called by the default implementation of
|
sl@0
|
354 |
MStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer).
|
sl@0
|
355 |
It may also be called by TStreamBuf::DoWriteL(MStreamOutput&,TStreamTransfer),
|
sl@0
|
356 |
depending on the amount of data to be transferred and the nature of the
|
sl@0
|
357 |
buffering scheme.
|
sl@0
|
358 |
|
sl@0
|
359 |
@param aSink The stream to which data is to be written.
|
sl@0
|
360 |
@param aTransfer Defines the amount of data available to be written.
|
sl@0
|
361 |
@return The amount of data that was not consumed.
|
sl@0
|
362 |
@see MStreamBuf::DoWriteL()
|
sl@0
|
363 |
@see TStreamBuf::DoWriteL() */
|
sl@0
|
364 |
virtual TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer)=0;
|
sl@0
|
365 |
};
|
sl@0
|
366 |
|
sl@0
|
367 |
/**
|
sl@0
|
368 |
* @publishedAll
|
sl@0
|
369 |
* @released
|
sl@0
|
370 |
* Adds buffering capabilities to a stream buffer
|
sl@0
|
371 |
|
sl@0
|
372 |
The class provides pointers to mark out the current read and write areas within
|
sl@0
|
373 |
the intermediate buffer. The class also defines the pure virtual functions
|
sl@0
|
374 |
UnderflowL() and OverflowL() which must be provided by a derived class.
|
sl@0
|
375 |
|
sl@0
|
376 |
Streams which have buffering capabilities derive from this class, otherwise
|
sl@0
|
377 |
they derive from MStreamBuf.
|
sl@0
|
378 |
|
sl@0
|
379 |
Note that the class does not provide the buffer; this is left to the class
|
sl@0
|
380 |
derived from it. For example, the memory buffer classes use the memory area
|
sl@0
|
381 |
directly, the file buffer class allocate a heap cell to use as a buffer.
|
sl@0
|
382 |
|
sl@0
|
383 |
@see UnderflowL()
|
sl@0
|
384 |
@see OverflowL()
|
sl@0
|
385 |
*/
|
sl@0
|
386 |
class TStreamBuf : public MStreamBuf
|
sl@0
|
387 |
{
|
sl@0
|
388 |
protected:
|
sl@0
|
389 |
/** Used to identify the type of area within an intermediate buffer.
|
sl@0
|
390 |
|
sl@0
|
391 |
The type is used by functions of this class that set or get pointers into
|
sl@0
|
392 |
the intermediate buffer.
|
sl@0
|
393 |
|
sl@0
|
394 |
The type uses the ERead and EWrite enumeration values, as bit flags, to
|
sl@0
|
395 |
identify the read and write areas respectively.
|
sl@0
|
396 |
|
sl@0
|
397 |
ERead is an MStreamBuf::TRead enumerator. EWrite is an MStreamBuf::EWrite
|
sl@0
|
398 |
enumerator.
|
sl@0
|
399 |
|
sl@0
|
400 |
@see MStreamBuf::TRead
|
sl@0
|
401 |
@see MStreamBuf::TWrite */
|
sl@0
|
402 |
typedef TInt TArea;
|
sl@0
|
403 |
protected:
|
sl@0
|
404 |
IMPORT_C TStreamBuf();
|
sl@0
|
405 |
//
|
sl@0
|
406 |
IMPORT_C void SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
407 |
IMPORT_C void SetPtr(TArea anArea,TUint8* aPtr);
|
sl@0
|
408 |
IMPORT_C void SetEnd(TArea anArea,TUint8* anEnd);
|
sl@0
|
409 |
IMPORT_C TUint8* Ptr(TArea anArea) const;
|
sl@0
|
410 |
IMPORT_C TUint8* End(TArea anArea) const;
|
sl@0
|
411 |
IMPORT_C TInt Avail(TArea anArea) const;
|
sl@0
|
412 |
//
|
sl@0
|
413 |
IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
414 |
IMPORT_C TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
|
sl@0
|
415 |
IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
416 |
IMPORT_C TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
|
sl@0
|
417 |
//
|
sl@0
|
418 |
inline void SetBuf(TRead,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
419 |
inline void SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
420 |
inline void SetPtr(TRead,TUint8* aPtr);
|
sl@0
|
421 |
inline void SetPtr(TWrite,TUint8* aPtr);
|
sl@0
|
422 |
inline void SetEnd(TRead,TUint8* anEnd);
|
sl@0
|
423 |
inline void SetEnd(TWrite,TUint8* anEnd);
|
sl@0
|
424 |
inline TUint8* Ptr(TRead) const;
|
sl@0
|
425 |
inline TUint8* Ptr(TWrite) const;
|
sl@0
|
426 |
inline TUint8* End(TRead) const;
|
sl@0
|
427 |
inline TUint8* End(TWrite) const;
|
sl@0
|
428 |
inline TInt Avail(TRead) const;
|
sl@0
|
429 |
inline TInt Avail(TWrite) const;
|
sl@0
|
430 |
private:
|
sl@0
|
431 |
/** Re-fills the intermediate buffer and resets the start and end points
|
sl@0
|
432 |
of the read area.
|
sl@0
|
433 |
|
sl@0
|
434 |
The implementation of this function depends on the way the stream itself is
|
sl@0
|
435 |
implemented. For example, the in-memory streams have simple implementations.
|
sl@0
|
436 |
|
sl@0
|
437 |
@param aMaxLength The maximum amount of data required for the intermediate
|
sl@0
|
438 |
buffer.
|
sl@0
|
439 |
@return The amount of data available in the intermediate buffer. */
|
sl@0
|
440 |
virtual TInt UnderflowL(TInt aMaxLength)=0;
|
sl@0
|
441 |
|
sl@0
|
442 |
/** Empties the intermediate buffer and resets the start and end points
|
sl@0
|
443 |
of the write area.
|
sl@0
|
444 |
|
sl@0
|
445 |
The implementation of this function depends on the way the stream itself is
|
sl@0
|
446 |
implemented. For example, the in-memory streams have simple implementations. */
|
sl@0
|
447 |
virtual void OverflowL()=0;
|
sl@0
|
448 |
private:
|
sl@0
|
449 |
TUint8* iRPtr;
|
sl@0
|
450 |
TUint8* iREnd;
|
sl@0
|
451 |
TUint8* iWPtr;
|
sl@0
|
452 |
TUint8* iWEnd;
|
sl@0
|
453 |
};
|
sl@0
|
454 |
|
sl@0
|
455 |
/**
|
sl@0
|
456 |
* @publishedAll
|
sl@0
|
457 |
* @released
|
sl@0
|
458 |
* Interface to a stream filter.
|
sl@0
|
459 |
|
sl@0
|
460 |
A stream filter is an object that allows stream data to be filtered after
|
sl@0
|
461 |
retrieval from a host or filtered before being written to a host.
|
sl@0
|
462 |
|
sl@0
|
463 |
The class is abstract and a derived class must be defined an implemented.
|
sl@0
|
464 |
*/
|
sl@0
|
465 |
class TStreamFilter : public MStreamBuf
|
sl@0
|
466 |
{
|
sl@0
|
467 |
public:
|
sl@0
|
468 |
enum {EAttached=0x10};
|
sl@0
|
469 |
protected:
|
sl@0
|
470 |
IMPORT_C TStreamFilter();
|
sl@0
|
471 |
inline void Set(MStreamBuf* aHost,TInt aMode);
|
sl@0
|
472 |
inline void Committed();
|
sl@0
|
473 |
inline TBool IsCommitted() const;
|
sl@0
|
474 |
IMPORT_C void EmitL(const TAny* aPtr,TInt aLength);
|
sl@0
|
475 |
//
|
sl@0
|
476 |
IMPORT_C void DoRelease();
|
sl@0
|
477 |
IMPORT_C void DoSynchL();
|
sl@0
|
478 |
IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
479 |
IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
480 |
private:
|
sl@0
|
481 |
/** Calculates the maximum size of unfiltered data necessary to give the
|
sl@0
|
482 |
specified amount of filtered data.
|
sl@0
|
483 |
|
sl@0
|
484 |
@param aMaxLength The amount of filtered data required.
|
sl@0
|
485 |
@return The maximum amount of unfiltered data guaranteed not to generate
|
sl@0
|
486 |
more than aMaxLength bytes of filtered output. */
|
sl@0
|
487 |
virtual TInt Capacity(TInt aMaxLength)=0;
|
sl@0
|
488 |
|
sl@0
|
489 |
/** Performs the filtration process.
|
sl@0
|
490 |
|
sl@0
|
491 |
@param aPtr Pointer to the output location for the filtered data.
|
sl@0
|
492 |
@param aMaxLength The maximum amount of space available for the filtered
|
sl@0
|
493 |
data.
|
sl@0
|
494 |
@param aFrom A reference to a pointer to the unfiltered data source. This
|
sl@0
|
495 |
pointer should be advanced as the source is consumed.
|
sl@0
|
496 |
@param anEnd Pointer to the first byte beyond the end of the unfiltered
|
sl@0
|
497 |
data source.
|
sl@0
|
498 |
@return The size of the filtered data. */
|
sl@0
|
499 |
virtual TInt FilterL(TAny* aPtr,TInt aMaxLength,const TUint8*& aFrom,const TUint8* anEnd)=0;
|
sl@0
|
500 |
private:
|
sl@0
|
501 |
MStreamBuf* iHost;
|
sl@0
|
502 |
TInt iMode;
|
sl@0
|
503 |
private:
|
sl@0
|
504 |
friend class TFilterInput;
|
sl@0
|
505 |
friend class TFilterOutput;
|
sl@0
|
506 |
private:
|
sl@0
|
507 |
IMPORT_C static void __DbgChkMode(TInt aMode);
|
sl@0
|
508 |
};
|
sl@0
|
509 |
|
sl@0
|
510 |
#include <s32buf.inl>
|
sl@0
|
511 |
#endif
|