os/persistentdata/persistentstorage/store/UMEM/UM_STRM.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/store/UMEM/UM_STRM.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,266 @@
     1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "UM_STD.H"
    1.20 +
    1.21 +/**
    1.22 +Constructs the RMemReadStream object and prepares the stream hosted
    1.23 +in the specified plain memory location for reading.
    1.24 +
    1.25 +@param aPtr The start address for the area of memory that will be
    1.26 +the source of this stream.
    1.27 +@param aLength The length of the area of memory.
    1.28 +
    1.29 +@see RMemReadStream::Open
    1.30 +*/
    1.31 +EXPORT_C RMemReadStream::RMemReadStream(const TAny* aPtr,TInt aLength)
    1.32 +	{
    1.33 +	Open(aPtr,aLength);
    1.34 +	}
    1.35 +
    1.36 +/**
    1.37 +Open a stream that reads from a pointer of any type.
    1.38 +
    1.39 +To close the stream and free its resources call Close()
    1.40 +
    1.41 +@param aPtr The start address for the area of memory that will be
    1.42 +the source of this stream.
    1.43 +@param aLength The length of the area of memory.
    1.44 +
    1.45 +@see TMemBuf::Set
    1.46 +@see RReadStream::Attach
    1.47 +*/
    1.48 +EXPORT_C void RMemReadStream::Open(const TAny* aPtr,TInt aLength)
    1.49 +	{
    1.50 +	iSource.Set((TUint8*)aPtr,(TUint8*)aPtr+aLength,iSource.ERead);
    1.51 +	RReadStream::Attach(&iSource);
    1.52 +	}
    1.53 +
    1.54 +/**
    1.55 +Constructs the RMemWriteStream object and prepares a stream to be hosted
    1.56 +in the specified memory location (described by the TAny aPtr argument)
    1.57 +for writing using the Open() function.
    1.58 +
    1.59 +@param aPtr The start address for the area of memory that is the sink of
    1.60 +this stream.
    1.61 +@param aMaxLength The maximum length of the area of memory.
    1.62 +
    1.63 +@see RMemWriteStream::Open
    1.64 +*/
    1.65 +EXPORT_C RMemWriteStream::RMemWriteStream(TAny* aPtr,TInt aMaxLength)
    1.66 +	{
    1.67 +	Open(aPtr,aMaxLength);
    1.68 +	}
    1.69 +
    1.70 +/**
    1.71 +Prepares a stream for writing.
    1.72 +
    1.73 +When streaming takes place any existing data in the memory location will
    1.74 +be replaced. Note that the length of memory must be big enough to accommodate
    1.75 +the expected streamed data otherwise the subsequent streaming operation will
    1.76 +leave with KErrOverFlow.
    1.77 +
    1.78 +To close the stream and free its resources call Close()
    1.79 +
    1.80 +@param aPtr The start address for the area of memory that is the sink of
    1.81 +this stream.
    1.82 +@param aMaxLength The maximum length of the area of memory.
    1.83 +
    1.84 +@see TMemBuf::Set
    1.85 +@see RWriteStream::Attach
    1.86 +*/
    1.87 +EXPORT_C void RMemWriteStream::Open(TAny* aPtr,TInt aMaxLength)
    1.88 +	{
    1.89 +	iSink.Set((TUint8*)aPtr,(TUint8*)aPtr+aMaxLength,iSink.EWrite);
    1.90 +	RWriteStream::Attach(&iSink);
    1.91 +	}
    1.92 +
    1.93 +/**
    1.94 +Constructs the RDesReadStream object and prepares the stream hosted
    1.95 +by the specified descriptor for reading.
    1.96 +
    1.97 +@param aDes The descriptor that will be the source of this stream.
    1.98 +
    1.99 +@see RDesReadStream::Open
   1.100 +*/
   1.101 +EXPORT_C RDesReadStream::RDesReadStream(const TDesC8& aDes)
   1.102 +	{
   1.103 +	Open(aDes);
   1.104 +	}
   1.105 +
   1.106 +/**
   1.107 +Open a stream that reads from a descriptor.
   1.108 +
   1.109 +To close the stream and free its resources call Close()
   1.110 +
   1.111 +@param aDes The descriptor that will be the source of this stream.
   1.112 +
   1.113 +@see TDesBuf::Set
   1.114 +@see RReadStream::Attach
   1.115 +*/
   1.116 +EXPORT_C void RDesReadStream::Open(const TDesC8& aDes)
   1.117 +	{
   1.118 +	TUint8* ptr=(TUint8*)aDes.Ptr();
   1.119 +	iSource.Set(ptr,ptr+aDes.Length(),iSource.ERead);
   1.120 +	RReadStream::Attach(&iSource);
   1.121 +	}
   1.122 +
   1.123 +/**
   1.124 +Constructs the RDesWriteStream object and prepares a stream to be
   1.125 +hosted by the specified 8-bit descriptor for writing using the Open()
   1.126 +function.
   1.127 +
   1.128 +
   1.129 +@param aDes The descriptor hosting the stream.
   1.130 +
   1.131 +@see RDesWriteStream::Open
   1.132 +*/
   1.133 +EXPORT_C RDesWriteStream::RDesWriteStream(TDes8& aDes)
   1.134 +	{
   1.135 +	Open(aDes);
   1.136 +	}
   1.137 +
   1.138 +/**
   1.139 +Prepares a stream for writing.
   1.140 +
   1.141 +When streaming takes place, any existing data in the descriptor will
   1.142 +be replaced. Note that the maximum length of the descriptor must be
   1.143 +big enough to accommodate the expected streamed data, otherwise the
   1.144 +subsequent streaming operation will leave with KErrOverFlow.
   1.145 +
   1.146 +A subsequent call to CommitL() sets the length of the descriptor.
   1.147 +
   1.148 +To close the stream and free its resources call Close()
   1.149 +
   1.150 +@param aDes The descriptor that will be the sink of this stream.
   1.151 +
   1.152 +@see TDesBuf::Set
   1.153 +@see RWriteStream::Attach
   1.154 +*/
   1.155 +EXPORT_C void RDesWriteStream::Open(TDes8& aDes)
   1.156 +	{
   1.157 +	aDes.SetLength(0);
   1.158 +	iSink.Set(aDes,iSink.EWrite);
   1.159 +	RWriteStream::Attach(&iSink);
   1.160 +	}
   1.161 +
   1.162 +/**
   1.163 +Constructs the RBufReadStream object and opens the stream hosted by the
   1.164 +specified dynamic buffer for reading using the Open() method.
   1.165 +
   1.166 +@param aBuf The dynamic buffer that will be the source of this stream.
   1.167 +@param aPos The offset within the dynamic buffer where the stream starts.
   1.168 +
   1.169 +@see RBufReadStream::Open
   1.170 +*/
   1.171 +EXPORT_C RBufReadStream::RBufReadStream(const CBufBase& aBuf,TInt aPos)
   1.172 +	{
   1.173 +	Open(aBuf,aPos);
   1.174 +	}
   1.175 +
   1.176 +/**
   1.177 +Prepares the stream hosted by the specified dynamic buffer for reading.
   1.178 +
   1.179 +To close the stream and free its resources call Close()
   1.180 +
   1.181 +@param aBuf The dynamic buffer that will be the source of this stream.
   1.182 +@param aPos The offset within the dynamic buffer where the stream starts.
   1.183 +
   1.184 +@see TBufBuf::Set
   1.185 +@see RReadStream::Attach
   1.186 +*/
   1.187 +EXPORT_C void RBufReadStream::Open(const CBufBase& aBuf,TInt aPos)
   1.188 +	{
   1.189 +	iSource.Set((CBufBase&)aBuf,aPos,iSource.ERead);
   1.190 +	RReadStream::Attach(&iSource);
   1.191 +	}
   1.192 +
   1.193 +/**
   1.194 +Constructs the RBufWriteStream object and opens a stream that writes to
   1.195 +the specified dynamic buffer using the Open() function.
   1.196 +
   1.197 +@param aBuf The dynamic buffer hosting the stream.
   1.198 +@param aPos The offset within the dynamic buffer where the stream is to
   1.199 +start. Defaults to zero, if not explicitly specified. The value cannot
   1.200 +be greater than the current size of the buffer, otherwise a E32USER-CBase 5
   1.201 +panic will be raised when streaming starts.
   1.202 +
   1.203 +@see RBufWriteStream::Open
   1.204 +*/
   1.205 +EXPORT_C RBufWriteStream::RBufWriteStream(CBufBase& aBuf,TInt aPos)
   1.206 +	{
   1.207 +	Open(aBuf,aPos);
   1.208 +	}
   1.209 +
   1.210 +/**
   1.211 +Open a stream that writes to the dynamic buffer specified in the aBuf argument.
   1.212 +
   1.213 +To close the stream and free its resources call Close()
   1.214 +
   1.215 +@param aBuf The dynamic buffer hosting the stream.
   1.216 +@param aPos The offset within the dynamic buffer where the stream is to
   1.217 +start. Defaults to zero, if not explicitly specified. The value cannot
   1.218 +be greater than the current size of the buffer, otherwise a E32USER-CBase 5
   1.219 +panic will be raised when streaming starts.
   1.220 +
   1.221 +@see TBufBuf::Set
   1.222 +@see RWriteStream::Attach
   1.223 +*/
   1.224 +EXPORT_C void RBufWriteStream::Open(CBufBase& aBuf,TInt aPos)
   1.225 +	{
   1.226 +	iSink.Set(aBuf,aPos,iSink.EWrite);
   1.227 +	RWriteStream::Attach(&iSink);
   1.228 +	}
   1.229 +
   1.230 +/**
   1.231 +Open a stream that writes into the dynamic buffer specified in the aBuf argument
   1.232 +using truncate mode.
   1.233 +
   1.234 +@param aBuf The dynamic buffer hosting the stream.
   1.235 +@param aPos The offset within the dynamic buffer where the stream is to
   1.236 +start. Defaults to zero, if not explicitly specified. The value cannot
   1.237 +be greater than the current size of the buffer, otherwise a E32USER-CBase 5
   1.238 +panic will be raised when streaming starts.
   1.239 +
   1.240 +@see TBufBuf::Set
   1.241 +@see TBufBuf::ETruncate
   1.242 +@see RWriteStream::Attach
   1.243 +*/
   1.244 +EXPORT_C void RBufWriteStream::Truncate(CBufBase& aBuf,TInt aPos)
   1.245 +	{
   1.246 +	iSink.Set(aBuf,aPos,iSink.ETruncate);
   1.247 +	RWriteStream::Attach(&iSink);
   1.248 +	}
   1.249 +
   1.250 +/**
   1.251 +Open a stream that writes into the dynamic buffer specified in the aBuf argument
   1.252 +using insert mode.
   1.253 +
   1.254 +@param aBuf The dynamic buffer hosting the stream.
   1.255 +@param aPos The offset within the dynamic buffer where the stream is to
   1.256 +start. Defaults to zero, if not explicitly specified. The value cannot
   1.257 +be greater than the current size of the buffer, otherwise a E32USER-CBase 5
   1.258 +panic will be raised when streaming starts.
   1.259 +
   1.260 +@see TBufBuf::Set
   1.261 +@see TBufBuf::EInsert
   1.262 +@see RWriteStream::Attach
   1.263 +*/
   1.264 +EXPORT_C void RBufWriteStream::Insert(CBufBase& aBuf,TInt aPos)
   1.265 +	{
   1.266 +	iSink.Set(aBuf,aPos,iSink.EInsert);
   1.267 +	RWriteStream::Attach(&iSink);
   1.268 +	}
   1.269 +