os/persistentdata/persistentstorage/dbms/udbms/UD_CLI.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "UD_STD.H"
sl@0
    17
sl@0
    18
const TInt KPakArrayGranularity=0x80;
sl@0
    19
sl@0
    20
// class TDbCol
sl@0
    21
EXPORT_C TDbCol::TDbCol(const TDesC &aName,TDbColType aType)
sl@0
    22
	: iType(aType), iAttributes(0), iName(aName)
sl@0
    23
	{
sl@0
    24
	iMaxLength=(aType==EDbColText8 || aType==EDbColText16)
sl@0
    25
		? KDbDefaultTextColLength : KDbUndefinedLength;
sl@0
    26
	}
sl@0
    27
sl@0
    28
EXPORT_C TDbCol::TDbCol(const TDesC &aName,TDbColType aType,TInt aMaxLength)
sl@0
    29
	: iType(aType), iMaxLength(aMaxLength), iAttributes(0), iName(aName)
sl@0
    30
/** Constructs a TDbCol with the given name, optional type and optional maximum 
sl@0
    31
length.
sl@0
    32
sl@0
    33
Note: The iAttributes member is initialised to 0.
sl@0
    34
sl@0
    35
@param aName The column name.
sl@0
    36
@param aType The column type.
sl@0
    37
@param aMaxLength If present, this specifies a limit on how many characters 
sl@0
    38
may be stored in a Text column, or how many bytes can be stored in a Binary 
sl@0
    39
column. By default this is set to KDbDefaultTextColLength for Text (but not 
sl@0
    40
LongText) columns and KDbUndefinedLength for other columns. */
sl@0
    41
	{}
sl@0
    42
sl@0
    43
// class CDbColSet
sl@0
    44
EXPORT_C CDbColSet::CDbColSet()
sl@0
    45
: iColumns(KPakArrayGranularity)
sl@0
    46
/** Constructs an empty column set. */
sl@0
    47
	{}
sl@0
    48
sl@0
    49
EXPORT_C CDbColSet* CDbColSet::NewL()
sl@0
    50
/** Constructs a new empty column set and returns a pointer to it.
sl@0
    51
sl@0
    52
@return A pointer to the column set object. */
sl@0
    53
	{
sl@0
    54
	return new(ELeave) CDbColSet;
sl@0
    55
	}
sl@0
    56
sl@0
    57
EXPORT_C CDbColSet* CDbColSet::NewLC()
sl@0
    58
/** Constructs a new empty column set and returns a pointer to it — placing 
sl@0
    59
the pointer onto the cleanup stack. This allows the column set object and 
sl@0
    60
allocated resources to be cleaned up if a subsequent leave occurs.
sl@0
    61
sl@0
    62
@return A pointer to the column set object. */
sl@0
    63
	{
sl@0
    64
	CDbColSet* cs=NewL();
sl@0
    65
	CleanupStack::PushL(cs);
sl@0
    66
	return cs;
sl@0
    67
	}
sl@0
    68
sl@0
    69
EXPORT_C CDbColSet::~CDbColSet()
sl@0
    70
/** Frees resources owned by the object. */
sl@0
    71
	{}
sl@0
    72
sl@0
    73
EXPORT_C const TDbCol* CDbColSet::Col(const TDesC &aColName) const
sl@0
    74
/** Returns a named column definition in the set. If such a column does not 
sl@0
    75
exist in the set NULL is returned.
sl@0
    76
sl@0
    77
@param aColName The name of the column to find.
sl@0
    78
@return A pointer to the column definition found, or NULL. */
sl@0
    79
	{
sl@0
    80
	TDbColNo col=ColNo(aColName);
sl@0
    81
	if (col==KDbNullColNo)
sl@0
    82
		return NULL;
sl@0
    83
	else
sl@0
    84
		return &(*this)[col];
sl@0
    85
	}
sl@0
    86
sl@0
    87
EXPORT_C TDbColNo CDbColSet::ColNo(const TDesC &aColName) const
sl@0
    88
/** Returns the ordinal for a particular column name in this column set. If 
sl@0
    89
such a column does not exist in the set the special ordinal KDbNullColNo is 
sl@0
    90
returned.
sl@0
    91
sl@0
    92
This function is particularly important when accessing data through a rowset. 
sl@0
    93
If the set of columns to be returned by a rowset is not explicitly specified, 
sl@0
    94
no assumptions should be made about the ordering of the columns returned. 
sl@0
    95
In such a case, in order to access the column data a column ordinal is required, 
sl@0
    96
and this can be obtained by using this function on the column set returned 
sl@0
    97
by RDbRowSet::ColSetL().
sl@0
    98
sl@0
    99
@param aColName The name of the column to find.
sl@0
   100
@return The ordinal number of the column. */
sl@0
   101
	{
sl@0
   102
	TInt pos;
sl@0
   103
	TKeyArrayPak key(_FOFF(TDbCol,iName),ECmpFolded);
sl@0
   104
	if (iColumns.Find(TDbCol(aColName),key,pos))
sl@0
   105
		return KDbNullColNo;
sl@0
   106
	else
sl@0
   107
		return pos+1;
sl@0
   108
	}
sl@0
   109
sl@0
   110
EXPORT_C CDbColSet& CDbColSet::AddL(const TDbCol& aCol)
sl@0
   111
/** Adds a column to the column set.
sl@0
   112
sl@0
   113
@param aCol The column to add to the set.
sl@0
   114
@return A reference to this object. */
sl@0
   115
	{
sl@0
   116
	iColumns.AppendL(aCol,REINTERPRET_CAST(const TUint8*,aCol.iName.Ptr())+aCol.iName.Size()-REINTERPRET_CAST(const TUint8*,&aCol));
sl@0
   117
	return *this;
sl@0
   118
	}
sl@0
   119
sl@0
   120
EXPORT_C void CDbColSet::Remove(const TDesC &aColName)
sl@0
   121
/** Removes the named column from the set.
sl@0
   122
sl@0
   123
@param aColName The name of the column to remove from the set. */
sl@0
   124
	{
sl@0
   125
	TDbColNo col=ColNo(aColName);
sl@0
   126
	__ASSERT_ALWAYS(col!=KDbNullColNo,Panic(EDbInvalidColumn));
sl@0
   127
	iColumns.Delete(col-1);
sl@0
   128
	}
sl@0
   129
sl@0
   130
// Class TDbColSetIter
sl@0
   131
EXPORT_C TDbColSetIter::TDbColSetIter(const CDbColSet& aColSet)
sl@0
   132
	: iIndex(-1),iArray(&aColSet.iColumns)
sl@0
   133
/** Constructs a column set iterator over a column set. The iterator now 
sl@0
   134
references the first column in the set.
sl@0
   135
sl@0
   136
@param aColSet The column set to iterate over. */
sl@0
   137
	{
sl@0
   138
	++(*this);
sl@0
   139
	}
sl@0
   140
sl@0
   141
EXPORT_C TDbColSetIter& TDbColSetIter::operator++()
sl@0
   142
/** Moves the iterator to the next column in the set -- post increment operator.
sl@0
   143
sl@0
   144
Note that this is implemented in terms of the pre-increment operator, and 
sl@0
   145
is less efficient.
sl@0
   146
sl@0
   147
@param Unused: required for the C++ compiler to resolve the ambiguity with 
sl@0
   148
the pre-increment operator.
sl@0
   149
@return A copy of this iterator, referring to the column definition before 
sl@0
   150
the increment operation is performed. */
sl@0
   151
	{
sl@0
   152
	__ASSERT(iIndex<iArray->Count());
sl@0
   153
	iColumn=++iIndex<iArray->Count() ? &(*iArray)[iIndex] : 0;
sl@0
   154
	return *this;
sl@0
   155
	}
sl@0
   156
sl@0
   157
// class TDbKeyCol
sl@0
   158
EXPORT_C TDbKeyCol::TDbKeyCol(const TDesC& aName,TOrder anOrder)
sl@0
   159
	: iOrder(anOrder),iLength(KDbUndefinedLength),iName(aName)
sl@0
   160
	{}
sl@0
   161
sl@0
   162
EXPORT_C TDbKeyCol::TDbKeyCol(const TDesC& aName,TInt aLength,TOrder anOrder)
sl@0
   163
	: iOrder(anOrder),iLength(aLength),iName(aName)
sl@0
   164
/** Constructs an object with the given name, ordering and optional truncation 
sl@0
   165
length.
sl@0
   166
sl@0
   167
@param aName The column name.
sl@0
   168
@param aLength If present, this specifies a limit on how many characters of 
sl@0
   169
a Text or LongText column are used for the key. This should only be used for 
sl@0
   170
the last key column in an index. It is required for keys on LongText columns.
sl@0
   171
@param anOrder The ordering for the key column. By default this is ascending 
sl@0
   172
order. */
sl@0
   173
	{}
sl@0
   174
sl@0
   175
// class CDbKey
sl@0
   176
sl@0
   177
EXPORT_C CDbKey::CDbKey()
sl@0
   178
	: iKeys(KPakArrayGranularity)
sl@0
   179
/** Constructs an empty key. It is initialised to non-unique, non-primary and 
sl@0
   180
normal text comparison. */
sl@0
   181
	{}
sl@0
   182
sl@0
   183
EXPORT_C CDbKey *CDbKey::NewL()
sl@0
   184
/** Constructs and returns a pointer to a new empty key.
sl@0
   185
sl@0
   186
@return A pointer to the key object. */
sl@0
   187
	{
sl@0
   188
	return new(ELeave) CDbKey;
sl@0
   189
	}
sl@0
   190
sl@0
   191
EXPORT_C CDbKey *CDbKey::NewLC()
sl@0
   192
/** Constructs and returns a new empty key and return a pointer to it, leaving 
sl@0
   193
a pointer to the key object on the cleanup stack. This allows the key object 
sl@0
   194
and allocated resources to be cleaned up if a subsequent leave occurs. 
sl@0
   195
sl@0
   196
@return A pointer to the key object. */
sl@0
   197
	{
sl@0
   198
	CDbKey* key=NewL();
sl@0
   199
	CleanupStack::PushL(key);
sl@0
   200
	return key;
sl@0
   201
	}
sl@0
   202
sl@0
   203
EXPORT_C CDbKey::~CDbKey()
sl@0
   204
/** Frees resources owned by the object. */
sl@0
   205
	{}
sl@0
   206
sl@0
   207
EXPORT_C CDbKey& CDbKey::AddL(const TDbKeyCol& aKey)
sl@0
   208
/** Adds a key column to the end of the key.
sl@0
   209
	
sl@0
   210
@param aKeyCol The key column to add to the key.
sl@0
   211
@return A reference to this object. */
sl@0
   212
	{
sl@0
   213
	iKeys.AppendL(aKey,REINTERPRET_CAST(const TUint8*,aKey.iName.Ptr())+aKey.iName.Size()-REINTERPRET_CAST(const TUint8*,&aKey));
sl@0
   214
	return *this;
sl@0
   215
	}
sl@0
   216
sl@0
   217
EXPORT_C void CDbKey::Remove(const TDesC& aColName)
sl@0
   218
/** Removes the named column from the key.
sl@0
   219
sl@0
   220
@param aColName The name of the column to remove from the key. */
sl@0
   221
	{
sl@0
   222
	TInt pos;
sl@0
   223
	TKeyArrayPak key(_FOFF(TDbKeyCol,iName),ECmpFolded);
sl@0
   224
	__ASSERT_ALWAYS(!iKeys.Find(TDbKeyCol(aColName),key,pos),Panic(EDbInvalidColumn));
sl@0
   225
	iKeys.Delete(pos);
sl@0
   226
	}
sl@0
   227
sl@0
   228
EXPORT_C void CDbKey::Clear()
sl@0
   229
/** Resets the key to its initial empty state. */
sl@0
   230
	{
sl@0
   231
	iKeys.Reset();
sl@0
   232
	iAttributes=0;
sl@0
   233
	iComparison=EDbCompareNormal;
sl@0
   234
	}
sl@0
   235
sl@0
   236
// Class TDbLookupKey
sl@0
   237
sl@0
   238
TDbLookupKey::SColumn& TDbLookupKey::NextKey()
sl@0
   239
	{
sl@0
   240
	return iKey[iCount++];
sl@0
   241
	}
sl@0
   242
sl@0
   243
void TDbLookupKey::Add(TInt aKey)
sl@0
   244
	{
sl@0
   245
	SColumn& key=NextKey();
sl@0
   246
	key.iType=EDbColInt32;
sl@0
   247
	key.iInt32=aKey;
sl@0
   248
	}
sl@0
   249
sl@0
   250
void TDbLookupKey::Add(TUint aKey)
sl@0
   251
	{
sl@0
   252
	SColumn& key=NextKey();
sl@0
   253
	key.iType=EDbColUint32;
sl@0
   254
	key.iUint32=aKey;
sl@0
   255
	}
sl@0
   256
sl@0
   257
void TDbLookupKey::Add(TInt64 aKey)
sl@0
   258
	{
sl@0
   259
	SColumn& key=NextKey();
sl@0
   260
	key.iType=EDbColInt64;
sl@0
   261
	key.iInt64()=aKey;
sl@0
   262
	}
sl@0
   263
sl@0
   264
void TDbLookupKey::Add(TReal32 aKey) __SOFTFP
sl@0
   265
	{
sl@0
   266
	SColumn& key=NextKey();
sl@0
   267
	key.iType=EDbColReal32;
sl@0
   268
	key.iReal32=aKey;
sl@0
   269
	}
sl@0
   270
sl@0
   271
void TDbLookupKey::Add(TReal64 aKey) __SOFTFP
sl@0
   272
	{
sl@0
   273
	SColumn& key=NextKey();
sl@0
   274
	key.iType=EDbColReal64;
sl@0
   275
	key.iReal64=aKey;
sl@0
   276
	}
sl@0
   277
sl@0
   278
void TDbLookupKey::Add(TTime aKey)
sl@0
   279
	{
sl@0
   280
	SColumn& key=NextKey();
sl@0
   281
	key.iType=EDbColDateTime;
sl@0
   282
	key.iTime()=aKey;
sl@0
   283
	}
sl@0
   284
sl@0
   285
void TDbLookupKey::Add(const TDesC8& aKey)
sl@0
   286
	{
sl@0
   287
	SColumn& key=NextKey();
sl@0
   288
	key.iType=EDbColText8;
sl@0
   289
	key.iDes8.iPtr=aKey.Ptr();
sl@0
   290
	key.iDes8.iLength=aKey.Length();
sl@0
   291
	}
sl@0
   292
sl@0
   293
void TDbLookupKey::Add(const TDesC16& aKey)
sl@0
   294
	{
sl@0
   295
	SColumn& key=NextKey();
sl@0
   296
	key.iType=EDbColText16;
sl@0
   297
	key.iDes16.iPtr=aKey.Ptr();
sl@0
   298
	key.iDes16.iLength=aKey.Length();
sl@0
   299
	}
sl@0
   300
sl@0
   301
// Class TDbSeekKey
sl@0
   302
sl@0
   303
TDbLookupKey& TDbSeekKey::Check()
sl@0
   304
	{
sl@0
   305
	__ASSERT_ALWAYS(iKey.Count()<iMaxKeys,Panic(EDbTooManyKeys));
sl@0
   306
	return iKey;
sl@0
   307
	}
sl@0
   308
sl@0
   309
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TInt aKey)
sl@0
   310
/** Appends a key value for an TInt8, TInt16 or TInt32 column.
sl@0
   311
sl@0
   312
@param aKey The key value to lookup.
sl@0
   313
@return A reference to this database key value object. */
sl@0
   314
	{
sl@0
   315
	Check().Add(aKey);
sl@0
   316
	return *this;
sl@0
   317
	}
sl@0
   318
sl@0
   319
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TUint aKey)
sl@0
   320
/** Appends a key value for a Bit, TUint8, TUint16 or TUint32 column.
sl@0
   321
sl@0
   322
@param aKey The key value to lookup.
sl@0
   323
@return A reference to this database key value object. */
sl@0
   324
	{
sl@0
   325
	Check().Add(aKey);
sl@0
   326
	return *this;
sl@0
   327
	}
sl@0
   328
sl@0
   329
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TInt64 aKey)
sl@0
   330
/** Appends a key value for an TInt64 column.
sl@0
   331
sl@0
   332
@param aKey The key value to lookup.
sl@0
   333
@return A reference to this database key value object. */
sl@0
   334
	{
sl@0
   335
	Check().Add(aKey);
sl@0
   336
	return *this;
sl@0
   337
	}
sl@0
   338
sl@0
   339
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TReal32 aKey) __SOFTFP
sl@0
   340
/** Appends a key value for a TReal32 column.
sl@0
   341
sl@0
   342
@param aKey The key value to lookup.
sl@0
   343
@return A reference to this database key value object. */
sl@0
   344
	{
sl@0
   345
	Check().Add(aKey);
sl@0
   346
	return *this;
sl@0
   347
	}
sl@0
   348
sl@0
   349
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TReal64 aKey) __SOFTFP
sl@0
   350
/** Appends a key value for a TReal64 column.
sl@0
   351
sl@0
   352
@param aKey The key value to lookup.
sl@0
   353
@return A reference to this database key value object. */
sl@0
   354
	{
sl@0
   355
	Check().Add(aKey);
sl@0
   356
	return *this;
sl@0
   357
	}
sl@0
   358
sl@0
   359
EXPORT_C TDbSeekKey& TDbSeekKey::Add(TTime aKey)
sl@0
   360
/** Appends a key value for a DateTime column.
sl@0
   361
sl@0
   362
@param aKey The key value to lookup. TTime may be either local time or universal time. 
sl@0
   363
DBMS doesn't interpret the value of TTime, it is left up to the user to decide which should be used.
sl@0
   364
@return A reference to this database key value object. */
sl@0
   365
	{
sl@0
   366
	Check().Add(aKey);
sl@0
   367
	return *this;
sl@0
   368
	}
sl@0
   369
sl@0
   370
EXPORT_C TDbSeekKey& TDbSeekKey::Add(const TDesC8& aKey)
sl@0
   371
/** Appends a key value for a non-Unicode text column.
sl@0
   372
sl@0
   373
Note that the seek key does not copy the text data contained by the descriptor. 
sl@0
   374
This needs to be retained until the seek key is no longer required.
sl@0
   375
sl@0
   376
@param aKey The key value to lookup.
sl@0
   377
@return A reference to this database key value object. */
sl@0
   378
	{
sl@0
   379
	Check().Add(aKey);
sl@0
   380
	return *this;
sl@0
   381
	}
sl@0
   382
sl@0
   383
EXPORT_C TDbSeekKey& TDbSeekKey::Add(const TDesC16& aKey)
sl@0
   384
/** Appends a key value for a Unicode text column.
sl@0
   385
sl@0
   386
Note that the seek key does not copy the text data contained by the descriptor. 
sl@0
   387
This needs to be retained until the seek key is no longer required.
sl@0
   388
sl@0
   389
@param aKey The key value to lookup.
sl@0
   390
@return A reference to this database key value object. */
sl@0
   391
	{
sl@0
   392
	Check().Add(aKey);
sl@0
   393
	return *this;
sl@0
   394
	}
sl@0
   395
sl@0
   396
// Class CDbNames
sl@0
   397
sl@0
   398
inline CDbNames::CDbNames()
sl@0
   399
	: iList(KPakArrayGranularity)
sl@0
   400
	{}
sl@0
   401
sl@0
   402
CDbNames* CDbNames::NewLC()
sl@0
   403
	{
sl@0
   404
	CDbNames* self=new(ELeave) CDbNames;
sl@0
   405
	CleanupStack::PushL(self);
sl@0
   406
	return self;
sl@0
   407
	}
sl@0
   408
sl@0
   409
CDbNames::~CDbNames()
sl@0
   410
	{}
sl@0
   411
sl@0
   412
EXPORT_C void CDbNames::AddL(const TDesC& aName)
sl@0
   413
	{
sl@0
   414
	TDbNameC name(aName);
sl@0
   415
	iList.AppendL(name,(const TUint8*)name.Ptr()+name.Size()-(const TUint8*)&name);
sl@0
   416
	}
sl@0
   417
sl@0
   418
////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   419
// Class CDbStrings
sl@0
   420
sl@0
   421
/**
sl@0
   422
Granularity of CDbStrings array.
sl@0
   423
@internalComponent
sl@0
   424
*/
sl@0
   425
const TInt KPakArrayGranularity2 = KDbMaxStrLen * 2;
sl@0
   426
sl@0
   427
/**
sl@0
   428
@internalComponent
sl@0
   429
*/
sl@0
   430
inline CDbStrings::CDbStrings() :
sl@0
   431
	iList(KPakArrayGranularity2)
sl@0
   432
	{
sl@0
   433
	}
sl@0
   434
sl@0
   435
/**
sl@0
   436
Standard phase-one creation method for CDbStrings objects.
sl@0
   437
@return A pointer to the created CDbStrings object.
sl@0
   438
@leave KErrNoMemory - Out of memory.
sl@0
   439
*/
sl@0
   440
CDbStrings* CDbStrings::NewLC()
sl@0
   441
	{
sl@0
   442
	CDbStrings* self = new(ELeave) CDbStrings;
sl@0
   443
	CleanupStack::PushL(self);
sl@0
   444
	return self;
sl@0
   445
	}
sl@0
   446
sl@0
   447
/**
sl@0
   448
@internalComponent
sl@0
   449
*/
sl@0
   450
CDbStrings::~CDbStrings()
sl@0
   451
	{
sl@0
   452
	}
sl@0
   453
sl@0
   454
/**
sl@0
   455
Adds a string to the array.
sl@0
   456
@param aStr String to be added to the array.
sl@0
   457
@leave KErrNoMemory - Out of memory.
sl@0
   458
@internalComponent
sl@0
   459
*/
sl@0
   460
void CDbStrings::AddL(const TDesC& aStr)
sl@0
   461
	{
sl@0
   462
	TDbStringC str(aStr);
sl@0
   463
	iList.AppendL(str, (const TUint8*)str.Ptr() + str.Size() - (const TUint8*)&str);
sl@0
   464
	}