os/persistentdata/persistentstorage/centralrepository/cenrepsrv/shrepos.inl
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
inline const TSecurityPolicy& CSharedRepository::GetReadAccessPolicy(const TServerSetting& aSetting)
sl@0
    17
	{
sl@0
    18
	return iSimRep->GetReadAccessPolicy(aSetting);
sl@0
    19
	}
sl@0
    20
sl@0
    21
inline const TSecurityPolicy& CSharedRepository::GetReadAccessPolicy(TUint32 aId)
sl@0
    22
	{
sl@0
    23
	return iSimRep->GetReadAccessPolicy(aId);
sl@0
    24
	}
sl@0
    25
sl@0
    26
inline const TSecurityPolicy& CSharedRepository::GetDefaultReadAccessPolicy()
sl@0
    27
	{
sl@0
    28
	return iSimRep->GetDefaultReadAccessPolicy();
sl@0
    29
	}
sl@0
    30
sl@0
    31
inline const TSecurityPolicy& CSharedRepository::GetWriteAccessPolicy(const TServerSetting& aSetting)
sl@0
    32
	{
sl@0
    33
	return iSimRep->GetWriteAccessPolicy(aSetting);
sl@0
    34
	}
sl@0
    35
sl@0
    36
inline const TSecurityPolicy& CSharedRepository::GetWriteAccessPolicy(TUint32 aId)
sl@0
    37
	{
sl@0
    38
	return iSimRep->GetWriteAccessPolicy(aId);
sl@0
    39
	}
sl@0
    40
	
sl@0
    41
inline const TSecurityPolicy& CSharedRepository::GetDefaultWriteAccessPolicy()
sl@0
    42
	{
sl@0
    43
	return iSimRep->GetDefaultWriteAccessPolicy();
sl@0
    44
	}
sl@0
    45
sl@0
    46
inline void CSharedRepository::WriteBackupStream(RWriteStream& aStream) const
sl@0
    47
	{
sl@0
    48
	iSimRep->SettingsArray().WriteBackupStream(aStream) ;
sl@0
    49
	aStream << iSimRep->Uid() ;
sl@0
    50
	aStream << iSimRep->Owner() ;
sl@0
    51
	aStream << iSimRep->TimeStamp().Int64() ;
sl@0
    52
		
sl@0
    53
	aStream << iSimRep->RangePolicyArray() ;
sl@0
    54
	aStream << iSimRep->GetDefaultReadAccessPolicy().Package() ;
sl@0
    55
	aStream << iSimRep->GetDefaultWriteAccessPolicy().Package() ;
sl@0
    56
	
sl@0
    57
	aStream << iSimRep->DefaultMeta() ;
sl@0
    58
	aStream << iSimRep->RangeMetaArray();
sl@0
    59
sl@0
    60
	// placeholders for 3 booleans that should never have been externalised
sl@0
    61
	TInt8 dummyBoolValue = 0;
sl@0
    62
	aStream << dummyBoolValue;
sl@0
    63
	aStream << dummyBoolValue;
sl@0
    64
	aStream << dummyBoolValue;	
sl@0
    65
	}
sl@0
    66
	
sl@0
    67
inline void CSharedRepository::WriteDeletedSettingsStream(RWriteStream& aStream) const
sl@0
    68
	{
sl@0
    69
	TCardinality numDeletedSettings = iSimRep->DeletedSettingsArray().Count() ;
sl@0
    70
	aStream << numDeletedSettings ;
sl@0
    71
	for (TInt i = 0; i < numDeletedSettings; i++)
sl@0
    72
		{
sl@0
    73
		aStream << iSimRep->DeletedSettingsArray()[i] ;	
sl@0
    74
		}	
sl@0
    75
	}	
sl@0
    76
sl@0
    77
inline void CSharedRepository::InternalizeL(RReadStream& aStream, CRestoredRepository& aRstRepos)
sl@0
    78
	{
sl@0
    79
 	RSettingsArray mergeArray;
sl@0
    80
sl@0
    81
 
sl@0
    82
 	aStream >> mergeArray ;
sl@0
    83
 	// Many keys-value pairs were restored from the backup file to mergeArray. But most of 
sl@0
    84
 	// the pairs are the same as what are currently in the repository. To prevent too many 
sl@0
    85
 	// notifications with no changed values, we only merge the keys whose values are going
sl@0
    86
 	// to be changed by passing EFalse to parameter aKeyOnly. Thus, mergeArray will only 
sl@0
    87
 	// contains the really changed keys after merging.
sl@0
    88
 	
sl@0
    89
	// For CommsDat repository(KCommsDatUid) and test repository(KTestUid) ,replace all the
sl@0
    90
	// current settings with the settings from the backup file
sl@0
    91
 	
sl@0
    92
#ifdef _DEBUG
sl@0
    93
	if((iSimRep->Uid() == KCommsDatUid) || (iSimRep->Uid() == KTestUid))
sl@0
    94
#else
sl@0
    95
	if (iSimRep->Uid() == KCommsDatUid)
sl@0
    96
#endif					
sl@0
    97
		{
sl@0
    98
		User::LeaveIfError(iSimRep->SettingsArray().ReplaceMerge(mergeArray, iSimRep->DeletedSettingsArray()));
sl@0
    99
		}
sl@0
   100
	else
sl@0
   101
		{        
sl@0
   102
		User::LeaveIfError(iSimRep->SettingsArray().MergeArray(mergeArray, iSimRep->DeletedSettingsArray(), ERestoreMerge));
sl@0
   103
		}
sl@0
   104
sl@0
   105
 	TInt numChanges = mergeArray.Count();
sl@0
   106
	for (TInt i = 0; i < numChanges; i++)
sl@0
   107
		{
sl@0
   108
		aRstRepos.AddKeyL(mergeArray[i].Key());
sl@0
   109
		}
sl@0
   110
	TUid repUid;
sl@0
   111
 	aStream >> repUid ;
sl@0
   112
 	iSimRep->SetUid(repUid);
sl@0
   113
 	TUid repOwner;
sl@0
   114
	aStream >> repOwner ;
sl@0
   115
	iSimRep->SetOwner(repOwner);
sl@0
   116
	
sl@0
   117
	TInt64 timeStampInt ;
sl@0
   118
	aStream >> timeStampInt ;
sl@0
   119
	iSimRep->SetTimeStamp(timeStampInt);
sl@0
   120
sl@0
   121
	TInt32 numElements = iSimRep->SettingsArray().Count();
sl@0
   122
	for (TInt32 count = 0; count < numElements; count++)
sl@0
   123
		{
sl@0
   124
		iSimRep->SettingsArray()[count].SetAccessPolicy(GetFallbackAccessPolicy(count));
sl@0
   125
		}
sl@0
   126
	iSimRep->RangePolicyArray().Reset();		
sl@0
   127
	iSimRep->RangePolicyArray().InternalizeL(aStream);
sl@0
   128
	
sl@0
   129
	HBufC8* securityPolicyPackage ;
sl@0
   130
	securityPolicyPackage = HBufC8::NewLC(aStream, 10000) ;
sl@0
   131
	TSecurityPolicy defaultReadPolicy;
sl@0
   132
	defaultReadPolicy.Set(securityPolicyPackage->Des()) ;
sl@0
   133
	CleanupStack::PopAndDestroy(securityPolicyPackage) ;
sl@0
   134
	securityPolicyPackage = HBufC8::NewLC(aStream, 10000) ;
sl@0
   135
	TSecurityPolicy defaultWritePolicy;
sl@0
   136
	defaultWritePolicy.Set(securityPolicyPackage->Des()) ;
sl@0
   137
	CleanupStack::PopAndDestroy(securityPolicyPackage) ;
sl@0
   138
	
sl@0
   139
	iSimRep->SetDefaultPolicy(TSettingsAccessPolicy(defaultReadPolicy,defaultWritePolicy, KUnspecifiedKey));
sl@0
   140
	
sl@0
   141
	TUint32 defaultMeta;
sl@0
   142
	aStream >> defaultMeta ;
sl@0
   143
	iSimRep->SetDefaultMeta(defaultMeta);
sl@0
   144
	
sl@0
   145
	iSimRep->RangeMetaArray().Reset();
sl@0
   146
	iSimRep->RangeMetaArray().InternalizeL(aStream);
sl@0
   147
sl@0
   148
	// placeholders for 3 booleans that should never have been externalised
sl@0
   149
	TInt8 dummyBoolValue;
sl@0
   150
	aStream >> dummyBoolValue;
sl@0
   151
	aStream >> dummyBoolValue;
sl@0
   152
	aStream >> dummyBoolValue;
sl@0
   153
	}
sl@0
   154
sl@0
   155
inline void CSharedRepository::SetSize(TInt aSize) 
sl@0
   156
	{ 
sl@0
   157
	iSize=aSize;
sl@0
   158
	}
sl@0
   159
sl@0
   160
inline TInt CSharedRepository::Size() const 
sl@0
   161
	{ 
sl@0
   162
	return iSize;
sl@0
   163
	}