os/persistentdata/persistentstorage/store/INC/S32BUF.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// Class TStreamPos
sl@0
    17
inline TStreamPos::TStreamPos(TInt anOffset)
sl@0
    18
	: iOff(anOffset)
sl@0
    19
/** Constructs the stream position object from the specified value.
sl@0
    20
sl@0
    21
@param anOffset The position value. */
sl@0
    22
	{}
sl@0
    23
inline TBool TStreamPos::operator==(TStreamPos aPos) const
sl@0
    24
/** Tests whether the stream position is equal to the specified stream position.
sl@0
    25
sl@0
    26
@param aPos The stream position to be compared.
sl@0
    27
@return True, if this object's stream position value is equal to the specified 
sl@0
    28
stream position's value; false, otherwise. */
sl@0
    29
	{return iOff==aPos.iOff;}
sl@0
    30
inline TBool TStreamPos::operator!=(TStreamPos aPos) const
sl@0
    31
/** Tests whether the stream position is not equal to the specified stream position.
sl@0
    32
sl@0
    33
@param aPos The stream position to be compared.
sl@0
    34
@return True, if this object's stream position value is not equal to the specified 
sl@0
    35
stream position's value; false, otherwise. */
sl@0
    36
	{return iOff!=aPos.iOff;}
sl@0
    37
inline TBool TStreamPos::operator<(TStreamPos aPos) const
sl@0
    38
/** Tests whether the stream position is less than the specified stream position.
sl@0
    39
sl@0
    40
@param aPos The stream position to be compared.
sl@0
    41
@return True, if this object's stream position value is less than the specified 
sl@0
    42
stream position's value; false, otherwise. */
sl@0
    43
	{return iOff<aPos.iOff;}
sl@0
    44
inline TBool TStreamPos::operator<=(TStreamPos aPos) const
sl@0
    45
/** Tests whether the stream position is less than or equal to the specified stream 
sl@0
    46
position.
sl@0
    47
sl@0
    48
@param aPos The stream position to be compared.
sl@0
    49
@return True, if this object's stream position value is less than or equal 
sl@0
    50
to the specified stream position's value; false, otherwise. */
sl@0
    51
	{return iOff<=aPos.iOff;}
sl@0
    52
inline TBool TStreamPos::operator>(TStreamPos aPos) const
sl@0
    53
/** Tests whether the stream position is greater than the specified stream position.
sl@0
    54
sl@0
    55
@param aPos The stream position to be compared.
sl@0
    56
@return True, if this object's stream position value is greater than the specified 
sl@0
    57
stream position's value; false, otherwise. */
sl@0
    58
	{return iOff>aPos.iOff;}
sl@0
    59
inline TBool TStreamPos::operator>=(TStreamPos aPos) const
sl@0
    60
/** Tests whether the stream position is greater than or equal to the specified 
sl@0
    61
stream position.
sl@0
    62
sl@0
    63
@param aPos The stream position to be compared.
sl@0
    64
@return True, if this object's stream position value is greater than or equal 
sl@0
    65
to the specified stream position's value; false, otherwise. */
sl@0
    66
	{return iOff>=aPos.iOff;}
sl@0
    67
inline TInt TStreamPos::operator-(TStreamPos aPos) const
sl@0
    68
/** Gets the result of subtracting the specified stream position value from this 
sl@0
    69
object's stream position value.
sl@0
    70
sl@0
    71
@param aPos The stream position whose value is to be subtracted.
sl@0
    72
@return The result of the calculation. */
sl@0
    73
	{return iOff-aPos.iOff;}
sl@0
    74
inline TStreamPos TStreamPos::operator+(TInt anOffset) const
sl@0
    75
/** Gets a stream position object that holds the result of adding the specified 
sl@0
    76
value to this object's stream position value.
sl@0
    77
sl@0
    78
@param anOffset The value to be added.
sl@0
    79
@return The stream position object holding the result of the calculation. */
sl@0
    80
	{return TStreamPos(iOff+anOffset);}
sl@0
    81
inline TStreamPos TStreamPos::operator-(TInt anOffset) const
sl@0
    82
/** Gets a stream position object that holds the result of subtracting the specified 
sl@0
    83
value from this object's stream position value.
sl@0
    84
sl@0
    85
@param anOffset The value to be subtracted.
sl@0
    86
@return The stream position object holding the result of the calculation. */
sl@0
    87
	{return TStreamPos(iOff-anOffset);}
sl@0
    88
inline TStreamPos& TStreamPos::operator+=(TInt anOffset)
sl@0
    89
/** Adds the specified value to this stream position object.
sl@0
    90
sl@0
    91
@param anOffset The value to be added.
sl@0
    92
@return A reference to this stream position object. */
sl@0
    93
	{iOff+=anOffset;return *this;}
sl@0
    94
inline TStreamPos& TStreamPos::operator-=(TInt anOffset)
sl@0
    95
/** Subtracts the specified value from this stream position object.
sl@0
    96
sl@0
    97
@param anOffset The value to be subtracted.
sl@0
    98
@return A reference to this stream position object. */
sl@0
    99
	{iOff-=anOffset;return *this;}
sl@0
   100
inline TInt TStreamPos::Offset() const
sl@0
   101
/** Gets the stream position value.
sl@0
   102
sl@0
   103
@return The stream position value. */
sl@0
   104
	{return iOff;}
sl@0
   105
inline TStreamPos operator+(TInt anOffset,TStreamPos aPos)
sl@0
   106
	{return aPos+anOffset;}
sl@0
   107
sl@0
   108
// Class TStreamTransfer
sl@0
   109
inline TStreamTransfer::TStreamTransfer(TInt aMaxLength)
sl@0
   110
	: iVal(aMaxLength)
sl@0
   111
/** Constructs a stream transfer object specifying a length value.
sl@0
   112
sl@0
   113
This value represents the maximum amount of data that can be transferred between 
sl@0
   114
streams.
sl@0
   115
sl@0
   116
@param aMaxLength The maximum length of data that can be transferred. In debug 
sl@0
   117
mode, the function raises a STORE-Stream 13 panic, if this value is negative. */
sl@0
   118
	{
sl@0
   119
#if defined (_DEBUG)
sl@0
   120
	__DbgChkNonNegative(aMaxLength);
sl@0
   121
#endif
sl@0
   122
	}
sl@0
   123
inline TStreamTransfer::TStreamTransfer(TUnlimited)
sl@0
   124
	: iVal(-1)
sl@0
   125
/** Constructs a stream transfer object specifying that there is no explicit limit 
sl@0
   126
to the amount of data that can be transferred between streams.
sl@0
   127
sl@0
   128
The amount of data to be transferred is only limited by the streams themselves.
sl@0
   129
sl@0
   130
The arithmetical operators do not change the state of an unlimited stream 
sl@0
   131
transfer object.
sl@0
   132
sl@0
   133
@param (The enumerator value is not used). */
sl@0
   134
	{}
sl@0
   135
inline TBool TStreamTransfer::operator==(TInt aLength) const
sl@0
   136
/** Tests whether the stream transfer value is equal to the specified value.
sl@0
   137
sl@0
   138
@param aLength The length to compared. In debug mode, the function raises 
sl@0
   139
a STORE-Stream 13 panic, if this value is negative.
sl@0
   140
@return True, if the stream transfer value is equal to the specified value; 
sl@0
   141
false, otherwise. */
sl@0
   142
	{
sl@0
   143
#if defined (_DEBUG)
sl@0
   144
	__DbgChkNonNegative(aLength);
sl@0
   145
#endif
sl@0
   146
	return iVal==aLength;
sl@0
   147
	}
sl@0
   148
inline TBool TStreamTransfer::operator>(TInt aLength) const
sl@0
   149
/** Tests whether the stream transfer value is greater than the specified value.
sl@0
   150
sl@0
   151
@param aLength The length to compared. In debug mode, the function raises 
sl@0
   152
a STORE-Stream 13 panic, if this value is negative.
sl@0
   153
@return True, if the stream transfer value is greater than the specified value; 
sl@0
   154
false, otherwise. */
sl@0
   155
	{
sl@0
   156
#if defined (_DEBUG)
sl@0
   157
	__DbgChkNonNegative(aLength);
sl@0
   158
#endif
sl@0
   159
	return TUint(iVal)>TUint(aLength);
sl@0
   160
	}
sl@0
   161
inline TStreamTransfer TStreamTransfer::operator-(TInt aLength) const
sl@0
   162
/** Subtracts the specified value from the stream transfer value.
sl@0
   163
sl@0
   164
If this stream transfer object was originally constructed as an unlimited 
sl@0
   165
type, i.e. using the TStreamTransfer(TUnlimited) constructor, then this operator 
sl@0
   166
does not change the state of the object, and it remains an unlimited type.
sl@0
   167
sl@0
   168
@param aLength The length to be subtracted. In debug mode, the function raises 
sl@0
   169
a STORE-Stream 13 panic, if this value is negative.
sl@0
   170
@return A stream transfer object containing the result of the subtraction. */
sl@0
   171
	{
sl@0
   172
#if defined (_DEBUG)
sl@0
   173
	__DbgChkNonNegative(aLength);
sl@0
   174
#endif
sl@0
   175
	return iVal<0?*this:TStreamTransfer(iVal-aLength);
sl@0
   176
	}
sl@0
   177
inline TInt TStreamTransfer::operator[](TInt aMaxLength) const
sl@0
   178
	{return *this>aMaxLength?aMaxLength:iVal;}
sl@0
   179
inline TStreamTransfer& TStreamTransfer::operator-=(TInt aLength)
sl@0
   180
/** Subtracts the specified value from the stream transfer value, updating this 
sl@0
   181
stream transfer object.
sl@0
   182
sl@0
   183
If this stream transfer object was originally constructed as an unlimited 
sl@0
   184
type, i.e. using the TStreamTransfer(TUnlimited) constructor, then this operator 
sl@0
   185
does not change the state of the object, and it remains an unlimited type.
sl@0
   186
sl@0
   187
If this stream transfer object was not an unlimited type, then, in debug mode, 
sl@0
   188
the function raises a STORE-Stream 13 panic, if the result of the calculation 
sl@0
   189
is negative.
sl@0
   190
sl@0
   191
@param aLength The length to be subtracted. In debug mode, the function raises 
sl@0
   192
a STORE-Stream 13 panic, if this value is negative.
sl@0
   193
@return A reference to this stream transfer object. */
sl@0
   194
	{
sl@0
   195
#if defined (_DEBUG)
sl@0
   196
	__DbgChkNonNegative(aLength);
sl@0
   197
#endif
sl@0
   198
	if (iVal>=0)
sl@0
   199
		{
sl@0
   200
		iVal-=aLength;
sl@0
   201
#if defined (_DEBUG)
sl@0
   202
		__DbgChkNonNegative(iVal);
sl@0
   203
#endif
sl@0
   204
		}
sl@0
   205
	return *this;
sl@0
   206
	}
sl@0
   207
inline TInt TStreamTransfer::Left() const
sl@0
   208
/** Gets the stream transfer value.
sl@0
   209
sl@0
   210
@return The current stream transfer value. */
sl@0
   211
	{
sl@0
   212
#if defined (_DEBUG)
sl@0
   213
	__DbgChkNonNegative(iVal);
sl@0
   214
#endif
sl@0
   215
	return iVal;
sl@0
   216
	}
sl@0
   217
inline TBool operator==(TInt aLength,TStreamTransfer aTransfer)
sl@0
   218
	{return aTransfer==aLength;}
sl@0
   219
inline TBool operator<(TInt aLength,TStreamTransfer aTransfer)
sl@0
   220
	{return aTransfer>aLength;}
sl@0
   221
sl@0
   222
// Class MStreamBuf
sl@0
   223
inline void MStreamBuf::Release()
sl@0
   224
/** Frees resources before abandoning the stream buffer.
sl@0
   225
sl@0
   226
The function calls the virtual function DoRelease() to implement this behaviour.
sl@0
   227
sl@0
   228
Release() is called by both RReadStream::Release() and RWriteStream::Release().
sl@0
   229
sl@0
   230
@see MStreamBuf::DoRelease()
sl@0
   231
@see RReadStream::Release()
sl@0
   232
@see RWriteStream::Release() */
sl@0
   233
	{DoRelease();}
sl@0
   234
inline void MStreamBuf::SynchL()
sl@0
   235
/** Synchronises the stream buffer with the stream, leaving if any error occurs.
sl@0
   236
sl@0
   237
In effect, this ensures that buffered data is delivered to the stream.
sl@0
   238
sl@0
   239
The function calls the virtual function DoSynchL() to implement this behaviour.
sl@0
   240
sl@0
   241
@see MStreamBuf::DoSynchL() */
sl@0
   242
	{DoSynchL();}
sl@0
   243
inline TInt MStreamBuf::ReadL(TAny* aPtr,TInt aMaxLength)
sl@0
   244
/** Reads data from the stream buffer into the specified memory location.
sl@0
   245
sl@0
   246
The function calls the virtual function DoReadL(TAny*,TInt) to implement this 
sl@0
   247
behaviour.
sl@0
   248
sl@0
   249
@param aPtr A pointer to the target memory location for the data read from 
sl@0
   250
the stream buffer.
sl@0
   251
@param aMaxLength The maximum number of bytes to be read.
sl@0
   252
@return The number of bytes read.
sl@0
   253
@see MStreamBuf::DoReadL() */
sl@0
   254
	{return DoReadL(aPtr,aMaxLength);}
sl@0
   255
inline TInt MStreamBuf::ReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
   256
/** Reads data, asynchronously, from the stream buffer into the specified descriptor.
sl@0
   257
sl@0
   258
The function calls the virtual function DoReadL(TDes8&,TInt,TRequestStatus&) 
sl@0
   259
to implement this behaviour.
sl@0
   260
sl@0
   261
If the function leaves, then no read request will have been initiated.
sl@0
   262
sl@0
   263
@param aDes The target descriptor for the data read from the stream buffer.
sl@0
   264
@param aMaxLength The maximum number of bytes to be read.
sl@0
   265
@param aStatus The request status that indicates the completion status of this 
sl@0
   266
asynchronous request.
sl@0
   267
@return The maximum number of bytes to be read, as used in this request. This 
sl@0
   268
can be different to the value supplied in aMaxLength; this is dependent on 
sl@0
   269
the implementation.
sl@0
   270
@see MStreamBuf::DoReadL() */
sl@0
   271
	{return DoReadL(aDes,aMaxLength,aStatus);}
sl@0
   272
inline TStreamTransfer MStreamBuf::ReadL(MStreamInput& anInput,TStreamTransfer aTransfer)
sl@0
   273
/** Reads data from the stream buffer into the specified data sink.
sl@0
   274
sl@0
   275
The function calls the virtual function DoReadL(MStreamInput&,TStreamTransfer) 
sl@0
   276
to implement this behaviour.
sl@0
   277
sl@0
   278
@param anInput The data sink that is the target for the read operation.
sl@0
   279
@param aTransfer Defines the amount of data available to be read.
sl@0
   280
@return The amount of data that was not consumed. */
sl@0
   281
	{return DoReadL(anInput,aTransfer);}
sl@0
   282
inline void MStreamBuf::ReadL(MStreamInput& anInput)
sl@0
   283
/** Reads data from the stream buffer into the specified data sink.
sl@0
   284
sl@0
   285
The function uses the virtual function DoReadL(MStreamInput&,TStreamTransfer) 
sl@0
   286
to implement this behaviour.
sl@0
   287
sl@0
   288
No explicit limit is placed on the amount of data that can be read.
sl@0
   289
sl@0
   290
@param anInput The data sink that is the target for the read operation. */
sl@0
   291
	{DoReadL(anInput,KStreamUnlimited);}
sl@0
   292
inline void MStreamBuf::WriteL(const TAny* aPtr,TInt aLength)
sl@0
   293
/** Writes data from the specified memory location into the stream buffer.
sl@0
   294
sl@0
   295
The function calls the virtual function DoWriteL(TAny*,TInt) to implement 
sl@0
   296
this behaviour.
sl@0
   297
sl@0
   298
@param aPtr A pointer to the memory location from which data is to be written 
sl@0
   299
to the stream buffer.
sl@0
   300
@param aLength The number of bytes to be written.
sl@0
   301
@see MStreamBuf::DoWriteL() */
sl@0
   302
	{DoWriteL(aPtr,aLength);}
sl@0
   303
inline TInt MStreamBuf::WriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus)
sl@0
   304
/** Writes data, asynchronously, from the specified descriptor into the stream buffer.
sl@0
   305
sl@0
   306
The function calls the virtual function DoWriteL(const TDesC8&,TInt,TRequestStatus&) 
sl@0
   307
to implement this behaviour.
sl@0
   308
sl@0
   309
If the function leaves, then no write request will have been initiated.
sl@0
   310
sl@0
   311
@param aDes The source descriptor for the data to be written into the stream 
sl@0
   312
buffer.
sl@0
   313
@param aMaxLength The maximum number of bytes to be written.
sl@0
   314
@param aStatus The request status that indicates the completion status of this 
sl@0
   315
asynchronous request.
sl@0
   316
@return The maximum number of bytes to be written, as used in this request. 
sl@0
   317
This can be different to the value supplied in aMaxLength; this is dependent 
sl@0
   318
on the implementation.
sl@0
   319
@see MStreamBuf::DoWriteL() */
sl@0
   320
	{return DoWriteL(aDes,aMaxLength,aStatus);}
sl@0
   321
inline TStreamTransfer MStreamBuf::WriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer)
sl@0
   322
/** Writes data into the stream buffer from the specified data source.
sl@0
   323
sl@0
   324
The function calls the virtual function DoWriteL(MStreamOutput&,TStreamTransfer) 
sl@0
   325
to implement this behaviour.
sl@0
   326
sl@0
   327
@param anOutput The data source for the write operation.
sl@0
   328
@param aTransfer Defines the amount of data to be pulled from the output stream 
sl@0
   329
object.
sl@0
   330
@return A stream transfer object defining the amount of data that was not consumed. */
sl@0
   331
	{return DoWriteL(anOutput,aTransfer);}
sl@0
   332
inline void MStreamBuf::WriteL(MStreamOutput& anOutput)
sl@0
   333
/**Writes data into the stream buffer from the specified data source.
sl@0
   334
sl@0
   335
The function calls the virtual function DoWriteL(MStreamOutput&,TStreamTransfer) to implement this behaviour.
sl@0
   336
sl@0
   337
No explicit limit is placed on the amount of data that can be written.
sl@0
   338
sl@0
   339
@param anOutput The data source for the write operation.
sl@0
   340
@param aMaxLength The maximum amount of data available to be written.
sl@0
   341
*/
sl@0
   342
	{DoWriteL(anOutput,KStreamUnlimited);}
sl@0
   343
inline void MStreamBuf::SeekL(TMark aMark,TStreamPos aPos)
sl@0
   344
/**Moves the position of the read or write mark in the stream.
sl@0
   345
sl@0
   346
The new position is calculated by adding the specified value to the position of the beginning of the stream.
sl@0
   347
sl@0
   348
The function calls virtual function DoSeekL(TMark,TStreamLocation,TInt) to implement this behaviour.
sl@0
   349
Notes:
sl@0
   350
As there are two current positions, one for the read mark and one for the write mark, it is not valid, in general, to use a single call to SeekL() to move both the read and write marks. 
sl@0
   351
Not all streams are seekable. 
sl@0
   352
sl@0
   353
@param aMark The type of mark, i.e. read or write.
sl@0
   354
@param aLocation A stream position value on which the calculation of the new position is based.
sl@0
   355
*/
sl@0
   356
	{DoSeekL(aMark,EStreamBeginning,aPos.Offset());}
sl@0
   357
inline TStreamPos MStreamBuf::SeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
sl@0
   358
/** Moves the position of the read mark or the write mark in the stream.
sl@0
   359
sl@0
   360
The new position is calculated by adding the specified offset to one of:
sl@0
   361
sl@0
   362
the position of the beginning of the stream
sl@0
   363
sl@0
   364
the position of the end of the stream
sl@0
   365
sl@0
   366
the position of the current read mark or write mark.
sl@0
   367
sl@0
   368
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   369
to implement this behaviour.
sl@0
   370
sl@0
   371
As there are two current positions, one for the read mark and one for the 
sl@0
   372
write mark, it is not valid, in general, to use a single call to SeekL() to 
sl@0
   373
move both the read and write marks.
sl@0
   374
sl@0
   375
Not all streams are seekable.
sl@0
   376
sl@0
   377
@param aMark The type of mark, i.e read or write.
sl@0
   378
@param aLocation The location in the stream on which the calculation of the 
sl@0
   379
new position is based.
sl@0
   380
@param anOffset The offset value.
sl@0
   381
@return The new stream position of the read or write mark. */
sl@0
   382
	{return DoSeekL(aMark,aLocation,anOffset);}
sl@0
   383
inline TStreamPos MStreamBuf::SeekL(TRead,TStreamLocation aLocation,TInt anOffset)
sl@0
   384
/** Moves the position of the read mark in the stream.
sl@0
   385
sl@0
   386
The new position is calculated by adding the specified offset to one of:
sl@0
   387
sl@0
   388
the position of the beginning of the stream
sl@0
   389
sl@0
   390
the position of the end of the stream
sl@0
   391
sl@0
   392
the position of the current read mark.
sl@0
   393
sl@0
   394
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   395
to implement this behaviour.
sl@0
   396
sl@0
   397
Not all streams are seekable.
sl@0
   398
sl@0
   399
@param (The enumerator value is not used)
sl@0
   400
@param aLocation The location in the stream on which the calculation of the 
sl@0
   401
new position is based.
sl@0
   402
@param anOffset The offset value.
sl@0
   403
@return The new stream position of the read mark. */
sl@0
   404
	{return DoSeekL(ERead,aLocation,anOffset);}
sl@0
   405
inline TStreamPos MStreamBuf::SeekL(TWrite,TStreamLocation aLocation,TInt anOffset)
sl@0
   406
/** Moves the position of the write mark in the stream.
sl@0
   407
sl@0
   408
The new position is calculated by adding the specified offset to one of:
sl@0
   409
sl@0
   410
the position of the beginning of the stream
sl@0
   411
sl@0
   412
the position of the end of the stream
sl@0
   413
sl@0
   414
the position of the current write mark.
sl@0
   415
sl@0
   416
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   417
to implement this behaviour.
sl@0
   418
sl@0
   419
Not all streams are seekable.
sl@0
   420
sl@0
   421
@param (The enumerator value is not used)
sl@0
   422
@param aLocation The location in the stream on which the calculation of the 
sl@0
   423
new position is based.
sl@0
   424
@param anOffset The offset value.
sl@0
   425
@return The new stream position of the write mark. */
sl@0
   426
	{return DoSeekL(EWrite,aLocation,anOffset);}
sl@0
   427
inline TStreamPos MStreamBuf::SeekL(TRead,TInt anOffset)
sl@0
   428
/** Moves the position of the read mark in the stream by the specified offset.
sl@0
   429
sl@0
   430
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   431
to implement this behaviour.
sl@0
   432
sl@0
   433
Not all streams are seekable.
sl@0
   434
sl@0
   435
@param (The enumerator value is not used)
sl@0
   436
@param anOffset The amount by which the position of the read mark is to be 
sl@0
   437
moved relative to the existing position of the read mark.
sl@0
   438
@return The new stream position of the read mark. */
sl@0
   439
	{return DoSeekL(ERead,EStreamMark,anOffset);}
sl@0
   440
inline TStreamPos MStreamBuf::SeekL(TWrite,TInt anOffset)
sl@0
   441
/** Moves the position of the write mark in the stream by the specified offset.
sl@0
   442
sl@0
   443
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   444
to implement this behaviour.
sl@0
   445
sl@0
   446
Not all streams are seekable.
sl@0
   447
sl@0
   448
@param (The enumerator value is not used)
sl@0
   449
@param anOffset The amount by which the position of the write mark is to be 
sl@0
   450
moved relative to the existing position of the write mark.
sl@0
   451
@return The new stream position of the write mark. */
sl@0
   452
	{return DoSeekL(EWrite,EStreamMark,anOffset);}
sl@0
   453
inline TStreamPos MStreamBuf::TellL(TRead) const
sl@0
   454
/** Gets the position of the read mark within the stream.
sl@0
   455
sl@0
   456
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   457
to implement this behaviour.
sl@0
   458
sl@0
   459
@param (The enumerator value is not used).
sl@0
   460
@return The stream position. */
sl@0
   461
	{return CONST_CAST(MStreamBuf*,this)->DoSeekL(ERead,EStreamMark,0);}
sl@0
   462
inline TStreamPos MStreamBuf::TellL(TWrite) const
sl@0
   463
/** Gets the position of the write mark within the stream.
sl@0
   464
sl@0
   465
The function calls the virtual function DoSeekL(TMark,TStreamLocation,TInt) 
sl@0
   466
to implement this behaviour.
sl@0
   467
sl@0
   468
@param (The enumerator value is not used).
sl@0
   469
@return The stream position. */
sl@0
   470
	{return CONST_CAST(MStreamBuf*,this)->DoSeekL(EWrite,EStreamMark,0);}
sl@0
   471
inline TInt MStreamBuf::SizeL() const
sl@0
   472
/** Gets the size of the stream.
sl@0
   473
sl@0
   474
@return The size of the stream, in bytes. */
sl@0
   475
	{return CONST_CAST(MStreamBuf*,this)->DoSeekL(0,EStreamEnd,0).Offset();}
sl@0
   476
sl@0
   477
// Class TStreamBuf
sl@0
   478
inline void TStreamBuf::SetBuf(TRead,TUint8* aPtr,TUint8* anEnd)
sl@0
   479
/** Sets the start and end points of the read area within the intermediate buffer.
sl@0
   480
sl@0
   481
A start point is always within an area; an end point is always the first byte 
sl@0
   482
beyond the end of an area.
sl@0
   483
sl@0
   484
@param (The enumerator is not used).
sl@0
   485
@param aPtr The start point.
sl@0
   486
@param anEnd The end point.
sl@0
   487
@see MStreamBuf::TRead */
sl@0
   488
	{iRPtr=aPtr;iREnd=anEnd;}
sl@0
   489
inline void TStreamBuf::SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd)
sl@0
   490
/** Sets the start and end points of the write area within the intermediate buffer.
sl@0
   491
sl@0
   492
A start point is always within an area; an end point is always the first byte 
sl@0
   493
beyond the end of an area.
sl@0
   494
sl@0
   495
@param (The enumerator is not used).
sl@0
   496
@param aPtr The start point.
sl@0
   497
@param anEnd The end point.
sl@0
   498
@see MStreamBuf::TWrite */
sl@0
   499
	{iWPtr=aPtr;iWEnd=anEnd;}
sl@0
   500
inline void TStreamBuf::SetPtr(TRead,TUint8* aPtr)
sl@0
   501
/** Sets the start point of the write area within the intermediate buffer.
sl@0
   502
sl@0
   503
A start point is always within an area.
sl@0
   504
sl@0
   505
@param (The enumerator is not used).
sl@0
   506
@param aPtr The start point.
sl@0
   507
@see MStreamBuf::TWrite */
sl@0
   508
	{iRPtr=aPtr;}
sl@0
   509
inline void TStreamBuf::SetPtr(TWrite,TUint8* aPtr)
sl@0
   510
/** Sets the start point of the write area within the intermediate buffer.
sl@0
   511
sl@0
   512
A start point is always within an area.
sl@0
   513
sl@0
   514
@param (The enumerator is not used).
sl@0
   515
@param aPtr The start point.
sl@0
   516
@see MStreamBuf::TWrite */
sl@0
   517
	{iWPtr=aPtr;}
sl@0
   518
inline void TStreamBuf::SetEnd(TRead,TUint8* anEnd)
sl@0
   519
	{iREnd=anEnd;}
sl@0
   520
inline void TStreamBuf::SetEnd(TWrite,TUint8* anEnd)
sl@0
   521
	{iWEnd=anEnd;}
sl@0
   522
inline TUint8* TStreamBuf::Ptr(TRead) const
sl@0
   523
/** Gets the current start point of the read area within the intermediate buffer.
sl@0
   524
sl@0
   525
@param (The enumerator is not used).
sl@0
   526
@return The start point.
sl@0
   527
@see MStreamBuf::TRead */
sl@0
   528
	{return iRPtr;}
sl@0
   529
inline TUint8* TStreamBuf::Ptr(TWrite) const
sl@0
   530
/** Gets the current start point of the write area within the intermediate buffer.
sl@0
   531
sl@0
   532
@param (The enumerator is not used).
sl@0
   533
@return The start point.
sl@0
   534
@see MStreamBuf::TWrite */
sl@0
   535
	{return iWPtr;}
sl@0
   536
inline TUint8* TStreamBuf::End(TRead) const
sl@0
   537
/** Gets the current end point of the read area within the intermediate buffer.
sl@0
   538
sl@0
   539
An end point is always the first byte beyond the end of an area.
sl@0
   540
sl@0
   541
@param (The enumerator is not used).
sl@0
   542
@return The end point.
sl@0
   543
@see MStreamBuf::TRead */
sl@0
   544
	{return iREnd;}
sl@0
   545
inline TUint8* TStreamBuf::End(TWrite) const
sl@0
   546
/** Gets the current end point of the write area within the intermediate buffer.
sl@0
   547
sl@0
   548
An end point is always the first byte beyond the end of an area.
sl@0
   549
sl@0
   550
@param (The enumerator is not used).
sl@0
   551
@return The end point.
sl@0
   552
@see MStreamBuf::TWrite */
sl@0
   553
	{return iWEnd;}
sl@0
   554
inline TInt TStreamBuf::Avail(TRead) const
sl@0
   555
/** Gets the number of bytes available in the read area within the intermediate 
sl@0
   556
buffer.
sl@0
   557
sl@0
   558
@param (The enumerator is not used).
sl@0
   559
@return The number of bytes available.
sl@0
   560
@see MStreamBuf::TRead */
sl@0
   561
	{return iREnd-iRPtr;}
sl@0
   562
inline TInt TStreamBuf::Avail(TWrite) const
sl@0
   563
/** Gets the number of bytes available in the write area within the intermediate 
sl@0
   564
buffer.
sl@0
   565
sl@0
   566
@param (The enumerator is not used).
sl@0
   567
@return The number of bytes available.
sl@0
   568
@see MStreamBuf::TWrite */
sl@0
   569
	{return iWEnd-iWPtr;}
sl@0
   570
sl@0
   571
// Class TStreamFilter
sl@0
   572
inline void TStreamFilter::Set(MStreamBuf* aHost,TInt aMode)
sl@0
   573
/** Sets up the filter to use the specified host for streamed data.
sl@0
   574
sl@0
   575
Taking ownership of the host stream buffer means that calls to SynchL() propagate 
sl@0
   576
to the host buffer after the filter has flushed its data, and that when the 
sl@0
   577
filter is released it also releases the host buffer. 
sl@0
   578
sl@0
   579
@param aHost The host for the streamed data - a stream buffer.
sl@0
   580
@param aMode The mode in which the stream buffer is to be used. It can be used 
sl@0
   581
in either read or write modes, represented by ERead and EWrite, but not both 
sl@0
   582
at the same time. In debug mode, setting both raises a STORE-Stream 18 panic. 
sl@0
   583
In addition, specify EAttached to indicate that the filter should take ownership 
sl@0
   584
of the host stream buffer.
sl@0
   585
@see MStreamBuf::TRead
sl@0
   586
@see MStreamBuf::TWrite */
sl@0
   587
	{
sl@0
   588
#if defined (_DEBUG)
sl@0
   589
	__DbgChkMode(aMode);
sl@0
   590
#endif
sl@0
   591
	iHost=aHost;iMode=aMode;
sl@0
   592
	}
sl@0
   593
inline void TStreamFilter::Committed()
sl@0
   594
/** Flags the streamed data as committed. */
sl@0
   595
	{iMode&=~EWrite;}
sl@0
   596
inline TBool TStreamFilter::IsCommitted() const
sl@0
   597
/** Tests whether the streamed data is committed.
sl@0
   598
sl@0
   599
@return True, if streamed data is committed; false, otherwise. */
sl@0
   600
	{return iHost==NULL||!(iMode&EWrite);}
sl@0
   601