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