sl@0
|
1 |
// Copyright (c) 2006-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 SRVREPOS_H
|
sl@0
|
17 |
#define SRVREPOS_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <s32file.h>
|
sl@0
|
21 |
#ifdef SYMBIAN_BAFL_SYSUTIL
|
sl@0
|
22 |
#include <bafl/sysutil.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
#include "shrepos.h"
|
sl@0
|
25 |
#include "setting.h"
|
sl@0
|
26 |
#include "clientrequest.h"
|
sl@0
|
27 |
#include "sessnotf.h"
|
sl@0
|
28 |
#include "operations.h"
|
sl@0
|
29 |
#include "datatype.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
class MObserver;
|
sl@0
|
32 |
class CRestoredRepository;
|
sl@0
|
33 |
|
sl@0
|
34 |
class CServerRepository : public CRepositoryTransactor, public MOperationLogic
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
void OpenL(TUid aUid, MObserver& aObserver, TBool aFailIfNotFound = ETrue);
|
sl@0
|
38 |
void HandleOpenMergeL();
|
sl@0
|
39 |
void Close();
|
sl@0
|
40 |
void RestoreNotify(const CRestoredRepository& aRstRepos);
|
sl@0
|
41 |
TInt RFSRepositoryL();
|
sl@0
|
42 |
#ifdef SYMBIAN_BAFL_SYSUTIL
|
sl@0
|
43 |
static void CheckROMReflashL();
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
static void RFSAllRepositoriesL();
|
sl@0
|
46 |
|
sl@0
|
47 |
inline TInt StartTransaction(TInt aMode)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
return iRepository->StartTransaction(*this, aMode);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
inline TInt CommitTransaction(TUint32& aKeyInfo)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return iRepository->CommitTransaction(*this, aKeyInfo);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
inline void CancelTransaction() // serves as both rollback and async cancel
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TServerResources::iObserver->CancelTransaction(*this,iUid);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
void CleanupCancelTransactionPushL();
|
sl@0
|
60 |
inline TInt FailTransaction(TInt aError, TUint32 aErrorKey)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
// returns aError to allow "return FailTransaction(error, errorKey);" - error written once
|
sl@0
|
63 |
return iRepository->FailTransaction(*this, aError, aErrorKey);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
inline void FailAllTransactions()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
iRepository->FailAllTransactions(NULL);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
/** must currently be in active Read transaction. Does not fail
|
sl@0
|
71 |
transaction here if promotion to read/write failed.
|
sl@0
|
72 |
@return KErrNone if promoted, KErrLocked if not
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
inline TInt AttemptPromoteTransactionToReadWrite()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
ASSERT(IsInActiveReadTransaction());
|
sl@0
|
77 |
return iRepository->AttemptPromoteTransactionToReadWrite(*this);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
inline TServerSetting* GetPersistentSetting(TUint32 aId)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return iRepository->GetSettings().Find(aId);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
inline TServerSetting* GetTransactionSetting(TUint32 aId)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
return iTransactionSettings.Find(aId);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
template <class T>
|
sl@0
|
90 |
TInt TransactionCreateL(TUint32 aKey, const T& aVal, TUint32* aMeta);
|
sl@0
|
91 |
|
sl@0
|
92 |
template <class T>
|
sl@0
|
93 |
TInt TransactionSetL(TUint32 aKey, const T& aVal);
|
sl@0
|
94 |
|
sl@0
|
95 |
inline TInt TransactionDeleteL(TUint32 aId)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
// all write operations now done in a transaction
|
sl@0
|
98 |
ASSERT(IsInActiveReadWriteTransaction());
|
sl@0
|
99 |
TRAPD(err,DeleteSettingL(aId));
|
sl@0
|
100 |
if (err==KErrNoMemory)
|
sl@0
|
101 |
User::LeaveNoMemory();
|
sl@0
|
102 |
return err;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
TInt TransactionMoveL(const TClientRequest& aMessage, TUint32& aErrorKey);
|
sl@0
|
106 |
TInt TransactionDeleteRangeL(const TClientRequest& aMessage, TUint32& aErrId);
|
sl@0
|
107 |
|
sl@0
|
108 |
TInt CheckPermissions(RSettingPointerArray& aSettings, const TClientRequest& aMessage, const char* aDiagnostic,TBool aReadPolicy,TUint32& aErrId);
|
sl@0
|
109 |
|
sl@0
|
110 |
TInt CheckAccessPolicyBeforeMoving(const TClientRequest& aMessage, const TServerSetting* aSourceSetting, TUint32 aSourceKey,
|
sl@0
|
111 |
const TServerSetting* aTargetSetting, TUint32 aTargetKey, TUint32& aErrorKey);
|
sl@0
|
112 |
|
sl@0
|
113 |
TInt CheckMovePermissions(const RSettingPointerArray& aSourceSettings,const TClientRequest& aMessage,TUint aSourceToTarget,TUint32& aErrorKey)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
TInt error=KErrNone;
|
sl@0
|
116 |
for (TInt i=0;i<aSourceSettings.Count() && error==KErrNone;i++)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
ASSERT(aSourceSettings[i]);
|
sl@0
|
119 |
TServerSetting* sourceSetting = aSourceSettings[i];
|
sl@0
|
120 |
TUint32 sourceKey = sourceSetting->Key();
|
sl@0
|
121 |
TUint32 targetKey = sourceKey ^ aSourceToTarget;
|
sl@0
|
122 |
TServerSetting* targetSetting = GetSetting(targetKey);
|
sl@0
|
123 |
|
sl@0
|
124 |
error = CheckAccessPolicyBeforeMoving(aMessage, sourceSetting, sourceKey, targetSetting, targetKey, aErrorKey);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
return error;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
inline TInt FindPersistentSettings(TUint32 aPartialId, TUint32 aIdMask, RSettingPointerArray& aMatches) const
|
sl@0
|
130 |
{
|
sl@0
|
131 |
// guarantees to reset RSettingPointerArray in case of error
|
sl@0
|
132 |
return iRepository->GetSettings().Find(aPartialId, aIdMask, aMatches);
|
sl@0
|
133 |
}
|
sl@0
|
134 |
inline TInt FindTransactionSettings(TUint32 aPartialId, TUint32 aIdMask, RSettingPointerArray& aMatches) const
|
sl@0
|
135 |
{
|
sl@0
|
136 |
// guarantees to reset RSettingPointerArray in case of error
|
sl@0
|
137 |
return iTransactionSettings.Find(aPartialId, aIdMask, aMatches);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
inline void CommitChangesL(TCentRepLocation aLocation = EPersists) const
|
sl@0
|
141 |
{
|
sl@0
|
142 |
iRepository->CommitChangesL(aLocation);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
TInt ResetL(TUint32 aId);
|
sl@0
|
146 |
TInt ResetAllL();
|
sl@0
|
147 |
|
sl@0
|
148 |
inline const TSecurityPolicy& GetReadAccessPolicy(const TServerSetting& aSetting) const
|
sl@0
|
149 |
{
|
sl@0
|
150 |
return iRepository->GetReadAccessPolicy(aSetting);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
inline const TSecurityPolicy& GetReadAccessPolicy(TUint32 aId) const
|
sl@0
|
153 |
{
|
sl@0
|
154 |
return iRepository->GetReadAccessPolicy(aId);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
inline const TSecurityPolicy& GetDefaultReadAccessPolicy() const
|
sl@0
|
157 |
{
|
sl@0
|
158 |
return iRepository->GetDefaultReadAccessPolicy();
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
inline const TSecurityPolicy& GetFallbackWriteAccessPolicy(TUint32 aId) const
|
sl@0
|
162 |
{
|
sl@0
|
163 |
return iRepository->GetFallbackWriteAccessPolicy(aId);
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
inline const TSecurityPolicy& GetWriteAccessPolicy(const TServerSetting& aSetting) const
|
sl@0
|
167 |
{
|
sl@0
|
168 |
return iRepository->GetWriteAccessPolicy(aSetting);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
inline const TSecurityPolicy& GetWriteAccessPolicy(TUint32 aId) const
|
sl@0
|
171 |
{
|
sl@0
|
172 |
return iRepository->GetWriteAccessPolicy(aId);
|
sl@0
|
173 |
}
|
sl@0
|
174 |
inline const TSecurityPolicy& GetDefaultWriteAccessPolicy() const
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return iRepository->GetDefaultWriteAccessPolicy();
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
void HandleSWIUpdateL(TUid aUid, TTime aModified, CSessionNotifier& aNotifier);
|
sl@0
|
180 |
void HandleSWIDeleteL(TUid aUid, CSessionNotifier& aNotifier);
|
sl@0
|
181 |
|
sl@0
|
182 |
void StoreRepositoryContentsL(CStreamStore & aStore, TStreamId & aSettingStreamId, TStreamId & aDeletedSettingsStreamId) const;
|
sl@0
|
183 |
void StoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId & aSettingStreamId) const;
|
sl@0
|
184 |
void RestoreRepositoryContentsL(CStreamStore& aStore, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, CRestoredRepository& aRstRepos);
|
sl@0
|
185 |
void RestoreRepositorySettingValuesL(CStreamStore& aStore, TStreamId aSettingStreamId, CRestoredRepository& aRstRepos);
|
sl@0
|
186 |
|
sl@0
|
187 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
188 |
void ResetFromIniFileL(TUint32 aId,CIniFileIn::TIniFileOpenMode aIniFileOpenMode,TBool& aKeyFound);
|
sl@0
|
189 |
#else
|
sl@0
|
190 |
void ResetFromIniFileL(TUint32 aId,TCentRepLocation aLocation,TBool& aKeyFound);
|
sl@0
|
191 |
#endif
|
sl@0
|
192 |
|
sl@0
|
193 |
void LoadIniRepL(CIniFileIn::TIniFileOpenMode aMode);
|
sl@0
|
194 |
TBool GetMetaFromIni(TUint32 aKey, TUint32& aMeta);
|
sl@0
|
195 |
|
sl@0
|
196 |
void RestoreInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId, CRestoredRepository& aRstRepos);
|
sl@0
|
197 |
void BackupInstallRepositoryL(TUid aUid, CStreamStore& aStore, TStreamId& aSettingStreamId);
|
sl@0
|
198 |
|
sl@0
|
199 |
|
sl@0
|
200 |
#ifdef CACHE_OOM_TESTABILITY
|
sl@0
|
201 |
TInt SizeiRepository()
|
sl@0
|
202 |
{
|
sl@0
|
203 |
return iRepository->Size();
|
sl@0
|
204 |
}
|
sl@0
|
205 |
#endif
|
sl@0
|
206 |
|
sl@0
|
207 |
inline MObserver* Notifier()
|
sl@0
|
208 |
{
|
sl@0
|
209 |
ASSERT(iNotifier);
|
sl@0
|
210 |
return iNotifier;
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
inline void AccessRepositoryL()
|
sl@0
|
214 |
{
|
sl@0
|
215 |
iRepository = TServerResources::iObserver->AccessL(iUid);
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
private:
|
sl@0
|
219 |
enum TPersistedRepActions {ECenRepReflash,ECenRepReset};
|
sl@0
|
220 |
|
sl@0
|
221 |
private:
|
sl@0
|
222 |
static void ProcessPersistsRepositoriesL(TPersistedRepActions aRomFlashOrReset);
|
sl@0
|
223 |
static void CacheRomVersionL(const TDesC& aFilename, TDesC8& aVersion);
|
sl@0
|
224 |
TInt HandleReflashofRepositoryL();
|
sl@0
|
225 |
|
sl@0
|
226 |
//--------------------virtual functions from MOperation----------------------------
|
sl@0
|
227 |
public:
|
sl@0
|
228 |
void GetSingleMeta(TUint aKey,TUint32& aMeta)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
TUint32 metaFromIni;
|
sl@0
|
231 |
if (GetMetaFromIni(aKey, metaFromIni))
|
sl@0
|
232 |
{
|
sl@0
|
233 |
aMeta=~KMetaDefaultValue & metaFromIni;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
else
|
sl@0
|
236 |
{
|
sl@0
|
237 |
//First check for a matching "range" default
|
sl@0
|
238 |
TSettingsDefaultMeta* defaultMeta = iRepository->iSimRep->RangeMetaArray().Find(aKey);
|
sl@0
|
239 |
if (defaultMeta)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
aMeta=defaultMeta->GetDefaultMetadata();
|
sl@0
|
242 |
}
|
sl@0
|
243 |
else
|
sl@0
|
244 |
{
|
sl@0
|
245 |
// Range value not found, try for a repository default
|
sl@0
|
246 |
aMeta=iRepository->iSimRep->DefaultMeta();
|
sl@0
|
247 |
}
|
sl@0
|
248 |
}
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
TSettingsAccessPolicy* GetFallbackAccessPolicy(TUint32 aId) const
|
sl@0
|
252 |
{
|
sl@0
|
253 |
return iRepository->GetFallbackAccessPolicy(aId);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
RSettingsArray& GetWritableSettingList()
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return iTransactionSettings;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
TServerSetting* GetSetting(TUint aKey)
|
sl@0
|
262 |
{
|
sl@0
|
263 |
// try to be most efficient when no transaction changes
|
sl@0
|
264 |
if ((iTransactionSettings.Count() > 0) && IsInActiveReadWriteTransaction())
|
sl@0
|
265 |
{
|
sl@0
|
266 |
TServerSetting* s = GetTransactionSetting(aKey);
|
sl@0
|
267 |
if (s)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
return (s);
|
sl@0
|
270 |
}
|
sl@0
|
271 |
}
|
sl@0
|
272 |
return GetPersistentSetting(aKey);
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
/** Returns pointer array of settings whose keys match the partial key and mask. Combines
|
sl@0
|
276 |
settings from the persistent list with those in the transaction, with priority given to the
|
sl@0
|
277 |
latter, including settings flagged as deleted eliminating the corresponding entry from the
|
sl@0
|
278 |
persistent settings (plus themselves so the final list has no settings flagged as deleted in it).
|
sl@0
|
279 |
Can also call this method when not in a transaction.
|
sl@0
|
280 |
In case of error, aMatches may contain entries and must be Reset.
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
TInt FindSettings(TUint32 aSourcePartialKey,TUint32 aMask,RSettingPointerArray& aOutputArray) const
|
sl@0
|
283 |
{
|
sl@0
|
284 |
TInt error = FindPersistentSettings(aSourcePartialKey, aMask, aOutputArray);
|
sl@0
|
285 |
// try to be most efficient when no transaction changes
|
sl@0
|
286 |
if ((iTransactionSettings.Count() > 0) && IsInActiveReadWriteTransaction() && (KErrNone == error))
|
sl@0
|
287 |
{
|
sl@0
|
288 |
RSettingPointerArray transactionSettings;
|
sl@0
|
289 |
error = FindTransactionSettings(aSourcePartialKey, aMask, transactionSettings);
|
sl@0
|
290 |
if (error == KErrNone)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
error = RSettingsArray::Merge(aOutputArray, transactionSettings);
|
sl@0
|
293 |
}
|
sl@0
|
294 |
transactionSettings.Reset();
|
sl@0
|
295 |
}
|
sl@0
|
296 |
return error;
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
//---------------------end of virtual functions-------------------------------------------
|
sl@0
|
300 |
#ifndef FOTA_UNIT_TESTING
|
sl@0
|
301 |
private:
|
sl@0
|
302 |
#endif
|
sl@0
|
303 |
CSharedRepository* iRepository;
|
sl@0
|
304 |
MObserver* iNotifier;
|
sl@0
|
305 |
TUid iUid;
|
sl@0
|
306 |
};
|
sl@0
|
307 |
|
sl@0
|
308 |
template <class T>
|
sl@0
|
309 |
TInt CServerRepository::TransactionSetL(TUint32 aKey, const T& aVal)
|
sl@0
|
310 |
{
|
sl@0
|
311 |
// all write operations now done in a transaction
|
sl@0
|
312 |
ASSERT(IsInActiveReadWriteTransaction());
|
sl@0
|
313 |
|
sl@0
|
314 |
TRAPD(error,SetSettingL(aKey,aVal));
|
sl@0
|
315 |
if (error != KErrNone)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
FailTransaction(error, aKey);
|
sl@0
|
318 |
}
|
sl@0
|
319 |
return error;
|
sl@0
|
320 |
}
|
sl@0
|
321 |
|
sl@0
|
322 |
|
sl@0
|
323 |
template <class T>
|
sl@0
|
324 |
TInt CServerRepository::TransactionCreateL(TUint32 aKey, const T& aVal, TUint32* aMeta)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
// all write operations now done in a transaction
|
sl@0
|
327 |
ASSERT(IsInActiveReadWriteTransaction());
|
sl@0
|
328 |
|
sl@0
|
329 |
TRAPD(err,CreateSettingL(aKey,aVal,aMeta));
|
sl@0
|
330 |
if (err==KErrAlreadyExists)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
return FailTransaction(KErrAlreadyExists,aKey);
|
sl@0
|
333 |
}
|
sl@0
|
334 |
User::LeaveIfError(err);
|
sl@0
|
335 |
|
sl@0
|
336 |
return KErrNone;
|
sl@0
|
337 |
}
|
sl@0
|
338 |
|
sl@0
|
339 |
#endif // SRVREPOS_H
|
sl@0
|
340 |
|
sl@0
|
341 |
|