sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: inline TInt DbsMessage(TInt aFunction,TInt aHandle) sl@0: { sl@0: return (aFunction<>KDbsHandleBits); sl@0: } sl@0: sl@0: inline TInt DbsHandle(TInt aMessage) sl@0: { sl@0: return aMessage&KDbsHandleMask; sl@0: } sl@0: sl@0: inline TDbsType DbsType(TInt aHandle) sl@0: { sl@0: return TDbsType(aHandle&KDbsTypeMask); sl@0: } sl@0: sl@0: inline TInt DbsMagic(TInt aHandle) sl@0: { sl@0: return (aHandle>>KDbsTypeBits)&KDbsMagicMask; sl@0: } sl@0: sl@0: inline TInt DbsObjectIndex(TInt aHandle) sl@0: { sl@0: return aHandle>>(KDbsTypeBits+KDbsMagicBits); sl@0: } sl@0: sl@0: inline TInt DbsMakeHandle(TInt aIndex,TInt aMagic,TDbsType aType) sl@0: { sl@0: return (((aIndex<>(RReadStream& aStream,CDbColSet& aColSet) sl@0: { sl@0: InternalizeL(aColSet,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: inline RWriteStream& operator<<(RWriteStream& aStream,const CDbKey& aKey) sl@0: { sl@0: ExternalizeL(aKey,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: inline RReadStream& operator>>(RReadStream& aStream,CDbKey& aKey) sl@0: { sl@0: InternalizeL(aKey,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: inline RWriteStream& operator<<(RWriteStream& aStream,const CDbNames& aNames) sl@0: { sl@0: ExternalizeL(aNames,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: inline RReadStream& operator>>(RReadStream& aStream,CDbNames& aNames) sl@0: { sl@0: InternalizeL(aNames,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: /** sl@0: This operator is used for externalizing CDbStrings array to a stream. sl@0: @internalComponent sl@0: */ sl@0: inline RWriteStream& operator<<(RWriteStream& aStream,const CDbStrings& aStrings) sl@0: { sl@0: ExternalizeL(aStrings,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: /** sl@0: This operator is used for internalizing CDbStrings array from a stream. sl@0: @internalComponent sl@0: */ sl@0: inline RReadStream& operator>>(RReadStream& aStream,CDbStrings& aStrings) sl@0: { sl@0: InternalizeL(aStrings,aStream); sl@0: return aStream; sl@0: } sl@0: sl@0: template sl@0: inline TExternalizeFunction Externalizer(const T*) sl@0: { sl@0: return TExternalizer::Function(); sl@0: } sl@0: sl@0: // Class TDbsParam sl@0: inline void TDbsParam::operator=(const TDesC8& aDes) sl@0: { sl@0: iPtr=&aDes; sl@0: } sl@0: sl@0: inline void TDbsParam::operator=(const TDesC16& aDes) sl@0: { sl@0: iPtr=&aDes; sl@0: } sl@0: sl@0: inline void TDbsParam::operator=(TInt aVal) sl@0: { sl@0: iInt=aVal; sl@0: } sl@0: sl@0: // Class RDbsObject sl@0: inline RDbsObject::RDbsObject(): sl@0: iHandle(0) sl@0: { sl@0: } sl@0: sl@0: inline RDbsObject::RDbsObject(const RDbs& aDbs): sl@0: RDbs(aDbs), sl@0: iHandle(KDbsSessionHandle) sl@0: { sl@0: } sl@0: sl@0: inline TInt RDbsObject::Handle() const sl@0: { sl@0: return iHandle; sl@0: } sl@0: sl@0: inline void RDbsObject::OpenL(const RDbsObject& aDbs,TDbsFunction aFunction) sl@0: { sl@0: OpenL(aDbs,aFunction,0); sl@0: } sl@0: sl@0: inline void RDbsObject::OpenL(const RDbsObject& aDbs,TDbsFunction aFunction,const TIpcArgs& aArgs) sl@0: { sl@0: OpenL(aDbs,aFunction,&aArgs); sl@0: } sl@0: sl@0: inline void RDbsObject::OpenL(const RDbs& aDbs,TDbsFunction aFunction,const TIpcArgs& aArgs) sl@0: { sl@0: OpenL(RDbsObject(aDbs),aFunction,&aArgs); sl@0: } sl@0: sl@0: inline void RDbsObject::SendReceive(TDbsFunction aFunction,TRequestStatus& aStatus) const sl@0: { sl@0: SendReceive(aFunction,0,aStatus); sl@0: } sl@0: sl@0: inline TInt RDbsObject::SendReceive(TDbsFunction aFunction,const TIpcArgs& aArgs) const sl@0: { sl@0: return SendReceive(aFunction,&aArgs); sl@0: } sl@0: sl@0: inline TInt RDbsObject::SendReceiveL(TDbsFunction aFunction,const TIpcArgs& aArgs) const sl@0: { sl@0: return SendReceiveL(aFunction,&aArgs); sl@0: } sl@0: sl@0: inline void RDbsObject::SendReceive(TDbsFunction aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus) const sl@0: { sl@0: SendReceive(aFunction,&aArgs,aStatus); sl@0: } sl@0: sl@0: // Class CDbsDatabase sl@0: inline CDbsDatabase::CDbsDatabase() sl@0: { sl@0: } sl@0: sl@0: // Class CDbsNotifier sl@0: inline CDbsNotifier::CDbsNotifier() sl@0: { sl@0: } sl@0: sl@0: // Class CDbsIncrmental sl@0: inline CDbsIncremental::CDbsIncremental() sl@0: { sl@0: } sl@0: sl@0: // Class CDbsConstraint sl@0: inline CDbsConstraint::CDbsConstraint() sl@0: { sl@0: } sl@0: sl@0: // Class HDbsBuf sl@0: inline HDbsBuf::HDbsBuf() sl@0: { sl@0: iBuf.iExt=-1; sl@0: } sl@0: sl@0: inline HDbsBuf::~HDbsBuf() sl@0: { sl@0: iIpc.Close(); sl@0: } sl@0: sl@0: inline void HDbsBuf::SetPos(TRead,TInt aPos) sl@0: { sl@0: iRPos=aPos; sl@0: } sl@0: sl@0: inline void HDbsBuf::SetPos(TWrite,TInt aPos) sl@0: { sl@0: iWPos=aPos; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Pos(TRead) const sl@0: { sl@0: return iRPos; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Pos(TWrite) const sl@0: { sl@0: return iWPos; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::MovePos(TRead,TInt anOffset) sl@0: { sl@0: return iRPos+=anOffset; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::MovePos(TWrite,TInt anOffset) sl@0: { sl@0: return iWPos+=anOffset; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Lag(TRead) const sl@0: { sl@0: return Ptr(ERead)-End(ERead); sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Lag(TWrite) const sl@0: { sl@0: return Ptr(EWrite)-iBuf.iData; sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Mark(TRead) const sl@0: { sl@0: return Pos(ERead)+Lag(ERead); sl@0: } sl@0: sl@0: inline TInt HDbsBuf::Mark(TWrite) const sl@0: { sl@0: return Pos(EWrite)+Lag(EWrite); sl@0: } sl@0: sl@0: // Class CDbsSource sl@0: inline TInt CDbsSource::LinkOffset() sl@0: { sl@0: return _FOFF(CDbsSource,iLink); sl@0: } sl@0: sl@0: inline CDbsSource::CDbsSource(const TDbFormat& aFormat): sl@0: iFormat(aFormat) sl@0: { sl@0: } sl@0: sl@0: inline void CDbsSource::Open() sl@0: { sl@0: ++iConnections; sl@0: } sl@0: sl@0: inline CDbSource& CDbsSource::Source() sl@0: { sl@0: __ASSERT(iSource); sl@0: return *iSource; sl@0: } sl@0: sl@0: // Class CDbsDatabaseStub sl@0: inline CDbsDatabaseStub::CDbsDatabaseStub() sl@0: { sl@0: } sl@0: sl@0: // Class CDbsConnection sl@0: inline void CDbsConnection::Set(CDbsSource& aSource) sl@0: { sl@0: __ASSERT(!iSource); sl@0: iSource=&aSource; sl@0: aSource.Open(); sl@0: } sl@0: sl@0: inline CDbsSource& CDbsConnection::Source() const sl@0: { sl@0: __ASSERT(iSource); sl@0: return *iSource; sl@0: } sl@0: sl@0: inline const CDbsConnection& CDbsConnection::Connection(const CDbObject& aObject) sl@0: { sl@0: __ASSERT(aObject.Context()); sl@0: return *STATIC_CAST(const CDbsConnection*,aObject.Context()); sl@0: } sl@0: sl@0: inline CDbsSource& CDbsConnection::Source(const CDbObject& aObject) sl@0: { sl@0: return Connection(aObject).Source(); sl@0: } sl@0: sl@0: // Class RDbsSources sl@0: inline RDbsSources::RDbsSources(RDbCache& aCache): sl@0: iSources(CDbsSource::LinkOffset()), sl@0: iDrivers(aCache) sl@0: { sl@0: } sl@0: sl@0: inline void RDbsSources::Close() sl@0: { sl@0: __ASSERT(iSources.IsEmpty()); sl@0: iDrivers.Close(); sl@0: } sl@0: sl@0: // Class CDbsServer sl@0: inline TDes& CDbsServer::Name0() sl@0: { sl@0: return iName0; sl@0: } sl@0: sl@0: inline TDes& CDbsServer::Name1() sl@0: { sl@0: return iName1; sl@0: } sl@0: sl@0: inline TDes& CDbsServer::FileName() sl@0: { sl@0: return iFileName; sl@0: } sl@0: sl@0: inline RDbsSources& CDbsServer::Sources() sl@0: { sl@0: return iSources; sl@0: } sl@0: sl@0: inline RFs& CDbsServer::Fs() sl@0: { sl@0: return iFs; sl@0: } sl@0: sl@0: inline RDriveSpaceCol& CDbsServer::DriveSpaceCol() sl@0: { sl@0: return iDriveSpaceCol; sl@0: } sl@0: sl@0: inline void CDbsServer::Panic(const TDesC& aCategory,TInt aPanic) sl@0: { sl@0: Message().Panic(aCategory,aPanic); sl@0: } sl@0: sl@0: inline CPolicyProxy& CDbsServer::PolicyProxy() const sl@0: { sl@0: __ASSERT(iPolicyProxy); sl@0: return *iPolicyProxy; sl@0: } sl@0: sl@0: inline RDbPropsFactory& CDbsServer::DbPropsFactory() sl@0: { sl@0: return iDbPropsFactory; sl@0: } sl@0: sl@0: // Class CDbsSession::TEntry sl@0: inline TDbsType CDbsSession::TEntry::Type() const sl@0: { sl@0: return TDbsType(iType); sl@0: } sl@0: sl@0: inline CDbsDatabaseStub& CDbsSession::TEntry::DatabaseStub() sl@0: { sl@0: __ASSERT(Type()==EDbsDatabase); sl@0: return *STATIC_CAST(CDbsDatabaseStub*,iObject); sl@0: } sl@0: sl@0: inline CDbDatabase& CDbsSession::TEntry::Database() sl@0: { sl@0: __ASSERT(Type()==EDbsDatabase); sl@0: return *STATIC_CAST(CDbDatabase*,iObject); sl@0: } sl@0: sl@0: inline CDbIncremental& CDbsSession::TEntry::Incremental() sl@0: { sl@0: __ASSERT(Type()==EDbsIncremental); sl@0: return *STATIC_CAST(CDbIncremental*,iObject); sl@0: } sl@0: sl@0: inline CDbCursor& CDbsSession::TEntry::Cursor() sl@0: { sl@0: __ASSERT(Type()==EDbsCursor); sl@0: return *STATIC_CAST(CDbCursor*,iObject); sl@0: } sl@0: sl@0: inline CDbRowConstraint& CDbsSession::TEntry::Constraint() sl@0: { sl@0: __ASSERT(Type()==EDbsConstraint); sl@0: return *STATIC_CAST(CDbRowConstraint*,iObject); sl@0: } sl@0: sl@0: inline HDbsStream& CDbsSession::TEntry::Stream() sl@0: { sl@0: __ASSERT(Type()==EDbsStream); sl@0: return *STATIC_CAST(HDbsStream*,iObject); sl@0: } sl@0: sl@0: inline CDbsObserver::HObserver& CDbsSession::TEntry::Observer() sl@0: { sl@0: __ASSERT(Type()==EDbsObserver); sl@0: return *STATIC_CAST(CDbsObserver::HObserver*,iObject); sl@0: } sl@0: sl@0: // Class CDbsSession sl@0: inline TInt CDbsSession::Add(CDbIncremental* aIncremental, const MPolicy* aPolicy) sl@0: { sl@0: return DoAdd(aIncremental,EDbsIncremental, aPolicy); sl@0: } sl@0: sl@0: inline TInt CDbsSession::Add(CDbCursor* aCursor, const MPolicy* aPolicy) sl@0: { sl@0: return DoAdd(aCursor,EDbsCursor, aPolicy); sl@0: } sl@0: sl@0: inline TInt CDbsSession::Add(CDbRowConstraint* aConstraint, const MPolicy* aPolicy) sl@0: { sl@0: return DoAdd(aConstraint,EDbsConstraint, aPolicy); sl@0: } sl@0: sl@0: inline TInt CDbsSession::Add(HDbsStream* aStream, const MPolicy* aPolicy) sl@0: { sl@0: return DoAdd(aStream,EDbsStream, aPolicy); sl@0: } sl@0: sl@0: inline TInt CDbsSession::Add(CDbsObserver::HObserver* aObserver, const MPolicy* aPolicy) sl@0: { sl@0: return DoAdd(aObserver,EDbsObserver, aPolicy); sl@0: } sl@0: sl@0: inline CDbsServer& CDbsSession::Server() const sl@0: { sl@0: return *static_cast(const_cast(CSession2::Server())); sl@0: } sl@0: sl@0: inline RDbsSources& CDbsSession::Sources() sl@0: { sl@0: return Server().Sources(); sl@0: } sl@0: sl@0: // Class HDbsStream sl@0: inline HDbsStream::HDbsStream(MStreamBuf* aHost,TInt aReadPos): sl@0: iHost(*aHost), sl@0: iRPos(aReadPos), sl@0: iWPos(0) sl@0: { sl@0: __ASSERT(aHost); sl@0: } sl@0: sl@0: inline HDbsStream::~HDbsStream() sl@0: { sl@0: iHost.Release(); sl@0: } sl@0: sl@0: inline TInt HDbsStream::SizeL() sl@0: { sl@0: return iHost.SizeL(); sl@0: } sl@0: sl@0: inline void HDbsStream::SynchL() sl@0: { sl@0: iHost.SynchL(); sl@0: } sl@0: sl@0: // Class HBufBuf sl@0: inline HBufBuf::HBufBuf(): sl@0: iBuf(0) sl@0: { sl@0: } sl@0: sl@0: inline HBufBuf::~HBufBuf() sl@0: { sl@0: delete iBuf; sl@0: } sl@0: sl@0: // Class CDbsSecureDatabase sl@0: inline CDbsSecureDatabase::CDbsSecureDatabase() sl@0: { sl@0: } sl@0: