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 SHREPOS_H
|
sl@0
|
17 |
#define SHREPOS_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include "obsrvr_noc.h"
|
sl@0
|
21 |
#include "srvres.h"
|
sl@0
|
22 |
#include "srvdefs.h"
|
sl@0
|
23 |
#include "setting.h"
|
sl@0
|
24 |
#include "clientrequest.h"
|
sl@0
|
25 |
#include "panic.h"
|
sl@0
|
26 |
#include "transstate.h"
|
sl@0
|
27 |
#include "inifile.h"
|
sl@0
|
28 |
#include "rstrepos.h"
|
sl@0
|
29 |
#include "datatype.h"
|
sl@0
|
30 |
#include "heaprepos.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
class CRepositoryTransactor;
|
sl@0
|
33 |
|
sl@0
|
34 |
class CSharedRepository : public CBase
|
sl@0
|
35 |
{
|
sl@0
|
36 |
friend class CObservable;
|
sl@0
|
37 |
friend class CServerRepository;
|
sl@0
|
38 |
friend class TConvToolTester;
|
sl@0
|
39 |
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
static CSharedRepository* NewL(TUid aUid);
|
sl@0
|
42 |
~CSharedRepository();
|
sl@0
|
43 |
|
sl@0
|
44 |
TUid Uid() const;
|
sl@0
|
45 |
|
sl@0
|
46 |
TInt CommitChanges(TCentRepLocation aLocation = EPersists);
|
sl@0
|
47 |
void CommitChangesL(TCentRepLocation aLocation = EPersists)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
User::LeaveIfError(CommitChanges(aLocation));
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
void CreateL(TServerSetting& s, TSettingsAccessPolicy* &aPolicy, TBool aFirstLoad, TBool aSingleMetaFound=EFalse);
|
sl@0
|
53 |
|
sl@0
|
54 |
void SetMetaDataOnRead(TServerSetting& aSetting, TBool aSingleMetaFound);
|
sl@0
|
55 |
|
sl@0
|
56 |
void SetMetaDataOnCreate(TServerSetting& aNewSetting, TUint32* aMeta);
|
sl@0
|
57 |
|
sl@0
|
58 |
TInt DeleteAndPersist(TUint32 aId);
|
sl@0
|
59 |
TInt DeleteNoPersist(TUint32 aId);
|
sl@0
|
60 |
|
sl@0
|
61 |
TInt ResetNoPersistL(TServerSetting& aSetting);
|
sl@0
|
62 |
void ResetAndPersistL(TServerSetting& aSetting);
|
sl@0
|
63 |
TInt ResetAllNoPersistL(CSharedRepository& aRepository);
|
sl@0
|
64 |
|
sl@0
|
65 |
const TSecurityPolicy& GetFallbackReadAccessPolicy(TUint32 aId);
|
sl@0
|
66 |
inline const TSecurityPolicy& GetReadAccessPolicy(const TServerSetting& aSetting);
|
sl@0
|
67 |
inline const TSecurityPolicy& GetReadAccessPolicy(TUint32 aId);
|
sl@0
|
68 |
inline const TSecurityPolicy& GetDefaultReadAccessPolicy();
|
sl@0
|
69 |
|
sl@0
|
70 |
const TSecurityPolicy& GetFallbackWriteAccessPolicy(TUint32 aId);
|
sl@0
|
71 |
inline const TSecurityPolicy& GetWriteAccessPolicy(const TServerSetting& aSetting);
|
sl@0
|
72 |
inline const TSecurityPolicy& GetWriteAccessPolicy(TUint32 aId);
|
sl@0
|
73 |
inline const TSecurityPolicy& GetDefaultWriteAccessPolicy();
|
sl@0
|
74 |
|
sl@0
|
75 |
TSettingsAccessPolicy* GetFallbackAccessPolicy(TUint32 aId
|
sl@0
|
76 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
77 |
,TBool aSkipSingle=EFalse
|
sl@0
|
78 |
#endif
|
sl@0
|
79 |
);
|
sl@0
|
80 |
|
sl@0
|
81 |
TInt StartTransaction(CRepositoryTransactor& aTransactor, TInt aMode);
|
sl@0
|
82 |
TInt CommitTransaction(CRepositoryTransactor& aTransactor, TUint32& aKeyInfo);
|
sl@0
|
83 |
TInt FailTransaction(CRepositoryTransactor& aTransactor, TInt aError, TUint32 aErrorKey);
|
sl@0
|
84 |
void FailAllTransactions(const CRepositoryTransactor* aExcludeTransactor);
|
sl@0
|
85 |
TInt AttemptPromoteTransactionToReadWrite(CRepositoryTransactor& aTransactor);
|
sl@0
|
86 |
TBool IsTransactionActive();
|
sl@0
|
87 |
|
sl@0
|
88 |
void MergeL(CSharedRepository& aInstallRep, TMergeType aMergeType);
|
sl@0
|
89 |
#ifndef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
90 |
TInt FindLocationForFileL(TCentRepLocation& aLocation,TUid aUid,const TCentRepFileType aType) const;
|
sl@0
|
91 |
#endif
|
sl@0
|
92 |
|
sl@0
|
93 |
void HandleUpdateMergeL(TTime aInstallFileTimeStamp, CSharedRepository& aInstallRep);
|
sl@0
|
94 |
void HandleDeleteMergeL(CSharedRepository& aRomRep);
|
sl@0
|
95 |
void SetInstallTime(TTime aInstallTime);
|
sl@0
|
96 |
|
sl@0
|
97 |
inline TUid Owner() {return iSimRep->Owner(); }
|
sl@0
|
98 |
inline void WriteBackupStream(RWriteStream& aStream) const;
|
sl@0
|
99 |
inline void WriteDeletedSettingsStream(RWriteStream& aStream) const;
|
sl@0
|
100 |
inline void InternalizeL(RReadStream& aStream, CRestoredRepository& aRstRepos) ;
|
sl@0
|
101 |
void ExternalizeCre(RWriteStream& aStream) const;
|
sl@0
|
102 |
void InternalizeCreL(RReadStream& aStream) ;
|
sl@0
|
103 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
104 |
void InternalizeCreL(RReadStream& aStream,TUint8& aCreVersion);
|
sl@0
|
105 |
#endif
|
sl@0
|
106 |
TInt ReloadContentL(CIniFileIn& aIniFile, TBool aFirstLoad = EFalse);
|
sl@0
|
107 |
#ifdef CENTREP_CONV_TOOL
|
sl@0
|
108 |
void DoCommitChangesToIniFileL(const TDesC& aOutFileName
|
sl@0
|
109 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
110 |
,TUint32 aCreVersion
|
sl@0
|
111 |
#endif
|
sl@0
|
112 |
);
|
sl@0
|
113 |
#endif
|
sl@0
|
114 |
inline void SetSize(TInt aSize);
|
sl@0
|
115 |
inline TInt Size() const;
|
sl@0
|
116 |
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
|
sl@0
|
119 |
void ResetContent();
|
sl@0
|
120 |
void RestoreConsistencyL();
|
sl@0
|
121 |
void DoRestoreConsistencyL();
|
sl@0
|
122 |
TInt CreateRepositoryFromCreFileL(TCentRepLocation aLocation);
|
sl@0
|
123 |
TInt ReadSettingSavePolicyL(CIniFileIn& aFile,TServerSetting& aSetting, TSettingsAccessPolicy* &aPolicy, TBool& aSingleMetaFound);
|
sl@0
|
124 |
TInt DoCommitTransactionSettings(CRepositoryTransactor& aTransactor, TUint32& aKeyInfo);
|
sl@0
|
125 |
void Notify(TUint32 aVal) const;
|
sl@0
|
126 |
|
sl@0
|
127 |
RSettingsArray& GetSettings();
|
sl@0
|
128 |
CSharedRepository();
|
sl@0
|
129 |
void ConstructL(TUid aUid);
|
sl@0
|
130 |
|
sl@0
|
131 |
#ifdef FOTA_UNIT_TESTING
|
sl@0
|
132 |
public:
|
sl@0
|
133 |
void SetUid(TUid aUid)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
iSimRep->SetUid(aUid);
|
sl@0
|
136 |
}
|
sl@0
|
137 |
#endif
|
sl@0
|
138 |
CHeapRepository* iSimRep;
|
sl@0
|
139 |
|
sl@0
|
140 |
TInt32 iSize; //approximate size(in memory) of the repository after internalisation
|
sl@0
|
141 |
TBool iNotificationState;//Notification can be made if iNotificationState is non-zero,
|
sl@0
|
142 |
//otherwise the notification is disabled
|
sl@0
|
143 |
|
sl@0
|
144 |
//iInconsistentData data flag will be set at the beginning of CommitChangesL()
|
sl@0
|
145 |
//and reset at the end of it. The flag is used to implement lazy-load approach for the
|
sl@0
|
146 |
//repository - if CommitChangesL() fails, the in-memory representation of the repository
|
sl@0
|
147 |
//won't match the updated by CommitChangesL() repository (ini) file. The repository
|
sl@0
|
148 |
//consistency has to be restored before any next call of CSharedRepository methods.
|
sl@0
|
149 |
TBool iInconsistentData;
|
sl@0
|
150 |
};
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
@internalTechnology
|
sl@0
|
154 |
Base class for CServerRepository and other objects that may be in transactions with the
|
sl@0
|
155 |
shared repository. Contains a double queue link so the shared repository can build a queue
|
sl@0
|
156 |
of them. In order to use transactions in the shared repository, the object needs to supply a
|
sl@0
|
157 |
CRepositoryTransactor - either itself or a member variable. This makes it possible to
|
sl@0
|
158 |
prevent one transactor from closing another's transaction.
|
sl@0
|
159 |
Stores transaction state and changes made during the transaction.
|
sl@0
|
160 |
Also stores RMessage2 while pending async start or commit, and handles its completion.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
class CRepositoryTransactor : public CBase
|
sl@0
|
163 |
{
|
sl@0
|
164 |
// shared repository may set private transaction state, but not derived classes
|
sl@0
|
165 |
friend class CSharedRepository;
|
sl@0
|
166 |
// for the _FOFF macro to work
|
sl@0
|
167 |
friend class CObservable::TSharedRepositoryInfo;
|
sl@0
|
168 |
friend class CObservable;
|
sl@0
|
169 |
public:
|
sl@0
|
170 |
|
sl@0
|
171 |
inline TInt TransactionState() const
|
sl@0
|
172 |
{
|
sl@0
|
173 |
return iTransactionState;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
inline TInt TransactionMode() const
|
sl@0
|
176 |
{
|
sl@0
|
177 |
return iTransactionState & EAllTransactionModeBits;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
inline TBool IsInTransaction() const
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return iTransactionState != ENoTransaction;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
inline TBool IsInActiveTransaction() const
|
sl@0
|
184 |
{
|
sl@0
|
185 |
// transaction is active if no bits apart from the (non-zero) mode are set
|
sl@0
|
186 |
return (iTransactionState != ENoTransaction) && (TransactionMode() == iTransactionState);
|
sl@0
|
187 |
}
|
sl@0
|
188 |
inline TBool IsInActiveReadTransaction() const
|
sl@0
|
189 |
{
|
sl@0
|
190 |
return iTransactionState == EReadTransaction;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
inline TBool IsInActiveConcurrentReadWriteTransaction() const
|
sl@0
|
193 |
{
|
sl@0
|
194 |
return (iTransactionState == EConcurrentReadWriteTransaction);
|
sl@0
|
195 |
}
|
sl@0
|
196 |
inline TBool IsInActiveExclusiveReadWriteTransaction() const
|
sl@0
|
197 |
{
|
sl@0
|
198 |
return (iTransactionState == EReadWriteTransaction);
|
sl@0
|
199 |
}
|
sl@0
|
200 |
inline TBool IsInActiveReadWriteTransaction() const
|
sl@0
|
201 |
{
|
sl@0
|
202 |
return (iTransactionState == EReadWriteTransaction)
|
sl@0
|
203 |
|| (iTransactionState == EConcurrentReadWriteTransaction);
|
sl@0
|
204 |
}
|
sl@0
|
205 |
inline TBool IsInFailedTransaction() const
|
sl@0
|
206 |
{
|
sl@0
|
207 |
return (iTransactionState & EFailedBit) != 0;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
protected:
|
sl@0
|
211 |
inline void ClearSettings()
|
sl@0
|
212 |
{
|
sl@0
|
213 |
iTransactionSettings.Reset();
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
private:
|
sl@0
|
217 |
inline void SetFailed(TInt aError, TUint32 aErrorKey)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
// don't want to fail more than once
|
sl@0
|
220 |
ASSERT(IsInActiveTransaction());
|
sl@0
|
221 |
ASSERT(aError != KErrNone); // must fail for a reason
|
sl@0
|
222 |
iTransactionState |= EFailedBit;
|
sl@0
|
223 |
ClearSettings();
|
sl@0
|
224 |
iTransactionResult = aError;
|
sl@0
|
225 |
iTransactionErrorKey = aErrorKey;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
inline void PromoteToExclusiveReadWrite()
|
sl@0
|
228 |
{
|
sl@0
|
229 |
ASSERT(iTransactionState == EReadTransaction);
|
sl@0
|
230 |
iTransactionState = EReadWriteTransaction;
|
sl@0
|
231 |
ClearSettings();
|
sl@0
|
232 |
}
|
sl@0
|
233 |
inline void AddToQueue(TSglQue<CRepositoryTransactor>& aTransactors, TInt aMode)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
ASSERT(!IsInTransaction());
|
sl@0
|
236 |
// if the following ASSERT fails, transactor is already in a queue
|
sl@0
|
237 |
ASSERT(iLink.iNext == NULL);
|
sl@0
|
238 |
aTransactors.AddLast(*this);
|
sl@0
|
239 |
iTransactionState = aMode;
|
sl@0
|
240 |
// check adding to queue in an active state
|
sl@0
|
241 |
ASSERT(IsInActiveTransaction());
|
sl@0
|
242 |
ClearSettings();
|
sl@0
|
243 |
// clear failure reasons
|
sl@0
|
244 |
iTransactionResult = KErrNone;
|
sl@0
|
245 |
iTransactionErrorKey = KUnspecifiedKey;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
inline void Deque()
|
sl@0
|
248 |
{
|
sl@0
|
249 |
iTransactionState = ENoTransaction;
|
sl@0
|
250 |
ClearSettings();
|
sl@0
|
251 |
delete iIniRep;
|
sl@0
|
252 |
iIniRep = NULL;
|
sl@0
|
253 |
}
|
sl@0
|
254 |
|
sl@0
|
255 |
protected:
|
sl@0
|
256 |
// derived classes are free to change transaction settings.
|
sl@0
|
257 |
// these can be made persistent by committing write transaction
|
sl@0
|
258 |
RSettingsArray iTransactionSettings;
|
sl@0
|
259 |
|
sl@0
|
260 |
// 'Create' needs to check the default (INI) file to see if the
|
sl@0
|
261 |
// key position has a setting defined. If that is the case,
|
sl@0
|
262 |
// the new setting uses meta defined for the original setting
|
sl@0
|
263 |
// in the INI file.
|
sl@0
|
264 |
// Store data read from INI here so that we only read the INI
|
sl@0
|
265 |
// once per transaction.
|
sl@0
|
266 |
CSharedRepository* iIniRep;
|
sl@0
|
267 |
|
sl@0
|
268 |
private:
|
sl@0
|
269 |
// A queue link used by the CSharedRepository the CTransactor is working on
|
sl@0
|
270 |
TSglQueLink iLink;
|
sl@0
|
271 |
// integer encoding transaction state using definition of TTransactionState
|
sl@0
|
272 |
TInt iTransactionState;
|
sl@0
|
273 |
// result to be returned by commit if transaction failed earlier
|
sl@0
|
274 |
TInt iTransactionResult;
|
sl@0
|
275 |
// if transaction failed earlier, key or partial key involved in the original error,
|
sl@0
|
276 |
// or KUnspecifiedKey if could not be attributed to just one.
|
sl@0
|
277 |
TUint32 iTransactionErrorKey;
|
sl@0
|
278 |
};
|
sl@0
|
279 |
|
sl@0
|
280 |
#include "shrepos.inl"
|
sl@0
|
281 |
|
sl@0
|
282 |
#endif // SHREPOS_H
|