Update contrib.
1 // Copyright (c) 2007-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 "registeredsurfacemap.h"
18 #include <graphics/wsscene.h>
22 Destructor for the surface map, will unregister every surface in every client.
24 CRegisteredSurfaceMap::~CRegisteredSurfaceMap()
26 TInt tempCount = iSessionSurfaces.Count();
27 for (TInt ii = 0; ii < tempCount; ii++)
29 iSessionSurfaces[ii].RemoveAll(iScene);
31 iSessionSurfaces.Close();
35 Constructor for the surface map.
37 CRegisteredSurfaceMap::CRegisteredSurfaceMap(MWsScene& aScene):iScene(aScene)
41 Basic compare function, looking at the address of each session.
42 @param aLeft Left session for comparison.
43 @param aRight Right session for comparison.
44 @return Negative if left is smaller than right, positive if left is greater than right,
45 zero if they are the same.
47 TInt CRegisteredSurfaceMap::CompareDeviceSurfaces (const TSessionSurfaces& aLeft, const TSessionSurfaces& aRight)
49 return (TInt)&aLeft.Session()-(TInt)&aRight.Session();
53 Function to register a surface on a client. Will go through a process to add the surface to a list
54 for the client to keep track of which surfaces are registered for which clients.
55 @param aClient The client for which to register the surface.
56 @param aSurfaceId The surface to register on the client.
57 @return KErrNone on success or a system-wide error code.
58 @see CWsClient::RegisterSurface
60 TInt CRegisteredSurfaceMap::Add(const CWsClient& aClient, const TSurfaceId& aSurfaceId)
64 TSessionSurfaces tempDeviceSurface(aClient);
67 err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
69 //if the client is found
72 err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
76 if (err == KErrNotFound)
78 err = iSessionSurfaces.Insert(tempDeviceSurface, tempPos);
81 err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
82 if ((err != KErrNone) && (err != KErrInUse)) //it didnt manage to register the surface id
84 iSessionSurfaces.Remove(tempPos);
93 Function to unregister a specific surface on a specific client. Goes through a process to check
94 that the surface is registered for the client before remove it from the list and unregistering it.
95 @param aClient The client for which to unregister the surface.
96 @param aSurfaceId The surface to unregister on the client.
97 @return KErrNone on success or a system-wide error code.
98 @see CWsClient::UnregisterSurface
100 TInt CRegisteredSurfaceMap::Remove(CWsClient& aClient, const TSurfaceId& aSurfaceId)
104 TSessionSurfaces tempDeviceSurface(aClient);
107 err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
108 TInt surfaceAmountLeftOrError;
112 surfaceAmountLeftOrError = iSessionSurfaces[tempPos].RemoveSurfaceId(aSurfaceId, iScene);
113 if (surfaceAmountLeftOrError == 0) //there are no more surfaces registered for the client
115 iSessionSurfaces.Remove(tempPos);
117 if (surfaceAmountLeftOrError < 0) //if an error was returned
119 err = surfaceAmountLeftOrError;
126 Function that will unregister all surfaces for a specific client.
127 @param aClient The client for which to unregister all clients.
128 @return KErrNone on success or a system-wide error code.
129 @see CWsTop::ClearSurfaceMap
130 @see CWsClient::~CWsClient()
132 TInt CRegisteredSurfaceMap::RemoveAll(CWsClient& aClient)
136 TSessionSurfaces tempDeviceSurface(aClient);
139 err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
144 err = iSessionSurfaces[tempPos].RemoveAll(iScene);
146 if (err == KErrNone || err == KErrInUse)
148 iSessionSurfaces.Remove(tempPos);
153 TSessionSurfaces::TSessionSurfaces(const CWsClient& aSession):iSession(aSession)
156 TInt TSessionSurfaces::CompareIds(const TSurfaceId& aLeft, const TSurfaceId& aRight)
158 //Compare each internal id of the surface
162 ll = aLeft.iInternal[0];
163 rr = aRight.iInternal[0];
167 ll = aLeft.iInternal[1];
168 rr = aRight.iInternal[1];
172 ll = aLeft.iInternal[2];
173 rr = aRight.iInternal[2];
177 ll = aLeft.iInternal[3];
178 rr = aRight.iInternal[3];
183 if (tempResult != 0) //if they are different ids
197 TInt TSessionSurfaces::AddSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
202 err = iSurfaces.FindInOrder(aSurfaceId, tempPos, TLinearOrder<TSurfaceId>(CompareIds));
204 if (err == KErrNotFound)
206 err = iSurfaces.Insert(aSurfaceId, tempPos);
207 if (err == KErrNone) //successfully added surface, can now register
209 err = aScene.RegisterSurface(aSurfaceId);
216 //shouldnt be registered more than once
223 TInt TSessionSurfaces::RemoveSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
225 TInt surfaceAmountLeftOrError;
229 surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos,
230 TLinearOrder<TSurfaceId>(CompareIds));
231 if (surfaceAmountLeftOrError!=KErrNone)
232 surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos,
233 TLinearOrder<TSurfaceId>(CompareIds));
235 if (surfaceAmountLeftOrError == KErrNone)
238 surfaceAmountLeftOrError = aScene.UnregisterSurface(aSurfaceId);
239 if ((surfaceAmountLeftOrError == KErrNone) || (surfaceAmountLeftOrError == KErrInUse))
241 iSurfaces.Remove(tempPos);
242 surfaceAmountLeftOrError = iSurfaces.Count();
246 WS_ASSERT_DEBUG(EFalse,EWsPanicSurfaceMapError); //Unexpected error
249 return surfaceAmountLeftOrError;
252 TInt TSessionSurfaces::RemoveAll(MWsScene& aScene)
255 TInt returnValue = KErrNone;
256 TInt tempSize = iSurfaces.Count();
257 for (TInt ii = 0; ii < tempSize; ii++)
259 err = aScene.UnregisterSurface(iSurfaces[ii]);
260 WS_ASSERT_ALWAYS((err == KErrNone) || (err == KErrInUse), EWsPanicSurfaceMapError);
261 if (err != KErrNone && returnValue == KErrNone)
262 { //return first error code