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 CACHEMGR_H
|
sl@0
|
17 |
#define CACHEMGR_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include "log.h"
|
sl@0
|
21 |
#include "panic.h"
|
sl@0
|
22 |
#include "srvdefs.h"
|
sl@0
|
23 |
#include <f32file.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT(KCacheMgrIniFile, "centrep.ini");
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifndef DEFAULT_CENTREP_CACHE_SIZE
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
The default size of the coarse-grained cache, used when there is no .ini setting defined.
|
sl@0
|
30 |
The default value is approximately the size needed to cache everything during device boot-up
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
#define DEFAULT_CENTREP_CACHE_SIZE 200000
|
sl@0
|
34 |
#else
|
sl@0
|
35 |
#if DEFAULT_CENTREP_CACHE_SIZE <= 0
|
sl@0
|
36 |
#error "DEFAULT_CENTREP_CACHE_SIZE macro value must be greater than 0"
|
sl@0
|
37 |
#endif
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
The default size of the coarse-grained cache.
|
sl@0
|
42 |
@internalComponent
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
const TInt KDefaultCacheSize=DEFAULT_CENTREP_CACHE_SIZE;
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
The special cache size value used for enabling the cache without changing the current cache size value.
|
sl@0
|
48 |
@internalComponent
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
const TInt KInvalidCacheSize = -1;
|
sl@0
|
51 |
|
sl@0
|
52 |
#ifndef DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
The default timeout value of the coarse-grained cache, used when there is no .ini setting defined.
|
sl@0
|
55 |
The default value is approximately the timeout needed to keep everything in cache during device boot-up
|
sl@0
|
56 |
@internalComponent
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
// If this value will need to be changed, please ensure the KTimeoutToSizeConversion is adjusted accordingly.
|
sl@0
|
59 |
#define DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT 120000000
|
sl@0
|
60 |
#else
|
sl@0
|
61 |
#if DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT <= 0
|
sl@0
|
62 |
#error "DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT macro value must be greater than 0"
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
The default timeout value (in microseconds) for the coarse-grained cache repository eviction.
|
sl@0
|
68 |
@internalComponent
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
const TInt KDefaultEvictionTimeout=DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT;
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
The constant used in forced evicition sorting algorithm for converting microsecond-based timeout
|
sl@0
|
74 |
values to an intermediary unit compatible with byte-based size values.
|
sl@0
|
75 |
@internalComponent
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
const TInt KTimeoutToSizeConversion=DEFAULT_CENTREP_CACHE_EVICTION_TIMEOUT/(100000*24);
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
The special timeout value used for enabling the cache without changing the current timeout value.
|
sl@0
|
81 |
@internalComponent
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
const TInt KInvalidEvictionTimeout=-1;
|
sl@0
|
84 |
|
sl@0
|
85 |
|
sl@0
|
86 |
class CSharedRepository;
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
@internalTechnology
|
sl@0
|
90 |
This is the class which manages Coarse-Grained cache operations including delayed-unloading of
|
sl@0
|
91 |
repositories and forced eviction of repositories under OOM conditions.
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
class CRepositoryCacheManager : public CTimer
|
sl@0
|
94 |
{
|
sl@0
|
95 |
friend class TRepositoryCacheManagerTester;
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
static CRepositoryCacheManager* NewLC(RFs& aFs);
|
sl@0
|
98 |
~CRepositoryCacheManager();
|
sl@0
|
99 |
void ConstructL(RFs& aFs);
|
sl@0
|
100 |
|
sl@0
|
101 |
void EnableCache();
|
sl@0
|
102 |
void DisableCache(TBool aFullFlush = EFalse);
|
sl@0
|
103 |
void EnableCache(TInt aDefaultTimeout, TInt aCacheSize);
|
sl@0
|
104 |
|
sl@0
|
105 |
inline TBool Enabled();
|
sl@0
|
106 |
|
sl@0
|
107 |
TBool StartEviction(CSharedRepository*& aRepository);
|
sl@0
|
108 |
|
sl@0
|
109 |
void RemoveIdleRepository(CSharedRepository* aRepository);
|
sl@0
|
110 |
void FlushCache(TBool aFullFlush = ETrue);
|
sl@0
|
111 |
|
sl@0
|
112 |
protected:
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
@internalTechnology
|
sl@0
|
115 |
This is the class/structure which keeps eviction-related cache data
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
class TRepositoryCacheInfo
|
sl@0
|
118 |
{
|
sl@0
|
119 |
public:
|
sl@0
|
120 |
TTime iCacheTime;
|
sl@0
|
121 |
CSharedRepository* iSharedRepository;
|
sl@0
|
122 |
};
|
sl@0
|
123 |
|
sl@0
|
124 |
void RunL();
|
sl@0
|
125 |
|
sl@0
|
126 |
private:
|
sl@0
|
127 |
inline CRepositoryCacheManager();
|
sl@0
|
128 |
|
sl@0
|
129 |
void Evict(TInt aIdleRepIndex);
|
sl@0
|
130 |
void RescheduleTimer(const TTime& aTimeInUTC);
|
sl@0
|
131 |
|
sl@0
|
132 |
static TInt ForcedEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2);
|
sl@0
|
133 |
static TInt TimerEvictionSortOrder(const TRepositoryCacheInfo &aRepository1, const TRepositoryCacheInfo &aRepository2);
|
sl@0
|
134 |
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
TBool iEnabled;
|
sl@0
|
137 |
TInt iTotalCacheUsage;
|
sl@0
|
138 |
RArray<TRepositoryCacheInfo> iIdleRepositories;
|
sl@0
|
139 |
TTimeIntervalMicroSeconds32 iDefaultTimeout;
|
sl@0
|
140 |
TInt iCacheSize;
|
sl@0
|
141 |
};
|
sl@0
|
142 |
|
sl@0
|
143 |
#include "cachemgr.inl"
|
sl@0
|
144 |
|
sl@0
|
145 |
#endif // CACHEMGR_H
|