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