os/persistentdata/persistentstorage/centralrepository/cenrepsrv/shrepos.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
#include "srvdefs.h"
sl@0
    17
#include "srvres.h"
sl@0
    18
#include "shrepos.h"
sl@0
    19
#include "srvrepos_noc.h"
sl@0
    20
#include "obsrvr_noc.h"
sl@0
    21
#include "srvparams.h"
sl@0
    22
sl@0
    23
CSharedRepository* CSharedRepository::NewL(TUid aUid)
sl@0
    24
	{
sl@0
    25
	CSharedRepository* self = new(ELeave) CSharedRepository();
sl@0
    26
	CleanupStack::PushL(self);
sl@0
    27
	self->ConstructL(aUid);
sl@0
    28
	CleanupStack::Pop(self);
sl@0
    29
	
sl@0
    30
	// debug check that CRepository::TTransactionMode modes match those used internally
sl@0
    31
	// from CRepositoryTransactor: internal state logic relies on this
sl@0
    32
	// there should be a better location for these checks...
sl@0
    33
	ASSERT(CRepository::EReadTransaction == static_cast<CRepository::TTransactionMode>(EReadTransaction));
sl@0
    34
	ASSERT(CRepository::EConcurrentReadWriteTransaction == static_cast<CRepository::TTransactionMode>(EConcurrentReadWriteTransaction));
sl@0
    35
	ASSERT(CRepository::EReadWriteTransaction == static_cast<CRepository::TTransactionMode>(EReadWriteTransaction));
sl@0
    36
	
sl@0
    37
	return self;
sl@0
    38
	}
sl@0
    39
	
sl@0
    40
void CSharedRepository::ConstructL(TUid aUid)
sl@0
    41
	{
sl@0
    42
	iSimRep = CHeapRepository::NewL(aUid);
sl@0
    43
	}
sl@0
    44
sl@0
    45
CSharedRepository::CSharedRepository() : iNotificationState(ETrue)
sl@0
    46
	{
sl@0
    47
	}
sl@0
    48
	
sl@0
    49
CSharedRepository::~CSharedRepository()
sl@0
    50
	{
sl@0
    51
	if (iSimRep)
sl@0
    52
		{
sl@0
    53
		delete iSimRep;
sl@0
    54
		}
sl@0
    55
	}
sl@0
    56
sl@0
    57
TUid CSharedRepository::Uid() const
sl@0
    58
	{
sl@0
    59
	return iSimRep->Uid();
sl@0
    60
	}
sl@0
    61
sl@0
    62
/**
sl@0
    63
Stores the repository in-memory content to the related repository file on drive C.
sl@0
    64
If the operation fails, the in-memory content won't match the content of 
sl@0
    65
the repository file (which will be kept as it was before the CommitChangesL() call).
sl@0
    66
In order to keep the consistency, the in-memory repository content is deleted now
sl@0
    67
and restored later, on the next repository operation.
sl@0
    68
*/
sl@0
    69
TInt CSharedRepository::CommitChanges(TCentRepLocation aLocation)
sl@0
    70
	{
sl@0
    71
	iInconsistentData=ETrue;
sl@0
    72
	
sl@0
    73
	HBufC* filePath(NULL);	   
sl@0
    74
	TRAPD(err,TServerResources::CreateRepositoryFileNameL(filePath,iSimRep->Uid(),aLocation,ECre));	
sl@0
    75
	if (err!=KErrNone)
sl@0
    76
		{
sl@0
    77
		iSimRep->ResetContent();
sl@0
    78
		return err;		
sl@0
    79
		}
sl@0
    80
	
sl@0
    81
	// should not be committing while transactions are still active
sl@0
    82
	ASSERT(!IsTransactionActive());
sl@0
    83
	TInt ret=iSimRep->CommitChanges(TServerResources::iFs,TServerResources::iPersistsVersion,*filePath);
sl@0
    84
	if (ret==KErrNone)
sl@0
    85
		{
sl@0
    86
		iInconsistentData=EFalse;	
sl@0
    87
		}
sl@0
    88
	delete filePath;
sl@0
    89
	return ret;
sl@0
    90
	}
sl@0
    91
sl@0
    92
// merge transaction settings (which may include entries flagged as deleted), persist and notify
sl@0
    93
// private method relies on calling code to ensure it is permitted to make changes here.
sl@0
    94
// if this method is committing any changes, it cancels all other sessions' transactions
sl@0
    95
TInt CSharedRepository::DoCommitTransactionSettings(CRepositoryTransactor& aTransactor, TUint32& aKeyInfo)
sl@0
    96
	{
sl@0
    97
	aKeyInfo = KUnspecifiedKey;
sl@0
    98
	if (0 == aTransactor.iTransactionSettings.Count())
sl@0
    99
		{
sl@0
   100
		aKeyInfo = 0; // == number of settings modified
sl@0
   101
		return KErrNone; // nothing to do
sl@0
   102
		}
sl@0
   103
	TInt error = iSimRep->SettingsArray().MergeArray(aTransactor.iTransactionSettings, iSimRep->DeletedSettingsArray(), ETransactionMerge);
sl@0
   104
	TInt numChanges = aTransactor.iTransactionSettings.Count();
sl@0
   105
	if (numChanges == 0)
sl@0
   106
		{
sl@0
   107
		if (error == KErrNone)
sl@0
   108
			{
sl@0
   109
			aKeyInfo = 0; // no changes
sl@0
   110
			}
sl@0
   111
		// no changes were made, so the internal cache is still valid.
sl@0
   112
		// This could be because there were no changes: empty list, only deletes on
sl@0
   113
		// non-existent items (a setting created and deleted in the transaction),
sl@0
   114
		// or because of error, such as failure of an initial realloc failure.
sl@0
   115
		return error;
sl@0
   116
		}
sl@0
   117
	if (error != KErrNone)
sl@0
   118
		{
sl@0
   119
		// the repository is corrupted. Dump it for lazy loading later
sl@0
   120
		ResetContent();
sl@0
   121
		
sl@0
   122
		// mark cache as inconsistent so it is reloaded.
sl@0
   123
		iInconsistentData = ETrue;	
sl@0
   124
		return error;	
sl@0
   125
		}
sl@0
   126
	if (error == KErrNone)
sl@0
   127
		{
sl@0
   128
		// changes have been made: fail all other sessions' transactions so we can commit
sl@0
   129
		FailAllTransactions(/*aExcludeTransactor=*/&aTransactor);
sl@0
   130
		error = CommitChanges(); // this already calls ResetContent() in case of failure
sl@0
   131
		}
sl@0
   132
	if (error == KErrNone)
sl@0
   133
		{
sl@0
   134
		// settings are now persistent on disk: we can now notify about the changes
sl@0
   135
		// following will notify about objects that are created and deleted in the transaction
sl@0
   136
		// this could be made faster by having a multiple Notify method.
sl@0
   137
		// That would also allow Notify messages to be more descriptive - ranges of Keys
sl@0
   138
		for (TInt i = 0; i < numChanges; i++)
sl@0
   139
			{
sl@0
   140
			Notify(aTransactor.iTransactionSettings[i].Key());
sl@0
   141
			}
sl@0
   142
		aKeyInfo = /*reinterpret_cast<TUint32>*/numChanges;
sl@0
   143
		}
sl@0
   144
	return error;
sl@0
   145
	}
sl@0
   146
sl@0
   147
void CSharedRepository::SetMetaDataOnRead(TServerSetting& aSetting, TBool aSingleMetaFound)
sl@0
   148
	{
sl@0
   149
	iSimRep->SetMetaDataOnRead(aSetting, aSingleMetaFound);
sl@0
   150
	}
sl@0
   151
sl@0
   152
void CSharedRepository::SetMetaDataOnCreate(TServerSetting& aNewSetting, TUint32* aMeta)
sl@0
   153
	{
sl@0
   154
	if(aMeta)
sl@0
   155
		{
sl@0
   156
		aNewSetting.SetMeta(*aMeta);
sl@0
   157
		}
sl@0
   158
	else
sl@0
   159
		{
sl@0
   160
		// No metadata specified. First check for a matching "range" default
sl@0
   161
		// metadata setting
sl@0
   162
		TSettingsDefaultMeta* defaultMeta = iSimRep->RangeMetaArray().Find(aNewSetting.Key());
sl@0
   163
		if (defaultMeta)
sl@0
   164
			{
sl@0
   165
			aNewSetting.SetMeta(defaultMeta->GetDefaultMetadata());
sl@0
   166
			}
sl@0
   167
		else
sl@0
   168
			{
sl@0
   169
			// Range value not found, try for a repository default
sl@0
   170
			aNewSetting.SetMeta(iSimRep->DefaultMeta());
sl@0
   171
			}
sl@0
   172
		}	
sl@0
   173
	}
sl@0
   174
sl@0
   175
void CSharedRepository::CreateL(TServerSetting& aSetting, TSettingsAccessPolicy*& aPolicy, TBool aFirstLoad, TBool aSingleMetaFound)
sl@0
   176
	{
sl@0
   177
	User::LeaveIfError(iSimRep->Create(aSetting, aPolicy, aSingleMetaFound));
sl@0
   178
	if (!aFirstLoad)
sl@0
   179
		{
sl@0
   180
		Notify(aSetting.Key());
sl@0
   181
		}
sl@0
   182
	}
sl@0
   183
sl@0
   184
// deletes an individual setting in the shared repository and makes it persistent
sl@0
   185
// if changes are made, all sessions' transactions are failed
sl@0
   186
TInt CSharedRepository::DeleteAndPersist(TUint32 aId)
sl@0
   187
	{
sl@0
   188
	TServerSetting* s = iSimRep->SettingsArray().Find(aId);
sl@0
   189
	if(!s)
sl@0
   190
		return KErrNotFound;
sl@0
   191
	iSimRep->SettingsArray().Remove(aId);
sl@0
   192
	
sl@0
   193
	// removed a setting, so must fail all sessions' transactions before commit possible
sl@0
   194
	FailAllTransactions(/*aExcludeTransactor=*/NULL);
sl@0
   195
	TInt error = CommitChanges();
sl@0
   196
	if (error == KErrNone)
sl@0
   197
		{
sl@0
   198
		Notify(aId);
sl@0
   199
		}
sl@0
   200
	return error;
sl@0
   201
	}
sl@0
   202
sl@0
   203
// deletes an individual setting without making it persistent
sl@0
   204
// must not be called while any sessions are in transactions
sl@0
   205
TInt CSharedRepository::DeleteNoPersist(TUint32 aId)
sl@0
   206
	{
sl@0
   207
	// should only be calling this if no transactions are active
sl@0
   208
	ASSERT(!IsTransactionActive());
sl@0
   209
	TServerSetting* s = iSimRep->SettingsArray().Find(aId);
sl@0
   210
	if(!s)
sl@0
   211
		return KErrNotFound;
sl@0
   212
sl@0
   213
	iSimRep->SettingsArray().Remove(aId);
sl@0
   214
	return KErrNone;	
sl@0
   215
	}
sl@0
   216
sl@0
   217
TInt CSharedRepository::ResetNoPersistL(TServerSetting& aSetting)
sl@0
   218
	{
sl@0
   219
	TServerSetting* s = iSimRep->SettingsArray().Find(aSetting.Key());
sl@0
   220
	if ((!s) || (*s != aSetting))
sl@0
   221
		{
sl@0
   222
		if (s)
sl@0
   223
			{
sl@0
   224
			// save access policy of setting
sl@0
   225
			TSettingsAccessPolicy* policy=s->AccessPolicy();
sl@0
   226
			s->Transfer(aSetting);
sl@0
   227
			// restore access policy of setting
sl@0
   228
			s->SetAccessPolicy(policy);
sl@0
   229
			}
sl@0
   230
		else
sl@0
   231
			{
sl@0
   232
			TServerSetting setting;
sl@0
   233
			setting.Transfer(aSetting);
sl@0
   234
			setting.SetAccessPolicy(GetFallbackAccessPolicy(setting.Key()));
sl@0
   235
			setting.PushL();
sl@0
   236
			iSimRep->SettingsArray().OrderedInsertL(setting);
sl@0
   237
			
sl@0
   238
			TInt index = iSimRep->DeletedSettingsArray().FindInUnsignedKeyOrder(aSetting.Key());
sl@0
   239
			if (index != KErrNotFound)
sl@0
   240
				iSimRep->DeletedSettingsArray().Remove(index);
sl@0
   241
	
sl@0
   242
			setting.Pop();
sl@0
   243
			}
sl@0
   244
		}
sl@0
   245
	else
sl@0
   246
		{
sl@0
   247
		return KErrGeneral;
sl@0
   248
		}
sl@0
   249
	return KErrNone;
sl@0
   250
	}
sl@0
   251
sl@0
   252
// if changes are made, all sessions' transactions are failed
sl@0
   253
void CSharedRepository::ResetAndPersistL(TServerSetting& aSetting)
sl@0
   254
	{
sl@0
   255
	if (ResetNoPersistL(aSetting) == KErrNone)
sl@0
   256
		{
sl@0
   257
		// changed a setting, so must fail all sessions' transactions
sl@0
   258
		// before commit possible
sl@0
   259
		FailAllTransactions(/*aExcludeTransactor=*/NULL);
sl@0
   260
		CommitChangesL();
sl@0
   261
		Notify(aSetting.Key());
sl@0
   262
		}
sl@0
   263
	}
sl@0
   264
sl@0
   265
TInt CSharedRepository::ResetAllNoPersistL(CSharedRepository& aNewContent)
sl@0
   266
	{
sl@0
   267
	// mark cache as inconsistent in case Reset fails, so it is reloaded.
sl@0
   268
	iInconsistentData=ETrue;
sl@0
   269
sl@0
   270
	// should not change repository while transactions in progress: should fail them first
sl@0
   271
	ASSERT(!IsTransactionActive());
sl@0
   272
	TInt newCount = (aNewContent.iSimRep)->SettingsArray().Count();
sl@0
   273
	TInt count = iSimRep->SettingsArray().Count();
sl@0
   274
sl@0
   275
	TInt newIndex = 0;
sl@0
   276
	TInt index = 0;
sl@0
   277
sl@0
   278
	while(newIndex<newCount && index<count)
sl@0
   279
		{
sl@0
   280
		const TServerSetting& newSetting = (aNewContent.iSimRep)->SettingsArray()[newIndex];
sl@0
   281
		const TServerSetting& setting = iSimRep->SettingsArray()[index];
sl@0
   282
sl@0
   283
		TUint32 newKey = newSetting.Key();
sl@0
   284
		TUint32 key = setting.Key();
sl@0
   285
sl@0
   286
		if(newKey<key)
sl@0
   287
			{
sl@0
   288
			Notify(newKey);
sl@0
   289
			newIndex++;
sl@0
   290
			}
sl@0
   291
		else if(newKey==key)
sl@0
   292
			{
sl@0
   293
			if(newSetting!=setting)
sl@0
   294
				{
sl@0
   295
				Notify(key);
sl@0
   296
				}
sl@0
   297
			newIndex++;
sl@0
   298
			index++;
sl@0
   299
			}
sl@0
   300
		else if(newKey>key)
sl@0
   301
			{
sl@0
   302
			Notify(key);
sl@0
   303
			index++;
sl@0
   304
			}
sl@0
   305
		}
sl@0
   306
sl@0
   307
	while(newIndex<newCount)
sl@0
   308
		{
sl@0
   309
		Notify((aNewContent.iSimRep)->SettingsArray()[newIndex++].Key());
sl@0
   310
		}
sl@0
   311
		
sl@0
   312
	while(index<count)
sl@0
   313
		{
sl@0
   314
		Notify(iSimRep->SettingsArray()[index++].Key());
sl@0
   315
		}
sl@0
   316
sl@0
   317
	// Replace current settings with settings read from ROM, this 
sl@0
   318
	// will leave settings pointing to new single policies
sl@0
   319
	iSimRep->SettingsArray().AdoptL((aNewContent.iSimRep)->SettingsArray());
sl@0
   320
sl@0
   321
	// Reset policy pointers to point at this repositories policies
sl@0
   322
	newCount=iSimRep->SettingsArray().Count();
sl@0
   323
	for(TInt i=0; i<newCount;i++)
sl@0
   324
		{
sl@0
   325
		(iSimRep->SettingsArray())[i].SetAccessPolicy(NULL);
sl@0
   326
		TUint32 key = (iSimRep->SettingsArray())[i].Key();
sl@0
   327
		(iSimRep->SettingsArray())[i].SetAccessPolicy(GetFallbackAccessPolicy(key));
sl@0
   328
		}	
sl@0
   329
	
sl@0
   330
	iSimRep->DeletedSettingsArray().Reset();
sl@0
   331
sl@0
   332
	iInconsistentData=EFalse;
sl@0
   333
	return KErrNone;
sl@0
   334
	}
sl@0
   335
	
sl@0
   336
// returns the read security policy used if there is no per-setting policy at aId
sl@0
   337
const TSecurityPolicy& CSharedRepository::GetFallbackReadAccessPolicy(TUint32 aId)
sl@0
   338
	{
sl@0
   339
	return iSimRep->GetFallbackReadAccessPolicy(aId);
sl@0
   340
	}
sl@0
   341
sl@0
   342
// returns the write security policy used if there is no per-setting policy at aId
sl@0
   343
const TSecurityPolicy& CSharedRepository::GetFallbackWriteAccessPolicy(TUint32 aId)
sl@0
   344
	{
sl@0
   345
	return iSimRep->GetFallbackWriteAccessPolicy(aId);
sl@0
   346
	}
sl@0
   347
sl@0
   348
// Get pointer to security policy that applies to a given setting
sl@0
   349
TSettingsAccessPolicy* CSharedRepository::GetFallbackAccessPolicy(TUint32 aId
sl@0
   350
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   351
	,TBool aSkipSingle
sl@0
   352
#endif	
sl@0
   353
	)
sl@0
   354
	{
sl@0
   355
	return iSimRep->GetFallbackAccessPolicy(aId
sl@0
   356
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   357
	,aSkipSingle
sl@0
   358
#endif	
sl@0
   359
	);
sl@0
   360
	}
sl@0
   361
sl@0
   362
sl@0
   363
TInt CSharedRepository::ReadSettingSavePolicyL(CIniFileIn& aFile,TServerSetting& aSetting, TSettingsAccessPolicy*& aPolicy, TBool& aSingleMetaFound)
sl@0
   364
	{
sl@0
   365
	return iSimRep->ReadSettingSavePolicyL(aFile, aSetting, aPolicy, aSingleMetaFound);
sl@0
   366
	}	
sl@0
   367
sl@0
   368
// Merge settings in this->iSettings with the iSettings of aMergeRep
sl@0
   369
// During an intsall/upgrade event aMergeRep will be created from the installed file
sl@0
   370
// During an upinstall event aMergeRep will be created from the ROM file
sl@0
   371
void CSharedRepository::MergeL(CSharedRepository& aMergeRep, TMergeType aMergeType)
sl@0
   372
	{
sl@0
   373
	// Process settings from main section - this updates values only
sl@0
   374
	User::LeaveIfError(GetSettings().MergeArray(aMergeRep.GetSettings(), iSimRep->DeletedSettingsArray(), aMergeType));
sl@0
   375
sl@0
   376
	//if the merging is due to a ROM Flash, we need to copy over both the NEW ROM keypsace global properties
sl@0
   377
	//(default access policies/metadata and range policies/metadata), individual policies, we then need to ensure
sl@0
   378
	//that the settings point at the correct individual policies and metadata.
sl@0
   379
	if (aMergeType==ERomFlash)
sl@0
   380
		{
sl@0
   381
		//copy the default/range/individual policy
sl@0
   382
		iSimRep->SetDefaultPolicy(aMergeRep.iSimRep->GetDefaultAccessPolicy());
sl@0
   383
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   384
		iSimRep->GetDefaultAccessPolicy().iHighKey=aMergeRep.iSimRep->GetDefaultAccessPolicy().iHighKey;
sl@0
   385
		iSimRep->GetDefaultAccessPolicy().iKeyMask=aMergeRep.iSimRep->GetDefaultAccessPolicy().iKeyMask;		
sl@0
   386
#endif		
sl@0
   387
		iSimRep->RangePolicyArray().Reset();
sl@0
   388
		TInt count=aMergeRep.iSimRep->RangePolicyArray().Count();
sl@0
   389
		iSimRep->RangePolicyArray().ReserveL(count);
sl@0
   390
		for (TInt i=0;i<count;i++)
sl@0
   391
			{
sl@0
   392
			iSimRep->RangePolicyArray().AppendL(aMergeRep.iSimRep->RangePolicyArray()[i]);
sl@0
   393
			}
sl@0
   394
		iSimRep->SinglePolicyArray().ResetAndDestroy();
sl@0
   395
		count=aMergeRep.iSimRep->SinglePolicyArray().Count();
sl@0
   396
		iSimRep->SinglePolicyArray().ReserveL(count);
sl@0
   397
		for (TInt i=0;i<count;i++)
sl@0
   398
			{
sl@0
   399
			iSimRep->SinglePolicyArray().AppendL(aMergeRep.iSimRep->SinglePolicyArray()[i]);
sl@0
   400
			}
sl@0
   401
		//now need to reset the aMergeRep single policies so it is not going to destroy the
sl@0
   402
		//individual policies as ownership has been transferred
sl@0
   403
		aMergeRep.iSimRep->SinglePolicyArray().Reset();
sl@0
   404
		
sl@0
   405
		//copy the default/range metadata
sl@0
   406
		iSimRep->SetDefaultMeta(aMergeRep.iSimRep->DefaultMeta());
sl@0
   407
		iSimRep->RangeMetaArray().Reset();
sl@0
   408
		count=aMergeRep.iSimRep->RangeMetaArray().Count();
sl@0
   409
		iSimRep->RangeMetaArray().ReserveL(count);		
sl@0
   410
		for (TInt i=0;i<count;i++)
sl@0
   411
			{
sl@0
   412
			iSimRep->RangeMetaArray().AppendL(aMergeRep.iSimRep->RangeMetaArray()[i]);
sl@0
   413
			}
sl@0
   414
		
sl@0
   415
		//set the timestamp,owner etc
sl@0
   416
		iSimRep->SetTimeStamp(aMergeRep.iSimRep->TimeStamp());
sl@0
   417
		iSimRep->SetOwner(aMergeRep.iSimRep->Owner());
sl@0
   418
		}
sl@0
   419
sl@0
   420
	// Update all access policies and meta
sl@0
   421
	for(TInt i=0; i<iSimRep->SettingsArray().Count();i++)
sl@0
   422
		{
sl@0
   423
		TServerSetting& setting= iSimRep->SettingsArray()[i];
sl@0
   424
		setting.SetAccessPolicy(GetFallbackAccessPolicy(setting.Key()));
sl@0
   425
		}	
sl@0
   426
	}
sl@0
   427
	
sl@0
   428
// Save timestamp of installed file 
sl@0
   429
void CSharedRepository::SetInstallTime(TTime aInstallTime)
sl@0
   430
	{
sl@0
   431
	iSimRep->SetTimeStamp(aInstallTime);
sl@0
   432
	}
sl@0
   433
	
sl@0
   434
// Handle creation or upgrade of file in install directory
sl@0
   435
void CSharedRepository::HandleUpdateMergeL(TTime aInstallFileTimeStamp, CSharedRepository& aInstallRep)
sl@0
   436
	{			
sl@0
   437
	MergeL(aInstallRep, ESWIUpgradeMerge);
sl@0
   438
	
sl@0
   439
	SetInstallTime(aInstallFileTimeStamp);	// Set merge timestamp		
sl@0
   440
	CommitChangesL();						// Commit changes to write system drive file
sl@0
   441
sl@0
   442
	// settings are now persistent on disk: we can now notify about the changes
sl@0
   443
	for (TInt i = 0; i < (aInstallRep.iSimRep)->SettingsArray().Count(); i++)
sl@0
   444
		{
sl@0
   445
		Notify((aInstallRep.iSimRep)->SettingsArray()[i].Key());
sl@0
   446
		}
sl@0
   447
	}
sl@0
   448
	
sl@0
   449
// Handle merge activity due to an uninstall
sl@0
   450
void CSharedRepository::HandleDeleteMergeL(CSharedRepository& aRomRep)
sl@0
   451
	{
sl@0
   452
	MergeL(aRomRep, ESWIDowngradeMerge);
sl@0
   453
	
sl@0
   454
	SetInstallTime(0);						// Reset timestamp			
sl@0
   455
	CommitChangesL();						// Commit changes to write system drive file
sl@0
   456
	
sl@0
   457
	// settings are now persistent on disk: we can now notify about the changes
sl@0
   458
	for (TInt i = 0; i < (aRomRep.iSimRep)->SettingsArray().Count(); i++)
sl@0
   459
		{
sl@0
   460
		Notify((aRomRep.iSimRep)->SettingsArray()[i].Key());
sl@0
   461
		}
sl@0
   462
	}
sl@0
   463
	
sl@0
   464
sl@0
   465
#ifdef CENTREP_CONV_TOOL
sl@0
   466
/**
sl@0
   467
Statement "iInconsistentData = ETrue;" must be the first statement in the method,
sl@0
   468
"iInconsistentData = EFalse;" must be the last. It is used for lasy-load implementation
sl@0
   469
for the repository and solves the problem that if CommitChangesL() fails the in-memory
sl@0
   470
repository data won't match the repository data, stored in the file.
sl@0
   471
This routine is being retained for testing purposes
sl@0
   472
*/
sl@0
   473
void CSharedRepository::DoCommitChangesToIniFileL(const TDesC& aOutFileName
sl@0
   474
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   475
	,TUint32 aCreVersion
sl@0
   476
#endif
sl@0
   477
	)
sl@0
   478
	{
sl@0
   479
	iInconsistentData=ETrue;
sl@0
   480
sl@0
   481
	// should not be committing while transactions are still active
sl@0
   482
	ASSERT(!IsTransactionActive());
sl@0
   483
sl@0
   484
	iSimRep->DoCommitChangesToIniFileL(TServerResources::iFs,aOutFileName
sl@0
   485
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   486
	,aCreVersion
sl@0
   487
#endif	
sl@0
   488
	);
sl@0
   489
	
sl@0
   490
	iInconsistentData = EFalse;
sl@0
   491
	}
sl@0
   492
#endif //CENTREP_CONV_TOOL
sl@0
   493
	
sl@0
   494
/**
sl@0
   495
The method reloads the repository content from a repository file.
sl@0
   496
The current repository must be emptied (or must be empty already) before the call is made.
sl@0
   497
@param aIniFile A reference to CIniFileIn object, which will be used to load
sl@0
   498
				the repository content.
sl@0
   499
@param aFirstLoad is used to indicate whether the file is reloaded for first time, this is used to prevent
sl@0
   500
notification if not needed. For example file loading for merging purpose will not result in notification
sl@0
   501
@return KErrCorrupt Corrupted repository file.
sl@0
   502
		KErrNone	The repository content was seccessfully loaded into memory.
sl@0
   503
		KErrNotFound Setting not found in the file.
sl@0
   504
@leave System-wide error codes.
sl@0
   505
@leave KErrGeneral It's probably a programmer's error - current CSharedRepository 
sl@0
   506
				   object is partially initialised.
sl@0
   507
*/
sl@0
   508
TInt CSharedRepository::ReloadContentL(CIniFileIn& aIniFile, TBool aFirstLoad)
sl@0
   509
	{
sl@0
   510
	// Preconditions - CHeapRepository object should be an empty one.
sl@0
   511
	if(!iSimRep->IsEmpty())
sl@0
   512
		{
sl@0
   513
		User::Leave(KErrGeneral);
sl@0
   514
		}
sl@0
   515
	TInt err = iSimRep->ReloadContentExceptSettingsL(aIniFile);
sl@0
   516
	if(err == KErrCorrupt)
sl@0
   517
		{
sl@0
   518
		return err;
sl@0
   519
		}
sl@0
   520
	CleanupClosePushL(iSimRep->RangeMetaArray());
sl@0
   521
	CleanupClosePushL(iSimRep->RangePolicyArray());
sl@0
   522
	
sl@0
   523
	// Settings
sl@0
   524
	TServerSetting setting;
sl@0
   525
	TSettingsAccessPolicy* policy;
sl@0
   526
	TBool singleMetaFound;
sl@0
   527
	TCleanupItem tc(CHeapRepository::SinglePoliciesCleanup, &(iSimRep->SinglePolicyArray()));
sl@0
   528
	CleanupStack::PushL(tc);	
sl@0
   529
	CleanupClosePushL(iSimRep->SettingsArray());	
sl@0
   530
	while((err = ReadSettingSavePolicyL(aIniFile, setting, policy, singleMetaFound)) == KErrNone)
sl@0
   531
		{
sl@0
   532
		setting.PushL();
sl@0
   533
		if(iSimRep->SettingsArray().IsDefault())
sl@0
   534
			{
sl@0
   535
			setting.SetClean();			
sl@0
   536
			}
sl@0
   537
		CreateL(setting, policy, aFirstLoad, singleMetaFound);
sl@0
   538
		setting.Pop();
sl@0
   539
		}
sl@0
   540
	if(err == KErrNotFound)			
sl@0
   541
		{
sl@0
   542
		err = KErrNone;
sl@0
   543
		}
sl@0
   544
	if (err == KErrNone)
sl@0
   545
		{
sl@0
   546
		CleanupStack::Pop(4,&(iSimRep->RangeMetaArray()));		
sl@0
   547
		}
sl@0
   548
	else
sl@0
   549
		{
sl@0
   550
		CleanupStack::PopAndDestroy(4,&(iSimRep->RangeMetaArray()));		
sl@0
   551
		}
sl@0
   552
	return err;
sl@0
   553
	}
sl@0
   554
sl@0
   555
/**
sl@0
   556
Resets current repository data - actually all of them, which may be loaded from
sl@0
   557
the related ini file.
sl@0
   558
The iUid data member value is kept as it was at the moment of creation of 
sl@0
   559
CSharedRepository object.
sl@0
   560
*/
sl@0
   561
void CSharedRepository::ResetContent()
sl@0
   562
	{
sl@0
   563
	iSimRep->ResetContent();
sl@0
   564
	}
sl@0
   565
sl@0
   566
/**
sl@0
   567
This function is used to restore the notification, which was temporary disabled
sl@0
   568
when making RestoreConsistencyL() call.
sl@0
   569
@param aNotificationState It points to CObservable::iNotificationState data member, which 
sl@0
   570
						 controls the notification state - active or disabled.
sl@0
   571
@internalComponent
sl@0
   572
*/
sl@0
   573
static void RestoreNotification(void* aNotificationState)
sl@0
   574
	{
sl@0
   575
	TBool* notificationState = static_cast <TBool*> (aNotificationState);
sl@0
   576
	*notificationState = ETrue;
sl@0
   577
	}
sl@0
   578
sl@0
   579
/**
sl@0
   580
The method reloads the repository content from the related ini file if previous
sl@0
   581
CommitChangesL() has not completed successfully.
sl@0
   582
*/
sl@0
   583
void CSharedRepository::RestoreConsistencyL()
sl@0
   584
	{
sl@0
   585
	//Do nothing if previous CommitChangesL() completed successfully.
sl@0
   586
	if (!iInconsistentData)
sl@0
   587
		{
sl@0
   588
		return;
sl@0
   589
		}
sl@0
   590
	//Reset current repository data	
sl@0
   591
	ResetContent();
sl@0
   592
	//Disable notifications
sl@0
   593
	TCleanupItem restoreNotification(&RestoreNotification, &iNotificationState);
sl@0
   594
	CleanupStack::PushL(restoreNotification);
sl@0
   595
	iNotificationState = EFalse;
sl@0
   596
	//Reload the repository content from the related ini file
sl@0
   597
	DoRestoreConsistencyL();
sl@0
   598
	//Activate notifications
sl@0
   599
	CleanupStack::PopAndDestroy();//restoreNotification
sl@0
   600
	
sl@0
   601
	TCentRepLocation location = EPersists;
sl@0
   602
	HBufC* persistsTmpFilePath(NULL);
sl@0
   603
    //allocates memory on the heap
sl@0
   604
    TServerResources::CreateRepositoryFileNameLC(persistsTmpFilePath,iSimRep->Uid(),location,ETmp);
sl@0
   605
	// Remove any .tmp file
sl@0
   606
	// If a debug build - record error
sl@0
   607
	TInt fileDeleteErr=TServerResources::iFs.Delete(*persistsTmpFilePath);
sl@0
   608
	if ((fileDeleteErr != KErrNone) && (fileDeleteErr != KErrNotFound))
sl@0
   609
		{
sl@0
   610
		#ifdef _DEBUG
sl@0
   611
		RDebug::Print(_L("CHeapRepository::RestoreConsistencyL - Failed to delete file. Error = %d"), fileDeleteErr);
sl@0
   612
		#endif
sl@0
   613
		}
sl@0
   614
sl@0
   615
	CleanupStack::PopAndDestroy(persistsTmpFilePath);
sl@0
   616
	
sl@0
   617
	iInconsistentData=EFalse;
sl@0
   618
	}
sl@0
   619
sl@0
   620
/**
sl@0
   621
The method reloads the repository content from the related cre or ini file.
sl@0
   622
@leave System-wide error codes
sl@0
   623
*/	
sl@0
   624
void CSharedRepository::DoRestoreConsistencyL()
sl@0
   625
	{
sl@0
   626
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   627
	//note that the function below already handles the deletion of any corrupt file
sl@0
   628
	//in  non-rom location
sl@0
   629
	TInt ret=TServerResources::iObserver->CreateRepositoryL(this,EPersists);
sl@0
   630
	if (ret==KErrNotFound)
sl@0
   631
		{
sl@0
   632
		ret=TServerResources::iObserver->CreateRepositoryL(this,EInstall);
sl@0
   633
		if (ret==KErrNotFound)
sl@0
   634
			{	
sl@0
   635
			ret=TServerResources::iObserver->CreateRepositoryL(this,ERom);
sl@0
   636
			User::LeaveIfError(ret);
sl@0
   637
			}
sl@0
   638
		}
sl@0
   639
#else
sl@0
   640
	TCentRepLocation location;
sl@0
   641
	
sl@0
   642
	TInt err = FindLocationForFileL(location,iSimRep->Uid(),ECre);
sl@0
   643
	if (err != KErrNotFound)
sl@0
   644
		{
sl@0
   645
		User::LeaveIfError(CreateRepositoryFromCreFileL(location));
sl@0
   646
		return;
sl@0
   647
		}
sl@0
   648
		
sl@0
   649
	User::LeaveIfError(FindLocationForFileL(location,iSimRep->Uid(),EIni));
sl@0
   650
	
sl@0
   651
	HBufC* fileName(NULL);
sl@0
   652
    TServerResources::CreateRepositoryFileNameLC(fileName,iSimRep->Uid(),location,EIni);	
sl@0
   653
 
sl@0
   654
	CIniFileIn* iniFile = NULL;
sl@0
   655
	err = CIniFileIn::NewLC(TServerResources::iFs,iniFile,*fileName);
sl@0
   656
	if (err==KErrCorrupt && location!=ERom)
sl@0
   657
		{
sl@0
   658
		User::LeaveIfError(TServerResources::iFs.Delete(*fileName));
sl@0
   659
		}
sl@0
   660
	User::LeaveIfError(err);
sl@0
   661
	
sl@0
   662
sl@0
   663
	err = ReloadContentL(*iniFile);
sl@0
   664
	User::LeaveIfError(err);
sl@0
   665
	
sl@0
   666
	CleanupStack::PopAndDestroy(iniFile); //iniFile 
sl@0
   667
	CleanupStack::PopAndDestroy(fileName);	//fileName
sl@0
   668
#endif
sl@0
   669
	}
sl@0
   670
sl@0
   671
sl@0
   672
/**
sl@0
   673
This method looks for and sets a location for a given repository.
sl@0
   674
It is based on EAuto mode thus it goes through all locations in the
sl@0
   675
same order (EPersists - EInstall - ERom)  
sl@0
   676
sl@0
   677
@param aLocation - returns a location for a repository
sl@0
   678
@param aUid - id of a repository which location should be found
sl@0
   679
@param aType - repository file type (.txt or .cre) 
sl@0
   680
@return KErrNone if aLocation succesfully set for a given repository,
sl@0
   681
		KErrNotFound if a repository was not found in any locations.
sl@0
   682
sl@0
   683
@internalTechnology
sl@0
   684
*/
sl@0
   685
#ifndef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   686
TInt CSharedRepository::FindLocationForFileL(TCentRepLocation& aLocation,TUid aUid,const TCentRepFileType aType) const
sl@0
   687
    { 		
sl@0
   688
	if(TServerResources::CentrepFileExistsL(aUid, EPersists, aType))
sl@0
   689
	    {
sl@0
   690
	     aLocation = EPersists;
sl@0
   691
		 return KErrNone;
sl@0
   692
	    }
sl@0
   693
	    
sl@0
   694
	if(TServerResources::CentrepFileExistsL(aUid, EInstall, aType))
sl@0
   695
		{
sl@0
   696
	     aLocation = EInstall;
sl@0
   697
		 return KErrNone;
sl@0
   698
	    }
sl@0
   699
	    
sl@0
   700
	if(TServerResources::CentrepFileExistsL(aUid, ERom, aType))
sl@0
   701
		{
sl@0
   702
		aLocation = ERom;
sl@0
   703
		return KErrNone;
sl@0
   704
		}
sl@0
   705
sl@0
   706
	return KErrNotFound;
sl@0
   707
    }
sl@0
   708
#endif
sl@0
   709
sl@0
   710
TInt CSharedRepository::CreateRepositoryFromCreFileL( TCentRepLocation aLocation)
sl@0
   711
	{
sl@0
   712
	// Get file path name from location
sl@0
   713
    HBufC* filePath(NULL);
sl@0
   714
    TServerResources::CreateRepositoryFileNameLC(filePath,iSimRep->Uid(), aLocation,ECre);
sl@0
   715
    // Trap errors from repository creation so we can delete corrupt repositories
sl@0
   716
	TRAPD(error, iSimRep->CreateRepositoryFromCreFileL(TServerResources::iFs,*filePath));
sl@0
   717
	if(error!=KErrNone && error!=KErrNotFound && error!=KErrNoMemory)
sl@0
   718
		{
sl@0
   719
		error=KErrCorrupt;
sl@0
   720
		// store wasn't quite what we were expecting - can't return an error, can't leave
sl@0
   721
		// so all we can do is close the file, tidy up as best we can, and return corrupt 
sl@0
   722
		if (aLocation != ERom)
sl@0
   723
			{
sl@0
   724
			// If a debug build - record error
sl@0
   725
			TInt fileDeleteErr=TServerResources::iFs.Delete(*filePath);
sl@0
   726
			if (fileDeleteErr != KErrNone)
sl@0
   727
				{
sl@0
   728
				#ifdef _DEBUG
sl@0
   729
				RDebug::Print(_L("CSharedRepository::CreateRepositoryFromCreFileL - Failed to delete file. Error = %d"), fileDeleteErr);
sl@0
   730
				#endif
sl@0
   731
				}
sl@0
   732
sl@0
   733
			}
sl@0
   734
		}
sl@0
   735
	else if( error==KErrNoMemory)
sl@0
   736
		{
sl@0
   737
		User::Leave(KErrNoMemory);
sl@0
   738
		}
sl@0
   739
	CleanupStack::PopAndDestroy(filePath);
sl@0
   740
	return error;
sl@0
   741
	}
sl@0
   742
sl@0
   743
/** Attempts to start a transaction.
sl@0
   744
Guaranteed to succeed (return KErrNone) for EConcurrentReadWriteTransaction mode only.
sl@0
   745
@param aTransactor transactor attempting to start transaction
sl@0
   746
@param aMode type of transaction to be started
sl@0
   747
@pre transactor is not in a transaction
sl@0
   748
@return KErrNone if the transaction is started, KErrLocked if read/write locks prevented that
sl@0
   749
type of transaction from starting now, and KErrArgument for invalid aMode.
sl@0
   750
@post On returning KErrNone, transaction is started and read/write locks are obtained for it
sl@0
   751
in the shared repository. Any other return: transaction has not started.
sl@0
   752
*/
sl@0
   753
TInt CSharedRepository::StartTransaction(CRepositoryTransactor& aTransactor, TInt aMode)
sl@0
   754
	{
sl@0
   755
	// session can only be in one transaction
sl@0
   756
	ASSERT(!aTransactor.IsInTransaction());
sl@0
   757
	
sl@0
   758
  	CObservable::TSharedRepositoryInfo* shrepinfo = TServerResources::iObserver->SharedRepositoryInfo(iSimRep->Uid());
sl@0
   759
  	ASSERT(shrepinfo);
sl@0
   760
	switch (aMode)
sl@0
   761
		{
sl@0
   762
		case EConcurrentReadWriteTransaction:
sl@0
   763
			// can always start this type of transaction
sl@0
   764
			shrepinfo->iNumActiveConcurrentReadWriteTransactions++;
sl@0
   765
			break;
sl@0
   766
		case EReadTransaction:
sl@0
   767
			// negative lock means there is an active EReadWriteTransaction
sl@0
   768
			if (shrepinfo->iPessimisticTransactionLockCount < 0)
sl@0
   769
				{
sl@0
   770
				ASSERT(shrepinfo->iPessimisticTransactionLockCount == -1); // sanity check
sl@0
   771
				return KErrLocked;
sl@0
   772
				}
sl@0
   773
			// when non-negative lock equals number of active EReadTransactions.
sl@0
   774
			shrepinfo->iPessimisticTransactionLockCount++;
sl@0
   775
			break;
sl@0
   776
		case EReadWriteTransaction:
sl@0
   777
			// lock is zero if there are no active pessimistic transactions
sl@0
   778
			if (shrepinfo->iPessimisticTransactionLockCount != 0)
sl@0
   779
				{
sl@0
   780
				return KErrLocked;
sl@0
   781
				}
sl@0
   782
			// lock value of -1 means the exclusive EReadWriteTransaction is active
sl@0
   783
			shrepinfo->iPessimisticTransactionLockCount = -1;
sl@0
   784
			break;
sl@0
   785
		default:
sl@0
   786
			// not a valid transaction mode
sl@0
   787
			return KErrArgument;
sl@0
   788
		}
sl@0
   789
	aTransactor.AddToQueue(shrepinfo->iTransactors, aMode);
sl@0
   790
	return KErrNone;
sl@0
   791
	}
sl@0
   792
sl@0
   793
/**	Commit transaction
sl@0
   794
@return KErrNone on success, or error code.
sl@0
   795
@param aKeyInfo 
sl@0
   796
	on success (return KErrNone): aKeyInfo returns number of modified settings;
sl@0
   797
	on failure (other error code): KUnspecifiedKey
sl@0
   798
@pre transactor is in a transaction.
sl@0
   799
@post transactor is not in a transaction
sl@0
   800
*/
sl@0
   801
TInt CSharedRepository::CommitTransaction(CRepositoryTransactor& aTransactor, TUint32& aKeyInfo)
sl@0
   802
	{
sl@0
   803
	// calling code should have panicked the client if not in a transaction
sl@0
   804
	ASSERT(aTransactor.IsInTransaction());
sl@0
   805
	TInt result = aTransactor.iTransactionResult;
sl@0
   806
	if (aTransactor.IsInFailedTransaction())
sl@0
   807
		{
sl@0
   808
		ASSERT(result != KErrNone);
sl@0
   809
		aKeyInfo = aTransactor.iTransactionErrorKey;
sl@0
   810
		}
sl@0
   811
	else
sl@0
   812
		{
sl@0
   813
		ASSERT(result == KErrNone);
sl@0
   814
		ASSERT(aTransactor.iTransactionErrorKey == KUnspecifiedKey);
sl@0
   815
		aKeyInfo = 0;
sl@0
   816
		// must release locks otherwise shared repository will not commit changes
sl@0
   817
		// failed transactions have already released their locks
sl@0
   818
		TServerResources::iObserver->ReleaseTransactionLock(aTransactor,iSimRep->Uid());
sl@0
   819
		}
sl@0
   820
	
sl@0
   821
	// transactions that haven't made any changes can be closed at any time
sl@0
   822
	if (aTransactor.IsInActiveReadWriteTransaction() &&
sl@0
   823
		(aTransactor.iTransactionSettings.Count() > 0))
sl@0
   824
		{
sl@0
   825
		result = DoCommitTransactionSettings(aTransactor, aKeyInfo);
sl@0
   826
		}
sl@0
   827
sl@0
   828
	// transaction is complete - remove from queue
sl@0
   829
  	CObservable::TSharedRepositoryInfo* shrepinfo = TServerResources::iObserver->SharedRepositoryInfo(iSimRep->Uid());
sl@0
   830
  	ASSERT(shrepinfo);
sl@0
   831
	shrepinfo->iTransactors.Remove(aTransactor);
sl@0
   832
	//Remove the link to the next transaction
sl@0
   833
	aTransactor.iLink.iNext = NULL;
sl@0
   834
	aTransactor.Deque();
sl@0
   835
sl@0
   836
	return result;
sl@0
   837
	}
sl@0
   838
sl@0
   839
TInt CSharedRepository::FailTransaction(CRepositoryTransactor& aTransactor, TInt aError, TUint32 aErrorKey)
sl@0
   840
	{
sl@0
   841
	ASSERT(aError != KErrNone); // must fail for a reason
sl@0
   842
	if (aTransactor.IsInActiveTransaction())
sl@0
   843
		{
sl@0
   844
		// locks cannot be removed from a failed transaction, so release before failing
sl@0
   845
		TServerResources::iObserver->ReleaseTransactionLock(aTransactor,iSimRep->Uid());
sl@0
   846
		aTransactor.SetFailed(aError, aErrorKey);
sl@0
   847
		}
sl@0
   848
	return aError; // to allow "return FailTransaction(error, errorKey);" - error written once
sl@0
   849
	}
sl@0
   850
sl@0
   851
/** Fails all active transactions - except for the optional aExcludeTransactor, releasing locks.
sl@0
   852
All transactions are failed with reason "KErrLocked" meaning they are "locked out".
sl@0
   853
This should only be done to allow another agent to change values in the repository.
sl@0
   854
Beware that all concurrent read/write transactions that are failed with KErrLocked are
sl@0
   855
expected to retry the transactions straight afterwards - must be careful to allow their
sl@0
   856
retry strategy to be successful.
sl@0
   857
*/
sl@0
   858
void CSharedRepository::FailAllTransactions(const CRepositoryTransactor* aExcludeTransactor)
sl@0
   859
	{
sl@0
   860
  	CObservable::TSharedRepositoryInfo* shrepinfo = TServerResources::iObserver->SharedRepositoryInfo(iSimRep->Uid());
sl@0
   861
  	ASSERT(shrepinfo);
sl@0
   862
	TSglQueIter<CRepositoryTransactor> transIter(shrepinfo->iTransactors);  	
sl@0
   863
	CRepositoryTransactor* transactor;
sl@0
   864
	while ((transactor = transIter++) != NULL)
sl@0
   865
		{
sl@0
   866
		if (transactor != aExcludeTransactor)
sl@0
   867
			{
sl@0
   868
			FailTransaction(*transactor, KErrLocked, KUnspecifiedKey);
sl@0
   869
			}
sl@0
   870
		}
sl@0
   871
	}
sl@0
   872
sl@0
   873
/** must currently be in active Read transaction. Does not fail
sl@0
   874
transaction here if promotion to read/write failed.
sl@0
   875
@return KErrNone if promoted, KErrLocked if not
sl@0
   876
*/
sl@0
   877
TInt CSharedRepository::AttemptPromoteTransactionToReadWrite(CRepositoryTransactor& aTransactor)
sl@0
   878
	{
sl@0
   879
	// transactor should currently be in an active read transaction
sl@0
   880
	ASSERT(aTransactor.IsInActiveReadTransaction());
sl@0
   881
sl@0
   882
  	CObservable::TSharedRepositoryInfo* shrepinfo = TServerResources::iObserver->SharedRepositoryInfo(iSimRep->Uid());
sl@0
   883
  	ASSERT(shrepinfo);
sl@0
   884
	// sanity check: must only be pessimistic reads active
sl@0
   885
	ASSERT(shrepinfo->iPessimisticTransactionLockCount > 0);
sl@0
   886
	// can promote only if there are no other active read transactions:
sl@0
   887
	if (1 == shrepinfo->iPessimisticTransactionLockCount)
sl@0
   888
		{
sl@0
   889
		// may only promote to exclusive read/write as it has the same commit semantics
sl@0
   890
		// as Read transaction: concurrent R/W must wait for reads to finish first.
sl@0
   891
		aTransactor.PromoteToExclusiveReadWrite();
sl@0
   892
		// lock value of -1 means the exclusive EReadWriteTransaction is active
sl@0
   893
		shrepinfo->iPessimisticTransactionLockCount = -1;
sl@0
   894
		return KErrNone;
sl@0
   895
		}
sl@0
   896
	return KErrLocked;
sl@0
   897
	}
sl@0
   898
sl@0
   899
sl@0
   900
	
sl@0
   901
void CSharedRepository::ExternalizeCre(RWriteStream& aStream) const
sl@0
   902
	{
sl@0
   903
	iSimRep->ExternalizeCre(TServerResources::iPersistsVersion,aStream);
sl@0
   904
	}
sl@0
   905
sl@0
   906
void CSharedRepository::InternalizeCreL(RReadStream& aStream)
sl@0
   907
	{
sl@0
   908
	iSimRep->InternalizeCreL(aStream);
sl@0
   909
	}
sl@0
   910
	
sl@0
   911
#ifdef	SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   912
void CSharedRepository::InternalizeCreL(RReadStream& aStream,TUint8& aCreVersion)
sl@0
   913
	{
sl@0
   914
	iSimRep->InternalizeCreL(aStream,aCreVersion);
sl@0
   915
	}
sl@0
   916
#endif	
sl@0
   917
sl@0
   918
void CSharedRepository::Notify(TUint32 aVal) const
sl@0
   919
	{
sl@0
   920
	if(iNotificationState)
sl@0
   921
		{
sl@0
   922
		TServerResources::iObserver->Notify(iSimRep->Uid(), aVal);
sl@0
   923
		}
sl@0
   924
	}
sl@0
   925
sl@0
   926
TBool CSharedRepository::IsTransactionActive()
sl@0
   927
	{
sl@0
   928
  	CObservable::TSharedRepositoryInfo* shrepinfo = TServerResources::iObserver->SharedRepositoryInfo(iSimRep->Uid());
sl@0
   929
  	if (shrepinfo)
sl@0
   930
  		{
sl@0
   931
		return (shrepinfo->iPessimisticTransactionLockCount != 0) ||
sl@0
   932
			(shrepinfo->iNumActiveConcurrentReadWriteTransactions > 0);
sl@0
   933
  		}
sl@0
   934
  	return EFalse;  		
sl@0
   935
	}
sl@0
   936
sl@0
   937
RSettingsArray& CSharedRepository::GetSettings()
sl@0
   938
	{
sl@0
   939
	return iSimRep->SettingsArray();
sl@0
   940
	}