Update contrib.
1 // Copyright (c) 2003-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 const TInt KPakArrayGranularity=0x80;
21 EXPORT_C TDbCol::TDbCol(const TDesC &aName,TDbColType aType)
22 : iType(aType), iAttributes(0), iName(aName)
24 iMaxLength=(aType==EDbColText8 || aType==EDbColText16)
25 ? KDbDefaultTextColLength : KDbUndefinedLength;
28 EXPORT_C TDbCol::TDbCol(const TDesC &aName,TDbColType aType,TInt aMaxLength)
29 : iType(aType), iMaxLength(aMaxLength), iAttributes(0), iName(aName)
30 /** Constructs a TDbCol with the given name, optional type and optional maximum
33 Note: The iAttributes member is initialised to 0.
35 @param aName The column name.
36 @param aType The column type.
37 @param aMaxLength If present, this specifies a limit on how many characters
38 may be stored in a Text column, or how many bytes can be stored in a Binary
39 column. By default this is set to KDbDefaultTextColLength for Text (but not
40 LongText) columns and KDbUndefinedLength for other columns. */
44 EXPORT_C CDbColSet::CDbColSet()
45 : iColumns(KPakArrayGranularity)
46 /** Constructs an empty column set. */
49 EXPORT_C CDbColSet* CDbColSet::NewL()
50 /** Constructs a new empty column set and returns a pointer to it.
52 @return A pointer to the column set object. */
54 return new(ELeave) CDbColSet;
57 EXPORT_C CDbColSet* CDbColSet::NewLC()
58 /** Constructs a new empty column set and returns a pointer to it — placing
59 the pointer onto the cleanup stack. This allows the column set object and
60 allocated resources to be cleaned up if a subsequent leave occurs.
62 @return A pointer to the column set object. */
65 CleanupStack::PushL(cs);
69 EXPORT_C CDbColSet::~CDbColSet()
70 /** Frees resources owned by the object. */
73 EXPORT_C const TDbCol* CDbColSet::Col(const TDesC &aColName) const
74 /** Returns a named column definition in the set. If such a column does not
75 exist in the set NULL is returned.
77 @param aColName The name of the column to find.
78 @return A pointer to the column definition found, or NULL. */
80 TDbColNo col=ColNo(aColName);
81 if (col==KDbNullColNo)
87 EXPORT_C TDbColNo CDbColSet::ColNo(const TDesC &aColName) const
88 /** Returns the ordinal for a particular column name in this column set. If
89 such a column does not exist in the set the special ordinal KDbNullColNo is
92 This function is particularly important when accessing data through a rowset.
93 If the set of columns to be returned by a rowset is not explicitly specified,
94 no assumptions should be made about the ordering of the columns returned.
95 In such a case, in order to access the column data a column ordinal is required,
96 and this can be obtained by using this function on the column set returned
97 by RDbRowSet::ColSetL().
99 @param aColName The name of the column to find.
100 @return The ordinal number of the column. */
103 TKeyArrayPak key(_FOFF(TDbCol,iName),ECmpFolded);
104 if (iColumns.Find(TDbCol(aColName),key,pos))
110 EXPORT_C CDbColSet& CDbColSet::AddL(const TDbCol& aCol)
111 /** Adds a column to the column set.
113 @param aCol The column to add to the set.
114 @return A reference to this object. */
116 iColumns.AppendL(aCol,REINTERPRET_CAST(const TUint8*,aCol.iName.Ptr())+aCol.iName.Size()-REINTERPRET_CAST(const TUint8*,&aCol));
120 EXPORT_C void CDbColSet::Remove(const TDesC &aColName)
121 /** Removes the named column from the set.
123 @param aColName The name of the column to remove from the set. */
125 TDbColNo col=ColNo(aColName);
126 __ASSERT_ALWAYS(col!=KDbNullColNo,Panic(EDbInvalidColumn));
127 iColumns.Delete(col-1);
130 // Class TDbColSetIter
131 EXPORT_C TDbColSetIter::TDbColSetIter(const CDbColSet& aColSet)
132 : iIndex(-1),iArray(&aColSet.iColumns)
133 /** Constructs a column set iterator over a column set. The iterator now
134 references the first column in the set.
136 @param aColSet The column set to iterate over. */
141 EXPORT_C TDbColSetIter& TDbColSetIter::operator++()
142 /** Moves the iterator to the next column in the set -- post increment operator.
144 Note that this is implemented in terms of the pre-increment operator, and
147 @param Unused: required for the C++ compiler to resolve the ambiguity with
148 the pre-increment operator.
149 @return A copy of this iterator, referring to the column definition before
150 the increment operation is performed. */
152 __ASSERT(iIndex<iArray->Count());
153 iColumn=++iIndex<iArray->Count() ? &(*iArray)[iIndex] : 0;
158 EXPORT_C TDbKeyCol::TDbKeyCol(const TDesC& aName,TOrder anOrder)
159 : iOrder(anOrder),iLength(KDbUndefinedLength),iName(aName)
162 EXPORT_C TDbKeyCol::TDbKeyCol(const TDesC& aName,TInt aLength,TOrder anOrder)
163 : iOrder(anOrder),iLength(aLength),iName(aName)
164 /** Constructs an object with the given name, ordering and optional truncation
167 @param aName The column name.
168 @param aLength If present, this specifies a limit on how many characters of
169 a Text or LongText column are used for the key. This should only be used for
170 the last key column in an index. It is required for keys on LongText columns.
171 @param anOrder The ordering for the key column. By default this is ascending
177 EXPORT_C CDbKey::CDbKey()
178 : iKeys(KPakArrayGranularity)
179 /** Constructs an empty key. It is initialised to non-unique, non-primary and
180 normal text comparison. */
183 EXPORT_C CDbKey *CDbKey::NewL()
184 /** Constructs and returns a pointer to a new empty key.
186 @return A pointer to the key object. */
188 return new(ELeave) CDbKey;
191 EXPORT_C CDbKey *CDbKey::NewLC()
192 /** Constructs and returns a new empty key and return a pointer to it, leaving
193 a pointer to the key object on the cleanup stack. This allows the key object
194 and allocated resources to be cleaned up if a subsequent leave occurs.
196 @return A pointer to the key object. */
199 CleanupStack::PushL(key);
203 EXPORT_C CDbKey::~CDbKey()
204 /** Frees resources owned by the object. */
207 EXPORT_C CDbKey& CDbKey::AddL(const TDbKeyCol& aKey)
208 /** Adds a key column to the end of the key.
210 @param aKeyCol The key column to add to the key.
211 @return A reference to this object. */
213 iKeys.AppendL(aKey,REINTERPRET_CAST(const TUint8*,aKey.iName.Ptr())+aKey.iName.Size()-REINTERPRET_CAST(const TUint8*,&aKey));
217 EXPORT_C void CDbKey::Remove(const TDesC& aColName)
218 /** Removes the named column from the key.
220 @param aColName The name of the column to remove from the key. */
223 TKeyArrayPak key(_FOFF(TDbKeyCol,iName),ECmpFolded);
224 __ASSERT_ALWAYS(!iKeys.Find(TDbKeyCol(aColName),key,pos),Panic(EDbInvalidColumn));
228 EXPORT_C void CDbKey::Clear()
229 /** Resets the key to its initial empty state. */
233 iComparison=EDbCompareNormal;
236 // Class TDbLookupKey
238 TDbLookupKey::SColumn& TDbLookupKey::NextKey()
240 return iKey[iCount++];
243 void TDbLookupKey::Add(TInt aKey)
245 SColumn& key=NextKey();
246 key.iType=EDbColInt32;
250 void TDbLookupKey::Add(TUint aKey)
252 SColumn& key=NextKey();
253 key.iType=EDbColUint32;
257 void TDbLookupKey::Add(TInt64 aKey)
259 SColumn& key=NextKey();
260 key.iType=EDbColInt64;
264 void TDbLookupKey::Add(TReal32 aKey) __SOFTFP
266 SColumn& key=NextKey();
267 key.iType=EDbColReal32;
271 void TDbLookupKey::Add(TReal64 aKey) __SOFTFP
273 SColumn& key=NextKey();
274 key.iType=EDbColReal64;
278 void TDbLookupKey::Add(TTime aKey)
280 SColumn& key=NextKey();
281 key.iType=EDbColDateTime;
285 void TDbLookupKey::Add(const TDesC8& aKey)
287 SColumn& key=NextKey();
288 key.iType=EDbColText8;
289 key.iDes8.iPtr=aKey.Ptr();
290 key.iDes8.iLength=aKey.Length();
293 void TDbLookupKey::Add(const TDesC16& aKey)
295 SColumn& key=NextKey();
296 key.iType=EDbColText16;
297 key.iDes16.iPtr=aKey.Ptr();
298 key.iDes16.iLength=aKey.Length();
303 TDbLookupKey& TDbSeekKey::Check()
305 __ASSERT_ALWAYS(iKey.Count()<iMaxKeys,Panic(EDbTooManyKeys));
309 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TInt aKey)
310 /** Appends a key value for an TInt8, TInt16 or TInt32 column.
312 @param aKey The key value to lookup.
313 @return A reference to this database key value object. */
319 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TUint aKey)
320 /** Appends a key value for a Bit, TUint8, TUint16 or TUint32 column.
322 @param aKey The key value to lookup.
323 @return A reference to this database key value object. */
329 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TInt64 aKey)
330 /** Appends a key value for an TInt64 column.
332 @param aKey The key value to lookup.
333 @return A reference to this database key value object. */
339 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TReal32 aKey) __SOFTFP
340 /** Appends a key value for a TReal32 column.
342 @param aKey The key value to lookup.
343 @return A reference to this database key value object. */
349 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TReal64 aKey) __SOFTFP
350 /** Appends a key value for a TReal64 column.
352 @param aKey The key value to lookup.
353 @return A reference to this database key value object. */
359 EXPORT_C TDbSeekKey& TDbSeekKey::Add(TTime aKey)
360 /** Appends a key value for a DateTime column.
362 @param aKey The key value to lookup. TTime may be either local time or universal time.
363 DBMS doesn't interpret the value of TTime, it is left up to the user to decide which should be used.
364 @return A reference to this database key value object. */
370 EXPORT_C TDbSeekKey& TDbSeekKey::Add(const TDesC8& aKey)
371 /** Appends a key value for a non-Unicode text column.
373 Note that the seek key does not copy the text data contained by the descriptor.
374 This needs to be retained until the seek key is no longer required.
376 @param aKey The key value to lookup.
377 @return A reference to this database key value object. */
383 EXPORT_C TDbSeekKey& TDbSeekKey::Add(const TDesC16& aKey)
384 /** Appends a key value for a Unicode text column.
386 Note that the seek key does not copy the text data contained by the descriptor.
387 This needs to be retained until the seek key is no longer required.
389 @param aKey The key value to lookup.
390 @return A reference to this database key value object. */
398 inline CDbNames::CDbNames()
399 : iList(KPakArrayGranularity)
402 CDbNames* CDbNames::NewLC()
404 CDbNames* self=new(ELeave) CDbNames;
405 CleanupStack::PushL(self);
409 CDbNames::~CDbNames()
412 EXPORT_C void CDbNames::AddL(const TDesC& aName)
414 TDbNameC name(aName);
415 iList.AppendL(name,(const TUint8*)name.Ptr()+name.Size()-(const TUint8*)&name);
418 ////////////////////////////////////////////////////////////////////////////////////////////////
422 Granularity of CDbStrings array.
425 const TInt KPakArrayGranularity2 = KDbMaxStrLen * 2;
430 inline CDbStrings::CDbStrings() :
431 iList(KPakArrayGranularity2)
436 Standard phase-one creation method for CDbStrings objects.
437 @return A pointer to the created CDbStrings object.
438 @leave KErrNoMemory - Out of memory.
440 CDbStrings* CDbStrings::NewLC()
442 CDbStrings* self = new(ELeave) CDbStrings;
443 CleanupStack::PushL(self);
450 CDbStrings::~CDbStrings()
455 Adds a string to the array.
456 @param aStr String to be added to the array.
457 @leave KErrNoMemory - Out of memory.
460 void CDbStrings::AddL(const TDesC& aStr)
462 TDbStringC str(aStr);
463 iList.AppendL(str, (const TUint8*)str.Ptr() + str.Size() - (const TUint8*)&str);