sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#if !defined(STORE_INC_U32STD_H)
|
sl@0
|
17 |
#define STORE_INC_U32STD_H
|
sl@0
|
18 |
#if !defined(__S32STD_H__)
|
sl@0
|
19 |
#include <s32std.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
#if !defined(__S32SHARE_H__)
|
sl@0
|
22 |
#include <s32share.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
#if defined(_DEBUG)
|
sl@0
|
26 |
#define __DEBUG(s) s
|
sl@0
|
27 |
#define __LEAVE(r) Util::__DbgLeave(r,_L8(__FILE__),__LINE__)
|
sl@0
|
28 |
#define __LEAVE_NO_MEMORY() Util::__DbgLeaveNoMemory(_L8(__FILE__),__LINE__)
|
sl@0
|
29 |
#define __LEAVE_IF_ERROR(r) Util::__DbgLeaveIfError(r,_L8(__FILE__),__LINE__)
|
sl@0
|
30 |
#define __LEAVE_IF_NULL(p) Util::__DbgLeaveIfNull(p,_L8(__FILE__),__LINE__)
|
sl@0
|
31 |
#else
|
sl@0
|
32 |
#define __DEBUG(s)
|
sl@0
|
33 |
#define __LEAVE(r) User::Leave(r)
|
sl@0
|
34 |
#define __LEAVE_NO_MEMORY() User::LeaveNoMemory()
|
sl@0
|
35 |
#define __LEAVE_IF_ERROR(r) User::LeaveIfError(r)
|
sl@0
|
36 |
#define __LEAVE_IF_NULL(p) User::LeaveIfNull(p)
|
sl@0
|
37 |
#endif
|
sl@0
|
38 |
|
sl@0
|
39 |
class Util
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
#if defined (_DEBUG)
|
sl@0
|
43 |
static void __DbgLeave(TInt aReason,const TDesC8& aFileName,TInt aLineNo);
|
sl@0
|
44 |
static void __DbgLeaveNoMemory(const TDesC8& aFileName,TInt aLineNo);
|
sl@0
|
45 |
static TInt __DbgLeaveIfError(TInt aReason,const TDesC8& aFileName,TInt aLineNo);
|
sl@0
|
46 |
static TAny *__DbgLeaveIfNull(TAny *aPtr,const TDesC8& aFileName,TInt aLineNo);
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
};
|
sl@0
|
49 |
//
|
sl@0
|
50 |
template <class T>
|
sl@0
|
51 |
class TCapture
|
sl@0
|
52 |
{
|
sl@0
|
53 |
public:
|
sl@0
|
54 |
inline TCapture(T& aRef);
|
sl@0
|
55 |
inline T& Object() const;
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
T* iPtr;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
//
|
sl@0
|
60 |
class TDesHeader
|
sl@0
|
61 |
{
|
sl@0
|
62 |
public:
|
sl@0
|
63 |
TDesHeader() {}
|
sl@0
|
64 |
inline TDesHeader(const TDesC8& aDes8);
|
sl@0
|
65 |
inline TDesHeader(const TDesC16& aDes16);
|
sl@0
|
66 |
inline TDesHeader& operator=(const TDesC8& aDes8);
|
sl@0
|
67 |
inline TDesHeader& operator=(const TDesC16& aDes16);
|
sl@0
|
68 |
//
|
sl@0
|
69 |
inline TBool IsWidth8() const;
|
sl@0
|
70 |
inline TBool IsWidth16() const;
|
sl@0
|
71 |
inline TInt Length() const;
|
sl@0
|
72 |
//
|
sl@0
|
73 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
74 |
inline void InternalizeL(RReadStream& aStream);
|
sl@0
|
75 |
private:
|
sl@0
|
76 |
TCardinality iVal;
|
sl@0
|
77 |
};
|
sl@0
|
78 |
class TDesInternalizer
|
sl@0
|
79 |
{
|
sl@0
|
80 |
public:
|
sl@0
|
81 |
inline const TDesHeader& Header() const;
|
sl@0
|
82 |
inline TDesHeader& Header();
|
sl@0
|
83 |
//
|
sl@0
|
84 |
void operator()(TDes8& aDes8,RReadStream& aStream) const;
|
sl@0
|
85 |
void operator()(TDes16& aDes16,RReadStream& aStream) const;
|
sl@0
|
86 |
void ReadDesc8L (TDes8& aDes8,RReadStream& aStream) const;
|
sl@0
|
87 |
void ReadDesc16L (TDes16& aDes16,RReadStream& aStream) const;
|
sl@0
|
88 |
private:
|
sl@0
|
89 |
TDesHeader iHeader;
|
sl@0
|
90 |
};
|
sl@0
|
91 |
//
|
sl@0
|
92 |
NONSHARABLE_CLASS(TPtrInput) : public MStreamInput
|
sl@0
|
93 |
{
|
sl@0
|
94 |
public:
|
sl@0
|
95 |
inline TPtrInput(TAny* aPtr);
|
sl@0
|
96 |
//
|
sl@0
|
97 |
TInt PushL(const TAny* aPtr,TInt aMaxLength);
|
sl@0
|
98 |
TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
|
sl@0
|
99 |
private:
|
sl@0
|
100 |
TUint8* iPtr;
|
sl@0
|
101 |
};
|
sl@0
|
102 |
//
|
sl@0
|
103 |
NONSHARABLE_CLASS(TPtrOutput) : public MStreamOutput
|
sl@0
|
104 |
{
|
sl@0
|
105 |
public:
|
sl@0
|
106 |
inline TPtrOutput(const TAny* aPtr);
|
sl@0
|
107 |
//
|
sl@0
|
108 |
TInt PullL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
109 |
TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer);
|
sl@0
|
110 |
private:
|
sl@0
|
111 |
const TUint8* iPtr;
|
sl@0
|
112 |
};
|
sl@0
|
113 |
//
|
sl@0
|
114 |
NONSHARABLE_CLASS(HDirectStoreBuf) : public RShareBuf
|
sl@0
|
115 |
{
|
sl@0
|
116 |
public:
|
sl@0
|
117 |
static HDirectStoreBuf* CreateL(TStreamExchange& aHost,TStreamId& anId,TInt aMode=ERead|EWrite);
|
sl@0
|
118 |
static HDirectStoreBuf* OpenL(TStreamExchange& aHost,TStreamId anId,TInt aMode=ERead|EWrite);
|
sl@0
|
119 |
//
|
sl@0
|
120 |
virtual inline ~HDirectStoreBuf();
|
sl@0
|
121 |
private:
|
sl@0
|
122 |
static HDirectStoreBuf* NewL(TStreamExchange& aHost,TInt anOffset,TInt aMode);
|
sl@0
|
123 |
inline HDirectStoreBuf(TInt anOffset);
|
sl@0
|
124 |
//
|
sl@0
|
125 |
void DoRelease();
|
sl@0
|
126 |
TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
|
sl@0
|
127 |
private:
|
sl@0
|
128 |
TInt iOff;
|
sl@0
|
129 |
};
|
sl@0
|
130 |
//
|
sl@0
|
131 |
template <class T>
|
sl@0
|
132 |
inline TCapture<T> Capture(T& aRef)
|
sl@0
|
133 |
{return TCapture<T>(aRef);}
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
#include "U32STD.INL"
|
sl@0
|
137 |
#endif
|