os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/resolvercache.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @internalComponent
    19 */
    20 
    21 #ifndef __RESOLVERCACHE_H__
    22 #define __RESOLVERCACHE_H__
    23 
    24 #include <e32base.h>
    25 #include <ecom/implementationproxy.h>
    26 #include "callback.h"
    27 
    28 class CResolver;
    29 class CRegistryData;
    30 class CRegistryResolveTransaction;
    31 
    32 /** class TCounterTicks keep track of time an entry will remain in cache. */
    33 class TCounterTicks
    34 	{
    35 public:
    36 	inline TCounterTicks(TUint aTicks = 0);
    37 	inline TUint ElapsedSinceThis(TUint aEndTick) const;
    38 public:
    39 	TUint iTicks;
    40 	};
    41 
    42 /** Bit mask indicating special conditions of cache entries */
    43 enum TCacheEntryFlags
    44 	{
    45 	EEntryFlagsNone 		 = 0,
    46 	EEntryIsOnReadWriteDrive = 0x1
    47 	};
    48 
    49 /** An entry in ECOM's custom resolver cache */
    50 class RResolverCacheEntry
    51 	{
    52 public:
    53 	RResolverCacheEntry();
    54 	RResolverCacheEntry(const TUid aResolverUid,
    55 						RLibrary aLib,
    56 						TProxyNewLPtr	aNewL,
    57 						TUint32 aFlags);
    58 	void Close();
    59 
    60 	static TInt CompareUid(const RResolverCacheEntry& aEntry1, const RResolverCacheEntry& aEntry2);
    61 	TBool ThisIsOlder(const RResolverCacheEntry& aOther, TUint aCurrTick) const;
    62 
    63 public:
    64 	/** Timestamp, when the resolver is last accessed */
    65 	TCounterTicks iLastUse;
    66 
    67 	/** An extension of iLastUse. Serves as tie breaker when 2 entries
    68 	 have the same timestamp. */
    69 	TInt iLruRank;
    70 
    71 	/** TUid of the custom resolver */
    72 	TUid  iResolverUid;
    73 
    74 	/** Function ptr to instantiate the custom resolver */
    75 	TProxyNewLPtr iNewLFuncPtr;
    76 
    77 	/** RLibraray object holding a handle on the resolver DLL */
    78 	RLibrary iLibrary;
    79 
    80 	/** Special conditions about the cache entry. */
    81 	TUint32 iFlags;
    82 	};
    83 
    84 /** Handles caching custom resolvers */
    85 class CCustomResolverCache : public CTimer
    86 	{
    87 public:
    88 	static CCustomResolverCache* NewL(TUint32 aCacheSize, TUint32 aCacheTimeout);
    89 	virtual ~CCustomResolverCache();
    90 	TInt CacheResolver(const TUid aResolverUid,
    91 						RLibrary aLib,
    92 						TProxyNewLPtr aNewL,
    93 						TUint32 aFlags);
    94 	TBool CacheLookup(const TUid aResolverUid, TProxyNewLPtr& aNewLFuncPtr);
    95 	TBool CachingEnabled() const; 
    96 	TBool Remove(const TUid aResolverUid);
    97 	void RemoveItemsWithFlags(TUint32 aMask);
    98 
    99 private:
   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);
   107 
   108 private:
   109 	/** list of cached resolvers */
   110 	RArray<RResolverCacheEntry> iResolvers;
   111 
   112 	/** max. number of entries allowed in iResolvers */
   113 	TUint32 iMaxCacheSize;
   114 
   115 	/** Store the system tick period as member data to avoid
   116 	having to invoke HAL::Get() repeatedly. */
   117 	TInt 	iSystemTickPeriod;
   118 
   119 	/** cache timeout value. Unit is number of system ticks */
   120 	TUint	iEntryTimeToLive;
   121 
   122 	/** Keep track of youngest timestamp of cache entries. Use to
   123 	detect if two entries have same timestamp. */
   124 	TUint	iMostRecentTimestamp;
   125 
   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;
   130 #endif
   131 
   132 	// the test bed state accessor
   133 	friend class CCustomResolverCacheTest;
   134 	};
   135 
   136 #endif