os/graphics/windowing/windowserver/nga/remotegc/CacheBase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include "CacheBase.h"
    17 
    18 /**
    19 Constructor
    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.
    22 */
    23 CCacheBase::CCacheBase() : iCachedItems(8, _FOFF(TCacheEntry, iHandle))
    24 	{
    25 	
    26 	}
    27 	
    28 CCacheBase::~CCacheBase()
    29 	{
    30 	for(TInt i = 0; i < iCachedItems.Count(); i++)
    31 		{
    32 		delete iCachedItems[i].iCachedItem;
    33 		}
    34 		
    35 	iCachedItems.Reset();	
    36 	}
    37 
    38 /**
    39 Begins an update of the cache.
    40 */
    41 void CCacheBase::BeginUpdate()
    42 	{
    43 	// Sets all cached items to not used
    44 	for(TInt i = 0; i < iCachedItems.Count(); i++)
    45 		{
    46 		iCachedItems[i].iIsUsed = EFalse;
    47 		}		
    48 	}
    49 
    50 /**
    51 End an update of the cache.
    52 */
    53 void CCacheBase::EndUpdate()
    54 	{
    55 	// Removes all cached items that are not used
    56 	for(TInt i = 0; i < iCachedItems.Count(); i++)
    57 		{
    58 		if(!iCachedItems[i].iIsUsed)
    59 			{
    60 			delete iCachedItems[i].iCachedItem;
    61 			iCachedItems.Remove(i--);
    62 			}			
    63 		}
    64 	// coverity[extend_simple_error]	
    65 	}
    66 	
    67 /**
    68 Returns an item from the cache corresponding to a specific handle.
    69 
    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.
    72 */
    73 const CBase* CCacheBase::Resolve(TInt aHandle)
    74 	{
    75 	TCacheEntry entry(aHandle);
    76 	TInt index = iCachedItems.FindInUnsignedKeyOrder(entry);
    77 	
    78 	if(index != KErrNotFound)
    79 		return iCachedItems[index].iCachedItem;		
    80 	else
    81 		return NULL;
    82 	}
    83 
    84