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 |
inline TSourceOutput::TSourceOutput(MStreamBuf* aSource)
|
sl@0
|
17 |
: iSrc(aSource)
|
sl@0
|
18 |
{
|
sl@0
|
19 |
__ASSERT_DEBUG(aSource!=NULL,Panic(EStreamNotOpen));
|
sl@0
|
20 |
}
|
sl@0
|
21 |
|
sl@0
|
22 |
inline TFilterInput::TFilterInput(TStreamFilter& aFilter,TAny* aPtr,TInt aMaxLength)
|
sl@0
|
23 |
: iFltr(&aFilter),iPtr((TUint8*)aPtr),iLeft(aMaxLength)
|
sl@0
|
24 |
{}
|
sl@0
|
25 |
inline TBool TFilterInput::Done() const
|
sl@0
|
26 |
{return iLeft==0;}
|
sl@0
|
27 |
inline TBool TFilterInput::Eof() const
|
sl@0
|
28 |
{return iPtr==NULL;}
|
sl@0
|
29 |
inline TInt TFilterInput::Left() const
|
sl@0
|
30 |
{return iLeft;}
|
sl@0
|
31 |
|
sl@0
|
32 |
inline TFilterOutput::TFilterOutput(TStreamFilter& aFilter,const TAny* aPtr,TInt aLength)
|
sl@0
|
33 |
: iFltr(&aFilter),iFrom((TUint8*)aPtr),iEnd((TUint8*)aPtr+aLength)
|
sl@0
|
34 |
{}
|
sl@0
|
35 |
inline TBool TFilterOutput::Done() const
|
sl@0
|
36 |
{return iFrom==iEnd;}
|
sl@0
|
37 |
|
sl@0
|
38 |
inline TUint8* TDelimitedInput8::Ptr() const
|
sl@0
|
39 |
{return iPtr;}
|
sl@0
|
40 |
inline TInt TDelimitedInput8::Done() const
|
sl@0
|
41 |
{return iLeft==0;}
|
sl@0
|
42 |
|
sl@0
|
43 |
inline TUint16* TDelimitedInput16::Ptr() const
|
sl@0
|
44 |
{return iPtr;}
|
sl@0
|
45 |
inline TInt TDelimitedInput16::Done() const
|
sl@0
|
46 |
{return iLeft==0;}
|
sl@0
|
47 |
|
sl@0
|
48 |
inline TBool TStreamMark::IsTracking(TStreamMark*const& __DEBUG(aRef)) const
|
sl@0
|
49 |
{
|
sl@0
|
50 |
#if defined (_DEBUG)
|
sl@0
|
51 |
return iPos==KStreamBeginning-1-(TUint(&aRef)>>2);
|
sl@0
|
52 |
#else
|
sl@0
|
53 |
return IsEmpty();
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
}
|
sl@0
|
56 |
inline void TStreamMark::Track(TStreamMark*const& __DEBUG(aRef))
|
sl@0
|
57 |
{
|
sl@0
|
58 |
#if defined (_DEBUG)
|
sl@0
|
59 |
iPos=KStreamBeginning-1-(TUint(&aRef)>>2);
|
sl@0
|
60 |
__ASSERT_DEBUG(iPos<KStreamBeginning-1,User::Invariant());
|
sl@0
|
61 |
#else
|
sl@0
|
62 |
Clear();
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
inline MStreamBuf& TStreamExchange::BufL() const
|
sl@0
|
67 |
{
|
sl@0
|
68 |
if (iHost==NULL)
|
sl@0
|
69 |
User::Leave(KErrNotReady);
|
sl@0
|
70 |
return *iHost;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
inline MStreamBuf& TStreamExchange::Buf() const
|
sl@0
|
73 |
{
|
sl@0
|
74 |
__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
|
sl@0
|
75 |
return *iHost;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
inline TStreamExchange& RShareBuf::Host() const
|
sl@0
|
79 |
{
|
sl@0
|
80 |
__ASSERT_DEBUG(iHost!=NULL,User::Invariant());
|
sl@0
|
81 |
return *iHost;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|