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