Update contrib.
1 // Copyright (c) 2008-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.
21 #ifndef __RESOLVERCACHE_H__
22 #define __RESOLVERCACHE_H__
25 #include <ecom/implementationproxy.h>
30 class CRegistryResolveTransaction;
32 /** class TCounterTicks keep track of time an entry will remain in cache. */
36 inline TCounterTicks(TUint aTicks = 0);
37 inline TUint ElapsedSinceThis(TUint aEndTick) const;
42 /** Bit mask indicating special conditions of cache entries */
46 EEntryIsOnReadWriteDrive = 0x1
49 /** An entry in ECOM's custom resolver cache */
50 class RResolverCacheEntry
53 RResolverCacheEntry();
54 RResolverCacheEntry(const TUid aResolverUid,
60 static TInt CompareUid(const RResolverCacheEntry& aEntry1, const RResolverCacheEntry& aEntry2);
61 TBool ThisIsOlder(const RResolverCacheEntry& aOther, TUint aCurrTick) const;
64 /** Timestamp, when the resolver is last accessed */
65 TCounterTicks iLastUse;
67 /** An extension of iLastUse. Serves as tie breaker when 2 entries
68 have the same timestamp. */
71 /** TUid of the custom resolver */
74 /** Function ptr to instantiate the custom resolver */
75 TProxyNewLPtr iNewLFuncPtr;
77 /** RLibraray object holding a handle on the resolver DLL */
80 /** Special conditions about the cache entry. */
84 /** Handles caching custom resolvers */
85 class CCustomResolverCache : public CTimer
88 static CCustomResolverCache* NewL(TUint32 aCacheSize, TUint32 aCacheTimeout);
89 virtual ~CCustomResolverCache();
90 TInt CacheResolver(const TUid aResolverUid,
94 TBool CacheLookup(const TUid aResolverUid, TProxyNewLPtr& aNewLFuncPtr);
95 TBool CachingEnabled() const;
96 TBool Remove(const TUid aResolverUid);
97 void RemoveItemsWithFlags(TUint32 aMask);
100 CCustomResolverCache(TUint32 aCacheSize);
101 void ConstructL(TUint32 aCacheTimeout);
102 void RunL(); // implement the CActive pure virtual
103 TInt FindResolver(const TUid aResolverUid) const;
104 void Remove(TInt aIndex);
105 void EvictLeastRecentlyUsed();
106 void SetLastUseTime(RResolverCacheEntry& aEntry);
109 /** list of cached resolvers */
110 RArray<RResolverCacheEntry> iResolvers;
112 /** max. number of entries allowed in iResolvers */
113 TUint32 iMaxCacheSize;
115 /** Store the system tick period as member data to avoid
116 having to invoke HAL::Get() repeatedly. */
117 TInt iSystemTickPeriod;
119 /** cache timeout value. Unit is number of system ticks */
120 TUint iEntryTimeToLive;
122 /** Keep track of youngest timestamp of cache entries. Use to
123 detect if two entries have same timestamp. */
124 TUint iMostRecentTimestamp;
126 #ifdef __ECOMSERVER_TESTING__
127 // For unit testing purpose. The test harness installs a callback
128 // here to detect when the cache timer fires.
129 TCallBackWithArg iTimerExpireCB;
132 // the test bed state accessor
133 friend class CCustomResolverCacheTest;