Update contrib.
1 // Copyright (c) 1998-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #if !defined(STORE_INC_U32STD_H)
17 #define STORE_INC_U32STD_H
18 #if !defined(__S32STD_H__)
21 #if !defined(__S32SHARE_H__)
27 #define __LEAVE(r) Util::__DbgLeave(r,_L8(__FILE__),__LINE__)
28 #define __LEAVE_NO_MEMORY() Util::__DbgLeaveNoMemory(_L8(__FILE__),__LINE__)
29 #define __LEAVE_IF_ERROR(r) Util::__DbgLeaveIfError(r,_L8(__FILE__),__LINE__)
30 #define __LEAVE_IF_NULL(p) Util::__DbgLeaveIfNull(p,_L8(__FILE__),__LINE__)
33 #define __LEAVE(r) User::Leave(r)
34 #define __LEAVE_NO_MEMORY() User::LeaveNoMemory()
35 #define __LEAVE_IF_ERROR(r) User::LeaveIfError(r)
36 #define __LEAVE_IF_NULL(p) User::LeaveIfNull(p)
43 static void __DbgLeave(TInt aReason,const TDesC8& aFileName,TInt aLineNo);
44 static void __DbgLeaveNoMemory(const TDesC8& aFileName,TInt aLineNo);
45 static TInt __DbgLeaveIfError(TInt aReason,const TDesC8& aFileName,TInt aLineNo);
46 static TAny *__DbgLeaveIfNull(TAny *aPtr,const TDesC8& aFileName,TInt aLineNo);
54 inline TCapture(T& aRef);
55 inline T& Object() const;
64 inline TDesHeader(const TDesC8& aDes8);
65 inline TDesHeader(const TDesC16& aDes16);
66 inline TDesHeader& operator=(const TDesC8& aDes8);
67 inline TDesHeader& operator=(const TDesC16& aDes16);
69 inline TBool IsWidth8() const;
70 inline TBool IsWidth16() const;
71 inline TInt Length() const;
73 inline void ExternalizeL(RWriteStream& aStream) const;
74 inline void InternalizeL(RReadStream& aStream);
78 class TDesInternalizer
81 inline const TDesHeader& Header() const;
82 inline TDesHeader& Header();
84 void operator()(TDes8& aDes8,RReadStream& aStream) const;
85 void operator()(TDes16& aDes16,RReadStream& aStream) const;
86 void ReadDesc8L (TDes8& aDes8,RReadStream& aStream) const;
87 void ReadDesc16L (TDes16& aDes16,RReadStream& aStream) const;
92 NONSHARABLE_CLASS(TPtrInput) : public MStreamInput
95 inline TPtrInput(TAny* aPtr);
97 TInt PushL(const TAny* aPtr,TInt aMaxLength);
98 TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
103 NONSHARABLE_CLASS(TPtrOutput) : public MStreamOutput
106 inline TPtrOutput(const TAny* aPtr);
108 TInt PullL(TAny* aPtr,TInt aMaxLength);
109 TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer);
114 NONSHARABLE_CLASS(HDirectStoreBuf) : public RShareBuf
117 static HDirectStoreBuf* CreateL(TStreamExchange& aHost,TStreamId& anId,TInt aMode=ERead|EWrite);
118 static HDirectStoreBuf* OpenL(TStreamExchange& aHost,TStreamId anId,TInt aMode=ERead|EWrite);
120 virtual inline ~HDirectStoreBuf();
122 static HDirectStoreBuf* NewL(TStreamExchange& aHost,TInt anOffset,TInt aMode);
123 inline HDirectStoreBuf(TInt anOffset);
126 TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
132 inline TCapture<T> Capture(T& aRef)
133 {return TCapture<T>(aRef);}
136 #include "U32STD.INL"