os/ossrv/genericservices/taskscheduler/SCHSVR/SCHSTORE.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) 2004-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
// User includes
sl@0
    17
#include "SCHSTORE.H"
sl@0
    18
#include "SchLogger.h"
sl@0
    19
#include "SCHEDULE.H"
sl@0
    20
#include "SCHCLI.H"
sl@0
    21
#include "SCHEXEC.H"
sl@0
    22
sl@0
    23
#define UNUSED_VAR(a) a = a
sl@0
    24
sl@0
    25
// Constants
sl@0
    26
const TInt KMaxChangesBeforeCompact = 5;
sl@0
    27
//
sl@0
    28
sl@0
    29
sl@0
    30
//
sl@0
    31
// -----> SchBackupManagerUtils (header)
sl@0
    32
//
sl@0
    33
sl@0
    34
void SchBackupManagerUtils::Panic(TSchStorePanic aPanic)
sl@0
    35
	{
sl@0
    36
	_LIT(KSchStorePanic, "SchStore");
sl@0
    37
	User::Panic(KSchStorePanic, aPanic);
sl@0
    38
	}
sl@0
    39
sl@0
    40
//
sl@0
    41
// -----> CSchBackupManager (header)
sl@0
    42
//
sl@0
    43
sl@0
    44
CSchBackupManager::CSchBackupManager(RFs& aFsSession)
sl@0
    45
:	CActive(EPriorityIdle), iFsSession(aFsSession)
sl@0
    46
	{
sl@0
    47
	// construct backup filename
sl@0
    48
	iBackupFileName.Copy(KSchsvrBackupFileName);
sl@0
    49
	iBackupFileName[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive()); 
sl@0
    50
sl@0
    51
	CActiveScheduler::Add(this);
sl@0
    52
	}
sl@0
    53
sl@0
    54
CSchBackupManager::~CSchBackupManager()
sl@0
    55
	{
sl@0
    56
	// This will delete the store and close the compactor
sl@0
    57
	Cancel();
sl@0
    58
	//
sl@0
    59
	delete iScheduleIndex;
sl@0
    60
	delete iClientIndex;
sl@0
    61
	}
sl@0
    62
sl@0
    63
void CSchBackupManager::ConstructL()
sl@0
    64
	{
sl@0
    65
	iScheduleIndex = CSchScheduleIndex::NewL();
sl@0
    66
	iClientIndex = CSchClientIndex::NewL(iFsSession);
sl@0
    67
	}
sl@0
    68
sl@0
    69
/**
sl@0
    70
If this is called during a restore, we want to make sure we want to append
sl@0
    71
to existing structure not always create new object and just append to the queue
sl@0
    72
for example we want to append task to existing client if they have the same name
sl@0
    73
and priority not create another one.
sl@0
    74
*/
sl@0
    75
void CSchBackupManager::RestoreL(TPriQue<CClientProxy>& aClients, 
sl@0
    76
								TSglQue<CSchedule>& aTimeSchedules,
sl@0
    77
								CSchLogManager& aSchLogManager,TBool aBUR)
sl@0
    78
	{
sl@0
    79
	LOGSTRING("CSchBackupManager::RestoreL");
sl@0
    80
sl@0
    81
	// Open store
sl@0
    82
	CPermanentFileStore* store = OpenOrCreateBackupStoreLC();
sl@0
    83
sl@0
    84
	// Restore root stream (two pointers to other streams)
sl@0
    85
	RStoreReadStream stream;
sl@0
    86
	stream.OpenLC(*store, store->Root());
sl@0
    87
	stream >> iIndexStreamSchedules;
sl@0
    88
	stream >> iIndexStreamClients;
sl@0
    89
	CleanupStack::PopAndDestroy(); // stream
sl@0
    90
sl@0
    91
	// Restore clients
sl@0
    92
	iClientIndex->RestoreClientsL(aClients, *store, iIndexStreamClients, aSchLogManager,aBUR);
sl@0
    93
sl@0
    94
	// Restore schedules
sl@0
    95
	iScheduleIndex->RestoreSchedulesL(aTimeSchedules, *store, iIndexStreamSchedules);
sl@0
    96
sl@0
    97
	// Cleanup store.
sl@0
    98
	CleanupStack::PopAndDestroy(store);
sl@0
    99
	}
sl@0
   100
sl@0
   101
void CSchBackupManager::PerformStoreOperationL(TSchBackupOperation aAction, const CSchedule& aSchedule)
sl@0
   102
//
sl@0
   103
//	Perform an schedule-related operation.
sl@0
   104
//
sl@0
   105
	{
sl@0
   106
	LOGSTRING3("CSchBackupManager::PerformStoreOperationL - Schedule: %S (%d)", &aSchedule.Name(), aSchedule.Id());
sl@0
   107
	
sl@0
   108
	if(aSchedule.Persists())
sl@0
   109
		{
sl@0
   110
		// Cancel any compaction that may be going on
sl@0
   111
		Cancel();
sl@0
   112
sl@0
   113
		// Perform the operation
sl@0
   114
		CStreamStore* store = OpenOrCreateBackupStoreLC();
sl@0
   115
		CleanupRevertPushLC(*store);
sl@0
   116
sl@0
   117
		switch(aAction)
sl@0
   118
			{
sl@0
   119
		case ESchBackupOperationAdd:
sl@0
   120
			LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpAdd");
sl@0
   121
			iScheduleIndex->AddL(iIndexStreamSchedules, *store, aSchedule);
sl@0
   122
			break;
sl@0
   123
		case ESchBackupOperationEdit:
sl@0
   124
			LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpEdit");
sl@0
   125
			iScheduleIndex->EditL(iIndexStreamSchedules, *store, aSchedule);
sl@0
   126
			break;
sl@0
   127
		case ESchBackupOperationDelete:
sl@0
   128
			LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpDelete");
sl@0
   129
			iScheduleIndex->DeleteL(iIndexStreamSchedules, *store, aSchedule);
sl@0
   130
			break;
sl@0
   131
		default:
sl@0
   132
			__ASSERT_DEBUG(EFalse, User::Invariant());
sl@0
   133
			User::Leave(KErrNotSupported);
sl@0
   134
			}	
sl@0
   135
		// Save changes to store
sl@0
   136
		store->CommitL();
sl@0
   137
sl@0
   138
		CleanupStack::Pop(); // Store reversion cleanup item
sl@0
   139
		CleanupStack::PopAndDestroy(store);
sl@0
   140
sl@0
   141
		// Indicate the store has changed and attempt to compact 
sl@0
   142
		// the store, but only if the required number of store 
sl@0
   143
		// changes has been met
sl@0
   144
		StoreChangedL();
sl@0
   145
		}
sl@0
   146
	}
sl@0
   147
sl@0
   148
void CSchBackupManager::PerformStoreOperationL(TSchBackupOperation aAction, const CClientProxy& aClient)
sl@0
   149
//
sl@0
   150
//	Perform an schedule-related operation.
sl@0
   151
//
sl@0
   152
	{
sl@0
   153
	LOGSTRING2("CSchBackupManager::PerformStoreOperationL - Client: %S", &aClient.ExecutorFileName());
sl@0
   154
sl@0
   155
	// Cancel any compaction that may be going on
sl@0
   156
	Cancel();
sl@0
   157
sl@0
   158
	// Perform the operation
sl@0
   159
	CStreamStore* store = OpenOrCreateBackupStoreLC();
sl@0
   160
	CleanupRevertPushLC(*store);
sl@0
   161
sl@0
   162
	switch(aAction)
sl@0
   163
		{
sl@0
   164
	case ESchBackupOperationAdd:
sl@0
   165
		LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpAdd");
sl@0
   166
		iClientIndex->AddL(iIndexStreamClients, *store, aClient);
sl@0
   167
		break;
sl@0
   168
	case ESchBackupOperationEdit:
sl@0
   169
		LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpEdit");
sl@0
   170
		iClientIndex->EditL(iIndexStreamClients, *store, aClient);
sl@0
   171
		break;
sl@0
   172
	case ESchBackupOperationDelete:
sl@0
   173
		LOGSTRING("CSchBackupManager::PerformStoreOperationL - OpDelete");
sl@0
   174
		iClientIndex->DeleteL(iIndexStreamClients, *store, aClient);
sl@0
   175
		break;
sl@0
   176
	default:
sl@0
   177
		__ASSERT_DEBUG(EFalse, User::Invariant());
sl@0
   178
		User::Leave(KErrNotSupported);
sl@0
   179
		}
sl@0
   180
sl@0
   181
	// Save changes to store
sl@0
   182
	store->CommitL();
sl@0
   183
sl@0
   184
	CleanupStack::Pop(); // Store reversion cleanup item
sl@0
   185
	CleanupStack::PopAndDestroy(store);
sl@0
   186
sl@0
   187
	// Indicate the store has changed and attempt to compact 
sl@0
   188
	// the store, but only if the required number of store 
sl@0
   189
	// changes has been met
sl@0
   190
	StoreChangedL();
sl@0
   191
	}
sl@0
   192
sl@0
   193
void CSchBackupManager::RunL()
sl@0
   194
//
sl@0
   195
//	Perform a store compaction step
sl@0
   196
//
sl@0
   197
	{
sl@0
   198
	LOGSTRING("CSchBackupManager::RunL - Performing compaction step");
sl@0
   199
sl@0
   200
	// Is there any more processing required?
sl@0
   201
	if	(iStoreReclaimerCount() > 0)
sl@0
   202
		{
sl@0
   203
		// Yes, so start next step
sl@0
   204
		iStoreReclaimer.Next(iStoreReclaimerCount, iStatus);
sl@0
   205
		SetActive();
sl@0
   206
		LOGSTRING("CSchBackupManager::RunL - Requesting another compaction step");
sl@0
   207
		}
sl@0
   208
	else
sl@0
   209
		{
sl@0
   210
		// No, we've finised. Clean up previously allocated
sl@0
   211
		// resources
sl@0
   212
		iStoreReclaimer.Close();
sl@0
   213
		//
sl@0
   214
		TRAPD(errNotRef, iStoreOpenForCompaction->CommitL());
sl@0
   215
        UNUSED_VAR(errNotRef);
sl@0
   216
		delete iStoreOpenForCompaction;
sl@0
   217
		iStoreOpenForCompaction = NULL;
sl@0
   218
sl@0
   219
		// Set this to zero again...
sl@0
   220
		ResetStoreChanges();
sl@0
   221
		LOGSTRING("CSchBackupManager::RunL - Compaction complete");
sl@0
   222
		}
sl@0
   223
	}
sl@0
   224
sl@0
   225
void CSchBackupManager::DoCancel()
sl@0
   226
//
sl@0
   227
//	Cancel's any asynchronous store compaction
sl@0
   228
//
sl@0
   229
	{
sl@0
   230
	LOGSTRING("CSchBackupManager::RunL - Cancelling compaction");
sl@0
   231
sl@0
   232
	iStoreReclaimer.Release();
sl@0
   233
	iStoreReclaimer.Close();
sl@0
   234
	//
sl@0
   235
	TRAPD(errNotRef, iStoreOpenForCompaction->CommitL());
sl@0
   236
    UNUSED_VAR(errNotRef);
sl@0
   237
	delete iStoreOpenForCompaction;
sl@0
   238
	iStoreOpenForCompaction = NULL;
sl@0
   239
	}
sl@0
   240
sl@0
   241
void CSchBackupManager::StoreChangedL()
sl@0
   242
	{
sl@0
   243
	__ASSERT_DEBUG(!IsActive() && !iStoreOpenForCompaction, User::Invariant());
sl@0
   244
sl@0
   245
	if	(RecordStoreChange() >= KMaxChangesBeforeCompact)
sl@0
   246
		{
sl@0
   247
		// Open the store
sl@0
   248
		CStreamStore* store = OpenBackupStoreLC();
sl@0
   249
sl@0
   250
		// Prepare for compaction
sl@0
   251
		TInt count;
sl@0
   252
		iStoreReclaimer.CompactL(*store, count);
sl@0
   253
		iStoreReclaimerCount = count;
sl@0
   254
sl@0
   255
		// Safe to do this now
sl@0
   256
		iStoreOpenForCompaction = store;
sl@0
   257
		CleanupStack::Pop();
sl@0
   258
sl@0
   259
		// Start asynchronous compaction...
sl@0
   260
		iStoreReclaimer.Next(iStoreReclaimerCount, iStatus);
sl@0
   261
		SetActive();
sl@0
   262
		}
sl@0
   263
	}
sl@0
   264
sl@0
   265
CPermanentFileStore* CSchBackupManager::OpenBackupStoreLC()
sl@0
   266
	{
sl@0
   267
	return CPermanentFileStore::OpenLC(iFsSession, iBackupFileName, EFileWrite);
sl@0
   268
	}
sl@0
   269
sl@0
   270
CPermanentFileStore* CSchBackupManager::OpenOrCreateBackupStoreLC()
sl@0
   271
	{
sl@0
   272
	CPermanentFileStore* store = NULL;
sl@0
   273
	TInt error = KErrNone;
sl@0
   274
	TRAP(error, 
sl@0
   275
		store = CPermanentFileStore::OpenL(iFsSession, iBackupFileName, EFileWrite);
sl@0
   276
		);
sl@0
   277
	if	(error < KErrNone)
sl@0
   278
		{
sl@0
   279
		if	(error == KErrNotFound)
sl@0
   280
			{
sl@0
   281
			CreateEmptyBackupL();
sl@0
   282
			store = CPermanentFileStore::OpenL(iFsSession, iBackupFileName, EFileWrite);
sl@0
   283
			}
sl@0
   284
		else
sl@0
   285
			{
sl@0
   286
			User::Leave(error);
sl@0
   287
			}
sl@0
   288
		}
sl@0
   289
	LOGSTRING("CSchBackupManager::OpenOrCreateBackupStoreLC - store opened");
sl@0
   290
	CleanupStack::PushL(store);
sl@0
   291
	return store;
sl@0
   292
	}
sl@0
   293
sl@0
   294
void CSchBackupManager::CleanupRevertPushLC(CStreamStore& aStore)
sl@0
   295
	{
sl@0
   296
	CleanupStack::PushL(TCleanupItem(RevertStore, &aStore));
sl@0
   297
	}
sl@0
   298
sl@0
   299
void CSchBackupManager::RevertStore(TAny* aStore)
sl@0
   300
//
sl@0
   301
//	The Cleanup Item callback function which is used to rever the store
sl@0
   302
//	should a leave occur.
sl@0
   303
//
sl@0
   304
	{
sl@0
   305
	CStreamStore* store = reinterpret_cast<CStreamStore*>(aStore);
sl@0
   306
	store->Revert();
sl@0
   307
	LOGSTRING("CSchBackupManager::RevertStore - store reverted");
sl@0
   308
	}
sl@0
   309
sl@0
   310
/**
sl@0
   311
Creates an initialised empty store.
sl@0
   312
The creation process is performed as an atomic operation.
sl@0
   313
If the operation fails somewhere at the middle, CreateEmptyBackupL()
sl@0
   314
will cleanup after itself - the store file will be deleted,
sl@0
   315
iIndexStreamSchedules and iIndexStreamClients stream IDs will be reinitialised
sl@0
   316
with invalid values.
sl@0
   317
*/
sl@0
   318
void CSchBackupManager::CreateEmptyBackupL()
sl@0
   319
	{
sl@0
   320
	TRAPD(err, DoCreateEmptyBackupL());
sl@0
   321
	if(err != KErrNone)
sl@0
   322
		{
sl@0
   323
		//Cleanup & leave
sl@0
   324
		// If unable to delete file record the fact
sl@0
   325
		TInt err2 = iFsSession.Delete(iBackupFileName);
sl@0
   326
		if (err2 != KErrNone)
sl@0
   327
			{
sl@0
   328
			LOGSTRING2("CSchBackupManager::CreateEmptyBackupL - File delete error = %d", err2);
sl@0
   329
			}
sl@0
   330
		iIndexStreamSchedules = iIndexStreamClients = KNullStreamId;
sl@0
   331
		User::Leave(err);
sl@0
   332
		}
sl@0
   333
	}
sl@0
   334
sl@0
   335
/**
sl@0
   336
Creates an initialised empty store.
sl@0
   337
*/
sl@0
   338
void CSchBackupManager::DoCreateEmptyBackupL()
sl@0
   339
	{
sl@0
   340
	LOGSTRING("CSchBackupManager::CreateEmptyBackupL - trying to create new store");
sl@0
   341
	CPermanentFileStore* store = CPermanentFileStore::ReplaceLC(iFsSession, iBackupFileName, EFileWrite);
sl@0
   342
	store->SetTypeL(KPermanentFileStoreLayoutUid);	
sl@0
   343
sl@0
   344
	// Create emtpy schedule index stream
sl@0
   345
	CSchScheduleIndex* indexSchedule = CSchScheduleIndex::NewL();
sl@0
   346
	CleanupStack::PushL(indexSchedule);
sl@0
   347
	iIndexStreamSchedules = indexSchedule->CreateEmptyIndexL(*store);
sl@0
   348
	CleanupStack::PopAndDestroy(indexSchedule);
sl@0
   349
sl@0
   350
	// Create emtpy client index stream
sl@0
   351
	CSchClientIndex* indexClient = CSchClientIndex::NewL(iFsSession);
sl@0
   352
	CleanupStack::PushL(indexClient);
sl@0
   353
	iIndexStreamClients = indexClient->CreateEmptyIndexL(*store);
sl@0
   354
	CleanupStack::PopAndDestroy(indexClient);
sl@0
   355
sl@0
   356
	// Write root stream
sl@0
   357
	WriteRootStreamL(*store);
sl@0
   358
sl@0
   359
	// Finalise
sl@0
   360
	store->CommitL();							
sl@0
   361
	CleanupStack::PopAndDestroy(store);
sl@0
   362
	LOGSTRING("CSchBackupManager::CreateEmptyBackupL - new store created");
sl@0
   363
	}
sl@0
   364
	
sl@0
   365
void CSchBackupManager::WriteRootStreamL(CStreamStore& aStore)
sl@0
   366
//
sl@0
   367
//	Write the root stream which contains the two stream id's
sl@0
   368
//
sl@0
   369
	{
sl@0
   370
	LOGSTRING("CSchBackupManager::WriteRootStreamL - trying to write root stream");
sl@0
   371
	RStoreWriteStream stream;
sl@0
   372
	TStreamId id = stream.CreateLC(aStore);	
sl@0
   373
	
sl@0
   374
	// This writes a stream id - it doesn't write the actual
sl@0
   375
	// dictionary since this is written after every operation.
sl@0
   376
	stream << iIndexStreamSchedules;
sl@0
   377
	stream << iIndexStreamClients;
sl@0
   378
sl@0
   379
	// 
sl@0
   380
	stream.CommitL();						
sl@0
   381
    CleanupStack::PopAndDestroy();// outstream
sl@0
   382
	static_cast<CPermanentFileStore&>(aStore).SetRootL(id);
sl@0
   383
	LOGSTRING("CSchBackupManager::WriteRootStreamL - root stream written");
sl@0
   384
	}
sl@0
   385
sl@0
   386
//
sl@0
   387
// -----> CSchScheduleIndex (header)
sl@0
   388
//
sl@0
   389
sl@0
   390
CSchScheduleIndex::CSchScheduleIndex()
sl@0
   391
	{
sl@0
   392
	}
sl@0
   393
sl@0
   394
CSchScheduleIndex* CSchScheduleIndex::NewL()
sl@0
   395
	{
sl@0
   396
	CSchScheduleIndex* self = new(ELeave) CSchScheduleIndex;
sl@0
   397
	return self;
sl@0
   398
	}
sl@0
   399
sl@0
   400
void CSchScheduleIndex::RestoreSchedulesL(TSglQue<CSchedule>& aTimeSchedules, 
sl@0
   401
										CStreamStore& aStore, 
sl@0
   402
										TStreamId aDictionaryStreamId)
sl@0
   403
	{
sl@0
   404
	CSchScheduleDictionary* dictionary = DictionaryLC(aStore, aDictionaryStreamId);
sl@0
   405
sl@0
   406
	// Restore every schedule in the dictionary
sl@0
   407
	const TInt count = dictionary->Count();
sl@0
   408
	LOGSTRING2("CSchScheduleIndex::RestoreSchedulesL - read %d dictionary entries", count);
sl@0
   409
sl@0
   410
	for(TInt i=0; i<count; i++)
sl@0
   411
		{
sl@0
   412
		// Get stream
sl@0
   413
		TStreamId stream = dictionary->AtIndex(i);
sl@0
   414
sl@0
   415
		// Restore schedule from stream
sl@0
   416
		CSchedule* schedule = CSchedule::NewL(static_cast<CFileStore&>(aStore), stream);
sl@0
   417
sl@0
   418
		// Save schedule
sl@0
   419
		aTimeSchedules.AddLast(*schedule); // takes ownership
sl@0
   420
sl@0
   421
		LOGSTRING3("CSchScheduleIndex::RestoreSchedulesL - restored schedule: %S, %d", &schedule->Name(), schedule->Id());
sl@0
   422
		}
sl@0
   423
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   424
	}
sl@0
   425
sl@0
   426
TStreamId CSchScheduleIndex::CreateEmptyIndexL(CStreamStore& aStore) const
sl@0
   427
	{
sl@0
   428
	CSchScheduleDictionary* dictionary = CSchScheduleDictionary::NewLC();
sl@0
   429
	RStoreWriteStream stream;
sl@0
   430
	TStreamId id = stream.CreateLC(aStore);
sl@0
   431
	stream << *dictionary;
sl@0
   432
	stream.CommitL();
sl@0
   433
	CleanupStack::PopAndDestroy(2); // stream, dictionary
sl@0
   434
	return id;
sl@0
   435
	}
sl@0
   436
sl@0
   437
void CSchScheduleIndex::AddL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule)
sl@0
   438
//
sl@0
   439
//	Saves the specified schedule to the store and adds a new entry to the
sl@0
   440
//	dictionary.
sl@0
   441
//
sl@0
   442
	{
sl@0
   443
	LOGSTRING2("CSchScheduleIndex::AddL - adding a new schedule (id is %d)", aSchedule.Id());
sl@0
   444
	RStoreWriteStream stream;
sl@0
   445
	TStreamId id = stream.CreateLC(aStore);
sl@0
   446
	stream << aSchedule;
sl@0
   447
	stream.CommitL();
sl@0
   448
	CleanupStack::PopAndDestroy(); // stream
sl@0
   449
sl@0
   450
	// Read the dictionary and update an entry
sl@0
   451
	CSchScheduleDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   452
	dictionary->AssignL(aSchedule.Id(), id);
sl@0
   453
sl@0
   454
	// Store the dictionary
sl@0
   455
	StoreDictionaryL(aStore, *dictionary, aIndexStream);
sl@0
   456
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   457
	LOGSTRING("CSchScheduleIndex::AddL - new schedule added okay");
sl@0
   458
	}
sl@0
   459
sl@0
   460
void CSchScheduleIndex::EditL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule)
sl@0
   461
//
sl@0
   462
//	Replace an existing stream with the contents of aSchedule. 
sl@0
   463
//
sl@0
   464
	{
sl@0
   465
	// Locate the existing stream (to be replaced)
sl@0
   466
	CSchScheduleDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   467
	LOGSTRING2("CSchScheduleIndex::EditL - editing schedule with id of %d", aSchedule.Id());
sl@0
   468
	TStreamId id = dictionary->At(aSchedule.Id());
sl@0
   469
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   470
	if	(id == KNullStreamId)
sl@0
   471
		{
sl@0
   472
		// Wasn't found, add it instead...
sl@0
   473
		LOGSTRING("CSchScheduleIndex::EditL - schedule wasn't found, adding new entry to the store");
sl@0
   474
		AddL(aIndexStream, aStore, aSchedule);
sl@0
   475
		}
sl@0
   476
	else
sl@0
   477
		{
sl@0
   478
		// Replace - the original stream is orphaned but the new
sl@0
   479
		// stream retains the old id.
sl@0
   480
		LOGSTRING("CSchScheduleIndex::EditL - replacing original stream");
sl@0
   481
		RStoreWriteStream stream;
sl@0
   482
		stream.ReplaceLC(aStore, id);
sl@0
   483
		stream << aSchedule;
sl@0
   484
		stream.CommitL();
sl@0
   485
		CleanupStack::PopAndDestroy(); // stream
sl@0
   486
		}
sl@0
   487
	}
sl@0
   488
sl@0
   489
void CSchScheduleIndex::DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule)
sl@0
   490
//
sl@0
   491
//	Remove an existing schedule from the store.
sl@0
   492
//
sl@0
   493
	{
sl@0
   494
	// Locate the existing stream (to be deleted)
sl@0
   495
	CSchScheduleDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   496
	LOGSTRING2("CSchScheduleIndex::DeleteL - deleting schedule with id of %d", aSchedule.Id());
sl@0
   497
	TStreamId id = dictionary->At(aSchedule.Id());
sl@0
   498
	if	(id == KNullStreamId)
sl@0
   499
		{
sl@0
   500
		LOGSTRING("CSchScheduleIndex::DeleteL - schedule wasn't found! Would panic in debug");
sl@0
   501
		__ASSERT_DEBUG(EFalse, SchBackupManagerUtils::Panic(SchBackupManagerUtils::ESchBackupManagerScheduleStreamToDeleteNotFound));
sl@0
   502
		}
sl@0
   503
	else
sl@0
   504
		{
sl@0
   505
		// Remove the stream
sl@0
   506
		aStore.DeleteL(id);
sl@0
   507
sl@0
   508
		// Save changes to store - we have to do this here since
sl@0
   509
		// we must assure that the store is fully updated before
sl@0
   510
		// we remove this stream from the dictionary (in order to 
sl@0
   511
		// maintain integrity).
sl@0
   512
		aStore.CommitL();
sl@0
   513
sl@0
   514
		// Remove entry from the stream dictionary
sl@0
   515
		dictionary->Remove(aSchedule.Id());
sl@0
   516
		StoreDictionaryL(aStore, *dictionary, aIndexStream);
sl@0
   517
		}
sl@0
   518
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   519
	}
sl@0
   520
sl@0
   521
CSchScheduleIndex::CSchScheduleDictionary* CSchScheduleIndex::DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream)
sl@0
   522
	{
sl@0
   523
	LOGSTRING("CSchScheduleIndex::DictionaryLC - restoring dictionary");
sl@0
   524
	CSchScheduleDictionary* dictionary = CSchScheduleDictionary::NewLC();
sl@0
   525
	RStoreReadStream stream;
sl@0
   526
	stream.OpenLC(aStore, aIndexStream);
sl@0
   527
	stream >> *dictionary;
sl@0
   528
	CleanupStack::PopAndDestroy(); // stream
sl@0
   529
	LOGSTRING("CSchScheduleIndex::DictionaryLC - dictionary restored");
sl@0
   530
	return dictionary;
sl@0
   531
	}
sl@0
   532
sl@0
   533
void CSchScheduleIndex::StoreDictionaryL(CStreamStore& aStore, const CSchScheduleDictionary& aDictionary, TStreamId aStreamToReplace)
sl@0
   534
	{
sl@0
   535
	LOGSTRING("CSchScheduleIndex::DictionaryLC - storing dictionary");
sl@0
   536
	RStoreWriteStream stream;
sl@0
   537
	stream.ReplaceLC(aStore, aStreamToReplace);
sl@0
   538
	stream << aDictionary;
sl@0
   539
	stream.CommitL();
sl@0
   540
	CleanupStack::PopAndDestroy(); // stream
sl@0
   541
	LOGSTRING("CSchScheduleIndex::DictionaryLC - dictionary stored");
sl@0
   542
	}
sl@0
   543
sl@0
   544
//
sl@0
   545
// -----> CSchScheduleDictionary (header)
sl@0
   546
//
sl@0
   547
sl@0
   548
CSchScheduleIndex::CSchScheduleDictionary::CSchScheduleDictionary()
sl@0
   549
	{
sl@0
   550
	}
sl@0
   551
sl@0
   552
CSchScheduleIndex::CSchScheduleDictionary::~CSchScheduleDictionary()
sl@0
   553
	{
sl@0
   554
	delete iMappings;
sl@0
   555
	}
sl@0
   556
sl@0
   557
void CSchScheduleIndex::CSchScheduleDictionary::ConstructL()
sl@0
   558
	{
sl@0
   559
	const TInt KGranularity = 3;
sl@0
   560
	iMappings = new(ELeave) CArrayFixSeg<TSchScheduleMapplet>(KGranularity);
sl@0
   561
	}
sl@0
   562
sl@0
   563
CSchScheduleIndex::CSchScheduleDictionary* CSchScheduleIndex::CSchScheduleDictionary::NewLC()
sl@0
   564
	{
sl@0
   565
	CSchScheduleDictionary* self = new(ELeave) CSchScheduleDictionary();
sl@0
   566
	CleanupStack::PushL(self);
sl@0
   567
	self->ConstructL();
sl@0
   568
	return self;
sl@0
   569
	}
sl@0
   570
sl@0
   571
void CSchScheduleIndex::CSchScheduleDictionary::AssignL(TInt aKey, TStreamId aId)
sl@0
   572
	{
sl@0
   573
	if	(aId == KNullStreamId)
sl@0
   574
		{
sl@0
   575
		Remove(aKey); // default associated stream is null
sl@0
   576
		return;
sl@0
   577
		}
sl@0
   578
	//
sl@0
   579
	TSchScheduleMapplet entry(aKey, KNullStreamId);
sl@0
   580
	TKeyArrayFix key(TSchScheduleMapplet::KeyOffset(), ECmpTInt32);
sl@0
   581
	TInt i;
sl@0
   582
	if	(iMappings->FindIsq(entry, key, i) == 0)
sl@0
   583
		{
sl@0
   584
		iMappings->At(i).SetStream(aId);
sl@0
   585
		return;
sl@0
   586
		}
sl@0
   587
	//
sl@0
   588
	entry.SetStream(aId);
sl@0
   589
	iMappings->InsertIsqL(entry, key);
sl@0
   590
	}
sl@0
   591
sl@0
   592
void CSchScheduleIndex::CSchScheduleDictionary::Remove(TInt aKey)
sl@0
   593
	{
sl@0
   594
	TSchScheduleMapplet entry(aKey, KNullStreamId);
sl@0
   595
	TKeyArrayFix key(TSchScheduleMapplet::KeyOffset(), ECmpTInt32);
sl@0
   596
	TInt i;
sl@0
   597
	if	(iMappings->FindIsq(entry, key, i) == 0)
sl@0
   598
		iMappings->Delete(i);
sl@0
   599
	}
sl@0
   600
sl@0
   601
TInt CSchScheduleIndex::CSchScheduleDictionary::Count() const
sl@0
   602
	{
sl@0
   603
	return iMappings->Count();
sl@0
   604
	}
sl@0
   605
sl@0
   606
TStreamId CSchScheduleIndex::CSchScheduleDictionary::At(TInt aKey) const
sl@0
   607
	{
sl@0
   608
	TSchScheduleMapplet entry(aKey, KNullStreamId);
sl@0
   609
	TKeyArrayFix key(TSchScheduleMapplet::KeyOffset(), ECmpTInt32);
sl@0
   610
	TInt i;
sl@0
   611
	if	(iMappings->FindIsq(entry, key, i) != 0)
sl@0
   612
		return KNullStreamId;
sl@0
   613
	//
sl@0
   614
	return iMappings->At(i).Stream();
sl@0
   615
	}
sl@0
   616
sl@0
   617
TStreamId CSchScheduleIndex::CSchScheduleDictionary::AtIndex(TInt aIndex) const
sl@0
   618
	{
sl@0
   619
	return iMappings->At(aIndex).Stream();
sl@0
   620
	}
sl@0
   621
sl@0
   622
void CSchScheduleIndex::CSchScheduleDictionary::InternalizeL(RReadStream& aStream)
sl@0
   623
	{
sl@0
   624
	aStream >> *iMappings;
sl@0
   625
	}
sl@0
   626
sl@0
   627
void CSchScheduleIndex::CSchScheduleDictionary::ExternalizeL(RWriteStream& aStream) const
sl@0
   628
	{
sl@0
   629
	aStream << *iMappings;
sl@0
   630
	}
sl@0
   631
sl@0
   632
//
sl@0
   633
// -----> CSchClientIndex (header)
sl@0
   634
//
sl@0
   635
sl@0
   636
CSchClientIndex::CSchClientIndex(RFs& aFsSession)
sl@0
   637
:	iFsSession(aFsSession)
sl@0
   638
	{
sl@0
   639
	}
sl@0
   640
sl@0
   641
CSchClientIndex* CSchClientIndex::NewL(RFs& aFsSession)
sl@0
   642
	{
sl@0
   643
	return new(ELeave) CSchClientIndex(aFsSession);
sl@0
   644
	}
sl@0
   645
sl@0
   646
void CSchClientIndex::AppendClientToListL(TPriQue<CClientProxy>& aClients, CClientProxy* aClient)
sl@0
   647
	{
sl@0
   648
	CClientProxy* currentClient;
sl@0
   649
	TDblQueIter<CClientProxy> clientIter(aClients);
sl@0
   650
	clientIter.SetToFirst();
sl@0
   651
	while ((currentClient = clientIter++) != NULL)
sl@0
   652
		{	
sl@0
   653
		//if match on same client name and priority	
sl@0
   654
		if (currentClient->IsEqual(aClient->ExecutorFileName(),aClient->Priority()))
sl@0
   655
			{
sl@0
   656
			//transfer all the tasks in aClient to this client
sl@0
   657
			aClient->TransferTasks(*currentClient);
sl@0
   658
			//now that we have transferred all the task ownership, we can safely delete the source client
sl@0
   659
			delete aClient;
sl@0
   660
			return;
sl@0
   661
			}
sl@0
   662
		}
sl@0
   663
	//since that there is no matching one just add the aClient directly
sl@0
   664
	aClients.Add(*aClient);	
sl@0
   665
	}
sl@0
   666
sl@0
   667
void CSchClientIndex::RestoreClientsL(TPriQue<CClientProxy>& aClients, 
sl@0
   668
									CStreamStore& aStore, 
sl@0
   669
									TStreamId aIndexStream,
sl@0
   670
									CSchLogManager& aSchLogManager,TBool aBUR)
sl@0
   671
	{
sl@0
   672
	CSchClientDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   673
sl@0
   674
	// Restore every schedule in the dictionary
sl@0
   675
	const TInt count = dictionary->Count();
sl@0
   676
	LOGSTRING2("CSchClientIndex::RestoreClientsL - read %d dictionary entries", count);
sl@0
   677
sl@0
   678
	for(TInt i=0; i<count; i++)
sl@0
   679
		{
sl@0
   680
		// Get stream
sl@0
   681
		TStreamId streamId = dictionary->AtIndex(i);
sl@0
   682
sl@0
   683
		RStoreReadStream stream;
sl@0
   684
		stream.OpenLC(aStore, streamId);
sl@0
   685
sl@0
   686
		// Restore client
sl@0
   687
		CClientProxy* client = CClientProxy::NewL(iFsSession,stream,aSchLogManager);
sl@0
   688
		CleanupStack::PopAndDestroy(); // stream
sl@0
   689
sl@0
   690
		// Save schedule
sl@0
   691
		// only when this is called through restore we need to append to existing client which
sl@0
   692
		// might already contain other transient tasks
sl@0
   693
		if (aBUR)
sl@0
   694
			{
sl@0
   695
			AppendClientToListL(aClients,client);
sl@0
   696
			}
sl@0
   697
		else
sl@0
   698
			{
sl@0
   699
			aClients.Add(*client); // takes ownership				
sl@0
   700
			}
sl@0
   701
		LOGSTRING2("CSchClientIndex::RestoreClientsL - restored client: %S", &client->ExecutorFileName());
sl@0
   702
		}
sl@0
   703
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   704
	}
sl@0
   705
sl@0
   706
TStreamId CSchClientIndex::CreateEmptyIndexL(CStreamStore& aStore) const
sl@0
   707
	{
sl@0
   708
	CSchClientDictionary* dictionary = CSchClientDictionary::NewLC();
sl@0
   709
	RStoreWriteStream stream;
sl@0
   710
	TStreamId id = stream.CreateLC(aStore);
sl@0
   711
	stream << *dictionary;
sl@0
   712
	stream.CommitL();
sl@0
   713
	CleanupStack::PopAndDestroy(2); // stream, dictionary
sl@0
   714
	return id;
sl@0
   715
	}
sl@0
   716
sl@0
   717
void CSchClientIndex::AddL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient)
sl@0
   718
	{
sl@0
   719
	RStoreWriteStream stream;
sl@0
   720
	TStreamId id = stream.CreateLC(aStore);
sl@0
   721
	stream << aClient;
sl@0
   722
	stream.CommitL();
sl@0
   723
	CleanupStack::PopAndDestroy(); // stream
sl@0
   724
sl@0
   725
	// Read the dictionary and update an entry
sl@0
   726
	CSchClientDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   727
	dictionary->AssignL(aClient.ExecutorFileName(), id);
sl@0
   728
sl@0
   729
	// Store the dictionary
sl@0
   730
	StoreDictionaryL(aStore, *dictionary, aIndexStream);
sl@0
   731
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   732
	}
sl@0
   733
sl@0
   734
void CSchClientIndex::EditL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient)
sl@0
   735
	{
sl@0
   736
	// Locate the existing stream (to be replaced)
sl@0
   737
	CSchClientDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   738
	TStreamId id = dictionary->AtL(aClient.ExecutorFileName());
sl@0
   739
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   740
	if	(id == KNullStreamId)
sl@0
   741
		{
sl@0
   742
		// Wasn't found, add it instead...
sl@0
   743
		AddL(aIndexStream, aStore, aClient);
sl@0
   744
		}
sl@0
   745
	else
sl@0
   746
		{
sl@0
   747
		// Replace - the original stream is orphaned but the new
sl@0
   748
		// stream retains the old id.
sl@0
   749
		RStoreWriteStream stream;
sl@0
   750
		stream.ReplaceLC(aStore, id);
sl@0
   751
		stream << aClient;
sl@0
   752
		stream.CommitL();
sl@0
   753
		CleanupStack::PopAndDestroy(); // stream
sl@0
   754
		}
sl@0
   755
	}
sl@0
   756
sl@0
   757
void CSchClientIndex::DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient)
sl@0
   758
	{
sl@0
   759
	// Locate the existing stream (to be deleted)
sl@0
   760
	CSchClientDictionary* dictionary = DictionaryLC(aStore, aIndexStream);
sl@0
   761
	TStreamId id = dictionary->AtL(aClient.ExecutorFileName());
sl@0
   762
	__ASSERT_ALWAYS(id != KNullStreamId, SchBackupManagerUtils::Panic(SchBackupManagerUtils::ESchBackupManagerScheduleStreamToDeleteNotFound));
sl@0
   763
sl@0
   764
	// Remove the stream
sl@0
   765
	aStore.DeleteL(id);
sl@0
   766
sl@0
   767
	// Save changes to store - we have to do this here since
sl@0
   768
	// we must assure that the store is fully updated before
sl@0
   769
	// we remove this stream from the dictionary (in order to 
sl@0
   770
	// maintain integrity).
sl@0
   771
	aStore.CommitL();
sl@0
   772
sl@0
   773
	// Remove entry from the stream dictionary
sl@0
   774
	dictionary->RemoveL(aClient.ExecutorFileName());
sl@0
   775
	StoreDictionaryL(aStore, *dictionary, aIndexStream);
sl@0
   776
	CleanupStack::PopAndDestroy(dictionary);
sl@0
   777
	}
sl@0
   778
sl@0
   779
CSchClientIndex::CSchClientDictionary* CSchClientIndex::DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream)
sl@0
   780
	{
sl@0
   781
	LOGSTRING("CSchClientIndex::DictionaryLC - restoring dictionary");
sl@0
   782
	CSchClientDictionary* dictionary = CSchClientDictionary::NewLC();
sl@0
   783
	RStoreReadStream stream;
sl@0
   784
	stream.OpenLC(aStore, aIndexStream);
sl@0
   785
	stream >> *dictionary;
sl@0
   786
	CleanupStack::PopAndDestroy(); // stream
sl@0
   787
	LOGSTRING("CSchClientIndex::DictionaryLC - dictionary restored");
sl@0
   788
	return dictionary;
sl@0
   789
	}
sl@0
   790
sl@0
   791
void CSchClientIndex::StoreDictionaryL(CStreamStore& aStore, const CSchClientDictionary& aDictionary, TStreamId aStreamToReplace)
sl@0
   792
	{
sl@0
   793
	LOGSTRING("CSchClientIndex::DictionaryLC - storing dictionary");
sl@0
   794
	RStoreWriteStream stream;
sl@0
   795
	stream.ReplaceLC(aStore, aStreamToReplace);
sl@0
   796
	stream << aDictionary;
sl@0
   797
	stream.CommitL();
sl@0
   798
	CleanupStack::PopAndDestroy(); // stream
sl@0
   799
	LOGSTRING("CSchClientIndex::DictionaryLC - dictionary stored");
sl@0
   800
	}
sl@0
   801
sl@0
   802
//
sl@0
   803
// -----> TKeyArrayPtr (header)
sl@0
   804
//
sl@0
   805
NONSHARABLE_CLASS(TKeyArrayMapping) : public TKeyArrayFix
sl@0
   806
{
sl@0
   807
public:
sl@0
   808
	inline TKeyArrayMapping(TInt aOffset) : TKeyArrayFix(aOffset, TKeyCmpText()) {iHBufType=ETrue;}
sl@0
   809
	//
sl@0
   810
	virtual TAny* At(TInt aIndex) const;
sl@0
   811
	virtual TInt Compare(TInt aLeft,TInt aRight) const;	
sl@0
   812
sl@0
   813
private:
sl@0
   814
	TBool iHBufType;
sl@0
   815
	};
sl@0
   816
sl@0
   817
TAny* TKeyArrayMapping::At(TInt aIndex) const
sl@0
   818
	{
sl@0
   819
	if	(aIndex==KIndexPtr)
sl@0
   820
		{
sl@0
   821
		const CSchClientIndex::CSchClientMapplet** ppItem = (const CSchClientIndex::CSchClientMapplet**) iPtr;
sl@0
   822
		const CSchClientIndex::CSchClientMapplet* pItem = *ppItem;
sl@0
   823
		return (TAny*) pItem;
sl@0
   824
		}
sl@0
   825
	else
sl@0
   826
		{
sl@0
   827
		TInt baseOffset = aIndex * sizeof(const CSchClientIndex::CSchClientMapplet*);
sl@0
   828
		const TUint8* pItemUncast = iBase->Ptr(baseOffset).Ptr();
sl@0
   829
		const CSchClientIndex::CSchClientMapplet** ppItem = (const CSchClientIndex::CSchClientMapplet**) pItemUncast;
sl@0
   830
		const CSchClientIndex::CSchClientMapplet* pItem = *ppItem;
sl@0
   831
		return (TAny*) pItem;
sl@0
   832
		}
sl@0
   833
	}
sl@0
   834
sl@0
   835
TInt TKeyArrayMapping::Compare(TInt aLeft,TInt aRight) const
sl@0
   836
	{
sl@0
   837
	if	(iHBufType)
sl@0
   838
		{
sl@0
   839
		const CSchClientIndex::CSchClientMapplet* left = (const CSchClientIndex::CSchClientMapplet*) At(aLeft);
sl@0
   840
		const CSchClientIndex::CSchClientMapplet* right = (const CSchClientIndex::CSchClientMapplet*) At(aRight);
sl@0
   841
sl@0
   842
		return (left->Key().Compare(right->Key()));
sl@0
   843
		}
sl@0
   844
	else
sl@0
   845
		User::Invariant();
sl@0
   846
	return KErrNotFound;
sl@0
   847
	}
sl@0
   848
sl@0
   849
//
sl@0
   850
// -----> CSchClientIndex::CSchClientMapplet (header)
sl@0
   851
//
sl@0
   852
sl@0
   853
CSchClientIndex::CSchClientMapplet::~CSchClientMapplet()
sl@0
   854
	{
sl@0
   855
	delete iKey;
sl@0
   856
	}
sl@0
   857
sl@0
   858
CSchClientIndex::CSchClientMapplet* CSchClientIndex::CSchClientMapplet::NewLC(RReadStream& aStream)
sl@0
   859
	{
sl@0
   860
	CSchClientMapplet* self = new(ELeave) CSchClientMapplet;
sl@0
   861
	CleanupStack::PushL(self);
sl@0
   862
	aStream >> *self;
sl@0
   863
	return self;
sl@0
   864
	}
sl@0
   865
sl@0
   866
CSchClientIndex::CSchClientMapplet* CSchClientIndex::CSchClientMapplet::NewLC(const TDesC& aKey, TStreamId aStream)
sl@0
   867
	{
sl@0
   868
	CSchClientMapplet* self = new(ELeave) CSchClientMapplet;
sl@0
   869
	CleanupStack::PushL(self);
sl@0
   870
	self->iKey = aKey.AllocL();
sl@0
   871
	self->iStream = aStream;
sl@0
   872
	return self;
sl@0
   873
	}
sl@0
   874
sl@0
   875
void CSchClientIndex::CSchClientMapplet::InternalizeL(RReadStream& aStream)
sl@0
   876
	{
sl@0
   877
	HBufC* key = HBufC::NewLC(aStream, KMaxTInt);
sl@0
   878
	delete iKey;
sl@0
   879
	iKey = key;
sl@0
   880
	CleanupStack::Pop(); // key
sl@0
   881
	aStream >> iStream;
sl@0
   882
	}
sl@0
   883
sl@0
   884
void CSchClientIndex::CSchClientMapplet::ExternalizeL(RWriteStream& aStream) const
sl@0
   885
	{
sl@0
   886
	aStream << *iKey;
sl@0
   887
	aStream << iStream;
sl@0
   888
	}
sl@0
   889
sl@0
   890
sl@0
   891
//
sl@0
   892
// -----> CSchClientIndex::CSchClientDictionary (header)
sl@0
   893
//
sl@0
   894
sl@0
   895
CSchClientIndex::CSchClientDictionary::CSchClientDictionary()
sl@0
   896
	{
sl@0
   897
	}
sl@0
   898
sl@0
   899
CSchClientIndex::CSchClientDictionary::~CSchClientDictionary()
sl@0
   900
	{	
sl@0
   901
	if(iMappings)
sl@0
   902
		{
sl@0
   903
		for(int index = 0; index < iMappings->Count();index++)
sl@0
   904
			{
sl@0
   905
			delete iMappings->At(index);
sl@0
   906
			}
sl@0
   907
		delete iMappings;	
sl@0
   908
		}
sl@0
   909
	}
sl@0
   910
sl@0
   911
void CSchClientIndex::CSchClientDictionary::ConstructL()
sl@0
   912
	{
sl@0
   913
	const TInt KGranularity = 2;
sl@0
   914
	iMappings = new(ELeave) CArrayPtrSeg<CSchClientMapplet>(KGranularity);
sl@0
   915
	}
sl@0
   916
sl@0
   917
CSchClientIndex::CSchClientDictionary* CSchClientIndex::CSchClientDictionary::NewLC()
sl@0
   918
	{
sl@0
   919
	CSchClientDictionary* self = new(ELeave) CSchClientDictionary();
sl@0
   920
	CleanupStack::PushL(self);
sl@0
   921
	self->ConstructL();
sl@0
   922
	return self;
sl@0
   923
	}
sl@0
   924
sl@0
   925
void CSchClientIndex::CSchClientDictionary::AssignL(const TDesC& aKey, TStreamId aId)
sl@0
   926
	{
sl@0
   927
	if	(aId == KNullStreamId)
sl@0
   928
		{
sl@0
   929
		RemoveL(aKey); // default associated stream is null
sl@0
   930
		return;
sl@0
   931
		}
sl@0
   932
sl@0
   933
	CSchClientMapplet* entry = CSchClientMapplet::NewLC(aKey, KNullStreamId);
sl@0
   934
	TKeyArrayMapping key(CSchClientMapplet::KeyOffset());
sl@0
   935
	TInt i;
sl@0
   936
	if	(iMappings->FindIsq(entry, key, i) == 0)
sl@0
   937
		{
sl@0
   938
		iMappings->At(i)->SetStream(aId);
sl@0
   939
		CleanupStack::PopAndDestroy(); // entry
sl@0
   940
		return;
sl@0
   941
		}
sl@0
   942
sl@0
   943
	entry->SetStream(aId);
sl@0
   944
	iMappings->InsertIsqL(entry, key);
sl@0
   945
	CleanupStack::Pop(); // entry
sl@0
   946
	}
sl@0
   947
sl@0
   948
void CSchClientIndex::CSchClientDictionary::RemoveL(const TDesC& aKey)
sl@0
   949
	{
sl@0
   950
	CSchClientMapplet* entry = CSchClientMapplet::NewLC(aKey, KNullStreamId);
sl@0
   951
	TKeyArrayMapping key(CSchClientMapplet::KeyOffset());
sl@0
   952
	TInt i;
sl@0
   953
	if	(iMappings->FindIsq(entry, key, i) == 0)
sl@0
   954
		{
sl@0
   955
		delete iMappings->At(i);
sl@0
   956
		iMappings->Delete(i);
sl@0
   957
		}
sl@0
   958
	CleanupStack::PopAndDestroy(); // entry
sl@0
   959
	}
sl@0
   960
sl@0
   961
TInt CSchClientIndex::CSchClientDictionary::Count() const
sl@0
   962
	{
sl@0
   963
	return iMappings->Count();
sl@0
   964
	}
sl@0
   965
sl@0
   966
TStreamId CSchClientIndex::CSchClientDictionary::AtL(const TDesC& aKey) const
sl@0
   967
	{
sl@0
   968
	CSchClientMapplet* entry = CSchClientMapplet::NewLC(aKey, KNullStreamId);
sl@0
   969
	TKeyArrayMapping key(CSchClientMapplet::KeyOffset());
sl@0
   970
	TInt i;
sl@0
   971
	TInt found = iMappings->FindIsq(entry, key, i);
sl@0
   972
	CleanupStack::PopAndDestroy(); // entry
sl@0
   973
	if	(found != 0)
sl@0
   974
		return KNullStreamId;
sl@0
   975
	return iMappings->At(i)->Stream();
sl@0
   976
	}
sl@0
   977
sl@0
   978
TStreamId CSchClientIndex::CSchClientDictionary::AtIndex(TInt aIndex) const
sl@0
   979
	{
sl@0
   980
	return iMappings->At(aIndex)->Stream();
sl@0
   981
	}
sl@0
   982
sl@0
   983
void CSchClientIndex::CSchClientDictionary::InternalizeL(RReadStream& aStream)
sl@0
   984
	{
sl@0
   985
	const TInt count = aStream.ReadInt32L();
sl@0
   986
	for(TInt i=0; i<count; i++)
sl@0
   987
		{
sl@0
   988
		CSchClientMapplet* mapplet = CSchClientMapplet::NewLC(aStream);
sl@0
   989
		iMappings->AppendL(mapplet);
sl@0
   990
		CleanupStack::Pop(); // mapplet
sl@0
   991
		}
sl@0
   992
	}
sl@0
   993
sl@0
   994
void CSchClientIndex::CSchClientDictionary::ExternalizeL(RWriteStream& aStream) const
sl@0
   995
	{
sl@0
   996
	const TInt count = iMappings->Count();
sl@0
   997
	aStream.WriteInt32L(count);
sl@0
   998
	for(TInt i=0; i<count; i++)
sl@0
   999
		aStream << *iMappings->At(i);
sl@0
  1000
	}