os/persistentdata/persistentstorage/store/USTRM/US_UTL.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 <s32ucmp.h>
    17 #include "US_STD.H"
    18 
    19 #pragma BullseyeCoverage off
    20 
    21 //
    22 // Panic the process with STORE-Stream as the category.
    23 //
    24 GLDEF_C void Panic(TStreamPanic aPanic)
    25 	{
    26 	_LIT(KCategory,"STORE-Stream");
    27 	User::Panic(KCategory,aPanic);
    28 	}
    29 
    30 #pragma BullseyeCoverage on
    31 
    32 EXPORT_C void TCardinality::ExternalizeL(RWriteStream& aStream) const
    33 /** Externalises this object to a write stream.
    34 
    35 The existence of this function means that the standard templated operator<<() 
    36 can be used to externalise objects of this class.
    37 
    38 @param aStream Stream to which the object should be externalised.
    39 @see operator<<() */
    40 	{
    41 	TUint n=iCount;
    42 	if (n<=(KMaxTUint8>>KShiftCardinality8))
    43 		aStream.WriteUint8L((n<<KShiftCardinality8));
    44 	else if (n<=(KMaxTUint16>>KShiftCardinality16))
    45 		aStream.WriteUint16L((n<<KShiftCardinality16)+0x1);
    46 	else
    47 		{
    48 		__ASSERT_DEBUG(n<=(TUint)KMaxCardinality,Panic(EStreamCardinalityOutOfRange));
    49 		aStream.WriteUint32L((n<<KShiftCardinality32)+0x3);
    50 		}
    51 	}
    52 
    53 EXPORT_C void TCardinality::InternalizeL(RReadStream& aStream)
    54 /** Internalizes this object from a read stream.
    55 
    56 The existence of this function means that the standard templated operator>>() 
    57 can be used to internalise objects of this class.
    58 
    59 @param aStream Stream store from which the objet is to be internalised.
    60 @see operator>>() */
    61 	{
    62 	TUint n=aStream.ReadUint8L();
    63 	if ((n&0x1)==0)
    64 		n>>=KShiftCardinality8;
    65 	else if ((n&0x2)==0)
    66 		{
    67 		n+=aStream.ReadUint8L()<<8;
    68 		n>>=KShiftCardinality16;
    69 		}
    70 	else if ((n&0x4)==0)
    71 		{
    72 		aStream.ReadL((TUint8*)&iCount,sizeof(TUint32)-sizeof(TUint8));
    73 		n+=TUint(iCount)<<8; // platform dependency
    74 		n>>=KShiftCardinality32;
    75 		}
    76 	else
    77 		__LEAVE(KErrCorrupt);
    78 //
    79 	__ASSERT_DEBUG(n<=(TUint)KMaxCardinality,User::Invariant());
    80 	iCount=n;
    81 	}
    82 
    83 // An MUnicodeSink implementation to write Unicode values into 8-bit bytes; anything outside 0..255 becomes 1
    84 #ifdef _UNICODE
    85 class TNarrowUnicodeSink: public MUnicodeSink
    86 	{
    87 	public:
    88 	TNarrowUnicodeSink(TUint8* aPtr): iPtr(aPtr) { }
    89 	void WriteUnicodeValueL(TUint16 aValue) { *iPtr++ = (TUint8)(aValue > 255 ? 1 : aValue); }
    90 
    91 	private:
    92 	TUint8* iPtr;
    93 	};
    94 #endif
    95 
    96 void TDesInternalizer::operator()(TDes8& aDes8,RReadStream& aStream) const
    97 //
    98 // Read an 8-bit descriptor in from aStream.
    99 //
   100 	{
   101 	TInt len=iHeader.Length();
   102 	if (len>aDes8.MaxLength())
   103 		__LEAVE(KErrOverflow);
   104 //
   105 	TUint8* ptr=(TUint8*)aDes8.Ptr();
   106 	if (iHeader.IsWidth8())
   107 		aStream.ReadL(ptr,len);
   108 	else
   109 		{
   110 		__ASSERT_DEBUG(iHeader.IsWidth16(),User::Invariant());
   111 #ifdef _UNICODE
   112 		// In the Unicode build 16-bit descriptors need to be expanded from the Standard Unicode Compression Scheme.
   113 		TNarrowUnicodeSink sink(ptr);
   114 		TUnicodeExpander expander;
   115 		expander.ExpandL(sink,aStream,len);
   116 
   117 #else
   118 		TUint8* end=ptr+len;
   119 		while (ptr!=end)
   120 			{
   121 			TUint c=aStream.ReadUint16L();
   122 			if (c>=0x100)
   123 				c=1;
   124 			*ptr++=TUint8(c);
   125 			}
   126 #endif
   127 		}
   128 	aDes8.SetLength(len);
   129 	}
   130 
   131 void TDesInternalizer::operator()(TDes16& aDes16,RReadStream& aStream) const
   132 //
   133 // Read a 16-bit descriptor in from aStream.
   134 //
   135 	{
   136 	TInt len=iHeader.Length();
   137 	if (len>aDes16.MaxLength())
   138 		__LEAVE(KErrOverflow);
   139 //
   140 	TUint16* ptr=(TUint16*)aDes16.Ptr();
   141 	if (iHeader.IsWidth16())
   142 		{
   143 #ifdef _UNICODE
   144 		// In the Unicode build 16-bit descriptors need to be expanded from the Standard Unicode Compression Scheme.
   145 		TMemoryUnicodeSink sink(ptr);
   146 		TUnicodeExpander expander;
   147 		expander.ExpandL(sink,aStream,len);
   148 
   149 #else
   150 		aStream.ReadL(ptr,len);
   151 #endif
   152 		}
   153 	else
   154 		{
   155 		__ASSERT_DEBUG(iHeader.IsWidth8(),User::Invariant());
   156 		TUint16* end=ptr+len;
   157 		while (ptr!=end)
   158 			*ptr++=aStream.ReadUint8L();
   159 		}
   160 	aDes16.SetLength(len);
   161 	}
   162 
   163 EXPORT_C void TStreamTransfer::__DbgChkNonNegative(TInt aLength)
   164 //
   165 // Check for a negative value.
   166 //
   167 	{
   168 	__ASSERT_ALWAYS(aLength>=0,Panic(EStreamTransferNegative));
   169 	}
   170 
   171 EXPORT_C void TCardinality::__DbgChkRange(TInt aCount)
   172 //
   173 // Check for a negative count.
   174 //
   175 	{
   176 	__ASSERT_ALWAYS(aCount<=KMaxCardinality,Panic(EStreamCardinalityOutOfRange));
   177 	}
   178