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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 class CSharedRepository;
22 class CServerRepository;
23 class CRepositoryTransactor;
27 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
28 class CHeapRepository;
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
37 TRofsFlag(const TDesC& aExt,TUint8 aMountId):iFlag(aMountId)
39 if (aExt.Compare(_L("txt"))==0)
45 static TInt CompareFlag(const TRofsFlag& aFlag1, const TRofsFlag& aFlag2)
47 return (aFlag1.iFlag & 0xFF)-(aFlag2.iFlag & 0xFF);
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
59 This class is used to store information about potentially multiple
60 files(in diffeernt rofs) used for a centrep keyspace
65 TMultiRofsList(TUid aUid):iRepUid(aUid){}
70 //list of the mount ids together with the extension(cre/txt)
71 RArray<TRofsFlag> iMountFlagList;
78 virtual void Notify(TUint32 aId) = 0;
81 class CObservable : public CBase
84 static CObservable* NewLC();
88 void AddObserverL(TUid aUid, CServerRepository* aRepositoryPointer);
89 void RemoveObserver(TUid aUid, CServerRepository* aRepositoryPointer, TInt aInMemoryIndex);
91 void Notify(TUid aUid, TUint32 aVal) const;
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);
98 inline CSharedRepository*& GetOpenRepository(TInt aIndex)
100 ASSERT((aIndex>=0)&&(aIndex<iOpenRepositories.Count()));
101 return iOpenRepositories[aIndex];
103 inline void AddOpenRepositoryL(CSharedRepository* aRepository)
105 iOpenRepositories.AppendL(aRepository);
108 TInt FindConnectedRepository(TUid aUid) const;
110 #ifdef CACHE_OOM_TESTABILITY
111 void CloseiOpenRepositories();
112 void CloseiRepositoryInfo();
114 TBool iTrapOOMOnOpen;
117 CSharedRepository* AccessL(TUid aUid, TBool aFailIfNotFound = ETrue);
118 void LoadRepositoryLC(TUid aUid, TBool aFailIfNotFound, CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode);
122 This is the class/structure which keeps shared non-persisted repository data
124 class TSharedRepositoryInfo
127 TSharedRepositoryInfo(TUid aUid);
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;
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()
149 return iMultiRofsUidList;
155 This is the class/structure which keeps notification-related data
157 class TRepositoryObserverInfo
161 CServerRepository* iRepositoryPointer;
163 RArray<TRepositoryObserverInfo> iObservers;
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);
169 TInt ReadIniFileL(CSharedRepository*& aRepository,TCentRepLocation aLocation);
170 TInt CreateRepositoryL(CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode);
171 TInt ReadSettingsL(CIniFileIn* aIniFileIn, CSharedRepository* aRep);
173 TInt FindRepositoryInfo(TUid aUid);
174 void RefreshTransactorAccessPolicies(CSharedRepository* aRepository, const TInt offset);
175 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
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);
184 enum {KGranularity=8};
185 RPointerArray<CSharedRepository> iOpenRepositories;
186 RPointerArray<TSharedRepositoryInfo> iRepositoryInfo;
187 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
188 RArray<TMultiRofsList> iMultiRofsUidList;