Update contrib.
1 // Copyright (c) 2006-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 "CacheBase.h"
20 Initialized the iCachedItems array with granularity 8 and an offset to iHandle in TCacheEntry,
21 which will be used to find specific entries later.
23 CCacheBase::CCacheBase() : iCachedItems(8, _FOFF(TCacheEntry, iHandle))
28 CCacheBase::~CCacheBase()
30 for(TInt i = 0; i < iCachedItems.Count(); i++)
32 delete iCachedItems[i].iCachedItem;
33 iCachedItems[i].iCachedItem = NULL;
40 Begins an update of the cache.
42 void CCacheBase::BeginUpdate()
44 // Sets all cached items to not used
45 for(TInt i = 0; i < iCachedItems.Count(); i++)
47 iCachedItems[i].iIsUsed = EFalse;
52 End an update of the cache.
54 void CCacheBase::EndUpdate()
56 // Removes all cached items that are not used
57 for(TInt i = 0; i < iCachedItems.Count(); i++)
59 if(!iCachedItems[i].iIsUsed)
61 delete iCachedItems[i].iCachedItem;
62 iCachedItems.Remove(i--);
68 Returns an item from the cache corresponding to a specific handle.
70 @param aHandle A handle to match against an item in the cache.
71 @return The item that matches the handle provided as a parameter.
73 const CBase* CCacheBase::Resolve(TInt aHandle)
75 TCacheEntry entry(aHandle);
76 TInt index = iCachedItems.FindInUnsignedKeyOrder(entry);
78 if(index != KErrNotFound)
79 return iCachedItems[index].iCachedItem;