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(__U32FRAME_H__)
17 #define __U32FRAME_H__
18 #if !defined(__S32SHARE_H__)
22 #if defined(_DEBUG)&&!defined(__SMALL_FRAME)
23 //#define __SMALL_FRAME
30 EFrameDescriptive16=0x8000,
31 EFrameContinuation16=0xc000
33 typedef TUint16 TFrameDes16;
34 const TInt KSizeFrameDes16=sizeof(TFrameDes16);
35 const TInt KShiftFrameDes16=1;
37 const TInt KMaskFrame16=0xffff;
38 const TInt KMaskFrameType16=0xc000;
39 #if defined(__SMALL_FRAME)
40 const TInt KMaskFrameLength16=0xf;
41 const TInt KShiftFrameLength16=4;
43 const TInt KMaskFrameLength16=0x3fff;
44 const TInt KShiftFrameLength16=14;
47 const TInt KFrameOpen16=0;
48 const TInt KFrameMinLength16=1;
49 const TInt KFrameMaxLength16=KMaskFrameLength16;
50 const TInt KFrameFullLength16=KMaskFrameLength16+1;
52 const TInt KFrameNonexistent16=-1;
54 NONSHARABLE_CLASS(RFrame16Buf) : public MStreamBuf
57 static TInt Offset(TStreamPos aBase,TStreamPos aPos);
58 static TStreamPos Position(TStreamPos aBase,TInt anOffset);
60 RFrame16Buf(TStreamPos aBase);
61 inline TStreamPos Base() const;
62 inline TInt Offset(TStreamPos aPos) const;
63 inline TStreamPos Position(TInt anOffset) const;
65 TInt ExtendL(TStreamExchange& aHost,TInt anExtent,TInt aMode=ERead|EWrite);
66 void OpenL(TStreamExchange& aHost,TInt anOffset,TInt aMode=ERead|EWrite);
67 void Set(TStreamExchange& aHost,TInt anOffset,TInt anExtent,TInt aMode=ERead|EWrite);
69 inline TInt Offset() const;
70 inline TInt Extent() const;
72 inline TBool IsCommitted() const;
78 TInt DoReadL(TAny* aPtr,TInt aMaxLength);
79 TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
80 TStreamTransfer DoReadL(MStreamInput& anInput,TStreamTransfer aTransfer);
81 void DoWriteL(const TAny* aPtr,TInt aLength);
82 TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
83 TStreamTransfer DoWriteL(MStreamOutput& anOutput,TStreamTransfer aTransfer);
84 TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
86 inline TStreamExchange& Host() const;
89 TBool ReachL(TInt anOffset);
93 TStreamExchange* iHost;
96 TStreamMark iRMark,iWMark;
102 #include "U32FRAME.INL"