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.
18 // Class CDbTableCursor::HWriteBuf
20 inline CDbTableCursor::HWriteBuf::HWriteBuf(CDbTableCursor& aCursor,const TDbColumn& aColumn,TDbColType aType)
21 : iCursor(aCursor),iColumn(aColumn),iType(aType),iBlob(0),iInlineBuf(0,0),iSize(0),iOverflowBuf(0)
24 void CDbTableCursor::HWriteBuf::ConstructL()
26 iBlob=&iColumn.InitBlobL();
27 iInlineBuf.Set(iBlob->InlineBuffer(),0,iCursor.BlobsL().InlineLimit());
31 CDbTableCursor::HWriteBuf* CDbTableCursor::HWriteBuf::NewL(CDbTableCursor& aCursor,const TDbColumn& aColumn,TDbColType aType)
33 __ASSERT(TDbCol::IsLong(aType));
35 HWriteBuf* self=new(ELeave) HWriteBuf(aCursor,aColumn,aType);
42 inline CDbTableCursor::HWriteBuf::~HWriteBuf()
45 iOverflowBuf->Release();
47 iColumn.CommitBlob(*iBlob);
48 iCursor.ReleaseSink();
51 void CDbTableCursor::HWriteBuf::DoRelease()
56 inline TBool CDbTableCursor::HWriteBuf::IsBinary() const
57 {return iType==EDbColLongBinary;}
59 void CDbTableCursor::HWriteBuf::FlipL()
61 // switch from inline to out of line stream
64 __ASSERT( !iOverflowBuf );
67 if ( IsBinary() ) // seeking only allowed for binary (non-encrypted) data
68 rpos = TDesBuf::TellL( ERead );
69 iOverflowBuf = iCursor.BlobsL().CreateL( iBlobId, iType );
70 const TUint8* base = iInlineBuf.Ptr();
71 TInt len = Ptr( EWrite ) - base;
73 iOverflowBuf->WriteL( base, len );
74 if ( IsBinary() ) // seeking only allowed for binary (non-encrypted) data
75 iOverflowBuf->SeekL( ERead, rpos );
78 void CDbTableCursor::HWriteBuf::DoSynchL()
80 // update the row buffer for the blob
83 MStreamBuf* buf=iOverflowBuf!=NULL ? iOverflowBuf : this;
84 TInt size=IsBinary() ? buf->SizeL() : iSize;
85 if (iOverflowBuf!=NULL)
88 iBlob->SetId(iBlobId);
93 TInt CDbTableCursor::HWriteBuf::DoReadL(TAny* aPtr,TInt aMaxLength)
97 if (iOverflowBuf!=NULL)
98 return iOverflowBuf->ReadL(aPtr,aMaxLength);
99 return TDesBuf::DoReadL(aPtr,aMaxLength);
102 TStreamTransfer CDbTableCursor::HWriteBuf::DoReadL(MStreamInput& aInput,TStreamTransfer aTransfer)
104 __ASSERT(IsBinary());
106 if (iOverflowBuf!=NULL)
107 return iOverflowBuf->ReadL(aInput,aTransfer);
108 return TDesBuf::DoReadL(aInput,aTransfer);
111 void CDbTableCursor::HWriteBuf::DoWriteL(const TAny* aPtr,TInt aLength)
113 if (iOverflowBuf==NULL)
115 if (aLength<=Avail(EWrite))
117 TDesBuf::DoWriteL(aPtr,aLength);
123 iOverflowBuf->WriteL(aPtr,aLength);
127 TStreamTransfer CDbTableCursor::HWriteBuf::DoWriteL(MStreamOutput& aOutput,TStreamTransfer aTransfer)
130 TStreamTransfer t1=aTransfer[KMaxTInt];
131 TStreamTransfer t2=iOverflowBuf ? iOverflowBuf->WriteL(aOutput,t1) : TDesBuf::DoWriteL(aOutput,t1);
132 TInt bytes=t1.Left()-t2.Left();
134 return aTransfer-bytes;
137 TStreamPos CDbTableCursor::HWriteBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt aOffset)
139 __ASSERT(IsBinary());
141 if (iOverflowBuf!=NULL)
142 return iOverflowBuf->SeekL(aMark,aLocation,aOffset);
143 return TDesBuf::DoSeekL(aMark,aLocation,aOffset);
146 // Class CDbTableCursor::HMemBuf
148 CDbTableCursor::HMemBuf::HMemBuf(CDbTableCursor& aCursor)
154 CDbTableCursor::HMemBuf* CDbTableCursor::HMemBuf::NewL(CDbTableCursor& aCursor,const TDesC8& aDes)
156 HMemBuf* self=new(ELeave) HMemBuf(aCursor);
157 TUint8* ptr=const_cast<TUint8*>(aDes.Ptr());
158 self->Set(ptr,ptr+aDes.Length(),ERead);
162 inline CDbTableCursor::HMemBuf::~HMemBuf()
163 {iCursor.ReleaseSource();}
165 void CDbTableCursor::HMemBuf::DoRelease()
170 // Class CDbTableCursor::HHeapBuf
172 inline CDbTableCursor::HHeapBuf::HHeapBuf( CDbTableCursor& aCursor )
176 CDbTableCursor::HHeapBuf* CDbTableCursor::HHeapBuf::NewL( CDbTableCursor& aCursor, const TDbBlob& aBlob, TDbColType aType )
178 __ASSERT( aBlob.Size() <= EMaxBlobBuffer );
179 TAny* mem = User::AllocL(_FOFF(HHeapBuf,iBuf[aBlob.Size()])); // get the extra size for the entries, leaves on error
180 HHeapBuf* self = new( mem ) HHeapBuf(aCursor); // do an in place new, now we've got the memory
182 MStreamBuf* buf = aCursor.BlobsL().ReadLC( aBlob.Id(), aType );
183 __DEBUG( TInt sz = ) buf->ReadL( &self->iBuf[0], aBlob.Size() );
184 __ASSERT(sz == aBlob.Size());
185 CleanupStack::PopAndDestroy(); // buf
186 self->Set( &self->iBuf[0], &self->iBuf[aBlob.Size() ], ERead );
187 CleanupStack::Pop(); // self
191 // Class CDbTableCursor::HReadBuf
193 inline CDbTableCursor::HReadBuf::HReadBuf(CDbTableCursor& aCursor)
194 :iCursor(aCursor),iHost(0)
195 {aCursor.AddBlobSource();}
197 CDbTableCursor::HReadBuf* CDbTableCursor::HReadBuf::NewLC(CDbTableCursor& aCursor)
199 HReadBuf* self=new(ELeave) HReadBuf(aCursor);
204 inline CDbTableCursor::HReadBuf::~HReadBuf()
208 iCursor.ReleaseBlobSource();
211 void CDbTableCursor::HReadBuf::DoRelease()
216 TInt CDbTableCursor::HReadBuf::DoReadL(TAny* aPtr,TInt aMaxLength)
219 return iHost->ReadL(aPtr,aMaxLength);
222 TStreamTransfer CDbTableCursor::HReadBuf::DoReadL(MStreamInput& aInput,TStreamTransfer aTransfer)
225 return iHost->ReadL(aInput,aTransfer);
228 TStreamPos CDbTableCursor::HReadBuf::DoSeekL(TMark aMark,TStreamLocation aLocation,TInt aOffset)
231 return iHost->SeekL(aMark,aLocation,aOffset);