os/persistentdata/persistentstorage/store/UMEM/UM_STRM.CPP
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
#include "UM_STD.H"
sl@0
    17
sl@0
    18
/**
sl@0
    19
Constructs the RMemReadStream object and prepares the stream hosted
sl@0
    20
in the specified plain memory location for reading.
sl@0
    21
sl@0
    22
@param aPtr The start address for the area of memory that will be
sl@0
    23
the source of this stream.
sl@0
    24
@param aLength The length of the area of memory.
sl@0
    25
sl@0
    26
@see RMemReadStream::Open
sl@0
    27
*/
sl@0
    28
EXPORT_C RMemReadStream::RMemReadStream(const TAny* aPtr,TInt aLength)
sl@0
    29
	{
sl@0
    30
	Open(aPtr,aLength);
sl@0
    31
	}
sl@0
    32
sl@0
    33
/**
sl@0
    34
Open a stream that reads from a pointer of any type.
sl@0
    35
sl@0
    36
To close the stream and free its resources call Close()
sl@0
    37
sl@0
    38
@param aPtr The start address for the area of memory that will be
sl@0
    39
the source of this stream.
sl@0
    40
@param aLength The length of the area of memory.
sl@0
    41
sl@0
    42
@see TMemBuf::Set
sl@0
    43
@see RReadStream::Attach
sl@0
    44
*/
sl@0
    45
EXPORT_C void RMemReadStream::Open(const TAny* aPtr,TInt aLength)
sl@0
    46
	{
sl@0
    47
	iSource.Set((TUint8*)aPtr,(TUint8*)aPtr+aLength,iSource.ERead);
sl@0
    48
	RReadStream::Attach(&iSource);
sl@0
    49
	}
sl@0
    50
sl@0
    51
/**
sl@0
    52
Constructs the RMemWriteStream object and prepares a stream to be hosted
sl@0
    53
in the specified memory location (described by the TAny aPtr argument)
sl@0
    54
for writing using the Open() function.
sl@0
    55
sl@0
    56
@param aPtr The start address for the area of memory that is the sink of
sl@0
    57
this stream.
sl@0
    58
@param aMaxLength The maximum length of the area of memory.
sl@0
    59
sl@0
    60
@see RMemWriteStream::Open
sl@0
    61
*/
sl@0
    62
EXPORT_C RMemWriteStream::RMemWriteStream(TAny* aPtr,TInt aMaxLength)
sl@0
    63
	{
sl@0
    64
	Open(aPtr,aMaxLength);
sl@0
    65
	}
sl@0
    66
sl@0
    67
/**
sl@0
    68
Prepares a stream for writing.
sl@0
    69
sl@0
    70
When streaming takes place any existing data in the memory location will
sl@0
    71
be replaced. Note that the length of memory must be big enough to accommodate
sl@0
    72
the expected streamed data otherwise the subsequent streaming operation will
sl@0
    73
leave with KErrOverFlow.
sl@0
    74
sl@0
    75
To close the stream and free its resources call Close()
sl@0
    76
sl@0
    77
@param aPtr The start address for the area of memory that is the sink of
sl@0
    78
this stream.
sl@0
    79
@param aMaxLength The maximum length of the area of memory.
sl@0
    80
sl@0
    81
@see TMemBuf::Set
sl@0
    82
@see RWriteStream::Attach
sl@0
    83
*/
sl@0
    84
EXPORT_C void RMemWriteStream::Open(TAny* aPtr,TInt aMaxLength)
sl@0
    85
	{
sl@0
    86
	iSink.Set((TUint8*)aPtr,(TUint8*)aPtr+aMaxLength,iSink.EWrite);
sl@0
    87
	RWriteStream::Attach(&iSink);
sl@0
    88
	}
sl@0
    89
sl@0
    90
/**
sl@0
    91
Constructs the RDesReadStream object and prepares the stream hosted
sl@0
    92
by the specified descriptor for reading.
sl@0
    93
sl@0
    94
@param aDes The descriptor that will be the source of this stream.
sl@0
    95
sl@0
    96
@see RDesReadStream::Open
sl@0
    97
*/
sl@0
    98
EXPORT_C RDesReadStream::RDesReadStream(const TDesC8& aDes)
sl@0
    99
	{
sl@0
   100
	Open(aDes);
sl@0
   101
	}
sl@0
   102
sl@0
   103
/**
sl@0
   104
Open a stream that reads from a descriptor.
sl@0
   105
sl@0
   106
To close the stream and free its resources call Close()
sl@0
   107
sl@0
   108
@param aDes The descriptor that will be the source of this stream.
sl@0
   109
sl@0
   110
@see TDesBuf::Set
sl@0
   111
@see RReadStream::Attach
sl@0
   112
*/
sl@0
   113
EXPORT_C void RDesReadStream::Open(const TDesC8& aDes)
sl@0
   114
	{
sl@0
   115
	TUint8* ptr=(TUint8*)aDes.Ptr();
sl@0
   116
	iSource.Set(ptr,ptr+aDes.Length(),iSource.ERead);
sl@0
   117
	RReadStream::Attach(&iSource);
sl@0
   118
	}
sl@0
   119
sl@0
   120
/**
sl@0
   121
Constructs the RDesWriteStream object and prepares a stream to be
sl@0
   122
hosted by the specified 8-bit descriptor for writing using the Open()
sl@0
   123
function.
sl@0
   124
sl@0
   125
sl@0
   126
@param aDes The descriptor hosting the stream.
sl@0
   127
sl@0
   128
@see RDesWriteStream::Open
sl@0
   129
*/
sl@0
   130
EXPORT_C RDesWriteStream::RDesWriteStream(TDes8& aDes)
sl@0
   131
	{
sl@0
   132
	Open(aDes);
sl@0
   133
	}
sl@0
   134
sl@0
   135
/**
sl@0
   136
Prepares a stream for writing.
sl@0
   137
sl@0
   138
When streaming takes place, any existing data in the descriptor will
sl@0
   139
be replaced. Note that the maximum length of the descriptor must be
sl@0
   140
big enough to accommodate the expected streamed data, otherwise the
sl@0
   141
subsequent streaming operation will leave with KErrOverFlow.
sl@0
   142
sl@0
   143
A subsequent call to CommitL() sets the length of the descriptor.
sl@0
   144
sl@0
   145
To close the stream and free its resources call Close()
sl@0
   146
sl@0
   147
@param aDes The descriptor that will be the sink of this stream.
sl@0
   148
sl@0
   149
@see TDesBuf::Set
sl@0
   150
@see RWriteStream::Attach
sl@0
   151
*/
sl@0
   152
EXPORT_C void RDesWriteStream::Open(TDes8& aDes)
sl@0
   153
	{
sl@0
   154
	aDes.SetLength(0);
sl@0
   155
	iSink.Set(aDes,iSink.EWrite);
sl@0
   156
	RWriteStream::Attach(&iSink);
sl@0
   157
	}
sl@0
   158
sl@0
   159
/**
sl@0
   160
Constructs the RBufReadStream object and opens the stream hosted by the
sl@0
   161
specified dynamic buffer for reading using the Open() method.
sl@0
   162
sl@0
   163
@param aBuf The dynamic buffer that will be the source of this stream.
sl@0
   164
@param aPos The offset within the dynamic buffer where the stream starts.
sl@0
   165
sl@0
   166
@see RBufReadStream::Open
sl@0
   167
*/
sl@0
   168
EXPORT_C RBufReadStream::RBufReadStream(const CBufBase& aBuf,TInt aPos)
sl@0
   169
	{
sl@0
   170
	Open(aBuf,aPos);
sl@0
   171
	}
sl@0
   172
sl@0
   173
/**
sl@0
   174
Prepares the stream hosted by the specified dynamic buffer for reading.
sl@0
   175
sl@0
   176
To close the stream and free its resources call Close()
sl@0
   177
sl@0
   178
@param aBuf The dynamic buffer that will be the source of this stream.
sl@0
   179
@param aPos The offset within the dynamic buffer where the stream starts.
sl@0
   180
sl@0
   181
@see TBufBuf::Set
sl@0
   182
@see RReadStream::Attach
sl@0
   183
*/
sl@0
   184
EXPORT_C void RBufReadStream::Open(const CBufBase& aBuf,TInt aPos)
sl@0
   185
	{
sl@0
   186
	iSource.Set((CBufBase&)aBuf,aPos,iSource.ERead);
sl@0
   187
	RReadStream::Attach(&iSource);
sl@0
   188
	}
sl@0
   189
sl@0
   190
/**
sl@0
   191
Constructs the RBufWriteStream object and opens a stream that writes to
sl@0
   192
the specified dynamic buffer using the Open() function.
sl@0
   193
sl@0
   194
@param aBuf The dynamic buffer hosting the stream.
sl@0
   195
@param aPos The offset within the dynamic buffer where the stream is to
sl@0
   196
start. Defaults to zero, if not explicitly specified. The value cannot
sl@0
   197
be greater than the current size of the buffer, otherwise a E32USER-CBase 5
sl@0
   198
panic will be raised when streaming starts.
sl@0
   199
sl@0
   200
@see RBufWriteStream::Open
sl@0
   201
*/
sl@0
   202
EXPORT_C RBufWriteStream::RBufWriteStream(CBufBase& aBuf,TInt aPos)
sl@0
   203
	{
sl@0
   204
	Open(aBuf,aPos);
sl@0
   205
	}
sl@0
   206
sl@0
   207
/**
sl@0
   208
Open a stream that writes to the dynamic buffer specified in the aBuf argument.
sl@0
   209
sl@0
   210
To close the stream and free its resources call Close()
sl@0
   211
sl@0
   212
@param aBuf The dynamic buffer hosting the stream.
sl@0
   213
@param aPos The offset within the dynamic buffer where the stream is to
sl@0
   214
start. Defaults to zero, if not explicitly specified. The value cannot
sl@0
   215
be greater than the current size of the buffer, otherwise a E32USER-CBase 5
sl@0
   216
panic will be raised when streaming starts.
sl@0
   217
sl@0
   218
@see TBufBuf::Set
sl@0
   219
@see RWriteStream::Attach
sl@0
   220
*/
sl@0
   221
EXPORT_C void RBufWriteStream::Open(CBufBase& aBuf,TInt aPos)
sl@0
   222
	{
sl@0
   223
	iSink.Set(aBuf,aPos,iSink.EWrite);
sl@0
   224
	RWriteStream::Attach(&iSink);
sl@0
   225
	}
sl@0
   226
sl@0
   227
/**
sl@0
   228
Open a stream that writes into the dynamic buffer specified in the aBuf argument
sl@0
   229
using truncate mode.
sl@0
   230
sl@0
   231
@param aBuf The dynamic buffer hosting the stream.
sl@0
   232
@param aPos The offset within the dynamic buffer where the stream is to
sl@0
   233
start. Defaults to zero, if not explicitly specified. The value cannot
sl@0
   234
be greater than the current size of the buffer, otherwise a E32USER-CBase 5
sl@0
   235
panic will be raised when streaming starts.
sl@0
   236
sl@0
   237
@see TBufBuf::Set
sl@0
   238
@see TBufBuf::ETruncate
sl@0
   239
@see RWriteStream::Attach
sl@0
   240
*/
sl@0
   241
EXPORT_C void RBufWriteStream::Truncate(CBufBase& aBuf,TInt aPos)
sl@0
   242
	{
sl@0
   243
	iSink.Set(aBuf,aPos,iSink.ETruncate);
sl@0
   244
	RWriteStream::Attach(&iSink);
sl@0
   245
	}
sl@0
   246
sl@0
   247
/**
sl@0
   248
Open a stream that writes into the dynamic buffer specified in the aBuf argument
sl@0
   249
using insert mode.
sl@0
   250
sl@0
   251
@param aBuf The dynamic buffer hosting the stream.
sl@0
   252
@param aPos The offset within the dynamic buffer where the stream is to
sl@0
   253
start. Defaults to zero, if not explicitly specified. The value cannot
sl@0
   254
be greater than the current size of the buffer, otherwise a E32USER-CBase 5
sl@0
   255
panic will be raised when streaming starts.
sl@0
   256
sl@0
   257
@see TBufBuf::Set
sl@0
   258
@see TBufBuf::EInsert
sl@0
   259
@see RWriteStream::Attach
sl@0
   260
*/
sl@0
   261
EXPORT_C void RBufWriteStream::Insert(CBufBase& aBuf,TInt aPos)
sl@0
   262
	{
sl@0
   263
	iSink.Set(aBuf,aPos,iSink.EInsert);
sl@0
   264
	RWriteStream::Attach(&iSink);
sl@0
   265
	}
sl@0
   266