os/persistentdata/persistentstorage/centralrepository/cenrepsrv/obsrvr_noc.h
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
#ifndef OBSRVR_H
sl@0
    17
#define OBSRVR_H
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
class CSharedRepository;
sl@0
    22
class CServerRepository;
sl@0
    23
class CRepositoryTransactor;
sl@0
    24
sl@0
    25
#include "inifile.h"
sl@0
    26
sl@0
    27
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
sl@0
    28
class CHeapRepository;
sl@0
    29
/**
sl@0
    30
This simple T class is used to store information regarding
sl@0
    31
the keyspace entry in the rofs list with respect to the
sl@0
    32
extension used and the mount id order
sl@0
    33
*/
sl@0
    34
class TRofsFlag
sl@0
    35
{
sl@0
    36
public:
sl@0
    37
	TRofsFlag(const TDesC& aExt,TUint8 aMountId):iFlag(aMountId)
sl@0
    38
		{
sl@0
    39
		if (aExt.Compare(_L("txt"))==0)
sl@0
    40
			{
sl@0
    41
			iFlag |=0x80000000;
sl@0
    42
			}
sl@0
    43
		}
sl@0
    44
sl@0
    45
	static TInt CompareFlag(const TRofsFlag& aFlag1, const TRofsFlag& aFlag2)
sl@0
    46
		{
sl@0
    47
		return (aFlag1.iFlag & 0xFF)-(aFlag2.iFlag & 0xFF);
sl@0
    48
		}
sl@0
    49
sl@0
    50
public:
sl@0
    51
	//the 16 bit flag in format of |8bit cre/txt flag|8bit mount_id|
sl@0
    52
	//obviously this is assuming the format of the mangled file
sl@0
    53
	//granulatiry currently set to default of 8 which is reasonable
sl@0
    54
	//MSB=1 indicates this is txt
sl@0
    55
	TUint32 iFlag;	
sl@0
    56
};
sl@0
    57
sl@0
    58
/**
sl@0
    59
This class is used to store information about potentially multiple
sl@0
    60
files(in diffeernt rofs) used for a centrep keyspace
sl@0
    61
*/
sl@0
    62
class TMultiRofsList
sl@0
    63
	{
sl@0
    64
public:
sl@0
    65
	TMultiRofsList(TUid aUid):iRepUid(aUid){}
sl@0
    66
	
sl@0
    67
public:
sl@0
    68
	//repository uid
sl@0
    69
	TUid iRepUid;
sl@0
    70
	//list of the mount ids together with the extension(cre/txt)
sl@0
    71
	RArray<TRofsFlag> iMountFlagList;		
sl@0
    72
	};
sl@0
    73
#endif	
sl@0
    74
sl@0
    75
class MObserver
sl@0
    76
	{
sl@0
    77
public:
sl@0
    78
	virtual void Notify(TUint32 aId) = 0;
sl@0
    79
	};
sl@0
    80
sl@0
    81
class CObservable : public CBase
sl@0
    82
	{
sl@0
    83
public:
sl@0
    84
	static CObservable* NewLC();
sl@0
    85
	
sl@0
    86
	~CObservable();
sl@0
    87
sl@0
    88
	void AddObserverL(TUid aUid, CServerRepository* aRepositoryPointer);
sl@0
    89
	void RemoveObserver(TUid aUid, CServerRepository* aRepositoryPointer, TInt aInMemoryIndex);
sl@0
    90
sl@0
    91
	void Notify(TUid aUid, TUint32 aVal) const;
sl@0
    92
	
sl@0
    93
	void ReleaseTransactionLock(CRepositoryTransactor& aTransactor,TUid aRepositoryUid);
sl@0
    94
	void CancelTransaction(CRepositoryTransactor& aTransactor,TUid aRepositoryUid);	
sl@0
    95
	TInt FindOpenRepository(TUid aUid) const;
sl@0
    96
	void RemoveOpenRepository(CSharedRepository* aRepository);
sl@0
    97
	
sl@0
    98
	inline CSharedRepository*& GetOpenRepository(TInt aIndex) 
sl@0
    99
		{
sl@0
   100
		ASSERT((aIndex>=0)&&(aIndex<iOpenRepositories.Count()));
sl@0
   101
		return iOpenRepositories[aIndex];
sl@0
   102
		}
sl@0
   103
	inline void AddOpenRepositoryL(CSharedRepository* aRepository)
sl@0
   104
		{
sl@0
   105
		iOpenRepositories.AppendL(aRepository);
sl@0
   106
		}
sl@0
   107
	
sl@0
   108
	TInt FindConnectedRepository(TUid aUid) const;
sl@0
   109
			
sl@0
   110
#ifdef CACHE_OOM_TESTABILITY
sl@0
   111
	void CloseiOpenRepositories();
sl@0
   112
	void CloseiRepositoryInfo();
sl@0
   113
	void Reset();
sl@0
   114
	TBool iTrapOOMOnOpen;
sl@0
   115
#endif	
sl@0
   116
	
sl@0
   117
	CSharedRepository* AccessL(TUid aUid, TBool aFailIfNotFound = ETrue);
sl@0
   118
	void LoadRepositoryLC(TUid aUid, TBool aFailIfNotFound, CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode);
sl@0
   119
sl@0
   120
	/**
sl@0
   121
	@internalTechnology
sl@0
   122
	This is the class/structure which keeps shared non-persisted repository data 
sl@0
   123
	*/
sl@0
   124
	class TSharedRepositoryInfo
sl@0
   125
		{
sl@0
   126
	public:
sl@0
   127
		TSharedRepositoryInfo(TUid aUid);
sl@0
   128
		TUid iRepositoryUid;
sl@0
   129
		// all transactors in the order added
sl@0
   130
		TSglQue<CRepositoryTransactor> iTransactors;
sl@0
   131
		// combined read/write lock for pessimistic transactions.
sl@0
   132
		// -1 if in EReadWriteTransaction, otherwise non-negative number of EReadTransactions.
sl@0
   133
		TInt iPessimisticTransactionLockCount;
sl@0
   134
		// count of active concurrent read/write transactions:
sl@0
   135
		TInt iNumActiveConcurrentReadWriteTransactions;
sl@0
   136
		
sl@0
   137
sl@0
   138
		};
sl@0
   139
sl@0
   140
	TSharedRepositoryInfo* SharedRepositoryInfo(TUid aUid);		
sl@0
   141
	void AddSharedRepositoryInfoL(TUid aUid);
sl@0
   142
	void RemoveSharedRepositoryInfo(TUid aUid);
sl@0
   143
	TInt CreateRepositoryL(CSharedRepository* aRepository, TCentRepLocation aLocation);
sl@0
   144
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   145
	void ProcessMultiRofsListL(const CDir& aList);	
sl@0
   146
	static TInt CompareUid(const TMultiRofsList& aUid1, const TMultiRofsList& aUid2);		
sl@0
   147
	RArray<TMultiRofsList>& GetMultiRofsList()
sl@0
   148
		{
sl@0
   149
		return iMultiRofsUidList;	
sl@0
   150
		}
sl@0
   151
#endif		
sl@0
   152
	
sl@0
   153
	/**
sl@0
   154
	@internalTechnology
sl@0
   155
	This is the class/structure which keeps notification-related data 
sl@0
   156
	*/
sl@0
   157
	class TRepositoryObserverInfo
sl@0
   158
		{
sl@0
   159
	public:
sl@0
   160
		TUid iRepositoryUid;
sl@0
   161
		CServerRepository* iRepositoryPointer; 
sl@0
   162
		};
sl@0
   163
	RArray<TRepositoryObserverInfo> iObservers;		
sl@0
   164
private:
sl@0
   165
	static TInt ObserverSortOrder(const TRepositoryObserverInfo &aRepository1, const TRepositoryObserverInfo &aRepository2);
sl@0
   166
	static TInt InfoSortOrder(const TSharedRepositoryInfo &aRepository1, const TSharedRepositoryInfo &aRepository2);
sl@0
   167
	static TInt CompareTUidValues(TInt aUid1, TInt aUid2);
sl@0
   168
	
sl@0
   169
	TInt ReadIniFileL(CSharedRepository*& aRepository,TCentRepLocation aLocation);
sl@0
   170
	TInt CreateRepositoryL(CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode);
sl@0
   171
	TInt ReadSettingsL(CIniFileIn* aIniFileIn, CSharedRepository* aRep);
sl@0
   172
sl@0
   173
	TInt FindRepositoryInfo(TUid aUid);
sl@0
   174
	void RefreshTransactorAccessPolicies(CSharedRepository* aRepository, const TInt offset);
sl@0
   175
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   176
	//Multi ROFS stuff
sl@0
   177
	void ConstructL();
sl@0
   178
	void OverrideSettingL(TServerSetting& aBaseSetting,const TServerSetting& aOvSetting,CSharedRepository* aCoreRepository,TBool aNewOv,TBool aNewOvIndivPolicy);	
sl@0
   179
	void MergeRepositoryL(CSharedRepository* aCoreRepository,CHeapRepository* aOverrideRepository);
sl@0
   180
	void MergeMultiRofsL(TBool aCoreInitialized,CSharedRepository* aCoreRepository,const RArray<TRofsFlag>& aOverridingFileList);
sl@0
   181
#endif
sl@0
   182
	
sl@0
   183
private:
sl@0
   184
	enum {KGranularity=8};	
sl@0
   185
	RPointerArray<CSharedRepository> iOpenRepositories;	
sl@0
   186
	RPointerArray<TSharedRepositoryInfo> iRepositoryInfo;
sl@0
   187
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS	
sl@0
   188
	RArray<TMultiRofsList> iMultiRofsUidList;
sl@0
   189
#endif		
sl@0
   190
	};
sl@0
   191
sl@0
   192
#endif // OBSRVR_H