First public contribution.
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.
16 #include "srvrepos_noc.h"
18 #include <bsul/bsul.h>
20 #define UNUSED_VAR(a) a = a
22 _LIT(KCacheLit, "CoarseGrainedCache");
23 _LIT(KDefaultCacheSizeLit, "size");
24 _LIT(KDefaultEvictionTimeoutLit, "timeout");
26 CRepositoryCacheManager* CRepositoryCacheManager::NewLC(RFs& aFs)
28 CRepositoryCacheManager* self = new(ELeave) CRepositoryCacheManager;
29 CleanupStack::PushL(self);
30 self->ConstructL(aFs);
34 CRepositoryCacheManager::~CRepositoryCacheManager()
39 void CRepositoryCacheManager::ConstructL(RFs& aFs)
43 BSUL::CIniFile16* iniFile = NULL;
45 TBuf<KMaxFileName> iniFileName;
47 iniFileName.Copy( *TServerResources::iInstallDirectory );
48 iniFileName.Append( KCacheMgrIniFile );
49 TRAP(res, iniFile = BSUL::CIniFile16::NewL(aFs, iniFileName, ETrue));
52 // if RomDirectory exists
53 if (TServerResources::iRomDirectory)
55 iniFileName.Copy( *TServerResources::iRomDirectory );
56 iniFileName.Append( KCacheMgrIniFile );
57 TRAP(res, iniFile = BSUL::CIniFile16::NewL(aFs, iniFileName, ETrue));
61 __CENTREP_TRACE1("CENTREP: Central Repository Cache Parameters ini file %S not found. Default values will be used.", &KCacheMgrIniFile);
70 CleanupStack::PushL(iniFile);
76 res = iniFile->FindVar(KCacheLit(), KDefaultCacheSizeLit(), ptr);
79 TBool valueFound = EFalse;
81 // if the value can't be found or can't be converted into a positive integer, use the default
82 if (res != KErrNone || lex.Val(iCacheSize) != KErrNone || iCacheSize < 0)
84 iCacheSize = KDefaultCacheSize;
91 // if the value can be found, convert it
92 if (iniFile->FindVar(KCacheLit(), KDefaultEvictionTimeoutLit(), ptr) == KErrNone)
96 // if the value can be converted into a positive integer, assign it to iDefaultTimeout.
97 if (lex.Val(tempTimeout) == KErrNone && tempTimeout >= 0)
99 iDefaultTimeout = tempTimeout;
105 // in Debug mode, if the Cache ini file exists either in install directory or
106 // rom directory but does not contains the correct section "CoarseGrainedCache"
107 // nor any key of "size" and "timeout", the server panics.
110 Panic(ECacheIniFileCorrupted);
113 UNUSED_VAR(valueFound);
116 CleanupStack::PopAndDestroy(iniFile);
119 void CRepositoryCacheManager::EnableCache(TInt aDefaultTimeout, TInt aCacheSize)
121 if (aDefaultTimeout>0)
123 iDefaultTimeout = aDefaultTimeout;
127 iCacheSize = aCacheSize;
133 void CRepositoryCacheManager::EnableCache()
135 // If disabled, enable
139 __CENTREP_TRACE2("CENTREP: Cache Enabled. Size:%d Default Timeout:%d", iCacheSize, iDefaultTimeout.Int());
143 void CRepositoryCacheManager::DisableCache(TBool aFullFlush)
145 // If enabled, disable
148 // cancel any outstanding timer
151 FlushCache(aFullFlush);
154 __CENTREP_TRACE("CENTREP: Cache Disabled");
158 void CRepositoryCacheManager::RescheduleTimer(const TTime& aTimeInUTC)
164 //Get the 64bit time interval between now and the cache timeout
165 TTimeIntervalMicroSeconds interval64 = aTimeInUTC.MicroSecondsFrom(now);
166 TTimeIntervalMicroSeconds32 interval32(iDefaultTimeout);
168 //If the interval is positive, i.e. the timeout is in the future, convert
169 //this interval to a 32 bit value, otherwise use the default timeout
172 //If the interval value is less than the maximum 32 bit value cast
173 //interval to 32 bit value, otherwise the interval is too large for
174 //a 32 bit value so just set the interval to the max 32 bit value
175 const TInt64 KMax32BitValue(KMaxTInt32);
176 interval32 = (interval64 <= KMax32BitValue) ?
177 static_cast<TTimeIntervalMicroSeconds32>(interval64.Int64()): KMaxTInt32;
180 //Reschedule the timer
185 void CRepositoryCacheManager::RemoveIdleRepository(CSharedRepository* aRepository)
190 TInt count=iIdleRepositories.Count();
191 for(i=count-1; i>=0; i--)
193 if(iIdleRepositories[i].iSharedRepository==aRepository)
199 // Idle repository might not be found in the list if multiple clients try to open the same
200 // repository at the same time. First client will remove it and second one will not find it
203 __CENTREP_TRACE1("CENTREP: Cache Hit when opening repository %x", aRepository->Uid().iUid);
205 iTotalCacheUsage -= iIdleRepositories[i].iSharedRepository->Size();
206 iIdleRepositories.Remove(i);
208 // If this was the first repository on the list, it means its timer is still ticking.
209 // We have to stop it and ...
213 // if there's still other repositories in the list, reschedule the timer with the
214 // new top-of-the-list
215 if (iIdleRepositories.Count())
217 RescheduleTimer(iIdleRepositories[0].iCacheTime);
223 __CENTREP_TRACE1("CENTREP: Cache Miss when opening repository %x", aRepository->Uid().iUid);
228 #ifdef CACHE_OOM_TESTABILITY
229 // This code is only for tesing and doesn't go into MCL
230 // Hence hide the leave in a macro instead of making StartEvictionL
231 #define TEST_CODE_LEAVE(x) User::Leave(x)
234 TBool CRepositoryCacheManager::StartEviction(CSharedRepository*& aRepository)
236 // find the item in the cache and remove it if it exists to reset the timer
237 RemoveIdleRepository(aRepository);
241 if (iIdleRepositories.Count())
243 lastTop = iIdleRepositories[0].iCacheTime.Int64();
246 // Execute the forced eviction algorithm only if it will make sense
247 // The eviction makes sense if:
248 // - there's anything in the cache to evict
249 // - the repository we're trying to cache can fit in the cache after evictions
250 if (iIdleRepositories.Count() && (aRepository->Size() < iCacheSize))
252 // Check to see if current cache size + the current repository size is overshooting the limit
253 if (iTotalCacheUsage + aRepository->Size() > iCacheSize)
256 __CENTREP_TRACE3("CENTREP: Cache Size Exceeded: Current(%d)+Size(%d)>Cache(%d)", iTotalCacheUsage, aRepository->Size(), iCacheSize);
258 // Sort in the forced eviction order
259 TLinearOrder<TRepositoryCacheInfo> forcedSortOrder(CRepositoryCacheManager::ForcedEvictionSortOrder);
260 iIdleRepositories.Sort(forcedSortOrder);
262 // Evict one by one until there's enough cache space or we run out of idle reps
265 __CENTREP_TRACE1("CENTREP: Forced Eviction of repository %x", iIdleRepositories[0].iSharedRepository->Uid().iUid);
266 iTotalCacheUsage -= iIdleRepositories[0].iSharedRepository->Size();
268 iIdleRepositories.Remove(0);
269 } while (iIdleRepositories.Count() && (iTotalCacheUsage + aRepository->Size() > iCacheSize));
272 if (!iIdleRepositories.Count())
274 __CENTREP_TRACE("CENREP: Cache Emptied by Forced Eviction");
277 // Re-sort to timer order for normal operation
278 TLinearOrder<TRepositoryCacheInfo> timerSortOrder(CRepositoryCacheManager::TimerEvictionSortOrder);
279 iIdleRepositories.Sort(timerSortOrder);
283 // See if there's enough space now
284 if (iTotalCacheUsage + aRepository->Size() > iCacheSize)
289 // Create new item for the cache and insert it in the list
290 TRepositoryCacheInfo repInfo;
292 repInfo.iCacheTime.UniversalTime();
293 repInfo.iCacheTime += TTimeIntervalMicroSeconds32(iDefaultTimeout);
294 repInfo.iSharedRepository = aRepository;
296 TLinearOrder<TRepositoryCacheInfo> timerSortOrder(CRepositoryCacheManager::TimerEvictionSortOrder);
297 // With the same timeout value assigned to all repositories, no two repositories can have the same
298 // timeout theoretically, so InsertInOrder is sufficient. But in practice, because of the poor
299 // resolution of the NTickCount() function used by TTime::UniversalTime(), InsertInOrderAllowRepeats
300 // should be used instead of InsertInOrder to allow for duplicate timer values caused by two
301 // repositories cached in quick succession (<1ms)
302 TInt err = iIdleRepositories.InsertInOrderAllowRepeats(repInfo, timerSortOrder);
303 #ifdef CACHE_OOM_TESTABILITY
304 // This code is only for tesing and doesn't go into MCL
305 if (err == KErrNoMemory)
307 TServerResources::iObserver->RemoveOpenRepository(aRepository);
309 // Should Leave here for the OOM tests to successfully complete.
310 TEST_CODE_LEAVE(err);
318 iTotalCacheUsage += repInfo.iSharedRepository->Size();
320 // Only reset timer if necessary. This operation takes time and doing it every time reduces performance considerably
321 if (lastTop != iIdleRepositories[0].iCacheTime.Int64())
323 // reset timer to the new top-of-the-list
325 RescheduleTimer(iIdleRepositories[0].iCacheTime);
331 void CRepositoryCacheManager::FlushCache(TBool aFullFlush)
333 // iterate through idle repositories (loaded in memory, scheduled to be evicted)
334 TInt idleRepCount = iIdleRepositories.Count();
335 for(TInt repCount = idleRepCount - 1; repCount >= 0 ; repCount--)
337 // check if there are any observers listening (to see if any client is connected to this repository)
338 if (aFullFlush || (TServerResources::iObserver->FindConnectedRepository(iIdleRepositories[repCount].iSharedRepository->Uid())==KErrNotFound))
340 // if the client has already been disconnected, unload from memory
344 // this whole iteration and search above can be replaced by a simple reference counter variable check,
345 // if the server is redesigned using a resource manager type pattern with CSharedRepository object as a resource
348 iIdleRepositories.Reset();
350 iTotalCacheUsage = 0;
351 __CENTREP_TRACE1("CENTREP: Cache Flush: %d repositories flushed", idleRepCount);
354 // Evict removes items from iOpenRepositories list, not from iIdleRepositories list
355 void CRepositoryCacheManager::Evict(TInt aIdleRepIndex)
357 // find,remove and delete the idle repositories' pointers in the open repositories list
358 TServerResources::iObserver->RemoveOpenRepository(iIdleRepositories[aIdleRepIndex].iSharedRepository);
361 void CRepositoryCacheManager::RunL()
367 TInt count = iIdleRepositories.Count();
369 // repositories that are involved in active transactions are not idle.
370 // this checks to make sure that we're not trying to reclaim memory that
371 // is actually still currently in use.
373 for (TInt i = 0;i < count;i++)
375 if (iIdleRepositories[i].iCacheTime > now)
380 if (iIdleRepositories[i].iSharedRepository->IsTransactionActive())
382 __CENTREP_TRACE1("CRepositoryCacheManager::RunL - rescheduling UID 0x%x, in active transaction",
383 iIdleRepositories[i].iSharedRepository->Uid().iUid);
384 StartEviction(iIdleRepositories[i].iSharedRepository);
390 // Try to evict all the repositories which have expired. There might be more than one repository
391 // destined to expire at the same time, or there are more than one repository with expiry times
392 // between the scheduled expiry time and now (which theoretically should have been the same, but maybe
393 // because of other procesor activity, the timer Active Object just got late a bit)
394 while((iIdleRepositories.Count()) && (iIdleRepositories[0].iCacheTime<=now))
396 __CENTREP_TRACE1("CENTREP: Normal Eviction of repository %x", iIdleRepositories[0].iSharedRepository->Uid().iUid);
397 // Always remove from the top of the sorted list
398 iTotalCacheUsage -= iIdleRepositories[0].iSharedRepository->Size();
400 iIdleRepositories.Remove(0);
403 // reschedule to run again at the expiry date of next repository on the list, if any
404 if (iIdleRepositories.Count())
406 RescheduleTimer(iIdleRepositories[0].iCacheTime);
410 __CENTREP_TRACE("CENTREP: Cache Empty/Timer Disabled");
414 TInt CRepositoryCacheManager::ForcedEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2)
417 The code in the comments below is the original simple-to-read version of the algebraically
418 simplified production code.
424 // we calculate the ages of the repositories by taking the difference between now and when
425 // they were last became idle. When refactoring, the calculation of the absolute ages will be
426 // eleminated and the age difference between the repositories will be used in the formula instead
428 TTimeIntervalMicroSeconds age1 = now.MicroSecondsFrom(aRepository1.iCacheTime);
429 TTimeIntervalMicroSeconds age2 = now.MicroSecondsFrom(aRepository2.iCacheTime);
431 // then divide the resulting numbers by conversion constant to get a number in a compatible unit
432 // to the size. This operation reduces the microsecond-based values to having an approx. max
435 TInt t1 = age1.Int64()/KTimeoutToSizeConversion;
436 TInt t2 = age2.Int64()/KTimeoutToSizeConversion;
438 // the resulting normalized time difference values are added to the size of the repository
439 // resulting in an implicit %50 weight in the overall importance value
440 // An approx. maximum size of a repository is assumed to be around 100K
442 TInt importance1 = t1+aRepository1.iSharedRepository->Size();
443 TInt importance2 = t2+aRepository2.iSharedRepository->Size();
445 // the difference between the importances of the repositories determine the sorting order
447 return static_cast<TInt>(importance1-importance2);
449 // after refactoring, the resulting formula is this one
450 return static_cast<TInt>(((aRepository1.iCacheTime.Int64()-aRepository2.iCacheTime.Int64())/KTimeoutToSizeConversion)+(aRepository1.iSharedRepository->Size()-aRepository2.iSharedRepository->Size()));
453 TInt CRepositoryCacheManager::TimerEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2)
455 return static_cast<TInt>(aRepository1.iCacheTime.Int64()-aRepository2.iCacheTime.Int64());