os/security/securityanddataprivacytools/securitytools/certapp/store--/s32strm.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 #ifndef __S32STRM_H__
     2 #define __S32STRM_H__/*
     3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     4 * All rights reserved.
     5 * This component and the accompanying materials are made available
     6 * under the terms of the License "Eclipse Public License v1.0"
     7 * which accompanies this distribution, and is available
     8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     9 *
    10 * Initial Contributors:
    11 * Nokia Corporation - initial contribution.
    12 *
    13 * Contributors:
    14 *
    15 * Description: 
    16 *
    17 */
    18 
    19 
    20 #include <e32base.h>
    21 #include <s32buf.h>
    22 
    23 /**
    24  * @file
    25  * @internalComponent
    26  */
    27 
    28 namespace store_private 
    29 {
    30 class MemStreamBuf;
    31 class FileStreamBuf;
    32 };
    33 
    34 
    35 class RWriteStream;
    36 class RReadStream
    37 	{
    38 public:
    39 	RReadStream();
    40 	void Close();
    41 	IMPORT_C void Release();
    42 //
    43 	IMPORT_C void PushL();
    44 	inline void Pop();
    45 //
    46 	IMPORT_C void ReadL(TDes8& aDes);
    47 	IMPORT_C void ReadL(TDes8& aDes,TInt aLength);
    48 	IMPORT_C void ReadL(TDes8& aDes,TChar aDelim);
    49 	IMPORT_C void ReadL(TUint8* aPtr,TInt aLength);
    50 	IMPORT_C void ReadL(TInt aLength);
    51 	inline void ReadL(RWriteStream& aStream);
    52 	inline void ReadL(RWriteStream& aStream,TInt aLength);
    53 //
    54 	IMPORT_C void ReadL(TDes16& aDes);
    55 	IMPORT_C void ReadL(TDes16& aDes,TInt aLength);
    56 	IMPORT_C void ReadL(TDes16& aDes,TChar aDelim);
    57 	IMPORT_C void ReadL(TUint16* aPtr,TInt aLength);
    58 //
    59 	IMPORT_C TInt8 ReadInt8L();
    60 	IMPORT_C TInt16 ReadInt16L();
    61 	IMPORT_C TInt32 ReadInt32L();
    62 	IMPORT_C TUint8 ReadUint8L();
    63 	IMPORT_C TUint16 ReadUint16L();
    64 	IMPORT_C TUint32 ReadUint32L();
    65 
    66 protected:
    67 	friend class CPermanentFileStore;
    68 	MStreamBuf *iSrc; // Owned by store not this object
    69 	};
    70 
    71 
    72 class RWriteStream
    73 	{
    74 public:
    75 	RWriteStream();
    76 	IMPORT_C void Close();
    77 	IMPORT_C void Release();
    78 	IMPORT_C void CommitL();
    79 //
    80 //
    81 	IMPORT_C void WriteL(const TDesC8& aDes);
    82 	IMPORT_C void WriteL(const TDesC8& aDes,TInt aLength);
    83 	IMPORT_C void WriteL(const TUint8* aPtr,TInt aLength);
    84 	IMPORT_C void WriteL(RReadStream& aStream);
    85 	IMPORT_C void WriteL(RReadStream& aStream,TInt aLength);
    86 //
    87 	IMPORT_C void WriteL(const TDesC16& aDes);
    88 	IMPORT_C void WriteL(const TDesC16& aDes,TInt aLength);
    89 	IMPORT_C void WriteL(const TUint16* aPtr,TInt aLength);
    90 //
    91 	IMPORT_C void WriteInt8L(TInt aValue);
    92 	IMPORT_C void WriteInt16L(TInt aValue);
    93 	IMPORT_C void WriteInt32L(TInt32 aValue);
    94 	IMPORT_C void WriteUint8L(TUint aValue);
    95 	IMPORT_C void WriteUint16L(TUint aValue);
    96 	IMPORT_C void WriteUint32L(TUint32 aValue);
    97 protected:
    98 	friend class CPermanentFileStore;
    99 	MStreamBuf *iSnk;  // Owned by store not this object
   100 	};
   101 
   102 class TCardinality
   103 	{
   104 public:
   105 	TCardinality() : iCount(0) {}
   106 	inline TCardinality(TInt aCount);
   107 	inline operator TInt() const;
   108 //
   109 	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
   110 	IMPORT_C void InternalizeL(RReadStream& aStream);
   111 private:
   112 	TInt iCount;
   113 private:
   114 	IMPORT_C static void __DbgChkRange(TInt aCount);
   115 	};
   116 
   117 class TDesHeader
   118 	{
   119 public:
   120 	TDesHeader() {}
   121 	inline TDesHeader(const TDesC8& aDes8);
   122 	inline TDesHeader(const TDesC16& aDes16);
   123 	inline TDesHeader& operator=(const TDesC8& aDes8);
   124 	inline TDesHeader& operator=(const TDesC16& aDes16);
   125 //
   126 	inline TBool IsWidth8() const;
   127 	inline TBool IsWidth16() const;
   128 	inline TInt Length() const;
   129 //
   130 	inline void ExternalizeL(RWriteStream& aStream) const;
   131 	inline void InternalizeL(RReadStream& aStream);
   132 private:
   133 	TCardinality iVal;
   134 	};
   135 
   136 class TDesInternalizer
   137 	{
   138 public:
   139 	inline const TDesHeader& Header() const;
   140 	inline TDesHeader& Header();
   141 //
   142 	void operator()(TDes8& aDes8,RReadStream& aStream) const;
   143 	void operator()(TDes16& aDes16,RReadStream& aStream) const;
   144 	void ReadDesc8L (TDes8& aDes8,RReadStream& aStream) const;
   145 	void ReadDesc16L (TDes16& aDes16,RReadStream& aStream) const;
   146 private:
   147 	TDesHeader iHeader;
   148 	};
   149 
   150 
   151 class Externalize
   152 	{
   153 public:
   154 	/** Indicates that an object will be externalized by calling its 
   155 	ExternalizeL() member. */
   156 	class Member {};
   157 
   158 	/** Indicates that an object will be externalized by calling a global 
   159 	ExternalizeL() function. */
   160 	class Function {};
   161 	};
   162 
   163 /**
   164  * A class whose members are used to distinguish between the two variants of 
   165 the Symbian OS internal function DoInternalizeL(). 
   166 */
   167 class Internalize
   168 	{
   169 public:
   170 	/** Indicates that an object will be internalized by calling its 
   171 	InternalizeL() member. */
   172 	class Member {};
   173 
   174 	/** Indicates that an object will be internalized by calling a global 
   175 	InternalizeL() function. */
   176 	class Function {};
   177 	};
   178 
   179 
   180 template <class T>
   181 inline RWriteStream& operator<<(RWriteStream& aStream,const T& anObject);
   182 template <class T>
   183 inline RReadStream& operator>>(RReadStream& aStream,T& anObject);
   184 
   185 #include <s32strm.inl>
   186 
   187 #endif