First public contribution.
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.
14 // DBMS server and support classes
21 void RDbsObject::OpenL(const RDbsObject& aDbs,TDbsFunction aFunction,const TIpcArgs* aArgs)
24 iHandle=aDbs.SendReceiveL(TDbsFunction(aFunction|KDbsObjectReturn),aArgs);
25 RDbs::operator=(STATIC_CAST(const RDbs&,aDbs));
28 void RDbsObject::Close()
32 SendReceive(EDbsClose);
34 SetHandle(KNullHandle); // set session handle
38 TInt RDbsObject::SendReceive(TDbsFunction aFunction,const TIpcArgs* aArgs) const
42 return RDbs::SendReceive(DbsMessage(aFunction,iHandle),*aArgs);
44 return RDbs::SendReceive(DbsMessage(aFunction,iHandle),TIpcArgs());
47 TInt RDbsObject::SendReceive(TDbsFunction aFunction) const
49 return SendReceive(aFunction,0);
52 TInt RDbsObject::SendReceiveL(TDbsFunction aFunction,const TIpcArgs* aArgs) const
54 return __LEAVE_IF_ERROR(SendReceive(aFunction,aArgs));
57 TInt RDbsObject::SendReceiveL(TDbsFunction aFunction) const
59 return SendReceiveL(aFunction,0);
62 void RDbsObject::SendReceive(TDbsFunction aFunction,const TIpcArgs* aArgs,TRequestStatus& aStatus) const
66 RDbs::SendReceive(DbsMessage(aFunction,iHandle),*aArgs,aStatus);
68 RDbs::SendReceive(DbsMessage(aFunction,iHandle),TIpcArgs(),aStatus);
73 const TInt KBufGranularity=0x200;
75 TPtrC8 TDbsParam::PrepareLC(const CDbColSet& aColSet)
77 CBufFlat* buf=CBufFlat::NewL(KBufGranularity);
78 CleanupStack::PushL(buf);
79 RBufWriteStream strm(*buf);
84 TPtrC8 TDbsParam::PrepareLC(const CDbKey& aKey)
86 CBufFlat* buf=CBufFlat::NewL(KBufGranularity);
87 CleanupStack::PushL(buf);
88 RBufWriteStream strm(*buf);
93 TPtrC8 TDbsParam::PrepareLC(const TDbLookupKey& aKey)
96 const TDbLookupKey::SColumn* iter=aKey.First();
97 const TDbLookupKey::SColumn* end=iter+aKey.Count();
105 tsize+=iter->iDes8.iLength;
108 tsize+=iter->iDes16.iLength<<1;
111 } while (++iter<end);
113 TInt size=(TUint8*)end-(TUint8*)&aKey;
114 TDbLookupKey* key=(TDbLookupKey*)User::AllocLC(size+tsize);
115 TUint8* text=Mem::Copy(key,&aKey,size);
118 TDbLookupKey::SColumn* iter=CONST_CAST(TDbLookupKey::SColumn*,key->First());
119 TDbLookupKey::SColumn* end=(TDbLookupKey::SColumn*)text;
128 const TUint8* p=iter->iDes8.iPtr;
129 iter->iDes8.iPtr=REINTERPRET_CAST(const TUint8*,(text-(TUint8*)key));
130 text=Mem::Copy(text,p,iter->iDes8.iLength);
135 const TUint16* p=iter->iDes16.iPtr;
136 iter->iDes16.iPtr=REINTERPRET_CAST(const TUint16*,(text-(TUint8*)key));
137 text=Mem::Copy(text,p,iter->iDes16.iLength<<1);
141 } while (++iter<end);
143 return TPtrC8((TUint8*)key,size+tsize);