author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2006-2009 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 <assert.h> |
sl@0 | 17 |
#include <pcstore/storewritestream.h> |
sl@0 | 18 |
#include <pcstore/storereadstream.h> |
sl@0 | 19 |
#include <pcstore/descriptors.h> |
sl@0 | 20 |
#include <pcstore/storeexception.h> |
sl@0 | 21 |
#include "pcstoreconst.h" |
sl@0 | 22 |
#include "desheader.h" |
sl@0 | 23 |
|
sl@0 | 24 |
namespace PCStore |
sl@0 | 25 |
{ |
sl@0 | 26 |
/** |
sl@0 | 27 |
Constructs the object with the specified value. |
sl@0 | 28 |
|
sl@0 | 29 |
@param aCount The value for this object. |
sl@0 | 30 |
*/ |
sl@0 | 31 |
TCardinality::TCardinality(TInt aCount) |
sl@0 | 32 |
:iCount(aCount) |
sl@0 | 33 |
{} |
sl@0 | 34 |
|
sl@0 | 35 |
/** |
sl@0 | 36 |
Externalizes this object to a write stream. |
sl@0 | 37 |
|
sl@0 | 38 |
@param aStream The write stream to which the object should be externalized. |
sl@0 | 39 |
@exception TStoreException::EFileWriteError Error occurs when writing to the file. |
sl@0 | 40 |
*/ |
sl@0 | 41 |
void TCardinality::Externalize(CStoreWriteStream& aStream) const |
sl@0 | 42 |
{ |
sl@0 | 43 |
|
sl@0 | 44 |
TUint n=iCount; |
sl@0 | 45 |
if (n<=(KMaxTUint8>>KShiftCardinality8)) |
sl@0 | 46 |
{ |
sl@0 | 47 |
aStream.WriteUint8((n<<KShiftCardinality8)); |
sl@0 | 48 |
} |
sl@0 | 49 |
else |
sl@0 | 50 |
{ |
sl@0 | 51 |
if (n<=(KMaxTUint16>>KShiftCardinality16)) |
sl@0 | 52 |
{ |
sl@0 | 53 |
aStream.WriteUint16((n<<KShiftCardinality16)+0x1); |
sl@0 | 54 |
} |
sl@0 | 55 |
else |
sl@0 | 56 |
{ |
sl@0 | 57 |
assert(n <= (TUint)KMaxCardinality); |
sl@0 | 58 |
aStream.WriteUint32((n<<KShiftCardinality32)+0x3); |
sl@0 | 59 |
} |
sl@0 | 60 |
} |
sl@0 | 61 |
} |
sl@0 | 62 |
|
sl@0 | 63 |
/** |
sl@0 | 64 |
Internalizes this object from a read stream. |
sl@0 | 65 |
|
sl@0 | 66 |
@param aStream The read stream from which the object is to be internalized. |
sl@0 | 67 |
@exception TStoreException::EFileReadError Error occurs when reading from the file. |
sl@0 | 68 |
@exception TStoreException::EStoreCorrupt Store file is corrupted so that an invalid cardinal |
sl@0 | 69 |
number is read. |
sl@0 | 70 |
*/ |
sl@0 | 71 |
void TCardinality::Internalize(CStoreReadStream& aStream) |
sl@0 | 72 |
{ |
sl@0 | 73 |
TUint n=aStream.ReadUint8(); |
sl@0 | 74 |
if ((n&0x1)==0) |
sl@0 | 75 |
{ |
sl@0 | 76 |
n>>=KShiftCardinality8; |
sl@0 | 77 |
} |
sl@0 | 78 |
else |
sl@0 | 79 |
{ |
sl@0 | 80 |
if ((n&0x2)==0) |
sl@0 | 81 |
{ |
sl@0 | 82 |
n+=aStream.ReadUint8()<<8; |
sl@0 | 83 |
n>>=KShiftCardinality16; |
sl@0 | 84 |
} |
sl@0 | 85 |
else |
sl@0 | 86 |
{ |
sl@0 | 87 |
if ((n&0x4)==0) |
sl@0 | 88 |
{ |
sl@0 | 89 |
aStream.Read(reinterpret_cast<TUint8*>(&iCount),sizeof(TUint32)-sizeof(TUint8)); |
sl@0 | 90 |
n+=TUint(iCount)<<8; |
sl@0 | 91 |
n>>=KShiftCardinality32; |
sl@0 | 92 |
} |
sl@0 | 93 |
else |
sl@0 | 94 |
{ |
sl@0 | 95 |
throw TStoreException(TStoreException::EStoreCorrupt); |
sl@0 | 96 |
} |
sl@0 | 97 |
} |
sl@0 | 98 |
} |
sl@0 | 99 |
assert(n <= static_cast<TUint>(KMaxCardinality)); |
sl@0 | 100 |
iCount=n; |
sl@0 | 101 |
} |
sl@0 | 102 |
|
sl@0 | 103 |
/** |
sl@0 | 104 |
Converts this object to TInt, |
sl@0 | 105 |
|
sl@0 | 106 |
@return The value for this object |
sl@0 | 107 |
*/ |
sl@0 | 108 |
TCardinality::operator TInt() const |
sl@0 | 109 |
{ |
sl@0 | 110 |
return iCount; |
sl@0 | 111 |
} |
sl@0 | 112 |
|
sl@0 | 113 |
/** |
sl@0 | 114 |
Constructs the header for the specified 8-bit descriptor. |
sl@0 | 115 |
|
sl@0 | 116 |
@param aDes8 The reference to the 8-bit descriptor for which to form the header. |
sl@0 | 117 |
*/ |
sl@0 | 118 |
CDesHeader::CDesHeader(const CDes8& aDes8) |
sl@0 | 119 |
:iVal((aDes8.Length()<<1)+1) |
sl@0 | 120 |
{} |
sl@0 | 121 |
|
sl@0 | 122 |
/** |
sl@0 | 123 |
Constructs the header for the specified 16-bit descriptor. |
sl@0 | 124 |
|
sl@0 | 125 |
@param aDes16 The reference to the 16-bit descriptor for which to form the header. |
sl@0 | 126 |
*/ |
sl@0 | 127 |
CDesHeader::CDesHeader(const CDes16& aDes16) |
sl@0 | 128 |
:iVal((aDes16.Length()<<1)) |
sl@0 | 129 |
{} |
sl@0 | 130 |
|
sl@0 | 131 |
/** |
sl@0 | 132 |
Externalize the object to the specified write stream. |
sl@0 | 133 |
|
sl@0 | 134 |
@param aStream The write stream to which the object should be externalized. |
sl@0 | 135 |
@exception TStoreException::EFileWriteError Error occurs when writing to the file. |
sl@0 | 136 |
*/ |
sl@0 | 137 |
void CDesHeader::Externalize(CStoreWriteStream& aStream) const |
sl@0 | 138 |
{ |
sl@0 | 139 |
iVal.Externalize(aStream); |
sl@0 | 140 |
} |
sl@0 | 141 |
|
sl@0 | 142 |
/** |
sl@0 | 143 |
Internalizes the object from a read stream. |
sl@0 | 144 |
|
sl@0 | 145 |
@param aStream The read stream from which the object is to be internalized. |
sl@0 | 146 |
@exception TStoreException::EStoreCorrupt Store file is corrupted so that an invalid cardinal |
sl@0 | 147 |
number is read. |
sl@0 | 148 |
@exception TStoreException::EFileReadError Error occurs when reading from the file. |
sl@0 | 149 |
*/ |
sl@0 | 150 |
void CDesHeader::Internalize(CStoreReadStream& aStream) |
sl@0 | 151 |
{ |
sl@0 | 152 |
iVal.Internalize(aStream); |
sl@0 | 153 |
} |
sl@0 | 154 |
|
sl@0 | 155 |
/** |
sl@0 | 156 |
Gets the length of the descriptor which this header represents. |
sl@0 | 157 |
|
sl@0 | 158 |
@return The length of the descriptor which this header represents. |
sl@0 | 159 |
*/ |
sl@0 | 160 |
TInt CDesHeader::Length() const |
sl@0 | 161 |
{ |
sl@0 | 162 |
return TInt(iVal)>>1; |
sl@0 | 163 |
} |
sl@0 | 164 |
} |