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