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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #pragma BullseyeCoverage off
22 // Panic the process with STORE-Stream as the category.
24 GLDEF_C void Panic(TStreamPanic aPanic)
26 _LIT(KCategory,"STORE-Stream");
27 User::Panic(KCategory,aPanic);
30 #pragma BullseyeCoverage on
32 EXPORT_C void TCardinality::ExternalizeL(RWriteStream& aStream) const
33 /** Externalises this object to a write stream.
35 The existence of this function means that the standard templated operator<<()
36 can be used to externalise objects of this class.
38 @param aStream Stream to which the object should be externalised.
42 if (n<=(KMaxTUint8>>KShiftCardinality8))
43 aStream.WriteUint8L((n<<KShiftCardinality8));
44 else if (n<=(KMaxTUint16>>KShiftCardinality16))
45 aStream.WriteUint16L((n<<KShiftCardinality16)+0x1);
48 __ASSERT_DEBUG(n<=(TUint)KMaxCardinality,Panic(EStreamCardinalityOutOfRange));
49 aStream.WriteUint32L((n<<KShiftCardinality32)+0x3);
53 EXPORT_C void TCardinality::InternalizeL(RReadStream& aStream)
54 /** Internalizes this object from a read stream.
56 The existence of this function means that the standard templated operator>>()
57 can be used to internalise objects of this class.
59 @param aStream Stream store from which the objet is to be internalised.
62 TUint n=aStream.ReadUint8L();
64 n>>=KShiftCardinality8;
67 n+=aStream.ReadUint8L()<<8;
68 n>>=KShiftCardinality16;
72 aStream.ReadL((TUint8*)&iCount,sizeof(TUint32)-sizeof(TUint8));
73 n+=TUint(iCount)<<8; // platform dependency
74 n>>=KShiftCardinality32;
79 __ASSERT_DEBUG(n<=(TUint)KMaxCardinality,User::Invariant());
83 // An MUnicodeSink implementation to write Unicode values into 8-bit bytes; anything outside 0..255 becomes 1
85 class TNarrowUnicodeSink: public MUnicodeSink
88 TNarrowUnicodeSink(TUint8* aPtr): iPtr(aPtr) { }
89 void WriteUnicodeValueL(TUint16 aValue) { *iPtr++ = (TUint8)(aValue > 255 ? 1 : aValue); }
96 void TDesInternalizer::operator()(TDes8& aDes8,RReadStream& aStream) const
98 // Read an 8-bit descriptor in from aStream.
101 TInt len=iHeader.Length();
102 if (len>aDes8.MaxLength())
103 __LEAVE(KErrOverflow);
105 TUint8* ptr=(TUint8*)aDes8.Ptr();
106 if (iHeader.IsWidth8())
107 aStream.ReadL(ptr,len);
110 __ASSERT_DEBUG(iHeader.IsWidth16(),User::Invariant());
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);
121 TUint c=aStream.ReadUint16L();
128 aDes8.SetLength(len);
131 void TDesInternalizer::operator()(TDes16& aDes16,RReadStream& aStream) const
133 // Read a 16-bit descriptor in from aStream.
136 TInt len=iHeader.Length();
137 if (len>aDes16.MaxLength())
138 __LEAVE(KErrOverflow);
140 TUint16* ptr=(TUint16*)aDes16.Ptr();
141 if (iHeader.IsWidth16())
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);
150 aStream.ReadL(ptr,len);
155 __ASSERT_DEBUG(iHeader.IsWidth8(),User::Invariant());
156 TUint16* end=ptr+len;
158 *ptr++=aStream.ReadUint8L();
160 aDes16.SetLength(len);
163 EXPORT_C void TStreamTransfer::__DbgChkNonNegative(TInt aLength)
165 // Check for a negative value.
168 __ASSERT_ALWAYS(aLength>=0,Panic(EStreamTransferNegative));
171 EXPORT_C void TCardinality::__DbgChkRange(TInt aCount)
173 // Check for a negative count.
176 __ASSERT_ALWAYS(aCount<=KMaxCardinality,Panic(EStreamCardinalityOutOfRange));