os/persistentdata/persistentstorage/store/UMEM/UM_BUF.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_BUF.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,383 @@
     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 +EXPORT_C TMemBuf::TMemBuf()
    1.22 +	: iBase(NULL)
    1.23 +/** Constructs an empty object.
    1.24 +
    1.25 +Call Set() before using the object. */
    1.26 +	{}
    1.27 +
    1.28 +EXPORT_C void TMemBuf::Set(TUint8* aPtr,TUint8* anEnd,TInt aMode)
    1.29 +/** Sets up the stream to use the specified area of plain memory.
    1.30 +
    1.31 +@param aPtr The start address for the area of plain memory that hosts the 
    1.32 +stream and that also acts as the intermediate buffer.
    1.33 +@param anEnd The end address for the area of plain memory that hosts the stream 
    1.34 +and that also acts as the intermediate buffer. The addressed byte is outside 
    1.35 +the memory area.
    1.36 +@param aMode The mode in which the stream is to be used. It can be used in 
    1.37 +either or both read and write modes, represented by ERead and EWrite.
    1.38 +@see MStreamBuf::TRead
    1.39 +@see MStreamBuf::TWrite */
    1.40 +	{
    1.41 +	if (aPtr==NULL && anEnd==NULL)
    1.42 +		aPtr=anEnd=(TUint8*)this;	// treat null data as seekable zero-length data
    1.43 +	iBase=aPtr;
    1.44 +	SetBuf(ERead,(aMode&ERead)?aPtr:NULL,anEnd);
    1.45 +	SetBuf(EWrite,(aMode&EWrite)?aPtr:NULL,anEnd);
    1.46 +	}
    1.47 +
    1.48 +EXPORT_C TInt TMemBuf::UnderflowL(TInt)
    1.49 +//
    1.50 +// The read buffer is empty.
    1.51 +//
    1.52 +	{
    1.53 +	return 0;
    1.54 +	}
    1.55 +
    1.56 +EXPORT_C void TMemBuf::OverflowL()
    1.57 +//
    1.58 +// Ran out of write buffer.
    1.59 +//
    1.60 +	{
    1.61 +	__LEAVE(KErrOverflow);
    1.62 +	}
    1.63 +
    1.64 +EXPORT_C TStreamPos TMemBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
    1.65 +//
    1.66 +// Position the mark(s) indicated by aMark at anOffset from aLocation.
    1.67 +//
    1.68 +	{
    1.69 +	TUint8* ptr=0;
    1.70 +	switch (aLocation)
    1.71 +		{
    1.72 +	case EStreamBeginning:
    1.73 +		ptr=Base()+anOffset;
    1.74 +		break;
    1.75 +	case EStreamMark:
    1.76 +		ptr=Ptr(aMark)+anOffset;
    1.77 +		break;
    1.78 +	case EStreamEnd:
    1.79 +		ptr=End()+anOffset;
    1.80 +		break;
    1.81 +	default:
    1.82 +		Panic(EMemLocationInvalid);
    1.83 +		break;
    1.84 +		}
    1.85 +	TInt r=KErrNone;
    1.86 +	if (ptr>End())
    1.87 +		{
    1.88 +		ptr=End();
    1.89 +		r=KErrEof;
    1.90 +		}
    1.91 +	else if (ptr<Base())
    1.92 +		{
    1.93 +		ptr=Base();
    1.94 +		r=KErrEof;
    1.95 +		}
    1.96 +//
    1.97 +	SetPtr(aMark,ptr);
    1.98 +	__LEAVE_IF_ERROR(r);
    1.99 +	return TStreamPos(ptr-Base());
   1.100 +	}
   1.101 +
   1.102 +EXPORT_C TDesBuf::TDesBuf()
   1.103 +	: iDes(NULL)
   1.104 +/** Constructs an empty object.
   1.105 +
   1.106 +Call Set() before using the object. */
   1.107 +	{}
   1.108 +
   1.109 +EXPORT_C void TDesBuf::Set(TDes8& aDes,TInt aMode)
   1.110 +/** Sets up the stream to use the specified descriptor.
   1.111 +
   1.112 +@param aDes The descriptor that hosts the stream and that also acts as the 
   1.113 +intermediate buffer.
   1.114 +@param aMode The mode in which the buffer is to be used. It can be used in 
   1.115 +either or both read and write modes, represented by ERead and EWrite.
   1.116 +@see TDes8
   1.117 +@see MStreamBuf::TRead
   1.118 +@see MStreamBuf::TWrite */
   1.119 +	{
   1.120 +	iDes=&aDes;
   1.121 +	TUint8* ptr=(TUint8*)aDes.Ptr();
   1.122 +	SetBuf(ERead,(aMode&ERead)?ptr:NULL,ptr+aDes.Length());
   1.123 +	SetBuf(EWrite,(aMode&EWrite)?ptr:NULL,ptr+aDes.MaxLength());
   1.124 +	}
   1.125 +
   1.126 +EXPORT_C TInt TDesBuf::UnderflowL(TInt)
   1.127 +//
   1.128 +// Check if there's any more to be read.
   1.129 +//
   1.130 +	{
   1.131 +	Consolidate();
   1.132 +	return Avail(ERead);
   1.133 +	}
   1.134 +
   1.135 +EXPORT_C void TDesBuf::OverflowL()
   1.136 +//
   1.137 +// Ran out of write buffer.
   1.138 +//
   1.139 +	{
   1.140 +	__LEAVE(KErrOverflow);
   1.141 +	}
   1.142 +
   1.143 +EXPORT_C void TDesBuf::DoSynchL()
   1.144 +//
   1.145 +// Synchronise descriptor and stream buffer.
   1.146 +//
   1.147 +	{
   1.148 +	Consolidate();
   1.149 +	}
   1.150 +
   1.151 +EXPORT_C TStreamPos TDesBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
   1.152 +//
   1.153 +// Position the mark(s) indicated by aMark at anOffset from aLocation.
   1.154 +//
   1.155 +	{
   1.156 +	Consolidate();
   1.157 +	TUint8* ptr=0;
   1.158 +	switch (aLocation)
   1.159 +		{
   1.160 +	case EStreamBeginning:
   1.161 +		ptr=Base()+anOffset;
   1.162 +		break;
   1.163 +	case EStreamMark:
   1.164 +		ptr=Ptr(aMark)+anOffset;
   1.165 +		break;
   1.166 +	case EStreamEnd:
   1.167 +		ptr=End(ERead)+anOffset;
   1.168 +		break;
   1.169 +	default:
   1.170 +		Panic(EMemLocationInvalid);
   1.171 +		break;
   1.172 +		}
   1.173 +	TInt r=KErrNone;
   1.174 +	if (ptr>End(ERead))
   1.175 +		{
   1.176 +		ptr=End(ERead);
   1.177 +		r=KErrEof;
   1.178 +		}
   1.179 +	else if (ptr<Base())
   1.180 +		{
   1.181 +		ptr=Base();
   1.182 +		r=KErrEof;
   1.183 +		}
   1.184 +//
   1.185 +	SetPtr(aMark,ptr);
   1.186 +	__LEAVE_IF_ERROR(r);
   1.187 +	return TStreamPos(ptr-Base());
   1.188 +	}
   1.189 +
   1.190 +void TDesBuf::Consolidate()
   1.191 +//
   1.192 +// Update the descriptor's length as well as the read limit.
   1.193 +//
   1.194 +	{
   1.195 +	TUint8* ptr=Ptr(EWrite);
   1.196 +	if (ptr==NULL)
   1.197 +		return;			// ERead only desbuf
   1.198 +	TUint8* base=Base();
   1.199 +	TInt len=Max(Des().Length(),ptr-base);
   1.200 +	Des().SetLength(len);
   1.201 +	SetEnd(ERead,base+len);
   1.202 +	}
   1.203 +
   1.204 +EXPORT_C TBufBuf::TBufBuf()
   1.205 +	: iBuf(NULL)
   1.206 +/** Constructs an empty object.
   1.207 +
   1.208 +Call Set() before using the object. */
   1.209 +	{}
   1.210 +
   1.211 +EXPORT_C void TBufBuf::Set(CBufBase& aBuf,TInt aPos,TInt aMode)
   1.212 +/** Sets up the stream to use the specified dynamic buffer.
   1.213 +
   1.214 +@param aBuf The dynamic buffer that hosts the stream and that also acts as 
   1.215 +the intermediate buffer.
   1.216 +@param aPos The offset within the dynamic buffer where the stream starts.
   1.217 +@param aMode The mode in which the stream is to be used. It can be used in 
   1.218 +either or both read and write modes, represented by ERead and EWrite. In addition, 
   1.219 +specify TBufBuf::EInsert to imply insert mode; specify TBufBuf::ETruncate 
   1.220 +to imply truncate mode. If neither TBufBuf::EInsert nor TBufBuf::ETruncate 
   1.221 +are specified, then overwrite mode is implied. Both TBufBuf::EInsert and TBufBuf::ETruncate 
   1.222 +imply EWrite.
   1.223 +@see CBufBase
   1.224 +@see MStreamBuf::TRead
   1.225 +@see MStreamBuf::TWrite */
   1.226 +	{
   1.227 +	iBuf=&aBuf;
   1.228 +	SetPos(ERead|EWrite,aPos);
   1.229 +	if (aMode&(ETruncate|EInsert))
   1.230 +		aMode|=EWrite; // truncate and insert imply write
   1.231 +	iMode=aMode;
   1.232 +	//Initialize base class data members.
   1.233 +	//The first Read/Write call will reinitialize them with non NULL values.
   1.234 +	TStreamBuf::SetBuf(iMode & (EWrite | ERead), NULL, NULL);
   1.235 +	}
   1.236 +
   1.237 +EXPORT_C TInt TBufBuf::UnderflowL(TInt)
   1.238 +//
   1.239 +// Establish the buffer's read area.
   1.240 +//
   1.241 +	{
   1.242 +	__ASSERT_ALWAYS(iMode&ERead,Panic(EMemCannotRead));
   1.243 +	__ASSERT_DEBUG(Ptr(ERead)==End(ERead),User::Invariant());
   1.244 +	TInt pos=Pos(ERead);
   1.245 +	TPtr8 seg=Buf().Ptr(pos);
   1.246 +	TUint8* ptr=(TUint8*)seg.Ptr();
   1.247 +	TInt len=seg.Length();
   1.248 +	if (iMode&ETruncate)
   1.249 +		{
   1.250 +		TInt left=Pos(EWrite)-pos;
   1.251 +		__ASSERT_DEBUG(left>=0,User::Invariant());
   1.252 +		if (left<len)
   1.253 +			len=left;
   1.254 +		}
   1.255 +	SetBuf(ERead,ptr,ptr+len);
   1.256 +	SetPos(ERead,pos+len);
   1.257 +	return len;
   1.258 +	}
   1.259 +
   1.260 +EXPORT_C void TBufBuf::OverflowL()
   1.261 +//
   1.262 +// Establish the buffer's write area.
   1.263 +//
   1.264 +	{
   1.265 +	__ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
   1.266 +	__ASSERT_DEBUG(Ptr(EWrite)==End(EWrite)&&Pos(EWrite)<Buf().Size(),User::Invariant());
   1.267 +	TInt pos=Pos(EWrite);
   1.268 +	TPtr8 seg=Buf().Ptr(pos);
   1.269 +	TUint8* ptr=(TUint8*)seg.Ptr();
   1.270 +	TInt len=seg.Length();
   1.271 +	SetBuf(EWrite,ptr,ptr+len);
   1.272 +	SetPos(EWrite,pos+len);
   1.273 +	}
   1.274 +
   1.275 +EXPORT_C void TBufBuf::DoSynchL()
   1.276 +//
   1.277 +// Synchronise buffer and stream buffer and compress.
   1.278 +//
   1.279 +	{
   1.280 +	Consolidate();
   1.281 +	Buf().Compress();
   1.282 +	}
   1.283 +
   1.284 +EXPORT_C void TBufBuf::DoWriteL(const TAny* aPtr,TInt aLength)
   1.285 +//
   1.286 +// Consume aLength bytes, taking care of any reallocation.
   1.287 +//
   1.288 +	{
   1.289 +	__ASSERT_ALWAYS(iMode&EWrite,Panic(EMemCannotWrite));
   1.290 +	__ASSERT_DEBUG(aLength>=0,Panic(EMemWriteLengthNegative));
   1.291 +	__ASSERT_DEBUG(aLength>0,Panic(EMemWriteNoTransfer));
   1.292 +	TInt len=(iMode&EInsert?0:Min(aLength,Buf().Size()-Mark(EWrite)));
   1.293 +	if (len>0)
   1.294 +		{
   1.295 +		TStreamBuf::DoWriteL(aPtr,len);
   1.296 +		aPtr=(TUint8*)aPtr+len;
   1.297 +		aLength-=len;
   1.298 +		}
   1.299 +	if (aLength>0)
   1.300 +		{
   1.301 +		Consolidate();
   1.302 +		TInt pos=Pos(EWrite);
   1.303 +		Buf().InsertL(pos,aPtr,aLength);
   1.304 +		if (Pos(ERead)>pos)
   1.305 +			MovePos(ERead,aLength);
   1.306 +		SetPos(EWrite,pos+aLength);
   1.307 +		}
   1.308 +	}
   1.309 +
   1.310 +EXPORT_C TStreamPos TBufBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
   1.311 +//
   1.312 +// Position the mark(s) indicated by aMark at anOffset from aLocation.
   1.313 +//
   1.314 +	{
   1.315 +	Consolidate();
   1.316 +	TInt size=Buf().Size();
   1.317 +	switch (aLocation)
   1.318 +		{
   1.319 +	case EStreamBeginning:
   1.320 +		break;
   1.321 +	case EStreamMark:
   1.322 +		anOffset+=Pos(aMark);
   1.323 +		break;
   1.324 +	case EStreamEnd:
   1.325 +		anOffset+=size;
   1.326 +		break;
   1.327 +	default:
   1.328 +		Panic(EMemLocationInvalid);
   1.329 +		break;
   1.330 +		}
   1.331 +	TInt r=KErrNone;
   1.332 +	if (anOffset>size)
   1.333 +		{
   1.334 +		anOffset=size;
   1.335 +		r=KErrEof;
   1.336 +		}
   1.337 +	else if (anOffset<0)
   1.338 +		{
   1.339 +		anOffset=0;
   1.340 +		r=KErrEof;
   1.341 +		}
   1.342 +//
   1.343 +	SetPos(aMark,anOffset);
   1.344 +	__LEAVE_IF_ERROR(r);
   1.345 +	return TStreamPos(anOffset);
   1.346 +	}
   1.347 +
   1.348 +void TBufBuf::Consolidate()
   1.349 +//
   1.350 +// Empty buffer areas and, in truncate mode, cut off at the current write position.
   1.351 +//
   1.352 +	{
   1.353 +	MovePos(ERead,-Avail(ERead));
   1.354 +	MovePos(EWrite,-Avail(EWrite));
   1.355 +	SetBuf(ERead|EWrite,NULL,NULL);
   1.356 +	if (iMode&ETruncate)
   1.357 +		{
   1.358 +		Buf().Delete(Pos(EWrite),Buf().Size()-Pos(EWrite));
   1.359 +		iMode&=~ETruncate;
   1.360 +		}
   1.361 +	}
   1.362 +
   1.363 +void TBufBuf::SetPos(TMark aMark,TInt aPos)
   1.364 +//
   1.365 +// Set the buffer position for the mark(s) indicated by aMark
   1.366 +//
   1.367 +	{
   1.368 +	__ASSERT_ALWAYS(!(aMark&~(ERead|EWrite)),Panic(EMemMarkInvalid));
   1.369 +	if (aMark&ERead)
   1.370 +		SetPos(ERead,aPos);
   1.371 +	if (aMark&EWrite)
   1.372 +		SetPos(EWrite,aPos);
   1.373 +	}
   1.374 +
   1.375 +TInt TBufBuf::Pos(TMark aMark) const
   1.376 +//
   1.377 +// Return the buffer position for the mark indicated by aMark.
   1.378 +//
   1.379 +	{
   1.380 +	if (aMark==ERead)
   1.381 +		return Pos(ERead);
   1.382 +//
   1.383 +	__ASSERT_ALWAYS(aMark==EWrite,Panic(EMemMarkInvalid));
   1.384 +	return Pos(EWrite);
   1.385 +	}
   1.386 +