os/graphics/windowing/windowserver/nga/remotegc/FontsCache.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 "FontsCache.h"
    17 
    18 NONSHARABLE_CLASS(CCachedFont) : public CFbsFont
    19 	{
    20 public:
    21 	CCachedFont();
    22 	~CCachedFont();
    23 	
    24 	TInt Duplicate(TInt aHandle); //lint !e1511
    25 	};
    26 	
    27 CCachedFont::CCachedFont()
    28 	{		
    29 	}
    30 	
    31 CCachedFont::~CCachedFont()
    32 	{		
    33 	}
    34 	
    35 TInt CCachedFont::Duplicate(TInt aHandle)
    36 	{
    37 	return CFbsFont::Duplicate(aHandle);
    38 	}
    39 
    40 CFontsCache::CFontsCache() : CCacheBase()
    41 	{	
    42 	}
    43 
    44 CFontsCache::~CFontsCache()
    45 	{	
    46 	}
    47 
    48 /**
    49 Enables the use of a cached font with a specified handle.
    50 If no font with this handle is cached, the font is created and cached.
    51 
    52 @return KErrNone if no problem occured, otherwise a systemwide error.
    53 */	
    54 TInt CFontsCache::UseL(TInt aHandle)
    55 	{
    56 	TCacheEntry entry(aHandle);
    57 	TInt index = iCachedItems.FindInUnsignedKeyOrder(entry);
    58 	if(index != KErrNotFound)
    59 		{
    60 		iCachedItems[index].iIsUsed = ETrue;
    61 		return KErrNone;	
    62 		}
    63 		
    64 	entry.iCachedItem = new (ELeave) CCachedFont;	
    65 	TInt err = static_cast<CCachedFont*>(entry.iCachedItem)->Duplicate(aHandle);
    66 	if(err)
    67 		{
    68 		delete entry.iCachedItem;
    69 		// coverity[extend_simple_error]
    70 		return err;
    71 		}
    72 	
    73 	entry.iIsUsed = ETrue;		
    74 	CleanupStack::PushL(entry.iCachedItem);
    75 	iCachedItems.InsertInUnsignedKeyOrderL(entry);
    76 	CleanupStack::Pop(entry.iCachedItem);
    77 	return KErrNone;
    78 	}
    79 
    80 /**
    81 Returns a font from the cache corresponding to a specific handle.
    82 
    83 @param aHandle A handle to match against a font in the cache.
    84 @return The font that matches the handle provided as a parameter.
    85 */	
    86 const CFont* CFontsCache::Resolve(TInt aHandle)
    87 	{	
    88 	const CBase* item = CCacheBase::Resolve(aHandle);
    89 	if(item != NULL)
    90 		return static_cast<const CCachedFont*>(item);
    91 	else
    92 		return NULL;
    93 	}
    94