sl@0
|
1 |
// Copyright (c) 2004-2010 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 |
#include "obsrvr_noc.h"
|
sl@0
|
17 |
#include "panic.h"
|
sl@0
|
18 |
#include "shrepos.h"
|
sl@0
|
19 |
#include "srvrepos_noc.h"
|
sl@0
|
20 |
#include "log.h"
|
sl@0
|
21 |
#include "cachemgr.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
#define TRAP_UNIFIED(_unifiedLeave, _function) \
|
sl@0
|
24 |
{ \
|
sl@0
|
25 |
TInt _returnValue = 0; \
|
sl@0
|
26 |
TRAP(_unifiedLeave, _returnValue = _function); \
|
sl@0
|
27 |
TInt& __rref = _unifiedLeave; \
|
sl@0
|
28 |
__rref = _unifiedLeave | _returnValue; \
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
CObservable::~CObservable()
|
sl@0
|
32 |
{
|
sl@0
|
33 |
iObservers.Close();
|
sl@0
|
34 |
// cleanup owned objects if there's any left
|
sl@0
|
35 |
iOpenRepositories.ResetAndDestroy();
|
sl@0
|
36 |
iRepositoryInfo.ResetAndDestroy();
|
sl@0
|
37 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
38 |
TInt multiRofsUidCount=iMultiRofsUidList.Count();
|
sl@0
|
39 |
for (TInt i=0;i<multiRofsUidCount;i++)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
iMultiRofsUidList[i].iMountFlagList.Close();
|
sl@0
|
42 |
}
|
sl@0
|
43 |
iMultiRofsUidList.Close();
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
CObservable* CObservable::NewLC()
|
sl@0
|
48 |
{
|
sl@0
|
49 |
CObservable* self = new(ELeave) CObservable;
|
sl@0
|
50 |
CleanupStack::PushL(self);
|
sl@0
|
51 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
52 |
self->ConstructL();
|
sl@0
|
53 |
#endif
|
sl@0
|
54 |
return self;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
void CObservable::AddObserverL(TUid aUid, CServerRepository* aRepositoryPointer)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TRepositoryObserverInfo info;
|
sl@0
|
60 |
|
sl@0
|
61 |
info.iRepositoryUid = aUid;
|
sl@0
|
62 |
info.iRepositoryPointer = aRepositoryPointer;
|
sl@0
|
63 |
|
sl@0
|
64 |
TLinearOrder<TRepositoryObserverInfo> observerSortOrder(CObservable::ObserverSortOrder);
|
sl@0
|
65 |
TInt err = iObservers.InsertInOrder(info, observerSortOrder);
|
sl@0
|
66 |
if ((err != KErrNone)&&(err != KErrAlreadyExists))
|
sl@0
|
67 |
{
|
sl@0
|
68 |
User::Leave(err);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
void CObservable::RemoveObserver(TUid aUid, CServerRepository* aRepositoryPointer, TInt aInMemoryIndex)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
TRepositoryObserverInfo info;
|
sl@0
|
75 |
|
sl@0
|
76 |
info.iRepositoryUid = aUid;
|
sl@0
|
77 |
info.iRepositoryPointer = aRepositoryPointer;
|
sl@0
|
78 |
|
sl@0
|
79 |
TLinearOrder<TRepositoryObserverInfo> observerSortOrder(CObservable::ObserverSortOrder);
|
sl@0
|
80 |
|
sl@0
|
81 |
TInt i = iObservers.FindInOrder(info, observerSortOrder);
|
sl@0
|
82 |
if (i!=KErrNotFound)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
// we remove the observer we find listening on the repository
|
sl@0
|
85 |
iObservers.Remove(i);
|
sl@0
|
86 |
if (iObservers.SpecificFindInSignedKeyOrder(info, EArrayFindMode_Any)!=KErrNotFound)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
//if there are more
|
sl@0
|
89 |
__CENTREP_TRACE1("CENTREP: Observer Removed when closing repository %x", aUid);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
else
|
sl@0
|
92 |
{
|
sl@0
|
93 |
// removed the last observer with the given uid
|
sl@0
|
94 |
// if the repository is in memory, try evicting it
|
sl@0
|
95 |
if (aInMemoryIndex>=0)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
// Check cache size and carry out forced eviction if necessary
|
sl@0
|
98 |
// Start Eviction if the repository fits in the cache
|
sl@0
|
99 |
if (TServerResources::iCacheManager->Enabled()&&
|
sl@0
|
100 |
TServerResources::iCacheManager->StartEviction(GetOpenRepository(aInMemoryIndex)))
|
sl@0
|
101 |
{
|
sl@0
|
102 |
// Repository added to the idle list in eviction order
|
sl@0
|
103 |
__CENTREP_TRACE2("CENTREP: Repository Became Idle when closing repository %x size %d", aUid, GetOpenRepository(aInMemoryIndex)->Size());
|
sl@0
|
104 |
}
|
sl@0
|
105 |
else
|
sl@0
|
106 |
{
|
sl@0
|
107 |
__CENTREP_TRACE1("CENTREP: Repository Delete when closing repository %x", aUid);
|
sl@0
|
108 |
// Remove and Delete Open Repository
|
sl@0
|
109 |
delete iOpenRepositories[aInMemoryIndex];
|
sl@0
|
110 |
iOpenRepositories.Remove(aInMemoryIndex);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
}
|
sl@0
|
113 |
// if no clients are connected on this repository, we no longer need the transaction information
|
sl@0
|
114 |
RemoveSharedRepositoryInfo(aUid);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
}
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
void CObservable::Notify(TUid aUid, TUint32 aVal) const
|
sl@0
|
120 |
{
|
sl@0
|
121 |
TInt i = FindConnectedRepository(aUid);
|
sl@0
|
122 |
if (i != KErrNotFound)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
for(;(i<iObservers.Count())&&(iObservers[i].iRepositoryUid == aUid);i++)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
iObservers[i].iRepositoryPointer->Notifier()->Notify(aVal);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
}
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
TInt CObservable::FindConnectedRepository(TUid aUid) const
|
sl@0
|
132 |
{
|
sl@0
|
133 |
TRepositoryObserverInfo info;
|
sl@0
|
134 |
info.iRepositoryUid = aUid;
|
sl@0
|
135 |
|
sl@0
|
136 |
return iObservers.SpecificFindInSignedKeyOrder(info, EArrayFindMode_First);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
#ifdef CACHE_OOM_TESTABILITY
|
sl@0
|
140 |
void CObservable::Reset()
|
sl@0
|
141 |
{
|
sl@0
|
142 |
iObservers.Reset();
|
sl@0
|
143 |
iOpenRepositories.Reset();
|
sl@0
|
144 |
iRepositoryInfo.Reset();
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
void CObservable::CloseiOpenRepositories()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
for(TInt i=iOpenRepositories.Count()-1; i>=0; i--)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
delete iOpenRepositories[i];
|
sl@0
|
152 |
iOpenRepositories.Remove(i);
|
sl@0
|
153 |
}
|
sl@0
|
154 |
ASSERT(iOpenRepositories.Count()==0);
|
sl@0
|
155 |
iOpenRepositories.Close();
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
void CObservable::CloseiRepositoryInfo()
|
sl@0
|
159 |
{
|
sl@0
|
160 |
for(TInt i=iRepositoryInfo.Count()-1; i>=0; i--)
|
sl@0
|
161 |
{
|
sl@0
|
162 |
delete iRepositoryInfo[i];
|
sl@0
|
163 |
iRepositoryInfo.Remove(i);
|
sl@0
|
164 |
}
|
sl@0
|
165 |
ASSERT(iRepositoryInfo.Count()==0);
|
sl@0
|
166 |
iRepositoryInfo.Close();
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
#endif
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
This function compares two UID's and indicates their sorting order. This
|
sl@0
|
173 |
implementation avoids overflow problems inherent in 'return aUid1-aUid2'
|
sl@0
|
174 |
implementations.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
TInt CObservable::CompareTUidValues(TInt aUid1, TInt aUid2)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
if (aUid1 > aUid2)
|
sl@0
|
179 |
return 1;
|
sl@0
|
180 |
if (aUid1 < aUid2)
|
sl@0
|
181 |
return -1;
|
sl@0
|
182 |
return 0;
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
TInt CObservable::ObserverSortOrder(const TRepositoryObserverInfo &aRepository1, const TRepositoryObserverInfo &aRepository2)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
TInt result;
|
sl@0
|
189 |
|
sl@0
|
190 |
result = CompareTUidValues(aRepository1.iRepositoryUid.iUid, aRepository2.iRepositoryUid.iUid);
|
sl@0
|
191 |
if (result == 0)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
if (aRepository1.iRepositoryPointer > aRepository2.iRepositoryPointer)
|
sl@0
|
194 |
return 1;
|
sl@0
|
195 |
if (aRepository1.iRepositoryPointer < aRepository2.iRepositoryPointer)
|
sl@0
|
196 |
return -1;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
return result;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
void CObservable::RemoveOpenRepository(CSharedRepository* aRepository)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
TInt index = iOpenRepositories.Find(aRepository);
|
sl@0
|
205 |
|
sl@0
|
206 |
if (index>=0)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
// we don't fail any transactions here anymore, because transactions can now survive NOC repository
|
sl@0
|
209 |
// unloads. The shared information about transactions is kept in memory seperately as long as a
|
sl@0
|
210 |
// client is connected.
|
sl@0
|
211 |
iOpenRepositories.Remove(index);
|
sl@0
|
212 |
delete aRepository;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
TInt CObservable::FindOpenRepository(TUid aUid) const
|
sl@0
|
217 |
{
|
sl@0
|
218 |
TInt i;
|
sl@0
|
219 |
TInt count=iOpenRepositories.Count();
|
sl@0
|
220 |
for(i=count-1; i>=0; i--)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
if(iOpenRepositories[i]->Uid()==aUid)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
break;
|
sl@0
|
225 |
}
|
sl@0
|
226 |
}
|
sl@0
|
227 |
return i;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
TInt CObservable::ReadIniFileL(CSharedRepository*& aRepository, TCentRepLocation aLocation)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
TInt r=KErrNone;
|
sl@0
|
233 |
CIniFileIn* inifile = 0;
|
sl@0
|
234 |
|
sl@0
|
235 |
HBufC* fileName(NULL);
|
sl@0
|
236 |
//allocates memory on the heap
|
sl@0
|
237 |
TServerResources::CreateRepositoryFileNameLC(fileName, aRepository->Uid(), aLocation, EIni);
|
sl@0
|
238 |
r = CIniFileIn::NewLC(TServerResources::iFs,inifile,*fileName);
|
sl@0
|
239 |
if(r==KErrNone)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
r=ReadSettingsL(inifile, aRepository);
|
sl@0
|
242 |
if(r==KErrCorrupt)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
// File is corrupt, if it's not the ROM file, delete it
|
sl@0
|
245 |
if(fileName && aLocation != ERom)
|
sl@0
|
246 |
User::LeaveIfError(TServerResources::iFs.Delete(*fileName));
|
sl@0
|
247 |
// Delete any repository settings that may have been read in
|
sl@0
|
248 |
aRepository->GetSettings().Reset();
|
sl@0
|
249 |
}
|
sl@0
|
250 |
}
|
sl@0
|
251 |
|
sl@0
|
252 |
CleanupStack::PopAndDestroy(inifile); // inifile
|
sl@0
|
253 |
CleanupStack::PopAndDestroy(fileName); // filename
|
sl@0
|
254 |
return r;
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
258 |
|
sl@0
|
259 |
// Function to compare two TMultiRofsList's.
|
sl@0
|
260 |
TInt CObservable::CompareUid(const TMultiRofsList& aUid1, const TMultiRofsList& aUid2)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
if (aUid1.iRepUid.iUid < aUid2.iRepUid.iUid)
|
sl@0
|
263 |
return -1 ;
|
sl@0
|
264 |
if (aUid1.iRepUid.iUid > aUid2.iRepUid.iUid)
|
sl@0
|
265 |
return 1 ;
|
sl@0
|
266 |
return 0 ;
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
void CObservable::ConstructL()
|
sl@0
|
270 |
{
|
sl@0
|
271 |
//now search for repositories uid that might be composed of multi rofs
|
sl@0
|
272 |
#ifndef CENTREP_CONV_TOOL
|
sl@0
|
273 |
if (TServerResources::iRomDirectory)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
TFileName searchFileFormat;
|
sl@0
|
276 |
searchFileFormat.Append(*(TServerResources::iRomDirectory));
|
sl@0
|
277 |
searchFileFormat.Append(_L("????????.???[*-00]"));
|
sl@0
|
278 |
CDir* entryList=NULL;
|
sl@0
|
279 |
User::LeaveIfError(TServerResources::iFs.GetDir(searchFileFormat,KEntryAttNormal,ESortByName,entryList));
|
sl@0
|
280 |
CleanupStack::PushL(entryList);
|
sl@0
|
281 |
ProcessMultiRofsListL(*entryList);
|
sl@0
|
282 |
CleanupStack::PopAndDestroy(entryList);
|
sl@0
|
283 |
}
|
sl@0
|
284 |
#endif
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
void CObservable::ProcessMultiRofsListL(const CDir& aList)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
TLex parser;
|
sl@0
|
290 |
TUint32 uidNum;
|
sl@0
|
291 |
TUint8 mountId;
|
sl@0
|
292 |
TLinearOrder<TMultiRofsList> reposSortOrder(CompareUid);
|
sl@0
|
293 |
TInt count=aList.Count();
|
sl@0
|
294 |
iMultiRofsUidList.ReserveL(count);
|
sl@0
|
295 |
for (TInt i=0;i<count;i++)
|
sl@0
|
296 |
{
|
sl@0
|
297 |
//file format as following XXXXYYYY.<cre/txt>[id-00]
|
sl@0
|
298 |
//Extract the Uid first
|
sl@0
|
299 |
parser.Assign(aList[i].iName.Left(8));
|
sl@0
|
300 |
User::LeaveIfError(parser.Val(uidNum,EHex));
|
sl@0
|
301 |
|
sl@0
|
302 |
//Extract the Mount id now, see the file format above
|
sl@0
|
303 |
parser.Assign(aList[i].iName.Mid(13,2));
|
sl@0
|
304 |
User::LeaveIfError(parser.Val(mountId,EHex));
|
sl@0
|
305 |
|
sl@0
|
306 |
//Now find whether this uid is already in the list
|
sl@0
|
307 |
TMultiRofsList find(TUid::Uid(uidNum));
|
sl@0
|
308 |
//passing it the extension of the file
|
sl@0
|
309 |
TRofsFlag newFlag(aList[i].iName.Mid(9,3),mountId);
|
sl@0
|
310 |
|
sl@0
|
311 |
TInt err=iMultiRofsUidList.FindInOrder(find,reposSortOrder);
|
sl@0
|
312 |
if (err==KErrNotFound)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
//new entry
|
sl@0
|
315 |
find.iMountFlagList.AppendL(newFlag);
|
sl@0
|
316 |
iMultiRofsUidList.InsertInOrderL(find,reposSortOrder);
|
sl@0
|
317 |
}
|
sl@0
|
318 |
else
|
sl@0
|
319 |
{
|
sl@0
|
320 |
//entry exist, just need to update the array inside TMultiRofsList
|
sl@0
|
321 |
err=iMultiRofsUidList[err].iMountFlagList.InsertInOrder(newFlag,TRofsFlag::CompareFlag);
|
sl@0
|
322 |
//ignore KErrAlreadyExists which might be the case if a txt and cre found on the same
|
sl@0
|
323 |
//rofs but the cre is preferred.
|
sl@0
|
324 |
if (err!=KErrNone && err!=KErrAlreadyExists)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
User::Leave(err);
|
sl@0
|
327 |
}
|
sl@0
|
328 |
}
|
sl@0
|
329 |
}
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
|
sl@0
|
333 |
void CObservable::OverrideSettingL(TServerSetting& aBaseSetting,const TServerSetting& aOvSetting,CSharedRepository* aCoreRepository,TBool aNewOv,TBool aNewOvIndivPolicy)
|
sl@0
|
334 |
{
|
sl@0
|
335 |
TUint32 ovId=aOvSetting.Key();
|
sl@0
|
336 |
|
sl@0
|
337 |
//---------------------CHECK AND SET THE META----------------------------
|
sl@0
|
338 |
TBool indivOvMeta=aOvSetting.IsIndividualMeta()!=0;
|
sl@0
|
339 |
//if individually specified meta override this
|
sl@0
|
340 |
if (indivOvMeta)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
aBaseSetting.SetMeta(aOvSetting.Meta());
|
sl@0
|
343 |
}
|
sl@0
|
344 |
//if not specified only when it is new we set it from the default meta
|
sl@0
|
345 |
else
|
sl@0
|
346 |
{
|
sl@0
|
347 |
if (aNewOv)
|
sl@0
|
348 |
aCoreRepository->SetMetaDataOnRead(aBaseSetting,EFalse);
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
//----------------------CHECK AND SET THE PLATSEC----------------------------
|
sl@0
|
352 |
TLinearOrder<TSettingsAccessPolicy> order(&CHeapRepository::CompareKeyIds);
|
sl@0
|
353 |
TSettingsAccessPolicy* ovTs=aOvSetting.AccessPolicy();
|
sl@0
|
354 |
TSettingsAccessPolicy* coreTs=aCoreRepository->GetFallbackAccessPolicy(ovId,ETrue);
|
sl@0
|
355 |
//new setting defined
|
sl@0
|
356 |
if (aNewOv)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
//specify own settings
|
sl@0
|
359 |
if (aNewOvIndivPolicy)
|
sl@0
|
360 |
{
|
sl@0
|
361 |
TSettingsAccessPolicy* newPol=new (ELeave)TSettingsAccessPolicy(*(const_cast<TSecurityPolicy*>
|
sl@0
|
362 |
(aOvSetting.GetReadAccessPolicy())),*(const_cast<TSecurityPolicy*>(aOvSetting.GetWriteAccessPolicy())),ovId,ovTs->HighKey(),ovTs->KeyMask());
|
sl@0
|
363 |
CleanupStack::PushL(newPol);
|
sl@0
|
364 |
//for single setting policy, the highkey is used to indicate whether the setting define its own read policy or it is just a fallback
|
sl@0
|
365 |
if (ovTs->HighKey()==0)
|
sl@0
|
366 |
{
|
sl@0
|
367 |
newPol->iReadAccessPolicy=*(coreTs->GetReadAccessPolicy());
|
sl@0
|
368 |
}
|
sl@0
|
369 |
//for single setting policy, the keymask is used to indicate whether the setting define its own write policy or it is just a fallback
|
sl@0
|
370 |
if (ovTs->KeyMask()==0)
|
sl@0
|
371 |
{
|
sl@0
|
372 |
newPol->iWriteAccessPolicy=*(coreTs->GetWriteAccessPolicy());
|
sl@0
|
373 |
}
|
sl@0
|
374 |
//insert the new one and set the setting policy to point to this
|
sl@0
|
375 |
aCoreRepository->iSimRep->SinglePolicyArray().InsertInOrderL(newPol,order);
|
sl@0
|
376 |
aBaseSetting.SetAccessPolicy(newPol);
|
sl@0
|
377 |
CleanupStack::Pop(newPol);
|
sl@0
|
378 |
}
|
sl@0
|
379 |
//no individual setting policy specified so revert to the default policy in the base
|
sl@0
|
380 |
else
|
sl@0
|
381 |
{
|
sl@0
|
382 |
aBaseSetting.SetAccessPolicy(coreTs);
|
sl@0
|
383 |
}
|
sl@0
|
384 |
}
|
sl@0
|
385 |
//old setting
|
sl@0
|
386 |
else
|
sl@0
|
387 |
{
|
sl@0
|
388 |
//if no individual policy specified do nothing as this keeps what we have in the base setting
|
sl@0
|
389 |
if (aNewOvIndivPolicy)
|
sl@0
|
390 |
{
|
sl@0
|
391 |
TInt baseIndividualPol=aCoreRepository->iSimRep->SinglePolicyArray().Find(aBaseSetting.AccessPolicy());
|
sl@0
|
392 |
if (baseIndividualPol==KErrNotFound)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
//no base individual but overriding specify one so create one and insert into list
|
sl@0
|
395 |
//point the old base setting to this newly defined invididual setting
|
sl@0
|
396 |
TSettingsAccessPolicy* newPol=new (ELeave)TSettingsAccessPolicy(*(const_cast<TSecurityPolicy*>
|
sl@0
|
397 |
(aOvSetting.GetReadAccessPolicy())),*(const_cast<TSecurityPolicy*>(aOvSetting.GetWriteAccessPolicy())),ovId,ovTs->HighKey(),ovTs->KeyMask());
|
sl@0
|
398 |
CleanupStack::PushL(newPol);
|
sl@0
|
399 |
//for single setting policy, the highkey is used to indicate whether the setting define its own read policy or it is just a fallback
|
sl@0
|
400 |
if (ovTs->HighKey()==0)
|
sl@0
|
401 |
{
|
sl@0
|
402 |
newPol->iReadAccessPolicy=*(coreTs->GetReadAccessPolicy());
|
sl@0
|
403 |
}
|
sl@0
|
404 |
//for single setting policy, the keymask is used to indicate whether the setting define its own write policy or it is just a fallback
|
sl@0
|
405 |
if (ovTs->KeyMask()==0)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
newPol->iWriteAccessPolicy=*(coreTs->GetWriteAccessPolicy());
|
sl@0
|
408 |
}
|
sl@0
|
409 |
//insert the new one and set the setting policy to point to this
|
sl@0
|
410 |
aCoreRepository->iSimRep->SinglePolicyArray().InsertInOrderL(newPol,order);
|
sl@0
|
411 |
aBaseSetting.SetAccessPolicy(newPol);
|
sl@0
|
412 |
CleanupStack::Pop(newPol);
|
sl@0
|
413 |
}
|
sl@0
|
414 |
else
|
sl@0
|
415 |
{
|
sl@0
|
416 |
TSettingsAccessPolicy* oldPol=aBaseSetting.AccessPolicy();
|
sl@0
|
417 |
//existing individual already exist, just update them
|
sl@0
|
418 |
//for single setting policy, the highkey is used to indicate whether the setting define its own read policy or it is just a fallback
|
sl@0
|
419 |
if (ovTs->HighKey()!=0)
|
sl@0
|
420 |
{
|
sl@0
|
421 |
oldPol->iReadAccessPolicy=*(aOvSetting.GetReadAccessPolicy());
|
sl@0
|
422 |
}
|
sl@0
|
423 |
//for single setting policy, the keymask is used to indicate whether the setting define its own write policy or it is just a fallback
|
sl@0
|
424 |
if (ovTs->KeyMask()!=0)
|
sl@0
|
425 |
{
|
sl@0
|
426 |
oldPol->iWriteAccessPolicy=*(aOvSetting.GetWriteAccessPolicy());
|
sl@0
|
427 |
}
|
sl@0
|
428 |
}
|
sl@0
|
429 |
}
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
//---------------------SET THE VALUE---------------------------------------
|
sl@0
|
433 |
//override the value only if it is a new setting or an old setting with value modified
|
sl@0
|
434 |
if (aNewOv || (!aNewOv && aBaseSetting!=aOvSetting))
|
sl@0
|
435 |
User::LeaveIfError(aBaseSetting.CopyTypeValue(aOvSetting));
|
sl@0
|
436 |
|
sl@0
|
437 |
//need to set it clean as this is still ROM settings
|
sl@0
|
438 |
aBaseSetting.SetClean();
|
sl@0
|
439 |
}
|
sl@0
|
440 |
|
sl@0
|
441 |
//Function containing the rule of merging repositories to a core repository
|
sl@0
|
442 |
//such as -ignoring of the global properties(non-overriden)
|
sl@0
|
443 |
// -type cannot be overriden
|
sl@0
|
444 |
void CObservable::MergeRepositoryL(CSharedRepository* aCoreRepository,CHeapRepository* aOverrideRepository)
|
sl@0
|
445 |
{
|
sl@0
|
446 |
/**
|
sl@0
|
447 |
We may want to verify that the following global properties match
|
sl@0
|
448 |
-OwnerUid
|
sl@0
|
449 |
-Uid
|
sl@0
|
450 |
We may want to give warning if they try to have global propertie section in the overriding layers
|
sl@0
|
451 |
although this obviously now can be ignored now, just need to make sure that repository follows the format
|
sl@0
|
452 |
and not corrupted
|
sl@0
|
453 |
*/
|
sl@0
|
454 |
TSettingsAccessPolicy defaultTs=aOverrideRepository->GetDefaultAccessPolicy();
|
sl@0
|
455 |
//here we panic immediately if there is any defined in the range meta/policy(we can check individually if
|
sl@0
|
456 |
//they do override later on,we will assume any definiton of global policy is invalid here
|
sl@0
|
457 |
if ( aOverrideRepository->Owner() != aCoreRepository->iSimRep->Owner()
|
sl@0
|
458 |
|| (aOverrideRepository->DefaultMeta()!=0 && aOverrideRepository->DefaultMeta()!= aCoreRepository->iSimRep->DefaultMeta())
|
sl@0
|
459 |
|| (defaultTs.HighKey()!=0 && aOverrideRepository->GetDefaultReadAccessPolicy().Package() != aCoreRepository->iSimRep->GetDefaultReadAccessPolicy().Package())
|
sl@0
|
460 |
|| (defaultTs.KeyMask()!=0 && aOverrideRepository->GetDefaultWriteAccessPolicy().Package()!= aCoreRepository->iSimRep->GetDefaultWriteAccessPolicy().Package())
|
sl@0
|
461 |
|| (aOverrideRepository->RangeMetaArray().Count()!=0 && !(aCoreRepository->iSimRep->RangeMetaArray().IsEqual(aOverrideRepository->RangeMetaArray())))
|
sl@0
|
462 |
|| (aOverrideRepository->RangePolicyArray().Count()!=0 && !(aCoreRepository->iSimRep->RangePolicyArray().IsEqual(aOverrideRepository->RangePolicyArray())
|
sl@0
|
463 |
)))
|
sl@0
|
464 |
{
|
sl@0
|
465 |
#ifdef _DEBUG
|
sl@0
|
466 |
RDebug::Printf("Illegal Global Properties Overriding");
|
sl@0
|
467 |
#endif
|
sl@0
|
468 |
User::Leave(KErrMultiRofsGlobalOverride);
|
sl@0
|
469 |
}
|
sl@0
|
470 |
|
sl@0
|
471 |
TInt single_count=aOverrideRepository->SettingsArray().Count();
|
sl@0
|
472 |
for (TInt i=0;i<single_count;i++)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
//get the overriding setting
|
sl@0
|
475 |
TServerSetting& ovTs=aOverrideRepository->SettingsArray()[i];
|
sl@0
|
476 |
TUint32 ovId=ovTs.Key();
|
sl@0
|
477 |
|
sl@0
|
478 |
//find whether it exist in the core
|
sl@0
|
479 |
TServerSetting* coreTs=aCoreRepository->GetSettings().Find(ovId);
|
sl@0
|
480 |
//check whether in the overriding repository,the policy is individually specified policy
|
sl@0
|
481 |
TInt ovIndividualPol=aOverrideRepository->SinglePolicyArray().Find(ovTs.AccessPolicy());
|
sl@0
|
482 |
if (coreTs)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
//found in core, need to check the type is the same else Panic
|
sl@0
|
485 |
if (coreTs->Type()!=ovTs.Type())
|
sl@0
|
486 |
{
|
sl@0
|
487 |
#ifdef _DEBUG
|
sl@0
|
488 |
RDebug::Printf("Illegal Setting Type Overriding");
|
sl@0
|
489 |
#endif
|
sl@0
|
490 |
User::Leave(KErrMultiRofsTypeOverride);
|
sl@0
|
491 |
}
|
sl@0
|
492 |
OverrideSettingL(*coreTs,ovTs,aCoreRepository,EFalse,ovIndividualPol!=KErrNotFound);
|
sl@0
|
493 |
}
|
sl@0
|
494 |
else
|
sl@0
|
495 |
{
|
sl@0
|
496 |
//this is a newly defined setting
|
sl@0
|
497 |
TServerSetting newTs(ovTs.Key());
|
sl@0
|
498 |
OverrideSettingL(newTs,ovTs,aCoreRepository,ETrue,ovIndividualPol!=KErrNotFound);
|
sl@0
|
499 |
//finally insert into the RSettingsArray for this new setting
|
sl@0
|
500 |
aCoreRepository->iSimRep->SettingsArray().OrderedInsertL(newTs);
|
sl@0
|
501 |
}
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
/**Function on initialising a repository of multi ROFS files
|
sl@0
|
507 |
aCoreInitialized indicate whether there is already existing keyspace file in the core layer
|
sl@0
|
508 |
otherwise the first one in the rofs layer will be the core repository
|
sl@0
|
509 |
*/
|
sl@0
|
510 |
void CObservable::MergeMultiRofsL(TBool aCoreInitialized,CSharedRepository* aCoreRepository,const RArray<TRofsFlag>& aOverridingFileList)
|
sl@0
|
511 |
{
|
sl@0
|
512 |
//load all the files and construct an array of CHeapRepository to merge content into it
|
sl@0
|
513 |
TInt sortedCount=aOverridingFileList.Count();
|
sl@0
|
514 |
TFileName repFileName;
|
sl@0
|
515 |
for (TInt i=0;i<sortedCount;i++)
|
sl@0
|
516 |
{
|
sl@0
|
517 |
repFileName.Zero();
|
sl@0
|
518 |
TRofsFlag rofsFlag=aOverridingFileList[i];
|
sl@0
|
519 |
TPtrC extPointer(*(TServerResources::iCreExt));
|
sl@0
|
520 |
TBool isTxt=rofsFlag.iFlag & 0x80000000;
|
sl@0
|
521 |
if (isTxt)
|
sl@0
|
522 |
{
|
sl@0
|
523 |
extPointer.Set(*(TServerResources::iIniExt));
|
sl@0
|
524 |
}
|
sl@0
|
525 |
repFileName.Format(_L("z:\\private\\10202be9\\%08x%S[%02x-00]"),aCoreRepository->Uid().iUid,&extPointer,rofsFlag.iFlag & 0xFF);
|
sl@0
|
526 |
//only when the core is not initialized, the first item in the list now becomes the core
|
sl@0
|
527 |
if (!aCoreInitialized && i==0)
|
sl@0
|
528 |
{
|
sl@0
|
529 |
if (isTxt)
|
sl@0
|
530 |
{
|
sl@0
|
531 |
CIniFileIn* iniFile;
|
sl@0
|
532 |
TInt err=CIniFileIn::NewLC(TServerResources::iFs,iniFile,repFileName);
|
sl@0
|
533 |
User::LeaveIfError(err);
|
sl@0
|
534 |
err=aCoreRepository->ReloadContentL(*iniFile,ETrue);
|
sl@0
|
535 |
User::LeaveIfError(err);
|
sl@0
|
536 |
CleanupStack::PopAndDestroy(iniFile);//iniFile
|
sl@0
|
537 |
}
|
sl@0
|
538 |
else
|
sl@0
|
539 |
{
|
sl@0
|
540 |
aCoreRepository->iSimRep->CreateRepositoryFromCreFileL(TServerResources::iFs,repFileName);
|
sl@0
|
541 |
}
|
sl@0
|
542 |
}
|
sl@0
|
543 |
else
|
sl@0
|
544 |
{
|
sl@0
|
545 |
CHeapRepository* repos=CHeapRepository::NewL(aCoreRepository->Uid());
|
sl@0
|
546 |
CleanupStack::PushL(repos);
|
sl@0
|
547 |
|
sl@0
|
548 |
if (isTxt)
|
sl@0
|
549 |
{
|
sl@0
|
550 |
CIniFileIn* iniFile;
|
sl@0
|
551 |
TInt err=CIniFileIn::NewLC(TServerResources::iFs,iniFile,repFileName);
|
sl@0
|
552 |
User::LeaveIfError(err);
|
sl@0
|
553 |
repos->ReloadContentL(*iniFile);
|
sl@0
|
554 |
CleanupStack::PopAndDestroy(iniFile);//iniFile
|
sl@0
|
555 |
}
|
sl@0
|
556 |
else
|
sl@0
|
557 |
{
|
sl@0
|
558 |
TUint8 creVersion;
|
sl@0
|
559 |
repos->CreateRepositoryFromCreFileL(TServerResources::iFs,repFileName,creVersion);
|
sl@0
|
560 |
//need to check the CRE version in the overloading layer
|
sl@0
|
561 |
if (creVersion<KPersistFormatSupportsIndMetaIndicator)
|
sl@0
|
562 |
{
|
sl@0
|
563 |
#ifdef _DEBUG
|
sl@0
|
564 |
RDebug::Printf("Use of Cre version less than 2 in the overriding layer");
|
sl@0
|
565 |
#endif
|
sl@0
|
566 |
//this macro is used for testing existing regression test with multi-rofs
|
sl@0
|
567 |
//so we allow older cre to be used in higher rofs
|
sl@0
|
568 |
#ifndef PDS_TEST_MULTIROFS
|
sl@0
|
569 |
User::Leave(KErrMultiRofsOldCreUsed);
|
sl@0
|
570 |
#endif
|
sl@0
|
571 |
}
|
sl@0
|
572 |
}
|
sl@0
|
573 |
//Now that the repository is initialized and at this stage the repository file has been
|
sl@0
|
574 |
//checked whether they are corrupt
|
sl@0
|
575 |
repos->SettingsArray().SetIsDefault(ETrue);
|
sl@0
|
576 |
MergeRepositoryL(aCoreRepository,repos);
|
sl@0
|
577 |
|
sl@0
|
578 |
CleanupStack::PopAndDestroy(repos); //repos
|
sl@0
|
579 |
}
|
sl@0
|
580 |
}
|
sl@0
|
581 |
}
|
sl@0
|
582 |
#endif
|
sl@0
|
583 |
|
sl@0
|
584 |
TInt CObservable::CreateRepositoryL(CSharedRepository* aRepository, TCentRepLocation aLocation)
|
sl@0
|
585 |
{
|
sl@0
|
586 |
aRepository->GetSettings().SetIsDefault(aLocation!=EPersists);
|
sl@0
|
587 |
TInt err(KErrNotFound);
|
sl@0
|
588 |
|
sl@0
|
589 |
err = aRepository->CreateRepositoryFromCreFileL(aLocation);
|
sl@0
|
590 |
if(err==KErrNotFound)
|
sl@0
|
591 |
{
|
sl@0
|
592 |
if (aLocation!=EPersists)
|
sl@0
|
593 |
err = ReadIniFileL(aRepository,aLocation);
|
sl@0
|
594 |
}
|
sl@0
|
595 |
//for ROM might want to consider the possibility of multi rofs file
|
sl@0
|
596 |
#ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
|
sl@0
|
597 |
if (aLocation==ERom && iMultiRofsUidList.Count()!=0)
|
sl@0
|
598 |
{
|
sl@0
|
599 |
//if there is error and not because of non-existant we should return error immediately
|
sl@0
|
600 |
//and if it is fine but the uid does not match one of the multirofsuidlsit this means that
|
sl@0
|
601 |
//repository is not composed of multi file.
|
sl@0
|
602 |
if (err==KErrNone || err==KErrNotFound)
|
sl@0
|
603 |
{
|
sl@0
|
604 |
TMultiRofsList find(aRepository->Uid());
|
sl@0
|
605 |
TLinearOrder<TMultiRofsList> sort_order(CompareUid);
|
sl@0
|
606 |
TInt index=iMultiRofsUidList.FindInOrder(find,sort_order);
|
sl@0
|
607 |
if (index==KErrNotFound)
|
sl@0
|
608 |
return err;
|
sl@0
|
609 |
//if the first layer has already got the exattrib=U we should leave with KErrMultiRofsIllegalRofs
|
sl@0
|
610 |
if (err==KErrNotFound && index!=KErrNotFound)
|
sl@0
|
611 |
User::Leave(KErrMultiRofsIllegalRofs);
|
sl@0
|
612 |
//the list exist in one of the mappings stored earlier, get the name and construct them
|
sl@0
|
613 |
TRAP(err,MergeMultiRofsL(err==KErrNone,aRepository,iMultiRofsUidList[index].iMountFlagList));
|
sl@0
|
614 |
if (err==KErrNoMemory)
|
sl@0
|
615 |
User::LeaveNoMemory();
|
sl@0
|
616 |
}
|
sl@0
|
617 |
}
|
sl@0
|
618 |
#endif
|
sl@0
|
619 |
return( err);
|
sl@0
|
620 |
}
|
sl@0
|
621 |
|
sl@0
|
622 |
/**
|
sl@0
|
623 |
In order to create a repository this routine looks for a .cre or .txt file.
|
sl@0
|
624 |
Txt and cre files can co-exist in install and ROM but not in persists location.
|
sl@0
|
625 |
If a persists txt file exists, the first write to the repository will cause a
|
sl@0
|
626 |
cre file to be created and the txt file to be deleted.
|
sl@0
|
627 |
If both files exist in the same location, the .cre is picked up first.
|
sl@0
|
628 |
If the .cre file is not found,a .txt file from the same location is tried.
|
sl@0
|
629 |
Otherwise if the .cre file is corrupted,it tries a .cre file from a next location.
|
sl@0
|
630 |
|
sl@0
|
631 |
Note:
|
sl@0
|
632 |
If a cre file exists at a particular location, even if the cre file is corrupt a txt
|
sl@0
|
633 |
file will not be searched for in the same location.
|
sl@0
|
634 |
*/
|
sl@0
|
635 |
|
sl@0
|
636 |
TInt CObservable::CreateRepositoryL(CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode)
|
sl@0
|
637 |
{
|
sl@0
|
638 |
TInt err(KErrNotFound);
|
sl@0
|
639 |
|
sl@0
|
640 |
switch (aIniFileOpenMode)
|
sl@0
|
641 |
{
|
sl@0
|
642 |
case CIniFileIn::EAuto:
|
sl@0
|
643 |
{
|
sl@0
|
644 |
// Look in persists dir
|
sl@0
|
645 |
err=CreateRepositoryL(aRepository, EPersists);
|
sl@0
|
646 |
|
sl@0
|
647 |
if(err==KErrNone)
|
sl@0
|
648 |
{
|
sl@0
|
649 |
return err;
|
sl@0
|
650 |
}
|
sl@0
|
651 |
|
sl@0
|
652 |
// No persists file - look in ROM dir
|
sl@0
|
653 |
// Do this before looking in the install dir, because if there is
|
sl@0
|
654 |
// a ROM file, an install file and no persists file then this
|
sl@0
|
655 |
// repository is being opened after a SW install but before the
|
sl@0
|
656 |
// merge. In this case the install file shouldn't be opened
|
sl@0
|
657 |
// until after the merge.
|
sl@0
|
658 |
err=CreateRepositoryL(aRepository, ERom);
|
sl@0
|
659 |
|
sl@0
|
660 |
if(err==KErrNone)
|
sl@0
|
661 |
{
|
sl@0
|
662 |
break;
|
sl@0
|
663 |
}
|
sl@0
|
664 |
else if(err==KErrNotFound)
|
sl@0
|
665 |
{
|
sl@0
|
666 |
// Look in install directory only if there was no ROM or persists file
|
sl@0
|
667 |
err=CreateRepositoryL(aRepository, EInstall);
|
sl@0
|
668 |
if(err==KErrNone)
|
sl@0
|
669 |
{
|
sl@0
|
670 |
TTime installFileTimeStamp=TServerResources::CentrepFileTimeStampL(aRepository->Uid(), EInstall);
|
sl@0
|
671 |
aRepository->SetInstallTime(installFileTimeStamp);
|
sl@0
|
672 |
}
|
sl@0
|
673 |
}
|
sl@0
|
674 |
break;
|
sl@0
|
675 |
}
|
sl@0
|
676 |
|
sl@0
|
677 |
case CIniFileIn::EInstallOnly:
|
sl@0
|
678 |
{
|
sl@0
|
679 |
err=CreateRepositoryL(aRepository, EInstall);
|
sl@0
|
680 |
break;
|
sl@0
|
681 |
}
|
sl@0
|
682 |
|
sl@0
|
683 |
case CIniFileIn::ERomOnly:
|
sl@0
|
684 |
{
|
sl@0
|
685 |
err=CreateRepositoryL(aRepository, ERom);
|
sl@0
|
686 |
break;
|
sl@0
|
687 |
}
|
sl@0
|
688 |
}
|
sl@0
|
689 |
|
sl@0
|
690 |
return err;
|
sl@0
|
691 |
}
|
sl@0
|
692 |
|
sl@0
|
693 |
TInt CObservable::ReadSettingsL(CIniFileIn *aIniFile, CSharedRepository* aRep)
|
sl@0
|
694 |
{
|
sl@0
|
695 |
return aRep->ReloadContentL(*aIniFile, ETrue);
|
sl@0
|
696 |
}
|
sl@0
|
697 |
|
sl@0
|
698 |
void CObservable::LoadRepositoryLC(TUid aUid, TBool aFailIfNotFound, CSharedRepository*& aRepository, CIniFileIn::TIniFileOpenMode aIniFileOpenMode)
|
sl@0
|
699 |
{
|
sl@0
|
700 |
// Calculate the amount of memory this repository will take in the heap
|
sl@0
|
701 |
// by checking the heap size before and after the internalization
|
sl@0
|
702 |
RHeap& myHeap = User::Heap();
|
sl@0
|
703 |
TInt firstSize = myHeap.Size();
|
sl@0
|
704 |
TInt biggestBlock;
|
sl@0
|
705 |
TInt firstAvail = myHeap.Available(biggestBlock);
|
sl@0
|
706 |
|
sl@0
|
707 |
TRAPD(err, aRepository = CSharedRepository::NewL(aUid));
|
sl@0
|
708 |
#ifdef CACHE_OOM_TESTABILITY
|
sl@0
|
709 |
if ((err!=KErrNone)&&!iTrapOOMOnOpen)
|
sl@0
|
710 |
{
|
sl@0
|
711 |
User::Leave(err);
|
sl@0
|
712 |
}
|
sl@0
|
713 |
#endif
|
sl@0
|
714 |
if ((err!=KErrNone)&&TServerResources::iCacheManager->Enabled())
|
sl@0
|
715 |
{
|
sl@0
|
716 |
// If cache enabled, try recovery by releasing the cache
|
sl@0
|
717 |
TServerResources::iCacheManager->FlushCache(EFalse);
|
sl@0
|
718 |
// retry
|
sl@0
|
719 |
aRepository = CSharedRepository::NewL(aUid);
|
sl@0
|
720 |
err = KErrNone;
|
sl@0
|
721 |
}
|
sl@0
|
722 |
User::LeaveIfError(err);
|
sl@0
|
723 |
|
sl@0
|
724 |
// Now that we have enough memory for the object and constructed it properly
|
sl@0
|
725 |
// we try to load it. We trap all errors, either from leaving functions or error code
|
sl@0
|
726 |
// returning functions and unify them (in all cases only one of these codes will
|
sl@0
|
727 |
// contain a valid value and the other will be 0, and for our purposes we treat
|
sl@0
|
728 |
// all errors the same no matter if they're thrown or returned)
|
sl@0
|
729 |
|
sl@0
|
730 |
TInt unifiedErrorCode;
|
sl@0
|
731 |
TRAP_UNIFIED(unifiedErrorCode, CreateRepositoryL(aRepository, aIniFileOpenMode));
|
sl@0
|
732 |
|
sl@0
|
733 |
if (unifiedErrorCode!=KErrNone)
|
sl@0
|
734 |
{
|
sl@0
|
735 |
switch(unifiedErrorCode)
|
sl@0
|
736 |
{
|
sl@0
|
737 |
case KErrNoMemory:
|
sl@0
|
738 |
{
|
sl@0
|
739 |
if (TServerResources::iCacheManager->Enabled()) // cache enabled
|
sl@0
|
740 |
{
|
sl@0
|
741 |
#ifdef CACHE_OOM_TESTABILITY
|
sl@0
|
742 |
if (!iTrapOOMOnOpen)
|
sl@0
|
743 |
{
|
sl@0
|
744 |
delete aRepository;
|
sl@0
|
745 |
aRepository = NULL;
|
sl@0
|
746 |
User::Leave(KErrNoMemory);
|
sl@0
|
747 |
}
|
sl@0
|
748 |
#endif
|
sl@0
|
749 |
// Flush cache
|
sl@0
|
750 |
TServerResources::iCacheManager->FlushCache(ETrue);
|
sl@0
|
751 |
|
sl@0
|
752 |
firstSize = myHeap.Size();
|
sl@0
|
753 |
firstAvail = myHeap.Available(biggestBlock);
|
sl@0
|
754 |
|
sl@0
|
755 |
//retry
|
sl@0
|
756 |
TRAP_UNIFIED(unifiedErrorCode, CreateRepositoryL(aRepository, aIniFileOpenMode));
|
sl@0
|
757 |
}
|
sl@0
|
758 |
}
|
sl@0
|
759 |
break;
|
sl@0
|
760 |
case KErrNotFound:
|
sl@0
|
761 |
case KErrPathNotFound:
|
sl@0
|
762 |
{
|
sl@0
|
763 |
if (!aFailIfNotFound) // backup open
|
sl@0
|
764 |
{
|
sl@0
|
765 |
// override error condition and continue normally
|
sl@0
|
766 |
unifiedErrorCode = KErrNone;
|
sl@0
|
767 |
}
|
sl@0
|
768 |
}
|
sl@0
|
769 |
break;
|
sl@0
|
770 |
}
|
sl@0
|
771 |
}
|
sl@0
|
772 |
// If unhandled, leave
|
sl@0
|
773 |
if(unifiedErrorCode != KErrNone)
|
sl@0
|
774 |
{
|
sl@0
|
775 |
delete aRepository;
|
sl@0
|
776 |
aRepository = NULL;
|
sl@0
|
777 |
}
|
sl@0
|
778 |
User::LeaveIfError(unifiedErrorCode);
|
sl@0
|
779 |
CleanupStack::PushL(aRepository);
|
sl@0
|
780 |
|
sl@0
|
781 |
// Otherwise, finalize calulations
|
sl@0
|
782 |
TInt lastSize = myHeap.Size();
|
sl@0
|
783 |
TInt lastAvail = myHeap.Available(biggestBlock);
|
sl@0
|
784 |
|
sl@0
|
785 |
TInt calcSize = (lastSize - lastAvail) - (firstSize - firstAvail);
|
sl@0
|
786 |
// record repository size for cache algorithm purposes
|
sl@0
|
787 |
aRepository->SetSize(calcSize);
|
sl@0
|
788 |
}
|
sl@0
|
789 |
|
sl@0
|
790 |
CSharedRepository* CObservable::AccessL(TUid aUid, TBool aFailIfNotFound)
|
sl@0
|
791 |
{
|
sl@0
|
792 |
CSharedRepository* rep = NULL;
|
sl@0
|
793 |
|
sl@0
|
794 |
TInt i = FindOpenRepository(aUid);
|
sl@0
|
795 |
if(i!=KErrNotFound)
|
sl@0
|
796 |
{
|
sl@0
|
797 |
rep = GetOpenRepository(i);
|
sl@0
|
798 |
// repository still open, can safely call RestoreConsistencyL
|
sl@0
|
799 |
rep->RestoreConsistencyL();
|
sl@0
|
800 |
}
|
sl@0
|
801 |
else
|
sl@0
|
802 |
{
|
sl@0
|
803 |
// For memory usage testing purposes
|
sl@0
|
804 |
RECORD_HEAP_SIZE(EMemLcnRepositoryOpen, aUid.iUid);
|
sl@0
|
805 |
// Various error conditions are handled in this function
|
sl@0
|
806 |
LoadRepositoryLC(aUid, aFailIfNotFound, rep, CIniFileIn::EAuto);
|
sl@0
|
807 |
__CENTREP_TRACE1("CENTREP: Repository Load when opening repository %x", aUid.iUid);
|
sl@0
|
808 |
// For memory usage testing purposes
|
sl@0
|
809 |
RECORD_HEAP_SIZE(EMemLcnRepositoryOpen, aUid.iUid);
|
sl@0
|
810 |
|
sl@0
|
811 |
AddOpenRepositoryL(rep);
|
sl@0
|
812 |
|
sl@0
|
813 |
// We pop the rep here because if later call of TServerResources::AddOwnerIdLookupMapping fails of OOM
|
sl@0
|
814 |
// the call of RemoveOpenRepository() will delete the repository before leave.
|
sl@0
|
815 |
CleanupStack::Pop(rep);
|
sl@0
|
816 |
|
sl@0
|
817 |
// Add owner mapping to list - Will fail if an entry already exists
|
sl@0
|
818 |
// with this Repository UID but this doesn't matter
|
sl@0
|
819 |
TUid owner = rep->Owner() ;
|
sl@0
|
820 |
TInt err = TServerResources::AddOwnerIdLookupMapping(aUid.iUid, owner.iUid);
|
sl@0
|
821 |
if (err == KErrNoMemory)
|
sl@0
|
822 |
{
|
sl@0
|
823 |
RemoveOpenRepository(rep);
|
sl@0
|
824 |
User::Leave(err);
|
sl@0
|
825 |
}
|
sl@0
|
826 |
|
sl@0
|
827 |
//Find the location of the current transaction for this repository
|
sl@0
|
828 |
const TInt offset (FindRepositoryInfo(aUid));
|
sl@0
|
829 |
if (offset >=0) //If there are no outstanding transactions
|
sl@0
|
830 |
{
|
sl@0
|
831 |
RefreshTransactorAccessPolicies(rep,offset);
|
sl@0
|
832 |
}
|
sl@0
|
833 |
}
|
sl@0
|
834 |
|
sl@0
|
835 |
// re-start the timer
|
sl@0
|
836 |
if (TServerResources::iCacheManager->Enabled())
|
sl@0
|
837 |
{
|
sl@0
|
838 |
TServerResources::iCacheManager->StartEviction(rep);
|
sl@0
|
839 |
}
|
sl@0
|
840 |
|
sl@0
|
841 |
return rep;
|
sl@0
|
842 |
}
|
sl@0
|
843 |
|
sl@0
|
844 |
TInt CObservable::FindRepositoryInfo(TUid aUid)
|
sl@0
|
845 |
{
|
sl@0
|
846 |
TSharedRepositoryInfo info(aUid);
|
sl@0
|
847 |
TLinearOrder<TSharedRepositoryInfo> infoSortOrder(CObservable::InfoSortOrder);
|
sl@0
|
848 |
|
sl@0
|
849 |
return iRepositoryInfo.FindInOrder(&info, infoSortOrder);
|
sl@0
|
850 |
}
|
sl@0
|
851 |
|
sl@0
|
852 |
CObservable::TSharedRepositoryInfo* CObservable::SharedRepositoryInfo(TUid aUid)
|
sl@0
|
853 |
{
|
sl@0
|
854 |
TInt pos = FindRepositoryInfo(aUid);
|
sl@0
|
855 |
return (pos!=KErrNotFound) ? iRepositoryInfo[pos] : NULL;
|
sl@0
|
856 |
}
|
sl@0
|
857 |
|
sl@0
|
858 |
void CObservable::CancelTransaction(CRepositoryTransactor& aTransactor,TUid aRepositoryUid)
|
sl@0
|
859 |
{
|
sl@0
|
860 |
if (aTransactor.IsInTransaction())
|
sl@0
|
861 |
{
|
sl@0
|
862 |
ReleaseTransactionLock(aTransactor,aRepositoryUid);
|
sl@0
|
863 |
CObservable::TSharedRepositoryInfo* shrepinfo =SharedRepositoryInfo(aRepositoryUid);
|
sl@0
|
864 |
ASSERT(shrepinfo);
|
sl@0
|
865 |
shrepinfo->iTransactors.Remove(aTransactor);
|
sl@0
|
866 |
//Remove the link to the next transaction
|
sl@0
|
867 |
aTransactor.iLink.iNext = NULL;
|
sl@0
|
868 |
aTransactor.Deque();
|
sl@0
|
869 |
}
|
sl@0
|
870 |
}
|
sl@0
|
871 |
|
sl@0
|
872 |
/** Private helper method which releases any read/write locks held in the shared repository
|
sl@0
|
873 |
by this transactor. Caller must set transactor's state or remove from queue as appropriate.
|
sl@0
|
874 |
@param aTransactor transactor whose read/write locks are to be released.
|
sl@0
|
875 |
@post Any read/write locks held by transactor are released.
|
sl@0
|
876 |
*/
|
sl@0
|
877 |
void CObservable::ReleaseTransactionLock(CRepositoryTransactor& aTransactor,TUid aRepositoryUid)
|
sl@0
|
878 |
{
|
sl@0
|
879 |
CObservable::TSharedRepositoryInfo* shrepinfo = SharedRepositoryInfo(aRepositoryUid);
|
sl@0
|
880 |
ASSERT(shrepinfo);
|
sl@0
|
881 |
if (aTransactor.IsInActiveConcurrentReadWriteTransaction())
|
sl@0
|
882 |
{
|
sl@0
|
883 |
shrepinfo->iNumActiveConcurrentReadWriteTransactions--;
|
sl@0
|
884 |
ASSERT(shrepinfo->iNumActiveConcurrentReadWriteTransactions >= 0); // sanity check
|
sl@0
|
885 |
}
|
sl@0
|
886 |
else if (aTransactor.IsInActiveReadTransaction())
|
sl@0
|
887 |
{
|
sl@0
|
888 |
shrepinfo->iPessimisticTransactionLockCount--;
|
sl@0
|
889 |
ASSERT(shrepinfo->iPessimisticTransactionLockCount >= 0); // sanity check
|
sl@0
|
890 |
}
|
sl@0
|
891 |
else if (aTransactor.IsInActiveExclusiveReadWriteTransaction())
|
sl@0
|
892 |
{
|
sl@0
|
893 |
// can only be one exclusive read/write transaction active (lock value -1)
|
sl@0
|
894 |
ASSERT(shrepinfo->iPessimisticTransactionLockCount == -1);
|
sl@0
|
895 |
shrepinfo->iPessimisticTransactionLockCount = 0;
|
sl@0
|
896 |
}
|
sl@0
|
897 |
}
|
sl@0
|
898 |
CObservable::TSharedRepositoryInfo::TSharedRepositoryInfo(TUid aUid) :
|
sl@0
|
899 |
iRepositoryUid(aUid), iTransactors(_FOFF(CRepositoryTransactor, iLink)),
|
sl@0
|
900 |
iPessimisticTransactionLockCount(0), iNumActiveConcurrentReadWriteTransactions(0)
|
sl@0
|
901 |
{
|
sl@0
|
902 |
}
|
sl@0
|
903 |
|
sl@0
|
904 |
TInt CObservable::InfoSortOrder(const TSharedRepositoryInfo &aRepository1, const TSharedRepositoryInfo &aRepository2)
|
sl@0
|
905 |
{
|
sl@0
|
906 |
return CompareTUidValues(aRepository1.iRepositoryUid.iUid, aRepository2.iRepositoryUid.iUid);
|
sl@0
|
907 |
}
|
sl@0
|
908 |
|
sl@0
|
909 |
void CObservable::AddSharedRepositoryInfoL(TUid aUid)
|
sl@0
|
910 |
{
|
sl@0
|
911 |
TSharedRepositoryInfo* shinfo = new(ELeave) TSharedRepositoryInfo(aUid);
|
sl@0
|
912 |
|
sl@0
|
913 |
TLinearOrder<TSharedRepositoryInfo> infoSortOrder(CObservable::InfoSortOrder);
|
sl@0
|
914 |
// Inserts if not already in the array, otherwise returns KErrAlreadyExists, which we handle gracefully
|
sl@0
|
915 |
TInt err = iRepositoryInfo.InsertInOrder(shinfo, infoSortOrder);
|
sl@0
|
916 |
if (err==KErrAlreadyExists)
|
sl@0
|
917 |
{
|
sl@0
|
918 |
delete shinfo;
|
sl@0
|
919 |
}
|
sl@0
|
920 |
else
|
sl@0
|
921 |
{
|
sl@0
|
922 |
if (err!=KErrNone)
|
sl@0
|
923 |
delete shinfo;
|
sl@0
|
924 |
User::LeaveIfError(err);
|
sl@0
|
925 |
}
|
sl@0
|
926 |
}
|
sl@0
|
927 |
|
sl@0
|
928 |
void CObservable::RemoveSharedRepositoryInfo(TUid aUid)
|
sl@0
|
929 |
{
|
sl@0
|
930 |
TInt pos = FindRepositoryInfo(aUid);
|
sl@0
|
931 |
if (pos!=KErrNotFound)
|
sl@0
|
932 |
{
|
sl@0
|
933 |
delete iRepositoryInfo[pos];
|
sl@0
|
934 |
iRepositoryInfo.Remove(pos);
|
sl@0
|
935 |
}
|
sl@0
|
936 |
}
|
sl@0
|
937 |
|
sl@0
|
938 |
|
sl@0
|
939 |
void CObservable::RefreshTransactorAccessPolicies(CSharedRepository* aRepository,const TInt offset)
|
sl@0
|
940 |
{
|
sl@0
|
941 |
TSglQueIter<CRepositoryTransactor> iter(iRepositoryInfo[offset]->iTransactors);
|
sl@0
|
942 |
CRepositoryTransactor* t (iter);
|
sl@0
|
943 |
|
sl@0
|
944 |
while (iter++ != NULL)
|
sl@0
|
945 |
{
|
sl@0
|
946 |
const TInt count = t->iTransactionSettings.Count();
|
sl@0
|
947 |
for (TInt i=0; i<count;i++) //for the no. of changed settings in the transaction
|
sl@0
|
948 |
{
|
sl@0
|
949 |
TServerSetting temp = t->iTransactionSettings[i];
|
sl@0
|
950 |
t->iTransactionSettings[i].SetAccessPolicy(aRepository->GetFallbackAccessPolicy(temp.Key()));
|
sl@0
|
951 |
//Correct the access policy pointer so that its pointing to the new valid location
|
sl@0
|
952 |
}
|
sl@0
|
953 |
t = iter;
|
sl@0
|
954 |
}
|
sl@0
|
955 |
}
|