1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/USTRM/US_STD.INL Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,83 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +inline TSourceOutput::TSourceOutput(MStreamBuf* aSource)
1.20 + : iSrc(aSource)
1.21 + {
1.22 + __ASSERT_DEBUG(aSource!=NULL,Panic(EStreamNotOpen));
1.23 + }
1.24 +
1.25 +inline TFilterInput::TFilterInput(TStreamFilter& aFilter,TAny* aPtr,TInt aMaxLength)
1.26 + : iFltr(&aFilter),iPtr((TUint8*)aPtr),iLeft(aMaxLength)
1.27 + {}
1.28 +inline TBool TFilterInput::Done() const
1.29 + {return iLeft==0;}
1.30 +inline TBool TFilterInput::Eof() const
1.31 + {return iPtr==NULL;}
1.32 +inline TInt TFilterInput::Left() const
1.33 + {return iLeft;}
1.34 +
1.35 +inline TFilterOutput::TFilterOutput(TStreamFilter& aFilter,const TAny* aPtr,TInt aLength)
1.36 + : iFltr(&aFilter),iFrom((TUint8*)aPtr),iEnd((TUint8*)aPtr+aLength)
1.37 + {}
1.38 +inline TBool TFilterOutput::Done() const
1.39 + {return iFrom==iEnd;}
1.40 +
1.41 +inline TUint8* TDelimitedInput8::Ptr() const
1.42 + {return iPtr;}
1.43 +inline TInt TDelimitedInput8::Done() const
1.44 + {return iLeft==0;}
1.45 +
1.46 +inline TUint16* TDelimitedInput16::Ptr() const
1.47 + {return iPtr;}
1.48 +inline TInt TDelimitedInput16::Done() const
1.49 + {return iLeft==0;}
1.50 +
1.51 +inline TBool TStreamMark::IsTracking(TStreamMark*const& __DEBUG(aRef)) const
1.52 + {
1.53 +#if defined (_DEBUG)
1.54 + return iPos==KStreamBeginning-1-(TUint(&aRef)>>2);
1.55 +#else
1.56 + return IsEmpty();
1.57 +#endif
1.58 + }
1.59 +inline void TStreamMark::Track(TStreamMark*const& __DEBUG(aRef))
1.60 + {
1.61 +#if defined (_DEBUG)
1.62 + iPos=KStreamBeginning-1-(TUint(&aRef)>>2);
1.63 + __ASSERT_DEBUG(iPos<KStreamBeginning-1,User::Invariant());
1.64 +#else
1.65 + Clear();
1.66 +#endif
1.67 + }
1.68 +
1.69 +inline MStreamBuf& TStreamExchange::BufL() const
1.70 + {
1.71 + if (iHost==NULL)
1.72 + User::Leave(KErrNotReady);
1.73 + return *iHost;
1.74 + }
1.75 +inline MStreamBuf& TStreamExchange::Buf() const
1.76 + {
1.77 + __ASSERT_DEBUG(iHost!=NULL,User::Invariant());
1.78 + return *iHost;
1.79 + }
1.80 +
1.81 +inline TStreamExchange& RShareBuf::Host() const
1.82 + {
1.83 + __ASSERT_DEBUG(iHost!=NULL,User::Invariant());
1.84 + return *iHost;
1.85 + }
1.86 +