os/persistentdata/persistentstorage/centralrepository/common/src/heaprepos.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) 2008-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
// simrepos.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "heaprepos.h"
sl@0
    19
sl@0
    20
CHeapRepository* CHeapRepository::NewL(TUid aUid)
sl@0
    21
	{
sl@0
    22
	CHeapRepository* repos=new (ELeave) CHeapRepository(aUid);
sl@0
    23
	return repos;
sl@0
    24
	}
sl@0
    25
sl@0
    26
CHeapRepository::CHeapRepository(TUid aUid)
sl@0
    27
	:iSettings(),iUid(aUid),iSinglePolicies(KGranularity)
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
CHeapRepository::~CHeapRepository()
sl@0
    32
	{
sl@0
    33
	iSinglePolicies.ResetAndDestroy();
sl@0
    34
	iRangePolicies.Close();
sl@0
    35
	iDeletedSettings.Close();
sl@0
    36
	iSettings.Close();
sl@0
    37
	iRangeMeta.Close();
sl@0
    38
	}
sl@0
    39
sl@0
    40
/**
sl@0
    41
Stores the repository in-memory content to the related repository file on drive C.
sl@0
    42
If the operation fails, the in-memory content won't match the content of 
sl@0
    43
the repository file (which will be kept as it was before the CommitChangesL() call).
sl@0
    44
In order to keep the consistency, the in-memory repository content is deleted now
sl@0
    45
and restored later, on the next repository operation.
sl@0
    46
*/
sl@0
    47
TInt CHeapRepository::CommitChanges(RFs& aFs,TUint8 aPersistVersion,const TDesC& aTargetFilePath)
sl@0
    48
	{
sl@0
    49
	TRAPD(error, DoCommitChangesL(aFs,aPersistVersion,aTargetFilePath));
sl@0
    50
	if (error != KErrNone)
sl@0
    51
		{	
sl@0
    52
		//If the commit fails reset the repository as it is in an inconsistent state
sl@0
    53
		ResetContent();
sl@0
    54
		}
sl@0
    55
	return error;
sl@0
    56
	}	
sl@0
    57
sl@0
    58
void CHeapRepository::SetMetaDataOnRead(TServerSetting& aSetting, TBool aSingleMetaFound)
sl@0
    59
	{
sl@0
    60
	TInt isMetaFlagSet = aSetting.Meta() & KMetaDefaultValue;
sl@0
    61
	
sl@0
    62
	if(!aSingleMetaFound)
sl@0
    63
		// No single metadata set for this key
sl@0
    64
		{
sl@0
    65
		// First check for a matching "range" default metadata
sl@0
    66
		// setting
sl@0
    67
		TSettingsDefaultMeta* defaultMeta = iRangeMeta.Find(aSetting.Key());
sl@0
    68
		if (defaultMeta)
sl@0
    69
			{
sl@0
    70
			if (isMetaFlagSet)
sl@0
    71
				//sets a default meta data
sl@0
    72
				//also sets the flag back to indicate that it is a default setting from ROM 
sl@0
    73
				//or previous install so it can be replaced later with a new one. 
sl@0
    74
				aSetting.SetMeta(defaultMeta->GetDefaultMetadata() | KMetaDefaultValue);
sl@0
    75
			else
sl@0
    76
				aSetting.SetMeta(defaultMeta->GetDefaultMetadata());
sl@0
    77
			}
sl@0
    78
		else
sl@0
    79
			{
sl@0
    80
			// Range value not found, try for a repository default
sl@0
    81
			if (isMetaFlagSet)	
sl@0
    82
				aSetting.SetMeta(iDefaultMeta | KMetaDefaultValue) ;
sl@0
    83
			else
sl@0
    84
				aSetting.SetMeta(iDefaultMeta) ;
sl@0
    85
			}
sl@0
    86
		}
sl@0
    87
sl@0
    88
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
    89
#ifdef CENTREP_CONV_TOOL
sl@0
    90
	if (aSingleMetaFound && aSetting.IsClean() && !aSetting.IsIndividualMeta())
sl@0
    91
		aSingleMetaFound=EFalse;
sl@0
    92
#endif	
sl@0
    93
	aSetting.SetIndividualMeta(aSingleMetaFound);
sl@0
    94
#endif			
sl@0
    95
	}
sl@0
    96
sl@0
    97
TInt CHeapRepository::Create(TServerSetting& aSetting, TSettingsAccessPolicy* &aPolicy, TBool aSingleMetaFound)
sl@0
    98
	{
sl@0
    99
	if(iSettings.Find(aSetting.Key()))
sl@0
   100
		return KErrAlreadyExists;
sl@0
   101
	
sl@0
   102
	SetMetaDataOnRead( aSetting, aSingleMetaFound);
sl@0
   103
	aSetting.SetAccessPolicy(aPolicy);
sl@0
   104
sl@0
   105
	return iSettings.OrderedInsert(aSetting);
sl@0
   106
	}
sl@0
   107
sl@0
   108
// Comparison relation to allow single policies to be inserted in order
sl@0
   109
TInt CHeapRepository::CompareKeyIds(const TSettingsAccessPolicy& aSinglePolicy, const TSettingsAccessPolicy& aSinglePolicyIndexItem)
sl@0
   110
	{
sl@0
   111
	if(aSinglePolicy.iLowKey==aSinglePolicyIndexItem.iLowKey)
sl@0
   112
		return 0;
sl@0
   113
	return (aSinglePolicy.iLowKey < aSinglePolicyIndexItem.iLowKey)?-1:1;
sl@0
   114
	}
sl@0
   115
sl@0
   116
// Identity relation to allow single policy for a given key to be found
sl@0
   117
TBool CHeapRepository::SinglePolicyMatchOnKey(const TSettingsAccessPolicy& aSinglePolicy, const TSettingsAccessPolicy& aSinglePolicyIndexItem)
sl@0
   118
	{
sl@0
   119
	return aSinglePolicy.iLowKey==aSinglePolicyIndexItem.iLowKey;
sl@0
   120
	}
sl@0
   121
sl@0
   122
// returns the read security policy used if there is no per-setting policy at aId
sl@0
   123
const TSecurityPolicy& CHeapRepository::GetFallbackReadAccessPolicy(TUint32 aId)
sl@0
   124
	{
sl@0
   125
	return *(GetFallbackAccessPolicy(aId)->GetReadAccessPolicy());
sl@0
   126
	}
sl@0
   127
sl@0
   128
// returns the write security policy used if there is no per-setting policy at aId
sl@0
   129
const TSecurityPolicy& CHeapRepository::GetFallbackWriteAccessPolicy(TUint32 aId)
sl@0
   130
	{
sl@0
   131
	return *(GetFallbackAccessPolicy(aId)->GetWriteAccessPolicy());
sl@0
   132
	}
sl@0
   133
sl@0
   134
// Get pointer to security policy that applies to a given setting
sl@0
   135
TSettingsAccessPolicy* CHeapRepository::GetFallbackAccessPolicy(TUint32 aId
sl@0
   136
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   137
	,TBool aSkipSingle
sl@0
   138
#endif
sl@0
   139
	)
sl@0
   140
	{
sl@0
   141
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   142
	if (!aSkipSingle)
sl@0
   143
		{
sl@0
   144
#endif		
sl@0
   145
		// Check for single policy
sl@0
   146
		TSettingsAccessPolicy policy(aId);
sl@0
   147
		TIdentityRelation<TSettingsAccessPolicy> identity(SinglePolicyMatchOnKey);
sl@0
   148
		TInt index = iSinglePolicies.Find(&policy, identity);
sl@0
   149
		if(KErrNotFound != index)
sl@0
   150
			return iSinglePolicies[index];
sl@0
   151
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS		
sl@0
   152
		}
sl@0
   153
#endif		
sl@0
   154
	
sl@0
   155
	// check if the aId falls into any range specified in the ini file
sl@0
   156
	TSettingsAccessPolicy* rangePolicy = iRangePolicies.Find(aId);
sl@0
   157
	if(rangePolicy)
sl@0
   158
		return rangePolicy;
sl@0
   159
	
sl@0
   160
	// If no single policy or range policy, return default policy
sl@0
   161
	return &iDefaultPolicy;
sl@0
   162
	}
sl@0
   163
sl@0
   164
// this function saves idividual meta as well
sl@0
   165
TInt CHeapRepository::ReadSettingSavePolicyL(CIniFileIn& aFile,TServerSetting& aSetting, TSettingsAccessPolicy* &aPolicy, TBool& aSingleMetaFound)
sl@0
   166
	{
sl@0
   167
	TBool singleReadPolicyFound;
sl@0
   168
	TBool singleWritePolicyFound;
sl@0
   169
	TSecurityPolicy singleReadPolicy;
sl@0
   170
	TSecurityPolicy singleWritePolicy;
sl@0
   171
sl@0
   172
	TInt err=aFile.ReadSettingL(aSetting,singleReadPolicy, singleWritePolicy, singleReadPolicyFound, singleWritePolicyFound, aSingleMetaFound);
sl@0
   173
	if(err!=KErrNone)
sl@0
   174
		return err;
sl@0
   175
	
sl@0
   176
	// Set up single policies
sl@0
   177
	if(!singleReadPolicyFound)
sl@0
   178
		singleReadPolicy=GetDefaultReadAccessPolicy();
sl@0
   179
	if(!singleWritePolicyFound)
sl@0
   180
		singleWritePolicy=GetDefaultWriteAccessPolicy();
sl@0
   181
sl@0
   182
	aSetting.PushL();
sl@0
   183
	if(singleReadPolicyFound || singleWritePolicyFound)
sl@0
   184
		{
sl@0
   185
		aPolicy=new (ELeave) TSettingsAccessPolicy(singleReadPolicy,singleWritePolicy,aSetting.Key());
sl@0
   186
		CleanupStack::PushL(aPolicy);
sl@0
   187
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS		
sl@0
   188
		//reused single setting high key and mask to indicate whether read or write has been specified
sl@0
   189
		//or they are just a default policy
sl@0
   190
		if (singleReadPolicyFound)
sl@0
   191
			aPolicy->iHighKey=1;
sl@0
   192
		if (singleWritePolicyFound)
sl@0
   193
			aPolicy->iKeyMask=1;
sl@0
   194
#endif		
sl@0
   195
		TLinearOrder<TSettingsAccessPolicy> order(&CHeapRepository::CompareKeyIds);
sl@0
   196
		iSinglePolicies.InsertInOrderL(aPolicy,order);
sl@0
   197
		CleanupStack::Pop(aPolicy);
sl@0
   198
		}
sl@0
   199
	else
sl@0
   200
		{
sl@0
   201
		// check if the aId falls into any range specified in the ini file
sl@0
   202
		// otherwise set policy to default policy
sl@0
   203
		TSettingsAccessPolicy* rangePolicy = iRangePolicies.Find(aSetting.Key());
sl@0
   204
		if(rangePolicy)
sl@0
   205
			aPolicy=rangePolicy;
sl@0
   206
		else
sl@0
   207
			aPolicy=&iDefaultPolicy;
sl@0
   208
		}
sl@0
   209
		
sl@0
   210
	aSetting.Pop();
sl@0
   211
	return err;
sl@0
   212
	}
sl@0
   213
		
sl@0
   214
#ifdef CENTREP_CONV_TOOL
sl@0
   215
void CHeapRepository::DoCommitChangesToIniFileL(RFs& aFs,const TDesC& aOutFileName
sl@0
   216
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   217
	,TUint32 aCreVersion
sl@0
   218
#endif
sl@0
   219
	)
sl@0
   220
	{
sl@0
   221
	CIniFileOut* out = CIniFileOut::NewLC(aFs,aOutFileName);
sl@0
   222
sl@0
   223
	out->WriteHeaderL();
sl@0
   224
	out->WriteOwnerSectionL(iOwner);
sl@0
   225
	out->WriteTimeStampL(iTimeStamp);
sl@0
   226
	out->WriteMetaDataL(iDefaultMeta, iRangeMeta);
sl@0
   227
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   228
	out->WritePlatSecL(GetDefaultAccessPolicy(), iRangePolicies,aCreVersion);
sl@0
   229
#else
sl@0
   230
	out->WritePlatSecL(GetDefaultReadAccessPolicy(), GetDefaultWriteAccessPolicy(), iRangePolicies);
sl@0
   231
#endif	
sl@0
   232
sl@0
   233
sl@0
   234
	out->WriteMainSectionHeaderL();
sl@0
   235
	for(TInt i=0; i<iSettings.Count(); i++)
sl@0
   236
		{
sl@0
   237
		const TServerSetting& setting = iSettings[i];
sl@0
   238
		if (setting.HasAccessPolicy() && (iSinglePolicies.Find(setting.AccessPolicy()) != KErrNotFound))
sl@0
   239
			{
sl@0
   240
			out->WriteSettingL(setting, *setting.AccessPolicy()
sl@0
   241
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS			
sl@0
   242
			,aCreVersion
sl@0
   243
#endif			
sl@0
   244
			);
sl@0
   245
			}
sl@0
   246
		else
sl@0
   247
			{
sl@0
   248
			out->WriteSettingL(setting
sl@0
   249
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS			
sl@0
   250
			,aCreVersion
sl@0
   251
#endif			
sl@0
   252
			);
sl@0
   253
			}
sl@0
   254
		}
sl@0
   255
sl@0
   256
	out->CommitL();
sl@0
   257
	CleanupStack::PopAndDestroy(out);//out
sl@0
   258
	}
sl@0
   259
#endif
sl@0
   260
sl@0
   261
void CHeapRepository::DoCommitChangesL(RFs& aFs,TUint8 aPersistVersion,const TDesC& aTargetFilePath) 
sl@0
   262
	{
sl@0
   263
	CCreGenerator::CommitChangesToCreL(aFs,aPersistVersion,*this, aTargetFilePath);
sl@0
   264
	}	
sl@0
   265
sl@0
   266
/**
sl@0
   267
The method reloads the repository content from a repository file.
sl@0
   268
The current repository must be emptied (or must be empty already) before the call is made.
sl@0
   269
@param aIniFile A reference to CIniFileIn object, which will be used to load
sl@0
   270
				the repository content.
sl@0
   271
@leave System-wide error codes.
sl@0
   272
@leave KErrGeneral It's probably a programmer's error - current CHeapRepository 
sl@0
   273
				   object is partially initialised.
sl@0
   274
@leave KErrCorrupt Corrupted repository file.
sl@0
   275
*/
sl@0
   276
void CHeapRepository::ReloadContentL(CIniFileIn& aIniFile)
sl@0
   277
	{
sl@0
   278
	// Preconditions - CHeapRepository object should be an empty one.
sl@0
   279
	if(!IsEmpty())
sl@0
   280
		{
sl@0
   281
		User::Leave(KErrGeneral);
sl@0
   282
		}
sl@0
   283
	TInt err = ReloadContentExceptSettingsL(aIniFile);
sl@0
   284
	if(err == KErrCorrupt)
sl@0
   285
		{
sl@0
   286
		User::Leave(err);
sl@0
   287
		}
sl@0
   288
	CleanupClosePushL(iRangeMeta);
sl@0
   289
	CleanupClosePushL(iRangePolicies);
sl@0
   290
	
sl@0
   291
	// Settings
sl@0
   292
	TServerSetting setting;
sl@0
   293
	TSettingsAccessPolicy* policy;
sl@0
   294
	TBool singleMetaFound;
sl@0
   295
	TCleanupItem tc(SinglePoliciesCleanup, &iSinglePolicies);
sl@0
   296
	CleanupStack::PushL(tc);	
sl@0
   297
	CleanupClosePushL(iSettings);
sl@0
   298
	while((err = ReadSettingSavePolicyL(aIniFile, setting, policy, singleMetaFound)) == KErrNone)
sl@0
   299
		{
sl@0
   300
		setting.PushL();
sl@0
   301
		if(iSettings.IsDefault())
sl@0
   302
			{
sl@0
   303
			setting.SetClean();			
sl@0
   304
			}
sl@0
   305
		User::LeaveIfError(Create(setting, policy, singleMetaFound));
sl@0
   306
		setting.Pop();
sl@0
   307
		}
sl@0
   308
	if(err == KErrNotFound)			
sl@0
   309
		{
sl@0
   310
		err = KErrNone;
sl@0
   311
		}
sl@0
   312
	User::LeaveIfError(err);
sl@0
   313
	CleanupStack::Pop(4,&iRangeMeta);
sl@0
   314
	}
sl@0
   315
sl@0
   316
/**
sl@0
   317
Resets current repository data - actually all of them, which may be loaded from
sl@0
   318
the related ini file.
sl@0
   319
The iUid data member value is kept as it was at the moment of creation of 
sl@0
   320
CHeapRepository object.
sl@0
   321
*/
sl@0
   322
void CHeapRepository::ResetContent()
sl@0
   323
	{
sl@0
   324
	iSettings.Reset();
sl@0
   325
	iOwner = KNullUid;
sl@0
   326
	iTimeStamp = TTime(0);
sl@0
   327
sl@0
   328
	for (TInt i=0;i<iSinglePolicies.Count();i++)
sl@0
   329
		{
sl@0
   330
		delete iSinglePolicies[i];
sl@0
   331
		}
sl@0
   332
	iSinglePolicies.Reset();
sl@0
   333
	iRangePolicies.Reset();
sl@0
   334
	TSecurityPolicy emptyPolicy=TSecurityPolicy();
sl@0
   335
	iDefaultPolicy = TSettingsAccessPolicy(emptyPolicy,emptyPolicy, KUnspecifiedKey);
sl@0
   336
	iDefaultMeta = 0;
sl@0
   337
	iRangeMeta.Reset();
sl@0
   338
	}
sl@0
   339
  
sl@0
   340
void CHeapRepository::CreateRepositoryFromCreFileL(RFs& aFs,const TDesC& aFilePath )
sl@0
   341
	{
sl@0
   342
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   343
	TUint8 dummyVersion;	
sl@0
   344
	CCreGenerator::CreateReposFromCreL(aFs,*this, aFilePath,dummyVersion);
sl@0
   345
#else
sl@0
   346
	CCreGenerator::CreateReposFromCreL(aFs,*this, aFilePath);
sl@0
   347
#endif	
sl@0
   348
	}
sl@0
   349
sl@0
   350
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   351
void CHeapRepository::CreateRepositoryFromCreFileL(RFs& aFs,const TDesC& aFilePath,TUint8& aCreVersion)
sl@0
   352
	{	
sl@0
   353
	CCreGenerator::CreateReposFromCreL(aFs,*this, aFilePath,aCreVersion);
sl@0
   354
	}
sl@0
   355
#endif
sl@0
   356
sl@0
   357
void CHeapRepository::ExternalizeCre(TUint8 aPersistVersion,RWriteStream& aStream) const
sl@0
   358
	{
sl@0
   359
	CCreGenerator::ExternalizeCre(aPersistVersion,*this, aStream);
sl@0
   360
	}
sl@0
   361
sl@0
   362
sl@0
   363
void CHeapRepository::InternalizeCreL(RReadStream& aStream)
sl@0
   364
	{
sl@0
   365
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   366
	TUint8 dummyVersion;
sl@0
   367
	CCreGenerator::InternalizeCreL(*this, aStream,dummyVersion);
sl@0
   368
#else
sl@0
   369
	CCreGenerator::InternalizeCreL(*this, aStream);
sl@0
   370
#endif	
sl@0
   371
	}
sl@0
   372
sl@0
   373
sl@0
   374
void CHeapRepository::SinglePoliciesCleanup(TAny *aPtr)
sl@0
   375
	{
sl@0
   376
	static_cast<RPointerArray<TSettingsAccessPolicy>*>(aPtr)->ResetAndDestroy();
sl@0
   377
	}
sl@0
   378
sl@0
   379
TInt CHeapRepository::ReloadContentExceptSettingsL(CIniFileIn& aIniFile)
sl@0
   380
	{
sl@0
   381
	// Look for an "owner" section
sl@0
   382
	TUint32 uidValue(KNullUid.iUid);
sl@0
   383
	TInt err = aIniFile.ReadOwnerSectionL(uidValue);
sl@0
   384
	if(err == KErrCorrupt)
sl@0
   385
		{
sl@0
   386
		return err;
sl@0
   387
		}
sl@0
   388
	iOwner.iUid = uidValue;
sl@0
   389
	// Timestamp
sl@0
   390
	TTime timeStamp (0);
sl@0
   391
	err = aIniFile.ReadTimeStampSectionL(timeStamp);
sl@0
   392
	if(err == KErrCorrupt)
sl@0
   393
		{
sl@0
   394
		return err;
sl@0
   395
		}
sl@0
   396
	iTimeStamp=timeStamp;
sl@0
   397
sl@0
   398
	// Metadata
sl@0
   399
	err = aIniFile.ReadDefaultMetaSecSectionL(iDefaultMeta, iRangeMeta);
sl@0
   400
	// Even if err == KErrCorrupt, some items might have already been placed in the array
sl@0
   401
	CleanupClosePushL(iRangeMeta);
sl@0
   402
	if(err == KErrCorrupt)
sl@0
   403
		{
sl@0
   404
		CleanupStack::PopAndDestroy(&iRangeMeta);
sl@0
   405
		return err;
sl@0
   406
		}
sl@0
   407
sl@0
   408
	// Default read/write policies
sl@0
   409
	TBool gotDefaultReadPolicy;
sl@0
   410
	TBool gotDefaultWritePolicy;
sl@0
   411
	TSecurityPolicy defaultReadPolicy;
sl@0
   412
	TSecurityPolicy defaultWritePolicy;
sl@0
   413
	err = aIniFile.ReadPlatSecSectionL(defaultReadPolicy, gotDefaultReadPolicy,
sl@0
   414
									   defaultWritePolicy, gotDefaultWritePolicy,
sl@0
   415
									   iRangePolicies);
sl@0
   416
	// Even if err == KErrCorrupt, some items might have already been placed in the array
sl@0
   417
	CleanupClosePushL(iRangePolicies);	
sl@0
   418
	if(err == KErrCorrupt)
sl@0
   419
		{
sl@0
   420
		CleanupStack::PopAndDestroy(2,&iRangeMeta);
sl@0
   421
		return err;
sl@0
   422
		}
sl@0
   423
sl@0
   424
	iDefaultPolicy = TSettingsAccessPolicy(defaultReadPolicy,defaultWritePolicy, KUnspecifiedKey);
sl@0
   425
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   426
	if (gotDefaultReadPolicy)
sl@0
   427
		iDefaultPolicy.iHighKey=1;
sl@0
   428
	if (gotDefaultWritePolicy)
sl@0
   429
		iDefaultPolicy.iKeyMask=1;
sl@0
   430
#endif	
sl@0
   431
	CleanupStack::Pop(2,&iRangeMeta);
sl@0
   432
	return KErrNone;
sl@0
   433
	}
sl@0
   434
sl@0
   435
TBool CHeapRepository::IsEmpty()
sl@0
   436
	{
sl@0
   437
	if(iSettings.Count() != 0 || iRangeMeta.Count() != 0 ||
sl@0
   438
	   iSinglePolicies.Count() != 0 || iRangePolicies.Count() != 0)
sl@0
   439
		{
sl@0
   440
		return EFalse;
sl@0
   441
		}
sl@0
   442
	return ETrue;
sl@0
   443
	}