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 CDbTableIndexDef
20 EXPORT_C CDbTableIndexDef::CDbTableIndexDef()
23 EXPORT_C CDbTableIndexDef::~CDbTableIndexDef()
28 EXPORT_C void CDbTableIndexDef::ConstructL(const TDesC& aName)
30 // Construct with an empty key
38 void RDbIndexes::Close()
40 TSglQueIter<CDbTableIndexDef> iter(iRep);
41 for (CDbTableIndexDef* def;(def=iter++)!=0;)
45 CDbTableIndexDef* RDbIndexes::Find(const TDesC& aName) const
47 // Locate and index on the table by name
50 TSglQueIter<CDbTableIndexDef> iter(CONST_CAST(TSglQue<CDbTableIndexDef>&,iRep));
51 for (CDbTableIndexDef* def;(def=iter++)!=0;)
52 if (aName.CompareF(def->Name())==0)
57 CDbTableIndexDef& RDbIndexes::FindL(const TDesC& aName) const
62 CDbTableIndexDef* def=Find(aName);
64 __LEAVE(KErrNotFound);
68 EXPORT_C TInt RDbIndexes::Count() const
71 TSglQueIterC<CDbTableIndexDef> iter( iRep );
72 for ( ; iter++ != 0; )
79 EXPORT_C void TDbColumnDef::SetL(const TDbColumnDef& aCol)
81 // Replace assignment as this can leave
84 iMaxLength=aCol.iMaxLength;
86 iAttributes=aCol.iAttributes;
88 iName=aCol.iName->AllocL();
91 EXPORT_C void TDbColumnDef::SetL(const TDbCol& aCol)
93 iMaxLength=aCol.iMaxLength;
94 iType=TUint8(aCol.iType);
95 iAttributes=TUint8(aCol.iAttributes);
96 iName=aCol.iName.AllocL();
99 void TDbColumnDef::AsTDbCol(TDbCol& aColumn) const
101 aColumn.iType=Type();
102 aColumn.iMaxLength=iMaxLength;
103 aColumn.iAttributes=iAttributes;
104 aColumn.iName=*iName;
107 // Class HDbColumnSet
109 HDbColumnSet* HDbColumnSet::NewL(TInt aCount)
111 return new(User::AllocL(_FOFF(HDbColumnSet,iColumns[aCount]))) HDbColumnSet(aCount);
114 HDbColumnSet::HDbColumnSet(TInt aCount)
115 : iAttributes(0), iIndex(NULL), iEnd(&iColumns[aCount])
117 Mem::FillZ(&iColumns[0],aCount*sizeof(iColumns[0]));
120 HDbColumnSet::~HDbColumnSet()
123 const TIteratorC end=End();
124 for (TIteratorC iter=Begin();iter<end;++iter)
128 EXPORT_C TInt HDbColumnSet::Count() const
130 return End()-Begin();
133 void HDbColumnSet::Complete()
135 // Called on completion of the column set
139 const TIteratorC end=End();
140 for (TIteratorC iter=Begin();iter<end;++iter)
142 if (TDbCol::IsLong(iter->Type()))
143 attrib|=ELongColumns;
144 if (iter->iAttributes&TDbCol::EAutoIncrement)
145 attrib|=EAutoIncrement;
150 EXPORT_C HDbColumnSet::TIteratorC HDbColumnSet::ColumnL(const TDesC& aColumn) const
152 // Lookup name in the name index (binary search)
155 const TIteratorC* index=IndexL();
160 TInt mid=(left+right)>>1;
161 TInt c=index[mid]->iName->CompareF(aColumn);
167 return index[mid]; // matched entry
169 return 0; // no match
172 EXPORT_C TDbColNo HDbColumnSet::ColNoL(const TDesC& aColumn) const
174 // Return ordinal for given column name
177 TIteratorC col=ColumnL(aColumn);
178 return col ? 1+(col-Begin()) : KDbNullColNo;
181 const HDbColumnSet::TIteratorC* HDbColumnSet::IndexL() const
183 // Return the by-name lookup index, building it if required
186 TIteratorC* index=iIndex;
189 CONST_CAST(TIteratorC*&,iIndex)=index=(TIteratorC*)User::AllocL(Count()*sizeof(TIteratorC));
191 TIteratorC col=Begin();
192 TIteratorC end=End();
195 // binary search for insertion point
200 TInt mid=(left+right)>>1;
201 TInt c=index[mid]->iName->CompareF(*col->iName);
202 __ASSERT(c!=0); // names are unique
209 Mem::Move(index+left+1,index+left,(ii-left)*sizeof(TIteratorC));
211 } while (++ii,++col<end);
218 EXPORT_C CDbTableDef::CDbTableDef()
221 EXPORT_C CDbTableDef::~CDbTableDef()
228 EXPORT_C void CDbTableDef::ConstructL(const TDesC& aName,TInt aColumnCount)
230 iName=aName.AllocL();
231 iColumns=HDbColumnSet::NewL(aColumnCount);
234 void CDbTableDef::ExchangeColumnSet(HDbColumnSet* aSet)
241 EXPORT_C void CDbTableDef::Changed()
243 // evaluate cached info about the set
246 iColumns->Complete();
249 const CDbTableIndexDef* CDbTableDef::FindKey(const TDesC& aColumn,TBool aFirstColumn) const
251 // Find an index which keys on the given column
254 TSglQueIterC<CDbTableIndexDef> indexes(Indexes().AsQue());
255 for (const CDbTableIndexDef* def;(def=indexes++)!=0;)
257 const CDbKey& key=def->Key();
261 if (aColumn.CompareF(key[ii].iName)==0)
265 } while (++ii<key.Count());
270 // Class RDbTableSchema
272 void RDbTableSchema::Discard()
274 TSglQueIter<CDbTableDef> iter(iRep);
275 for (CDbTableDef* def;(def=iter++)!=0;)
281 CDbTableDef* RDbTableSchema::Find(const TDesC& aTable)
283 __ASSERT(IsLoaded());
284 TSglQueIter<CDbTableDef> iter(iRep);
285 for (CDbTableDef* def;(def=iter++)!=0;)
286 if (aTable.CompareF(def->Name())==0)
291 CDbTableDef& RDbTableSchema::FindL(const TDesC& aTable)
293 // Leave if not found
296 CDbTableDef* def=Find(aTable);
298 __LEAVE(KErrNotFound);
304 void RDbTables::Close()
306 TSglQueIter<CDbTable> iter(iRep);
307 for (CDbTable* table;(table=iter++)!=0;)
311 CDbTable* RDbTables::Find(const TDesC& aTable)
313 TSglQueIter<CDbTable> iter(iRep);
314 for (CDbTable* table;(table=iter++)!=0;)
315 if (aTable.CompareF(table->Def().Name())==0)