os/persistentdata/persistentstorage/store/pcstore/src/desheader.h
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 #if !defined(__DESHEADER_H__)
    17 #define __DESHEADER_H__
    18 
    19 #include <pcstore/pcstoredef.h>
    20 
    21 namespace PCStore
    22 {
    23 class CStoreWriteStream;
    24 class CStoreReadStream;
    25 class CDes8;
    26 class CDes16;
    27 
    28 /**
    29 @internalComponent
    30 
    31 Compact stream format for positive integer values in the range 0 to 536,870,911 ((2^29)-1). Values 
    32 in the range 0-127 are stored in a single byte, 128-16383 in two bytes and other values in 4 bytes.
    33 
    34 The class provides conversion to and from TInt, and both externalization and internalization functions. 
    35 */
    36 class TCardinality
    37 	{
    38 public:
    39 	TCardinality(): iCount(0) {};
    40 	TCardinality(TInt aCount);
    41 
    42 	void Externalize(CStoreWriteStream& aStream) const;
    43 	void Internalize(CStoreReadStream& aStream);
    44 	operator TInt() const;
    45 
    46 private:
    47 	TUint iCount;
    48 	};
    49 
    50 /**
    51 @internalComponent
    52 
    53 Class for the header information of CDes8 and CDes16.
    54 
    55 The header information of CDes8 and CDes16 includes the data width (8 or 16 bits) and length. 
    56 This class forms the header information from the given CDes8 or CDes16 data and stores it into 
    57 a TCardinality object.  It also provides the member functions to externalize / internalize 
    58 itself to / from a stream.
    59 */
    60 class CDesHeader
    61 	{
    62 public:
    63 	CDesHeader() {}
    64 	CDesHeader(const CDes8& aDes8);
    65 	CDesHeader(const CDes16& aDes16);
    66 
    67 	void Externalize(CStoreWriteStream& aStream) const;
    68 	void Internalize(CStoreReadStream& aStream);
    69 	TInt Length() const;
    70 
    71 private:
    72 	TCardinality iVal;
    73 	};
    74 }
    75 #endif // !defined(__DESHEADER_H__)