os/persistentdata/persistentstorage/centralrepository/common/src/cregen.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
//
sl@0
    15
sl@0
    16
#include <s32file.h>
sl@0
    17
#include "cregen.h"
sl@0
    18
#include "heaprepos.h"
sl@0
    19
#include "srvparams.h"
sl@0
    20
sl@0
    21
_LIT(KTmpExtension,"tmp");
sl@0
    22
sl@0
    23
void CCreGenerator::CommitChangesToCreL(RFs& aFs,TUint8 aPersistVersion,CHeapRepository& aRep,const TDesC& aTargetFilePath)
sl@0
    24
	{
sl@0
    25
	HBufC* tmpFilePath=aTargetFilePath.AllocLC();
sl@0
    26
	TPtr tmpFilePathPtr(tmpFilePath->Des());
sl@0
    27
	tmpFilePathPtr.Replace(tmpFilePath->Length()-3,3,KTmpExtension());
sl@0
    28
sl@0
    29
	CDirectFileStore* store = CDirectFileStore::ReplaceLC(aFs, *tmpFilePath,(EFileWrite | EFileShareExclusive));
sl@0
    30
	
sl@0
    31
	const TUid uid2	 = KNullUid ;														 
sl@0
    32
	store->SetTypeL(TUidType(KDirectFileStoreLayoutUid, uid2, KServerUid3)) ; 
sl@0
    33
sl@0
    34
	// Write the stream index/dictionary as root stream within the store
sl@0
    35
	// so we can access it when we do a restore later on
sl@0
    36
	RStoreWriteStream rootStream ;
sl@0
    37
	TStreamId rootStreamId = rootStream.CreateLC(*store) ;
sl@0
    38
	ExternalizeCre(aPersistVersion,aRep, rootStream) ;
sl@0
    39
	rootStream.CommitL() ;
sl@0
    40
		
sl@0
    41
	CleanupStack::PopAndDestroy(&rootStream) ;
sl@0
    42
	store->SetRootL(rootStreamId);
sl@0
    43
	store->CommitL();
sl@0
    44
	CleanupStack::PopAndDestroy(store) ;	
sl@0
    45
	User::LeaveIfError(aFs.Replace(*tmpFilePath,aTargetFilePath));
sl@0
    46
	CleanupStack::PopAndDestroy();
sl@0
    47
	}
sl@0
    48
sl@0
    49
void CCreGenerator::CreateReposFromCreL(RFs& aFs,CHeapRepository& aRep, const TDesC& aFilePath
sl@0
    50
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
    51
	,TUint8& aCreVersion
sl@0
    52
#endif	
sl@0
    53
	)
sl@0
    54
	{
sl@0
    55
	RFile file;
sl@0
    56
	TInt err = file.Open(aFs,aFilePath,EFileRead|EFileShareReadersOnly);	
sl@0
    57
	
sl@0
    58
	if (err != KErrNone)
sl@0
    59
		{
sl@0
    60
		if(err ==KErrNotFound || err==KErrPathNotFound)
sl@0
    61
			User::Leave(KErrNotFound);
sl@0
    62
		else
sl@0
    63
			User::Leave(err);
sl@0
    64
		}
sl@0
    65
	
sl@0
    66
	CleanupClosePushL(file);
sl@0
    67
	
sl@0
    68
	CDirectFileStore* store = CDirectFileStore::FromLC (file);
sl@0
    69
	if(store->Type()[0] != KDirectFileStoreLayoutUid)
sl@0
    70
		{
sl@0
    71
		User::Leave(KErrCorrupt);
sl@0
    72
		}
sl@0
    73
sl@0
    74
	// Get the root stream and attempt to read the index from it
sl@0
    75
	TStreamId rootStreamId = store->Root() ;
sl@0
    76
	RStoreReadStream rootStream ;
sl@0
    77
	rootStream.OpenLC(*store, rootStreamId);
sl@0
    78
	// Internalize the repository
sl@0
    79
	InternalizeCreL(aRep, rootStream
sl@0
    80
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
    81
	,aCreVersion
sl@0
    82
#endif	
sl@0
    83
	);
sl@0
    84
	CleanupStack::PopAndDestroy(3, &file);
sl@0
    85
	}
sl@0
    86
sl@0
    87
void CCreGenerator::ExternalizeCre(TUint8 aPersistVersion,const CHeapRepository& aRep, RWriteStream& aStream)
sl@0
    88
	{
sl@0
    89
	aStream << aPersistVersion;
sl@0
    90
	aStream << aRep.iUid ;
sl@0
    91
	aStream << aRep.iOwner ;
sl@0
    92
	
sl@0
    93
	TUint32 count=aRep.iSinglePolicies.Count();
sl@0
    94
	aStream << count;
sl@0
    95
	for(TUint32 i=0; i<count;i++)
sl@0
    96
		{
sl@0
    97
		aStream << *(aRep.iSinglePolicies[i]);
sl@0
    98
		}
sl@0
    99
	
sl@0
   100
	aStream << aRep.iRangePolicies ;
sl@0
   101
	aStream << aRep.iDefaultPolicy.GetReadAccessPolicy()->Package() ;
sl@0
   102
	aStream << aRep.iDefaultPolicy.GetWriteAccessPolicy()->Package() ;
sl@0
   103
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   104
	if (aPersistVersion>=KPersistFormatSupportsIndMetaIndicator)
sl@0
   105
		{
sl@0
   106
		aStream << aRep.iDefaultPolicy.HighKey();
sl@0
   107
		aStream << aRep.iDefaultPolicy.KeyMask();		
sl@0
   108
		}
sl@0
   109
#endif		
sl@0
   110
		
sl@0
   111
	aStream << aRep.iDefaultMeta ;
sl@0
   112
	aStream << aRep.iRangeMeta ;
sl@0
   113
	aStream << aRep.iTimeStamp.Int64() ;
sl@0
   114
sl@0
   115
	aStream << aRep.iSettings ;
sl@0
   116
	
sl@0
   117
	// Deleted settings
sl@0
   118
	count = aRep.iDeletedSettings.Count() ;
sl@0
   119
	aStream << count ;
sl@0
   120
	for (TUint32 i=0; i<count; i++)
sl@0
   121
		{
sl@0
   122
		aStream << aRep.iDeletedSettings[i];
sl@0
   123
		}
sl@0
   124
	}
sl@0
   125
sl@0
   126
void CCreGenerator::InternalizeCreL(CHeapRepository& aRep, RReadStream& aStream
sl@0
   127
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
   128
	,TUint8& aCreVersion
sl@0
   129
#endif	
sl@0
   130
	)
sl@0
   131
	{
sl@0
   132
	TUint8 version;
sl@0
   133
	aStream >> version;
sl@0
   134
	 
sl@0
   135
 	// Check the UID is the same as that expected.
sl@0
   136
 	// UID should always be correctly initialised by the time we reach
sl@0
   137
 	// this point.
sl@0
   138
 	TUid tempUid;
sl@0
   139
 	aStream >> tempUid;
sl@0
   140
 
sl@0
   141
 	if (tempUid != aRep.iUid)
sl@0
   142
 		{
sl@0
   143
 		#ifdef _DEBUG
sl@0
   144
 		RDebug::Print(_L("CSharedRepository::InternalizeCreL - expected UID (from filename) - %08X,  UID extracted from binary file - %08X "), aRep.iUid.iUid, tempUid.iUid);
sl@0
   145
 		#endif
sl@0
   146
 		User::Leave(KErrCorrupt);
sl@0
   147
 		}
sl@0
   148
  
sl@0
   149
	aStream >> aRep.iOwner ;
sl@0
   150
 
sl@0
   151
	TUint32 count;
sl@0
   152
	aStream >> count;
sl@0
   153
	for(TUint32 i=0; i<count;i++)
sl@0
   154
		{
sl@0
   155
		TSettingsAccessPolicy* singlePolicy = new(ELeave) TSettingsAccessPolicy;
sl@0
   156
		CleanupStack::PushL(singlePolicy);
sl@0
   157
		aStream >> *singlePolicy;
sl@0
   158
		aRep.iSinglePolicies.AppendL(singlePolicy);
sl@0
   159
		CleanupStack::Pop(singlePolicy);
sl@0
   160
		}
sl@0
   161
 	
sl@0
   162
	aRep.iRangePolicies.Reset();		
sl@0
   163
	aStream >> aRep.iRangePolicies ;
sl@0
   164
	
sl@0
   165
	HBufC8* securityPolicyPackage ;
sl@0
   166
	securityPolicyPackage = HBufC8::NewLC(aStream, 10000) ;
sl@0
   167
	TSecurityPolicy defaultReadPolicy;
sl@0
   168
	defaultReadPolicy.Set(securityPolicyPackage->Des()) ;
sl@0
   169
	CleanupStack::PopAndDestroy(securityPolicyPackage) ;
sl@0
   170
	securityPolicyPackage = HBufC8::NewLC(aStream, 10000) ;
sl@0
   171
	TSecurityPolicy defaultWritePolicy;
sl@0
   172
	defaultWritePolicy.Set(securityPolicyPackage->Des()) ;
sl@0
   173
	CleanupStack::PopAndDestroy(securityPolicyPackage) ;
sl@0
   174
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   175
	aCreVersion=version;
sl@0
   176
	TUint32 highKey=0;
sl@0
   177
	TUint32 keyMask=0;
sl@0
   178
	if (aCreVersion>=KPersistFormatSupportsIndMetaIndicator)
sl@0
   179
		{
sl@0
   180
		aStream >> highKey;
sl@0
   181
		aStream >> keyMask;		
sl@0
   182
		}
sl@0
   183
	aRep.iDefaultPolicy=TSettingsAccessPolicy(defaultReadPolicy,defaultWritePolicy, KUnspecifiedKey,highKey,keyMask);		
sl@0
   184
#else				
sl@0
   185
	aRep.iDefaultPolicy=TSettingsAccessPolicy(defaultReadPolicy,defaultWritePolicy, KUnspecifiedKey);
sl@0
   186
#endif	
sl@0
   187
	aStream >> aRep.iDefaultMeta ;
sl@0
   188
	
sl@0
   189
	aRep.iRangeMeta.Reset();
sl@0
   190
	aStream >> aRep.iRangeMeta ;
sl@0
   191
	
sl@0
   192
	TInt64 timeStampInt ;
sl@0
   193
	aStream >> timeStampInt ;
sl@0
   194
	aRep.iTimeStamp = timeStampInt ;
sl@0
   195
sl@0
   196
	aRep.iSettings.Reset() ;
sl@0
   197
	aStream >> aRep.iSettings ;
sl@0
   198
 	
sl@0
   199
	if (version >= KPersistFormatSupportsDeletedSettings)
sl@0
   200
		{
sl@0
   201
		// Deleted Settings 
sl@0
   202
		aStream >> count  ;
sl@0
   203
		for (TUint32 i=0; i<count; i++)
sl@0
   204
			{
sl@0
   205
			TUint32 keyValue ;
sl@0
   206
			aStream >> keyValue ;
sl@0
   207
			aRep.iDeletedSettings.InsertInUnsignedKeyOrderL(keyValue);
sl@0
   208
			}
sl@0
   209
		}
sl@0
   210
 
sl@0
   211
	// Set up access policies
sl@0
   212
	TInt numElements = aRep.iSettings.Count();
sl@0
   213
	for (TInt count = 0; count < numElements; count++)
sl@0
   214
		{
sl@0
   215
		TServerSetting* setting= &(aRep.iSettings[count]);
sl@0
   216
		TUint32 key=setting->Key();
sl@0
   217
		setting->SetAccessPolicy(aRep.GetFallbackAccessPolicy(key));
sl@0
   218
		}
sl@0
   219
	}