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.
19 const TInt KShiftCardinality8=1;
20 const TInt KShiftCardinality16=2;
21 const TInt KShiftCardinality32=3;
23 const TInt KDefaultIoBufSize=0xc00;
24 const TInt KFilterIoBufSize=0x100;
26 NONSHARABLE_CLASS(TNullInput) : public MStreamInput
29 TInt PushL(const TAny* aPtr,TInt aMaxLength);
30 TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
33 NONSHARABLE_CLASS(TSourceOutput) : public MStreamOutput
36 inline TSourceOutput(MStreamBuf* aSource);
38 TInt PullL(TAny* aPtr,TInt aMaxLength);
39 TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer);
44 NONSHARABLE_CLASS(TFilterInput) : public MStreamInput
47 inline TFilterInput(TStreamFilter& aFilter,TAny* aPtr,TInt aMaxLength);
48 inline TBool Done() const;
49 inline TBool Eof() const;
50 inline TInt Left() const;
52 TInt PushL(const TAny* aPtr,TInt aMaxLength);
53 TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
59 NONSHARABLE_CLASS(TFilterOutput) : public MStreamOutput
62 inline TFilterOutput(TStreamFilter& aFilter,const TAny* aPtr,TInt aLength);
63 inline TBool Done() const;
65 TInt PullL(TAny* aPtr,TInt aMaxLength);
66 TStreamTransfer WriteToL(MStreamBuf& aSink,TStreamTransfer aTransfer);
73 NONSHARABLE_CLASS(TDelimitedInput8) : public MStreamInput
76 TDelimitedInput8(TUint8* aPtr,TInt aLength,TChar aDelim);
77 inline TUint8* Ptr() const;
78 inline TInt Done() const;
80 TInt PushL(const TAny* aPtr,TInt aMaxLength);
81 TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
87 NONSHARABLE_CLASS(TDelimitedInput16) : public MStreamInput
90 TDelimitedInput16(TUint16* aPtr,TInt aLength,TChar aDelim);
91 inline TUint16* Ptr() const;
92 inline TInt Done() const;
94 TInt PushL(const TAny* aPtr,TInt aMaxLength);
95 TStreamTransfer ReadFromL(MStreamBuf& aSource,TStreamTransfer aTransfer);
105 EStreamReadLengthNegative,
106 EStreamReadBeyondEnd,
107 EStreamReadNoTransfer,
109 EStreamWriteLengthNegative,
110 EStreamWriteBeyondEnd,
111 EStreamWriteNoTransfer,
112 EStreamWriteInBreach,
113 EStreamDoesNotUnderstand,
117 EStreamTransferNegative,
120 EStreamLocationInvalid,
123 EStreamUnderflowInBreach,
124 EStreamOverflowInBreach,
125 EStreamFilterInBreach,
126 EStreamPushLengthNegative,
127 EStreamPushNoTransfer,
129 EStreamPullLengthNegative,
130 EStreamPullNoTransfer,
132 EStreamCardinalityOutOfRange,
133 EStreamOffsetNegative,
134 EStreamExtentNegative,
139 GLREF_C void Panic(TStreamPanic aPanic);
141 #include "US_STD.INL"