os/persistentdata/persistentstorage/store/USTOR/UT_UTL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "UT_STD.H"
    17 
    18 #pragma BullseyeCoverage off
    19 
    20 //
    21 // Panic the process with STORE-Store as the category.
    22 //
    23 GLDEF_C void Panic(TStorePanic aPanic)
    24 	{
    25 	_LIT(KCategory,"STORE-Store");
    26 	User::Panic(KCategory,aPanic);
    27 	}
    28 
    29 #pragma BullseyeCoverage on
    30 
    31 EXPORT_C void TStreamId::InternalizeL(RReadStream& aStream)
    32 /** Internalises an object of this class from a read stream.
    33 
    34 The presence of this function means that the standard templated operator>>() 
    35 can be used to internalise objects of this class.
    36 
    37 Note that the function has assignment semantics. It replaces the old value 
    38 of the object with a new value read from the read stream.
    39 
    40 @param aStream Stream from which the object should be internalised. */
    41 	{
    42 	aStream>>iVal;
    43 	if (iVal>KMaxStreamIdValue)
    44 		__LEAVE(KErrCorrupt);
    45 	}
    46 
    47 EXPORT_C void MIncrementalCollector::DoRelease()
    48 /** Implementation of the public Release() function. This signals that client has 
    49 no further need of the object and all necessary clean-up should be done. e.g. 
    50 if the implementation object is allocated on the heap, it could be deleted. */
    51 	{}
    52 
    53 EXPORT_C void MIncrementalCollector::DoNextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal)
    54 /** Implementation of the public asynchronous NextL() function. The default implementation 
    55 invokes the synchronous form of DoNextL() and then reports the result by signalling 
    56 the request status.
    57 
    58 @param aStep The progress value from either the last NextL() increment of 
    59 from ResetL() if the reclamation/compaction was restarted. On return, 
    60 should contain the new progress value, which can be used in subsequent calls 
    61 to NextL(). This must be equal to, or less than, the previous value a 
    62 zero value must be used to indicate that the operation is complete.
    63 @param aStatus A status variable. KErrNone on successful completion, otherwise 
    64 another of the system-wide error codes.
    65 @param aTotal On return, should contain the total amount of free space in the 
    66 store. */
    67 	{
    68 	DoNextL(aStep(),aTotal());
    69 	TRequestStatus* stat=&aStatus;
    70 	User::RequestComplete(stat,KErrNone);
    71 	}
    72 
    73 HDirectStoreBuf* HDirectStoreBuf::CreateL(TStreamExchange& aHost,TStreamId& anId,TInt aMode)
    74 //
    75 // Create a stream buffer for a new 'direct' stream.
    76 //
    77 	{
    78 	TInt size=aHost.SizeL();
    79 	HDirectStoreBuf* buf=NewL(aHost,size,aMode);
    80 	anId=TStreamId(size);
    81 	return buf;
    82 	}
    83 
    84 HDirectStoreBuf* HDirectStoreBuf::OpenL(TStreamExchange& aHost,TStreamId anId,TInt aMode)
    85 //
    86 // Create a stream buffer for an existing 'direct' stream.
    87 //
    88 	{
    89 	HDirectStoreBuf* buf=NewL(aHost,anId.Value(),aMode);
    90 	return buf;
    91 	}
    92 
    93 HDirectStoreBuf* HDirectStoreBuf::NewL(TStreamExchange& aHost,TInt anOffset,TInt aMode)
    94 	{
    95 	HDirectStoreBuf* buf=new(ELeave) HDirectStoreBuf(anOffset);
    96 	buf->Open(aHost,TStreamPos(anOffset),aMode);
    97 	return buf;
    98 	}
    99 
   100 void HDirectStoreBuf::DoRelease()
   101 //
   102 // Finished with this stream buffer.
   103 //
   104 	{
   105 	delete this;
   106 	}
   107 
   108 TStreamPos HDirectStoreBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset)
   109 //
   110 // Position the mark(s) indicated by aMark at anOffset from aLocation.
   111 //
   112 	{
   113 	TInt off=iOff;
   114 	if (aLocation==EStreamBeginning)
   115 		anOffset+=off;
   116 	return RShareBuf::DoSeekL(aMark,aLocation,anOffset)-off;
   117 	}
   118 
   119 EXPORT_C void TStreamId::__DbgChkRange(TUint32 aValue)
   120 //
   121 // Check for values out of range.
   122 //
   123 	{
   124 	__ASSERT_ALWAYS(aValue<=KMaxStreamIdValue,Panic(EStoreIdOutOfRange));
   125 	}
   126