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.
25 _LIT(KCacheMgrIniFile, "centrep.ini");
27 #ifndef DEFAULT_CENTREP_CACHE_SIZE
29 The default size of the coarse-grained cache, used when there is no .ini setting defined.
30 The default value is approximately the size needed to cache everything during device boot-up
33 #define DEFAULT_CENTREP_CACHE_SIZE 200000
35 #if DEFAULT_CENTREP_CACHE_SIZE <= 0
36 #error "DEFAULT_CENTREP_CACHE_SIZE macro value must be greater than 0"
41 The default size of the coarse-grained cache.
44 const TInt KDefaultCacheSize=DEFAULT_CENTREP_CACHE_SIZE;
47 The special cache size value used for enabling the cache without changing the current cache size value.
50 const TInt KInvalidCacheSize = -1;
52 #ifndef DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT
54 The default timeout value of the coarse-grained cache, used when there is no .ini setting defined.
55 The default value is approximately the timeout needed to keep everything in cache during device boot-up
58 // If this value will need to be changed, please ensure the KTimeoutToSizeConversion is adjusted accordingly.
59 #define DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT 120000000
61 #if DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT <= 0
62 #error "DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT macro value must be greater than 0"
67 The default timeout value (in microseconds) for the coarse-grained cache repository eviction.
70 const TInt KDefaultEvictionTimeout=DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT;
73 The constant used in forced evicition sorting algorithm for converting microsecond-based timeout
74 values to an intermediary unit compatible with byte-based size values.
77 const TInt KTimeoutToSizeConversion=DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT/(100000*24);
80 The special timeout value used for enabling the cache without changing the current timeout value.
83 const TInt KInvalidEvictionTimeout=-1;
86 class CSharedRepository;
90 This is the class which manages Coarse-Grained cache operations including delayed-unloading of
91 repositories and forced eviction of repositories under OOM conditions.
93 class CRepositoryCacheManager : public CTimer
95 friend class TRepositoryCacheManagerTester;
97 static CRepositoryCacheManager* NewLC(RFs& aFs);
98 ~CRepositoryCacheManager();
99 void ConstructL(RFs& aFs);
102 void DisableCache(TBool aFullFlush = EFalse);
103 void EnableCache(TInt aDefaultTimeout, TInt aCacheSize);
105 inline TBool Enabled();
107 TBool StartEviction(CSharedRepository*& aRepository);
109 void RemoveIdleRepository(CSharedRepository* aRepository);
110 void FlushCache(TBool aFullFlush = ETrue);
115 This is the class/structure which keeps eviction-related cache data
117 class TRepositoryCacheInfo
121 CSharedRepository* iSharedRepository;
127 inline CRepositoryCacheManager();
129 void Evict(TInt aIdleRepIndex);
130 void RescheduleTimer(const TTime& aTimeInUTC);
132 static TInt ForcedEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2);
133 static TInt TimerEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2);
137 TInt iTotalCacheUsage;
138 RArray<TRepositoryCacheInfo> iIdleRepositories;
139 TTimeIntervalMicroSeconds32 iDefaultTimeout;
143 #include "cachemgr.inl"