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.
17 #include "U32STD_DBMS.H"
19 // Class CDbTableIndexDef
21 EXPORT_C CDbTableIndexDef::CDbTableIndexDef()
24 EXPORT_C CDbTableIndexDef::~CDbTableIndexDef()
29 EXPORT_C void CDbTableIndexDef::ConstructL(const TDesC& aName)
31 // Construct with an empty key
39 void RDbIndexes::Close()
41 TSglQueIter<CDbTableIndexDef> iter(iRep);
42 for (CDbTableIndexDef* def;(def=iter++)!=0;)
46 CDbTableIndexDef* RDbIndexes::Find(const TDesC& aName) const
48 // Locate and index on the table by name
51 TSglQueIter<CDbTableIndexDef> iter(CONST_CAST(TSglQue<CDbTableIndexDef>&,iRep));
52 for (CDbTableIndexDef* def;(def=iter++)!=0;)
53 if (aName.CompareF(def->Name())==0)
58 CDbTableIndexDef& RDbIndexes::FindL(const TDesC& aName) const
63 CDbTableIndexDef* def=Find(aName);
65 __LEAVE(KErrNotFound);
69 EXPORT_C TInt RDbIndexes::Count() const
72 TSglQueIterC<CDbTableIndexDef> iter( iRep );
73 for ( ; iter++ != 0; )
80 EXPORT_C void TDbColumnDef::SetL(const TDbColumnDef& aCol)
82 // Replace assignment as this can leave
85 iMaxLength=aCol.iMaxLength;
87 iAttributes=aCol.iAttributes;
89 iName=aCol.iName->AllocL();
92 EXPORT_C void TDbColumnDef::SetL(const TDbCol& aCol)
94 iMaxLength=aCol.iMaxLength;
95 iType=TUint8(aCol.iType);
96 iAttributes=TUint8(aCol.iAttributes);
97 iName=aCol.iName.AllocL();
100 void TDbColumnDef::AsTDbCol(TDbCol& aColumn) const
102 aColumn.iType=Type();
103 aColumn.iMaxLength=iMaxLength;
104 aColumn.iAttributes=iAttributes;
105 aColumn.iName=*iName;
108 // Class HDbColumnSet
110 HDbColumnSet* HDbColumnSet::NewL(TInt aCount)
112 return new(User::AllocL(_FOFF(HDbColumnSet,iColumns[aCount]))) HDbColumnSet(aCount);
115 HDbColumnSet::HDbColumnSet(TInt aCount)
116 : iAttributes(0), iIndex(NULL), iEnd(&iColumns[aCount])
118 Mem::FillZ(&iColumns[0],aCount*sizeof(iColumns[0]));
121 HDbColumnSet::~HDbColumnSet()
124 const TIteratorC end=End();
125 for (TIteratorC iter=Begin();iter<end;++iter)
129 EXPORT_C TInt HDbColumnSet::Count() const
131 return End()-Begin();
134 void HDbColumnSet::Complete()
136 // Called on completion of the column set
140 const TIteratorC end=End();
141 for (TIteratorC iter=Begin();iter<end;++iter)
143 if (TDbCol::IsLong(iter->Type()))
144 attrib|=ELongColumns;
145 if (iter->iAttributes&TDbCol::EAutoIncrement)
146 attrib|=EAutoIncrement;
151 EXPORT_C HDbColumnSet::TIteratorC HDbColumnSet::ColumnL(const TDesC& aColumn) const
153 // Lookup name in the name index (binary search)
156 const TIteratorC* index=IndexL();
161 TInt mid=(left+right)>>1;
162 TInt c=index[mid]->iName->CompareF(aColumn);
168 return index[mid]; // matched entry
170 return 0; // no match
173 EXPORT_C TDbColNo HDbColumnSet::ColNoL(const TDesC& aColumn) const
175 // Return ordinal for given column name
178 TIteratorC col=ColumnL(aColumn);
179 return col ? 1+(col-Begin()) : KDbNullColNo;
182 const HDbColumnSet::TIteratorC* HDbColumnSet::IndexL() const
184 // Return the by-name lookup index, building it if required
187 TIteratorC* index=iIndex;
190 CONST_CAST(TIteratorC*&,iIndex)=index=(TIteratorC*)User::AllocL(Count()*sizeof(TIteratorC));
192 TIteratorC col=Begin();
193 TIteratorC end=End();
196 // binary search for insertion point
201 TInt mid=(left+right)>>1;
202 TInt c=index[mid]->iName->CompareF(*col->iName);
203 __ASSERT(c!=0); // names are unique
210 Mem::Move(index+left+1,index+left,(ii-left)*sizeof(TIteratorC));
212 } while (++ii,++col<end);
219 EXPORT_C CDbTableDef::CDbTableDef()
222 EXPORT_C CDbTableDef::~CDbTableDef()
229 EXPORT_C void CDbTableDef::ConstructL(const TDesC& aName,TInt aColumnCount)
231 iName=aName.AllocL();
232 iColumns=HDbColumnSet::NewL(aColumnCount);
235 void CDbTableDef::ExchangeColumnSet(HDbColumnSet* aSet)
242 EXPORT_C void CDbTableDef::Changed()
244 // evaluate cached info about the set
247 iColumns->Complete();
250 const CDbTableIndexDef* CDbTableDef::FindKey(const TDesC& aColumn,TBool aFirstColumn) const
252 // Find an index which keys on the given column
255 TSglQueIterC<CDbTableIndexDef> indexes(Indexes().AsQue());
256 for (const CDbTableIndexDef* def;(def=indexes++)!=0;)
258 const CDbKey& key=def->Key();
262 if (aColumn.CompareF(key[ii].iName)==0)
266 } while (++ii<key.Count());
271 // Class RDbTableSchema
273 void RDbTableSchema::Discard()
275 TSglQueIter<CDbTableDef> iter(iRep);
276 for (CDbTableDef* def;(def=iter++)!=0;)
282 CDbTableDef* RDbTableSchema::Find(const TDesC& aTable)
284 __ASSERT(IsLoaded());
285 TSglQueIter<CDbTableDef> iter(iRep);
286 for (CDbTableDef* def;(def=iter++)!=0;)
287 if (aTable.CompareF(def->Name())==0)
292 CDbTableDef& RDbTableSchema::FindL(const TDesC& aTable)
294 // Leave if not found
297 CDbTableDef* def=Find(aTable);
299 __LEAVE(KErrNotFound);
305 void RDbTables::Close()
307 TSglQueIter<CDbTable> iter(iRep);
308 for (CDbTable* table;(table=iter++)!=0;)
312 CDbTable* RDbTables::Find(const TDesC& aTable)
314 TSglQueIter<CDbTable> iter(iRep);
315 for (CDbTable* table;(table=iter++)!=0;)
316 if (aTable.CompareF(table->Def().Name())==0)