os/persistentdata/persistentstorage/dbms/pcdbms/utable/UT_TABLE.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) 1998-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 "UT_STD.H"
sl@0
    17
#include "U32STD_DBMS.H"
sl@0
    18
sl@0
    19
#define UNUSED_VAR(a) a = a
sl@0
    20
sl@0
    21
const TUint KTableExpiry=0x100000;	// ~1.0s
sl@0
    22
sl@0
    23
// Class Blob cleanup
sl@0
    24
sl@0
    25
NONSHARABLE_CLASS(CDbBlobCleanup) : public CArrayFixFlat<TDbBlobId>
sl@0
    26
	{
sl@0
    27
public:
sl@0
    28
	static CDbBlobCleanup* NewLC(CDbBlobSpace& aBlobSpace);
sl@0
    29
	~CDbBlobCleanup();
sl@0
    30
private:
sl@0
    31
	inline CDbBlobCleanup(CDbBlobSpace& aBlobSpace);
sl@0
    32
private:
sl@0
    33
	CDbBlobSpace& iBlobSpace;
sl@0
    34
	};
sl@0
    35
sl@0
    36
inline CDbBlobCleanup::CDbBlobCleanup(CDbBlobSpace& aBlobSpace)
sl@0
    37
	: CArrayFixFlat<TDbBlobId>(8),iBlobSpace(aBlobSpace)
sl@0
    38
	{}
sl@0
    39
sl@0
    40
CDbBlobCleanup* CDbBlobCleanup::NewLC(CDbBlobSpace& aBlobSpace)
sl@0
    41
	{
sl@0
    42
	CDbBlobCleanup* self=new(ELeave) CDbBlobCleanup(aBlobSpace);
sl@0
    43
	CleanupStack::PushL(self);
sl@0
    44
	return self;
sl@0
    45
	}
sl@0
    46
sl@0
    47
CDbBlobCleanup::~CDbBlobCleanup()
sl@0
    48
	{
sl@0
    49
	TInt count=Count();
sl@0
    50
	if (count)
sl@0
    51
		{
sl@0
    52
		const TDbBlobId* blob=&(*this)[0];
sl@0
    53
		const TDbBlobId* const end=blob+count;
sl@0
    54
		for (;blob<end;++blob)
sl@0
    55
			iBlobSpace.Delete(*blob);
sl@0
    56
		}
sl@0
    57
	}
sl@0
    58
sl@0
    59
// Class CDbTable
sl@0
    60
sl@0
    61
sl@0
    62
EXPORT_C CDbTable::CDbTable(CDbTableDatabase& aDatabase,const CDbTableDef& aDef)
sl@0
    63
	: iDatabase(&aDatabase),iDef(&aDef)
sl@0
    64
	{
sl@0
    65
	aDatabase.Open();
sl@0
    66
	aDatabase.AddTable(*this);		// we reference database
sl@0
    67
	}
sl@0
    68
sl@0
    69
EXPORT_C CDbTable::~CDbTable()
sl@0
    70
//
sl@0
    71
// Destroy components
sl@0
    72
//
sl@0
    73
	{
sl@0
    74
	__ASSERT(!InUse());		// cannot be directly deleted
sl@0
    75
	if (IsActive())
sl@0
    76
		Disconnect();
sl@0
    77
	}
sl@0
    78
sl@0
    79
void CDbTable::Disconnect()
sl@0
    80
//
sl@0
    81
// Disconnect the table from the database collection.
sl@0
    82
//
sl@0
    83
	{
sl@0
    84
	__ASSERT(IsActive());
sl@0
    85
	Database().RemoveTable(*this);
sl@0
    86
	TRAPD(errCode, ApplyToComponentsL(CDbRecordBase::DoDelete));
sl@0
    87
    UNUSED_VAR(errCode);
sl@0
    88
	}
sl@0
    89
sl@0
    90
void CDbTable::Open()
sl@0
    91
	{
sl@0
    92
	__ASSERT(IsActive());
sl@0
    93
	TInt r=++iRef;
sl@0
    94
	if (r<=0)
sl@0
    95
		{	// were idle or cached
sl@0
    96
		if (r<0)
sl@0
    97
			{
sl@0
    98
			Cache().Release(*this);	// was cached
sl@0
    99
			iRef=0;
sl@0
   100
			}
sl@0
   101
		Database().Open();
sl@0
   102
		}
sl@0
   103
	}
sl@0
   104
sl@0
   105
void CDbTable::Close()
sl@0
   106
//
sl@0
   107
// We may destroy this object when the last reference goes away
sl@0
   108
//
sl@0
   109
	{
sl@0
   110
	__ASSERT(InUse());
sl@0
   111
	if (--iRef<0)
sl@0
   112
		{
sl@0
   113
		if (!IsActive())
sl@0
   114
			delete this;		// disconnected table
sl@0
   115
		else
sl@0
   116
			{
sl@0
   117
			CDbTableDatabase& db=Database();
sl@0
   118
			if (!db.Transaction().IsLocked())
sl@0
   119
				Idle();			// no transaction, idle now
sl@0
   120
			db.Close();			// this must be done last to avoid early self destruction
sl@0
   121
			}
sl@0
   122
		}
sl@0
   123
	}
sl@0
   124
sl@0
   125
void CDbTable::Idle()
sl@0
   126
//
sl@0
   127
// Called when idle, change to cached state
sl@0
   128
//
sl@0
   129
	{
sl@0
   130
	__ASSERT(IsIdle());
sl@0
   131
	__ASSERT(IsActive());
sl@0
   132
//
sl@0
   133
	iRef=ECached;
sl@0
   134
	Cache().Hold(this,KTableExpiry);	// may delete this
sl@0
   135
	}
sl@0
   136
sl@0
   137
void CDbTable::FlushL()
sl@0
   138
//
sl@0
   139
// Ensure all records objects are flushed
sl@0
   140
//
sl@0
   141
	{
sl@0
   142
	__ASSERT(IsActive());
sl@0
   143
	if (iRef!=ECached)
sl@0
   144
		ApplyToComponentsL(CDbRecordBase::DoFlushL);
sl@0
   145
	}
sl@0
   146
sl@0
   147
void CDbTable::Abandon()
sl@0
   148
//
sl@0
   149
// Discard all components
sl@0
   150
//
sl@0
   151
	{
sl@0
   152
	__ASSERT(IsActive());
sl@0
   153
	TRAPD(errCode, ApplyToComponentsL(CDbRecordBase::DoAbandon));
sl@0
   154
    UNUSED_VAR(errCode);
sl@0
   155
	iIndexesEnd=NULL;	// flags indexes as abandoned
sl@0
   156
	++iGeneration;
sl@0
   157
	}
sl@0
   158
sl@0
   159
void CDbTable::Release()
sl@0
   160
//
sl@0
   161
// Release the table and all its cursors as DDL is about to begin
sl@0
   162
//
sl@0
   163
	{
sl@0
   164
	__ASSERT(IsActive());
sl@0
   165
	switch (iRef)
sl@0
   166
		{
sl@0
   167
	case ECached:
sl@0
   168
		Cache().Release(*this);
sl@0
   169
		// fall throught to Idle
sl@0
   170
	case EIdle:
sl@0
   171
		delete this;
sl@0
   172
		break;
sl@0
   173
	default:
sl@0
   174
		__ASSERT(InUse());
sl@0
   175
		Database().Close();
sl@0
   176
		Disconnect();
sl@0
   177
		iDatabase=0;		// this marks us as released
sl@0
   178
		iDef=0;
sl@0
   179
		break;
sl@0
   180
		}
sl@0
   181
	}
sl@0
   182
sl@0
   183
void CDbTable::ApplyToBlobsL(RDbRow& aRow,TBlobFuncL aFuncL,CDbBlobCleanup* aCleanup)
sl@0
   184
	{
sl@0
   185
	__ASSERT(Def().Columns().HasLongColumns());
sl@0
   186
	CDbBlobSpace* blobs=BlobsL();
sl@0
   187
	__ASSERT(blobs);
sl@0
   188
	TDbColNo col=1;
sl@0
   189
	HDbColumnSet::TIteratorC iter=Def().Columns().Begin();
sl@0
   190
	const HDbColumnSet::TIteratorC end=Def().Columns().End();
sl@0
   191
	do
sl@0
   192
		{
sl@0
   193
		if (!TDbCol::IsLong(iter->Type()))
sl@0
   194
			continue;
sl@0
   195
		const TDbColumnC column(aRow,col);
sl@0
   196
		if (column.IsNull())
sl@0
   197
			continue;
sl@0
   198
		aFuncL(*blobs,CONST_CAST(TDbBlob&,column.Blob()),iter->Type(),aCleanup);
sl@0
   199
		} while (++col,++iter<end);
sl@0
   200
	}
sl@0
   201
sl@0
   202
LOCAL_C void DuplicateBlobL(CDbBlobSpace& aBlobStore,TDbBlob& aBlob,TDbColType aType,CDbBlobCleanup* aCleanup)
sl@0
   203
	{
sl@0
   204
	__ASSERT(aCleanup);
sl@0
   205
	if (aBlob.IsInline())
sl@0
   206
		return;
sl@0
   207
// need to duplicate blob
sl@0
   208
	RReadStream old(aBlobStore.ReadLC(aBlob.Id(),aType));
sl@0
   209
	TDbBlobId& newId=aCleanup->ExtendL();
sl@0
   210
	newId=KDbNullBlobId;
sl@0
   211
	RWriteStream dup(aBlobStore.CreateL(newId,aType));
sl@0
   212
	dup.PushL();
sl@0
   213
	dup.WriteL(old,aBlob.Size());
sl@0
   214
	dup.CommitL();
sl@0
   215
	CleanupStack::PopAndDestroy(2);		// old and dup streams
sl@0
   216
	aBlob.SetId(newId);		// row is writable
sl@0
   217
	}
sl@0
   218
sl@0
   219
void CDbTable::DuplicateBlobsL(RDbRow& aRow)
sl@0
   220
//
sl@0
   221
// duplicate any blobs
sl@0
   222
//
sl@0
   223
	{
sl@0
   224
	if (!Def().Columns().HasLongColumns())
sl@0
   225
		return;
sl@0
   226
sl@0
   227
	CDbBlobCleanup* cleaner=CDbBlobCleanup::NewLC(*BlobsL());
sl@0
   228
	ApplyToBlobsL(aRow,DuplicateBlobL,cleaner);
sl@0
   229
	cleaner->Reset();
sl@0
   230
	CleanupStack::PopAndDestroy();
sl@0
   231
	}
sl@0
   232
sl@0
   233
TBool CDbTable::ExistsL(TDbRecordId aRecordId)
sl@0
   234
//
sl@0
   235
// Check that aRecordId is good for this table
sl@0
   236
//
sl@0
   237
	{
sl@0
   238
	__ASSERT(IsActive() && InUse());
sl@0
   239
	return RecordsL().ExistsL(aRecordId);
sl@0
   240
	}
sl@0
   241
sl@0
   242
void CDbTable::NewRowL(RDbRow& aRow)
sl@0
   243
//
sl@0
   244
// Initialise any auto-increment columns in the row
sl@0
   245
//
sl@0
   246
	{
sl@0
   247
	const HDbColumnSet& columns=Def().Columns();
sl@0
   248
	if (!columns.HasAutoIncrement())
sl@0
   249
		return;
sl@0
   250
sl@0
   251
	TUint value=RecordsL().AutoIncrementL();
sl@0
   252
	TDbColNo col=1;
sl@0
   253
	HDbColumnSet::TIteratorC iter=columns.Begin();
sl@0
   254
	const HDbColumnSet::TIteratorC end=columns.End();
sl@0
   255
	do
sl@0
   256
		{
sl@0
   257
		if (iter->iAttributes&TDbCol::EAutoIncrement)
sl@0
   258
			{
sl@0
   259
			// auto-increment only for integral types <=32 bits wide
sl@0
   260
			__ASSERT(iter->iType<=EDbColUint32);
sl@0
   261
			TDbColumn column(aRow,col);
sl@0
   262
			column.SetL(TUint32(value));
sl@0
   263
			}
sl@0
   264
		} while (++col,++iter<end);
sl@0
   265
	}
sl@0
   266
sl@0
   267
void CDbTable::ValidateL(const RDbRow& aRow)
sl@0
   268
//
sl@0
   269
// Ensure that the column data conforms to type size/flags etc
sl@0
   270
//
sl@0
   271
	{
sl@0
   272
	HDbColumnSet::TIteratorC iter=Def().Columns().Begin();
sl@0
   273
	const HDbColumnSet::TIteratorC end=Def().Columns().End();
sl@0
   274
	const TDbCell* const last=aRow.Last();
sl@0
   275
	for (const TDbCell* column=aRow.First();column<last;++iter,column=column->Next())
sl@0
   276
		{
sl@0
   277
		TInt size=column->Length();
sl@0
   278
		if (size==0)
sl@0
   279
			{	// check for Null
sl@0
   280
			if (iter->iAttributes&TDbCol::ENotNull)
sl@0
   281
				{
sl@0
   282
				__LEAVE(KErrNotFound);
sl@0
   283
				return;
sl@0
   284
				}
sl@0
   285
			continue;
sl@0
   286
			}
sl@0
   287
		const TUint32* data=(const TUint32*)column->Data();
sl@0
   288
		switch (iter->iType)
sl@0
   289
			{
sl@0
   290
		case EDbColBit:
sl@0
   291
			if (*data>1)
sl@0
   292
				__LEAVE(KErrOverflow);
sl@0
   293
			break;
sl@0
   294
		case EDbColInt8:
sl@0
   295
			{
sl@0
   296
			TInt val=*data;
sl@0
   297
			if (TInt8(val)!=val)
sl@0
   298
				__LEAVE(KErrOverflow);
sl@0
   299
			}
sl@0
   300
			break;
sl@0
   301
		case EDbColInt16:
sl@0
   302
			{
sl@0
   303
			TInt val=*data;
sl@0
   304
			if (TInt16(val)!=val)
sl@0
   305
				__LEAVE(KErrOverflow);
sl@0
   306
			}
sl@0
   307
			break;
sl@0
   308
		case EDbColUint8:
sl@0
   309
			{
sl@0
   310
			TUint val=*data;
sl@0
   311
			if (TUint8(val)!=val)
sl@0
   312
				__LEAVE(KErrOverflow);
sl@0
   313
			}
sl@0
   314
			break;
sl@0
   315
		case EDbColUint16:
sl@0
   316
			{
sl@0
   317
			TUint val=*data;
sl@0
   318
			if (TUint16(val)!=val)
sl@0
   319
				__LEAVE(KErrOverflow);
sl@0
   320
			}
sl@0
   321
			break;
sl@0
   322
		case EDbColText16:
sl@0
   323
			size>>=1;
sl@0
   324
		case EDbColBinary:
sl@0
   325
		case EDbColText8:
sl@0
   326
			if (iter->iMaxLength==KDbUndefinedLength)
sl@0
   327
				break;
sl@0
   328
			if (size>iter->iMaxLength)
sl@0
   329
				__LEAVE(KErrOverflow);
sl@0
   330
			break;
sl@0
   331
		case EDbColLongBinary:
sl@0
   332
		case EDbColLongText8:
sl@0
   333
		case EDbColLongText16:
sl@0
   334
			if (iter->iMaxLength==KDbUndefinedLength)
sl@0
   335
				break;
sl@0
   336
			size=((TDbBlob*)data)->Size();
sl@0
   337
			if (size==KDbUndefinedLength)
sl@0
   338
				break;
sl@0
   339
			if (iter->iType==EDbColText16)
sl@0
   340
				size>>=1;
sl@0
   341
			if (size>iter->iMaxLength)
sl@0
   342
				__LEAVE(KErrOverflow);
sl@0
   343
			break;
sl@0
   344
		default:
sl@0
   345
			break;
sl@0
   346
			}
sl@0
   347
		}
sl@0
   348
	for (;iter<end;++iter)
sl@0
   349
		{	// check for Null
sl@0
   350
		if (iter->iAttributes&TDbCol::ENotNull)
sl@0
   351
			{
sl@0
   352
			__LEAVE(KErrNotFound);
sl@0
   353
			return;
sl@0
   354
			}
sl@0
   355
		}
sl@0
   356
	}
sl@0
   357
sl@0
   358
void CDbTable::ReadRowL(RDbRow& aRow,TDbRecordId aRecordId)
sl@0
   359
//
sl@0
   360
// Read a record from the table
sl@0
   361
//
sl@0
   362
	{
sl@0
   363
	CopyToRowL(aRow,RecordsL().ReadL(aRecordId));
sl@0
   364
	}
sl@0
   365
sl@0
   366
void CDbTable::PrepareAppendL(const RDbTableRow& aRow)
sl@0
   367
//
sl@0
   368
// Validate a new record for appending
sl@0
   369
//
sl@0
   370
	{
sl@0
   371
	EnsureIndexesL();
sl@0
   372
	ValidateL(aRow);
sl@0
   373
	CDbRecordIndex** end=iIndexesEnd;
sl@0
   374
	for (CDbRecordIndex** pix=iIndexes;pix<end;++pix)
sl@0
   375
		{
sl@0
   376
		CDbRecordIndex& ix=**pix;
sl@0
   377
		if (ix.IsBroken())
sl@0
   378
			continue;
sl@0
   379
		if (ix.FindL(KDbNullRecordId,aRow)==CDbRecordIndex::EKeyMatch)
sl@0
   380
			__LEAVE(KErrAlreadyExists);	// duplicate found
sl@0
   381
		}
sl@0
   382
	}
sl@0
   383
sl@0
   384
TDbRecordId CDbTable::AppendRowL(const RDbTableRow& aRow)
sl@0
   385
//
sl@0
   386
// Validate and add a new record to the table and any open indexes
sl@0
   387
//
sl@0
   388
	{
sl@0
   389
	CDbRecordSpace& records=RecordsL();
sl@0
   390
	CopyFromRow(records.NewL(RecordLength(aRow)),aRow);
sl@0
   391
	TDbRecordId id=records.AppendL();
sl@0
   392
	CDbRecordIndex** end=iIndexesEnd;
sl@0
   393
	for (CDbRecordIndex** pix=iIndexes;pix<end;++pix)
sl@0
   394
		{
sl@0
   395
		CDbRecordIndex& ix=**pix;
sl@0
   396
		if (ix.IsBroken())
sl@0
   397
			continue;
sl@0
   398
		__DEBUG(TInt dbgchk=) ix.InsertL(id,aRow);
sl@0
   399
		__ASSERT(dbgchk);
sl@0
   400
		}
sl@0
   401
	++iGeneration;
sl@0
   402
	return id;
sl@0
   403
	}
sl@0
   404
sl@0
   405
void CDbTable::PrepareReplaceL(const RDbTableRow& aRow,TDbRecordId aRecordId)
sl@0
   406
//
sl@0
   407
// Validate a record for replacement
sl@0
   408
//
sl@0
   409
	{
sl@0
   410
	EnsureIndexesL();
sl@0
   411
	ValidateL(aRow);
sl@0
   412
	TUint32 update=0;
sl@0
   413
	CDbRecordIndex** end=iIndexes;
sl@0
   414
	for (CDbRecordIndex** pix=iIndexesEnd;--pix>=end;)
sl@0
   415
		{
sl@0
   416
		update<<=1;
sl@0
   417
		CDbRecordIndex& ix=**pix;
sl@0
   418
		if (ix.IsBroken())
sl@0
   419
			continue;
sl@0
   420
		switch (ix.FindL(aRecordId,aRow))
sl@0
   421
			{
sl@0
   422
		case CDbRecordIndex::ENoMatch:		// key has changed in index
sl@0
   423
			update|=1;
sl@0
   424
			break;
sl@0
   425
		case CDbRecordIndex::EKeyMatch:	// duplicate found
sl@0
   426
			__LEAVE(KErrAlreadyExists);
sl@0
   427
		case CDbRecordIndex::EEntryMatch:	// no change in index
sl@0
   428
			break;
sl@0
   429
			}
sl@0
   430
		}
sl@0
   431
	iUpdateMap=update;
sl@0
   432
	}
sl@0
   433
sl@0
   434
void CDbTable::DoReplaceRowL(const RDbRow& aRow,TDbRecordId aRecordId)
sl@0
   435
	{
sl@0
   436
	CopyFromRow(RecordsL().ReplaceL(aRecordId,RecordLength(aRow)),aRow);
sl@0
   437
	++iGeneration;
sl@0
   438
	}
sl@0
   439
sl@0
   440
void CDbTable::ReplaceRowL(RDbTableRow& aRow,TDbRecordId aRecordId)
sl@0
   441
//
sl@0
   442
// Replace a record in the table
sl@0
   443
//
sl@0
   444
	{
sl@0
   445
	if (Def().Columns().HasLongColumns())
sl@0
   446
		CheckInliningL(aRow);
sl@0
   447
	TUint32 update=iUpdateMap;
sl@0
   448
	if (update==0)
sl@0
   449
		{
sl@0
   450
		DoReplaceRowL(aRow,aRecordId);
sl@0
   451
		return;
sl@0
   452
		}
sl@0
   453
	RDbTableRow oldRow;		// temporary row buffer for old row values
sl@0
   454
	oldRow.Open(this);
sl@0
   455
	oldRow.PushL();			// cleanup buffer if there is trouble
sl@0
   456
	ReadRowL(oldRow,aRecordId);
sl@0
   457
	DoReplaceRowL(aRow,aRecordId);
sl@0
   458
	for (CDbRecordIndex** pix=iIndexes;update;++pix,update>>=1)
sl@0
   459
		{
sl@0
   460
		if (update&1)
sl@0
   461
			{
sl@0
   462
			CDbRecordIndex& index=**pix;
sl@0
   463
			index.DeleteL(aRecordId,oldRow);
sl@0
   464
			__DEBUG(TInt dbgchk=) index.InsertL(aRecordId,aRow);
sl@0
   465
			__ASSERT(dbgchk);
sl@0
   466
			}
sl@0
   467
		}
sl@0
   468
	CleanupStack::PopAndDestroy();	// temp row buffer
sl@0
   469
	}
sl@0
   470
sl@0
   471
LOCAL_C void CheckInlineL(CDbBlobSpace& aBlobStore,TDbBlob& aBlob,TDbColType aType,CDbBlobCleanup*)
sl@0
   472
	{
sl@0
   473
	if (!aBlob.IsInline())
sl@0
   474
		return;
sl@0
   475
	if (aBlob.Size()>aBlobStore.InlineLimit())
sl@0
   476
		aBlob.SetId(aBlobStore.CreateL(aType,aBlob.Data(),aBlob.Size()));
sl@0
   477
	}
sl@0
   478
sl@0
   479
void CDbTable::CheckInliningL(RDbRow& aRow)
sl@0
   480
//
sl@0
   481
// Ensure that all Blobs are within the current inline limit
sl@0
   482
//
sl@0
   483
	{
sl@0
   484
	ApplyToBlobsL(aRow,CheckInlineL);
sl@0
   485
	}
sl@0
   486
sl@0
   487
LOCAL_C void DiscardBlobL(CDbBlobSpace& aBlobStore,TDbBlob& aBlob,TDbColType,CDbBlobCleanup*)
sl@0
   488
	{
sl@0
   489
	if (!aBlob.IsInline())
sl@0
   490
		aBlobStore.DeleteL(aBlob.Id());
sl@0
   491
	}
sl@0
   492
sl@0
   493
EXPORT_C void CDbTable::DiscardBlobsL(RDbRow& aRow)
sl@0
   494
//
sl@0
   495
// Default implemtation xlates the record and then walks the row buffer
sl@0
   496
//
sl@0
   497
	{
sl@0
   498
	ApplyToBlobsL(aRow,DiscardBlobL);
sl@0
   499
	}
sl@0
   500
sl@0
   501
void CDbTable::DeleteRowL(RDbTableRow& aRow,TDbRecordId aRecordId)
sl@0
   502
//
sl@0
   503
// Delete the record from the file and unlock it.
sl@0
   504
//
sl@0
   505
	{
sl@0
   506
	EnsureIndexesL();
sl@0
   507
sl@0
   508
	if (Def().Columns().HasLongColumns())
sl@0
   509
		{
sl@0
   510
		// Read data from the stream but do not delete the stream yet.
sl@0
   511
		aRow.ReadL(aRecordId);
sl@0
   512
		}
sl@0
   513
sl@0
   514
	CDbRecordIndex** end=iIndexes;
sl@0
   515
	CDbRecordIndex** pix=iIndexesEnd;
sl@0
   516
	if (pix!=end)
sl@0
   517
		aRow.ReadL(aRecordId);
sl@0
   518
	RecordsL().EraseL(aRecordId);
sl@0
   519
	while (--pix>=end)
sl@0
   520
		{
sl@0
   521
		CDbRecordIndex& ix=**pix;
sl@0
   522
		if (!ix.IsBroken())
sl@0
   523
			ix.DeleteL(aRecordId,aRow);
sl@0
   524
		}
sl@0
   525
sl@0
   526
	if (Def().Columns().HasLongColumns())
sl@0
   527
		{
sl@0
   528
		// Now delete the stream.
sl@0
   529
		DiscardBlobsL(aRow);
sl@0
   530
		}
sl@0
   531
sl@0
   532
	++iGeneration;
sl@0
   533
	}
sl@0
   534
sl@0
   535
EXPORT_C CDbRecordSpace& CDbTable::RecordsL()
sl@0
   536
	{
sl@0
   537
	__ASSERT(IsActive() && InUse());
sl@0
   538
	CDbRecordSpace* rec=iRecords;
sl@0
   539
	if (rec==NULL)
sl@0
   540
		iRecords=rec=RecordSpaceL();
sl@0
   541
	if (rec->OpenL())
sl@0
   542
		__LEAVE(KErrCorrupt);
sl@0
   543
	return *rec;
sl@0
   544
	}
sl@0
   545
sl@0
   546
EXPORT_C CDbBlobSpace* CDbTable::BlobsL()
sl@0
   547
	{
sl@0
   548
	__ASSERT(IsActive() && InUse());
sl@0
   549
	CDbBlobSpace* blob=iBlobs;
sl@0
   550
	if (blob==NULL)
sl@0
   551
		iBlobs=blob=BlobSpaceL();
sl@0
   552
	if (blob->OpenL())
sl@0
   553
		__LEAVE(KErrCorrupt);
sl@0
   554
	return blob;
sl@0
   555
	}
sl@0
   556
sl@0
   557
EXPORT_C CDbRecordIndex& CDbTable::IndexL(const CDbTableIndexDef& aIndex)
sl@0
   558
//
sl@0
   559
// Load the index associated with the index definition and ensure it is operational
sl@0
   560
//
sl@0
   561
	{
sl@0
   562
	__ASSERT(IsActive() && InUse());
sl@0
   563
	// find the matching slot in the indexes array
sl@0
   564
	CDbRecordIndex** slot=&iIndexes[0];
sl@0
   565
	for (TSglQueIterC<CDbTableIndexDef> iter(Def().Indexes().AsQue());iter++!=&aIndex;)
sl@0
   566
		++slot;
sl@0
   567
	__ASSERT(iIndexesEnd==NULL||(slot>=iIndexes&&slot<iIndexesEnd));
sl@0
   568
	// load (if required) and open the index
sl@0
   569
	CDbRecordIndex* index=*slot;
sl@0
   570
	if (index==0)
sl@0
   571
		*slot=index=RecordIndexL(aIndex);
sl@0
   572
	if (index->OpenL())
sl@0
   573
		__LEAVE(KErrCorrupt);
sl@0
   574
	return *index;
sl@0
   575
	}
sl@0
   576
sl@0
   577
void CDbTable::EnsureIndexesL()
sl@0
   578
//
sl@0
   579
// Ensure that all indexes are open
sl@0
   580
//
sl@0
   581
	{
sl@0
   582
	__ASSERT(IsActive() && InUse());
sl@0
   583
	if (iIndexesEnd==NULL)
sl@0
   584
		{
sl@0
   585
		CDbRecordIndex** pp=iIndexes;
sl@0
   586
		TSglQueIterC<CDbTableIndexDef> iter(Def().Indexes().AsQue());
sl@0
   587
		for (const CDbTableIndexDef* xDef;(xDef=iter++)!=NULL;++pp)
sl@0
   588
			{
sl@0
   589
			CDbRecordIndex* ix=*pp;
sl@0
   590
			if (ix==NULL)
sl@0
   591
				*pp=ix=RecordIndexL(*xDef);
sl@0
   592
			ix->OpenL();	// ignore broken-ness
sl@0
   593
			}
sl@0
   594
		iIndexesEnd=pp;
sl@0
   595
		}
sl@0
   596
	}
sl@0
   597
sl@0
   598
CDbRecordIter* CDbTable::IteratorL()
sl@0
   599
	{
sl@0
   600
	return RecordsL().IteratorL();
sl@0
   601
	}
sl@0
   602
sl@0
   603
CDbRecordIter* CDbTable::IteratorL(const CDbTableIndexDef& aIndex,TUint aInclusion,const TDbLookupKey* aLowerBound,const TDbLookupKey* aUpperBound)
sl@0
   604
//
sl@0
   605
// create an interator for the index parameter
sl@0
   606
//
sl@0
   607
	{
sl@0
   608
	return IndexL(aIndex).IteratorL(aInclusion,aLowerBound,aUpperBound);
sl@0
   609
	}
sl@0
   610
sl@0
   611
EXPORT_C TInt CDbTable::IndexSpanL(const CDbTableIndexDef&,TUint,const TDbLookupKey*,const TDbLookupKey*)
sl@0
   612
//
sl@0
   613
// Default implementation: no statistics are available
sl@0
   614
//
sl@0
   615
	{
sl@0
   616
	return EUnavailableSpan;
sl@0
   617
	}
sl@0
   618
sl@0
   619
CDbRecordIter* CDbTable::IteratorL(const TDesC& aIndex)
sl@0
   620
//
sl@0
   621
// create an interator for the index named
sl@0
   622
//
sl@0
   623
	{
sl@0
   624
	return IteratorL(Def().Indexes().FindL(aIndex));
sl@0
   625
	}
sl@0
   626
sl@0
   627
void CDbTable::ApplyToComponentsL(void (*anOperationL)(CDbRecordBase*))
sl@0
   628
//
sl@0
   629
// Invoke anOperation on all components of the table
sl@0
   630
//
sl@0
   631
	{
sl@0
   632
	if (iRecords)
sl@0
   633
		anOperationL(iRecords);
sl@0
   634
	if (iBlobs)
sl@0
   635
		anOperationL(iBlobs);
sl@0
   636
	CDbRecordIndex** const ixs=iIndexes;
sl@0
   637
	CDbRecordIndex** pix=iIndexesEnd;
sl@0
   638
	if (pix==NULL)
sl@0
   639
		pix=&iIndexes[KDbTableMaxIndexes];
sl@0
   640
	while (--pix>=ixs)
sl@0
   641
		if (*pix)
sl@0
   642
			anOperationL(*pix);
sl@0
   643
	}
sl@0
   644
sl@0
   645
// Class CDbtable::TValid
sl@0
   646
sl@0
   647
// this class is used by the cursor to check that it is still operational
sl@0
   648
sl@0
   649
CDbTable::TValid::TValid(CDbTable& aTable)
sl@0
   650
	:iTable(aTable)
sl@0
   651
	{
sl@0
   652
	__ASSERT(aTable.IsActive());
sl@0
   653
	iRollback.Construct(aTable.Database().Transaction().RollbackGeneration());
sl@0
   654
	}
sl@0
   655
sl@0
   656
TBool CDbTable::TValid::Reset()
sl@0
   657
	{
sl@0
   658
	TBool b=Table().IsActive();
sl@0
   659
	if (b)
sl@0
   660
		iRollback.Mark();
sl@0
   661
	return b;
sl@0
   662
	}
sl@0
   663
sl@0
   664
void CDbTable::TValid::CheckL() const
sl@0
   665
	{
sl@0
   666
	CDbTableDatabase* d=Table().iDatabase;
sl@0
   667
	if (!d)
sl@0
   668
		__LEAVE(KErrDisconnected);
sl@0
   669
	else
sl@0
   670
		d->Transaction().ReadyL();
sl@0
   671
	if (iRollback.Changed())
sl@0
   672
		__LEAVE(KErrNotReady);
sl@0
   673
	}