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 #define UNUSED_VAR(a) a = a
22 EXPORT_C void TDbColumn::SetL(const TAny* aPtr,TInt aSize)
24 Mem::Copy(Row().SetColumnWidthL(iColumn,aSize),aPtr,aSize);
27 EXPORT_C void TDbColumn::SetL(TUint32 aValue)
29 *(TUint32*)Row().SetColumnWidthL(iColumn,sizeof(aValue))=aValue;
32 EXPORT_C void TDbColumn::SetL(TInt64 aValue)
34 *(TInt64*)Row().SetColumnWidthL(iColumn,sizeof(aValue))=aValue;
37 EXPORT_C void TDbColumn::SetL(TReal32 aValue) __SOFTFP
39 *(TReal32*)Row().SetColumnWidthL(iColumn,sizeof(aValue))=aValue;
42 EXPORT_C void TDbColumn::SetL(TReal64 aValue) __SOFTFP
44 *(TReal64*)Row().SetColumnWidthL(iColumn,sizeof(aValue))=aValue;
47 EXPORT_C void TDbColumn::SetL(const TDesC8& aValue)
49 SetL(aValue.Ptr(),aValue.Length());
52 EXPORT_C void TDbColumn::SetL(const TDesC16& aValue)
54 SetL(aValue.Ptr(),aValue.Length()<<1);
57 EXPORT_C void TDbColumn::SetBlobL(TDbBlobId aBlobId,TInt aSize)
59 new(Row().SetColumnWidthL(iColumn,TDbBlob::RefSize())) TDbBlob(aBlobId,aSize);
62 EXPORT_C void TDbColumn::SetBlobL(const TUint8* aData,TInt aSize)
64 new(Row().SetColumnWidthL(iColumn,TDbBlob::InlineSize(aSize))) TDbBlob(aData,aSize);
67 EXPORT_C TDbBlob& TDbColumn::InitBlobL()
69 return *new(Row().SetColumnWidthL(iColumn,sizeof(TDbBlob))) TDbBlob;
72 EXPORT_C void TDbColumn::CommitBlob(const TDbBlob& aBlob)
75 TDbColumnC colC(*this);
76 __ASSERT(&colC.Blob()==&aBlob);
77 __ASSERT(colC.Size()>=aBlob.CellSize());
79 TRAPD(errCode, Row().SetColumnWidthL(iColumn,aBlob.Size() ? aBlob.CellSize() : 0));
84 // Minimum data width is 4 bytes for strict alignment
85 // No integral set members for small integers and extractors do the cast down from 4-byte integers
87 EXPORT_C RDbRow::RDbRow()
89 // default to dynamic-owned empty row buffer
91 :iFirst(0),iLast(0),iEnd(0),iCell(0),iColumn(TUint(EOwned))
94 EXPORT_C void RDbRow::Open(TAny* aBuf,TInt aSize,TInt aMaxSize)
96 // Use the provided row buffer
99 iFirst=(TDbCell*)aBuf;
100 iEnd=PtrAdd(iFirst,aMaxSize);
101 iColumn=0; // non-owned buffer
105 EXPORT_C void RDbRow::CreateL(TInt aMaxSize)
107 __ASSERT(!iFirst && Owned());
113 // Dynamic reallocation requires that the buffer is pushed
116 CleanupClosePushL(*this);
119 EXPORT_C void RDbRow::Close()
121 // release the buffer if owned, and return to default constructed state
126 iFirst=iLast=iEnd=iCell=0;
127 iColumn=TUint(EOwned);
130 EXPORT_C void RDbRow::SetSize(TInt aSize)
132 // Set the current buffer size: assert that it is valid
135 __ASSERT(PtrAdd(iFirst,aSize)<=iEnd);
136 iLast=PtrAdd(iFirst,aSize);
140 EXPORT_C void RDbRow::GrowL(TInt aMaxSize)
142 // Grow the buffer to at least aMaxSize, the buffer empty on return
145 if (aMaxSize>MaxSize())
150 __ASSERT(iFirst<=iEnd);
151 __ASSERT(iFirst<=iLast && iLast<=iEnd);
152 __ASSERT(iFirst<=iCell && iCell<=iLast);
156 void RDbRow::ExtendL(TInt aAdjust)
158 // Adjust the buffer length by aAdjust, leave if no room, preserve contents and cache
161 TDbCell* newLast=PtrAdd(iLast,aAdjust);
164 TInt move=ReallocL(Diff(iFirst,newLast));
165 iCell=PtrAdd(iCell,move);
166 newLast=PtrAdd(newLast,move);
170 __ASSERT(iFirst<=iEnd);
171 __ASSERT(iFirst<=iLast && iLast<=iEnd);
172 __ASSERT(iFirst<=iCell && iCell<=iLast);
175 TInt RDbRow::ReallocL(TInt aMaxSize)
177 // Grow the buffer to aMaxSize, return the offset of buffer movement
178 // leave iLast and cache untouched
181 __ASSERT(aMaxSize>MaxSize());
183 __LEAVE(KErrTooBig); // cannot reallocate if not owned
185 aMaxSize+=EGranularity-1;
186 aMaxSize&=~(EGranularity-1);
187 TDbCell* buf=(TDbCell*)User::ReAllocL(iFirst,aMaxSize);
188 TInt move=Diff(iFirst,buf);
190 iEnd=PtrAdd(buf,aMaxSize);
194 TDbCell* RDbRow::Column(TInt aColIx) const
196 // aCol is now zero-based
197 // Return a pointer to column aCol in the buffer
198 // Return 0 if the column is past the end
220 CONST_CAST(RDbRow*,this)->SetCache(pC,ix);
224 LOCAL_C const TDbCell* NullCell()
226 static TUint32 const NullCell[3]={0,0,0}; // 3 zero words represent any "Null" value
228 return REINTERPRET_CAST(const TDbCell*,&NullCell[0]);
231 EXPORT_C const TDbCell* RDbRow::ColCell(TDbColNo aColNo) const
234 const TDbCell* cell=Column(aColNo-1);
235 return cell && cell->Length() ? cell : NullCell();
238 EXPORT_C TAny* RDbRow::SetColumnWidthL(TDbColNo aColNo,TInt aWidth)
239 // set the width for column aCol to Width
240 // add extra NULL columns to buffer as required
241 // return pointer to data for that column
244 TDbCell* pC=Column(--aColNo);
246 { // add extra NULL columns to buffer
248 return 0; // setting to NULL, don't bother padding
249 TInt cFill=(aColNo-iColumn)*sizeof(TInt);
250 ExtendL(cFill+TDbCell::Size(aWidth));
252 Mem::FillZ(pC,cFill);
253 pC=PtrAdd(pC,cFill); // set cache
258 TInt adjust=TDbCell::Size(aWidth)-pC->Size(); // how much to add
262 pC=iCell; // may have moved in extension
263 TDbCell* pNext=pC->Next();
264 TDbCell* pAdjust=PtrAdd(pNext,adjust);
265 Mem::Move(pAdjust,pNext,Diff(pAdjust,iLast));
268 pC->SetLength(aWidth);