First public contribution.
2 #define __S32STRM_H__/*
3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
28 namespace store_private
41 IMPORT_C void Release();
43 IMPORT_C void PushL();
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);
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);
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();
67 friend class CPermanentFileStore;
68 MStreamBuf *iSrc; // Owned by store not this object
76 IMPORT_C void Close();
77 IMPORT_C void Release();
78 IMPORT_C void CommitL();
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);
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);
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);
98 friend class CPermanentFileStore;
99 MStreamBuf *iSnk; // Owned by store not this object
105 TCardinality() : iCount(0) {}
106 inline TCardinality(TInt aCount);
107 inline operator TInt() const;
109 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
110 IMPORT_C void InternalizeL(RReadStream& aStream);
114 IMPORT_C static void __DbgChkRange(TInt aCount);
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);
126 inline TBool IsWidth8() const;
127 inline TBool IsWidth16() const;
128 inline TInt Length() const;
130 inline void ExternalizeL(RWriteStream& aStream) const;
131 inline void InternalizeL(RReadStream& aStream);
136 class TDesInternalizer
139 inline const TDesHeader& Header() const;
140 inline TDesHeader& Header();
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;
154 /** Indicates that an object will be externalized by calling its
155 ExternalizeL() member. */
158 /** Indicates that an object will be externalized by calling a global
159 ExternalizeL() function. */
164 * A class whose members are used to distinguish between the two variants of
165 the Symbian OS internal function DoInternalizeL().
170 /** Indicates that an object will be internalized by calling its
171 InternalizeL() member. */
174 /** Indicates that an object will be internalized by calling a global
175 InternalizeL() function. */
181 inline RWriteStream& operator<<(RWriteStream& aStream,const T& anObject);
183 inline RReadStream& operator>>(RReadStream& aStream,T& anObject);
185 #include <s32strm.inl>