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.
16 #include "DrawableCache.h"
17 #include <graphics/wsdrawablesourceprovider.h>
18 #include <graphics/wsdrawresource.h>
19 #include "graphicsresourcewrapper.h"
22 const TAny* CDrawableCacheBase::Resolve(const TSgDrawableId& aDrawableId, TInt aScreenNumber) const
24 TCacheEntry entry(aDrawableId, aScreenNumber);
25 TInt index = iCachedItems.FindInOrder(entry, TLinearOrder<TCacheEntry>(CDrawableCacheBase::Compare));
26 if (index != KErrNotFound)
28 return iCachedItems[index].iCachedItem;
34 Compare two cache entries by drawable ID and screen number.
36 @return zero, if the two objects are equal, a negative value, if the first entry is less
37 than the second, a positive value, if the first entry is greater than the second.
39 TInt CDrawableCacheBase::Compare(const TCacheEntry &aFirstEntry, const TCacheEntry &aSecondEntry)
41 TInt delta = Mem::Compare(reinterpret_cast<const TUint8*>(&aFirstEntry.iDrawableId), sizeof(TSgDrawableId),
42 reinterpret_cast<const TUint8*>(&aSecondEntry.iDrawableId), sizeof(TSgDrawableId));
47 return aFirstEntry.iScreenNumber - aSecondEntry.iScreenNumber;
51 CWindowDrawableCache::CWindowDrawableCache(RWsSession& aSession)
52 : iWsSession(aSession)
55 CWindowDrawableCache::~CWindowDrawableCache()
57 delete iGraphicsResource;
59 for (TInt ii=0;ii<iCachedItems.Count();++ii)
61 RWsDrawableSource* cachedItem=static_cast<RWsDrawableSource*>(iCachedItems[ii].iCachedItem);
68 struct TCloseDrawableData
71 TCloseDrawableData(CGraphicsResourceWrapper& aGraphicsResource, RSgDrawable& aDrawable)
72 : iGraphicsResource(aGraphicsResource), iDrawable(aDrawable) {}
73 CGraphicsResourceWrapper& iGraphicsResource;
74 RSgDrawable& iDrawable;
77 void CloseDrawable(TAny* aCleanupData)
79 TCloseDrawableData* data = static_cast<TCloseDrawableData*>(aCleanupData);
80 data->iGraphicsResource.Close(data->iDrawable);
83 TInt CWindowDrawableCache::UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber)
85 if(!iGraphicsResource)
88 iGrwFactory = new (ELeave) CGraphicsResourceWrapperFactory;
89 iGraphicsResource = iGrwFactory->NewGraphicsResourceWrapper();
90 if(!iGraphicsResource)
91 User::Leave(KErrNotSupported);
93 TCacheEntry entry(aDrawableId, aScreenNumber);
94 TInt index = iCachedItems.FindInOrder(entry, TLinearOrder<TCacheEntry>(CDrawableCacheBase::Compare));
95 if (index != KErrNotFound)
99 RSgDrawable* drawable = iGraphicsResource->NewDrawableL();
100 CleanupStack::PushL(drawable);
101 TInt err = iGraphicsResource->Open(*drawable, aDrawableId);
104 if (err == KErrNoMemory)
106 User::LeaveNoMemory();
110 TCloseDrawableData cleanupData(*iGraphicsResource, *drawable);
111 CleanupStack::PushL(TCleanupItem(CloseDrawable, &cleanupData));
112 RWsDrawableSource* cachedItem = new(ELeave) RWsDrawableSource(iWsSession);
113 err = cachedItem->Create(*drawable, aScreenNumber);
114 CleanupStack::PopAndDestroy(); //CloseDrawable()
115 CleanupStack::PopAndDestroy(drawable);
119 if (err == KErrNoMemory)
121 User::LeaveNoMemory();
125 entry.iCachedItem = cachedItem;
126 err = iCachedItems.InsertInOrder(entry, TLinearOrder<TCacheEntry>(CDrawableCacheBase::Compare));
137 CRenderStageDrawableCache::CRenderStageDrawableCache(MWsDrawableSourceProvider* aDrawResource)
138 : iDrawResource(aDrawResource)
142 CRenderStageDrawableCache::~CRenderStageDrawableCache()
144 for (TInt i = 0; i < iCachedItems.Count(); ++i)
146 iDrawResource->CloseDrawableSource(iCachedItems[i].iCachedItem);
148 iCachedItems.Close();
151 TInt CRenderStageDrawableCache::UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber)
157 TCacheEntry entry(aDrawableId, aScreenNumber);
158 TInt index = iCachedItems.FindInOrder(entry, TLinearOrder<TCacheEntry>(CDrawableCacheBase::Compare));
159 if (index != KErrNotFound)
163 TInt err = iDrawResource->CreateDrawableSource(aDrawableId, entry.iCachedItem);
166 if (err == KErrNoMemory)
168 User::LeaveNoMemory();
172 err = iCachedItems.InsertInOrder(entry, TLinearOrder<TCacheEntry>(CDrawableCacheBase::Compare));
175 iDrawResource->CloseDrawableSource(entry.iCachedItem);