Update contrib.
1 // Copyright (c) 2006-2009 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.
17 #include <pcstore/storewritestream.h>
18 #include <pcstore/storereadstream.h>
19 #include <pcstore/descriptors.h>
20 #include <pcstore/storeexception.h>
21 #include "pcstoreconst.h"
22 #include "desheader.h"
27 Constructs the object with the specified value.
29 @param aCount The value for this object.
31 TCardinality::TCardinality(TInt aCount)
36 Externalizes this object to a write stream.
38 @param aStream The write stream to which the object should be externalized.
39 @exception TStoreException::EFileWriteError Error occurs when writing to the file.
41 void TCardinality::Externalize(CStoreWriteStream& aStream) const
45 if (n<=(KMaxTUint8>>KShiftCardinality8))
47 aStream.WriteUint8((n<<KShiftCardinality8));
51 if (n<=(KMaxTUint16>>KShiftCardinality16))
53 aStream.WriteUint16((n<<KShiftCardinality16)+0x1);
57 assert(n <= (TUint)KMaxCardinality);
58 aStream.WriteUint32((n<<KShiftCardinality32)+0x3);
64 Internalizes this object from a read stream.
66 @param aStream The read stream from which the object is to be internalized.
67 @exception TStoreException::EFileReadError Error occurs when reading from the file.
68 @exception TStoreException::EStoreCorrupt Store file is corrupted so that an invalid cardinal
71 void TCardinality::Internalize(CStoreReadStream& aStream)
73 TUint n=aStream.ReadUint8();
76 n>>=KShiftCardinality8;
82 n+=aStream.ReadUint8()<<8;
83 n>>=KShiftCardinality16;
89 aStream.Read(reinterpret_cast<TUint8*>(&iCount),sizeof(TUint32)-sizeof(TUint8));
91 n>>=KShiftCardinality32;
95 throw TStoreException(TStoreException::EStoreCorrupt);
99 assert(n <= static_cast<TUint>(KMaxCardinality));
104 Converts this object to TInt,
106 @return The value for this object
108 TCardinality::operator TInt() const
114 Constructs the header for the specified 8-bit descriptor.
116 @param aDes8 The reference to the 8-bit descriptor for which to form the header.
118 CDesHeader::CDesHeader(const CDes8& aDes8)
119 :iVal((aDes8.Length()<<1)+1)
123 Constructs the header for the specified 16-bit descriptor.
125 @param aDes16 The reference to the 16-bit descriptor for which to form the header.
127 CDesHeader::CDesHeader(const CDes16& aDes16)
128 :iVal((aDes16.Length()<<1))
132 Externalize the object to the specified write stream.
134 @param aStream The write stream to which the object should be externalized.
135 @exception TStoreException::EFileWriteError Error occurs when writing to the file.
137 void CDesHeader::Externalize(CStoreWriteStream& aStream) const
139 iVal.Externalize(aStream);
143 Internalizes the object from a read stream.
145 @param aStream The read stream from which the object is to be internalized.
146 @exception TStoreException::EStoreCorrupt Store file is corrupted so that an invalid cardinal
148 @exception TStoreException::EFileReadError Error occurs when reading from the file.
150 void CDesHeader::Internalize(CStoreReadStream& aStream)
152 iVal.Internalize(aStream);
156 Gets the length of the descriptor which this header represents.
158 @return The length of the descriptor which this header represents.
160 TInt CDesHeader::Length() const
162 return TInt(iVal)>>1;