os/graphics/windowing/windowserver/nga/SERVER/openwfc/registeredsurfacemap.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/registeredsurfacemap.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,268 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include "registeredsurfacemap.h"
    1.20 +#include "panics.h"
    1.21 +#include <graphics/wsscene.h>
    1.22 +#include <w32std.h>
    1.23 +
    1.24 +/**
    1.25 +Destructor for the surface map, will unregister every surface in every client.
    1.26 +*/
    1.27 +CRegisteredSurfaceMap::~CRegisteredSurfaceMap()
    1.28 +	{
    1.29 +	TInt tempCount = iSessionSurfaces.Count();
    1.30 +	for (TInt ii = 0; ii < tempCount; ii++)
    1.31 +		{
    1.32 +		iSessionSurfaces[ii].RemoveAll(iScene);
    1.33 +		}
    1.34 +	iSessionSurfaces.Close();
    1.35 +	}
    1.36 +
    1.37 +/**
    1.38 +Constructor for the surface map.
    1.39 +*/
    1.40 +CRegisteredSurfaceMap::CRegisteredSurfaceMap(MWsScene& aScene):iScene(aScene)
    1.41 +	{}
    1.42 +
    1.43 +/**
    1.44 +Basic compare function, looking at the address of each session.
    1.45 +@param aLeft Left session for comparison.
    1.46 +@param aRight Right session for comparison.
    1.47 +@return Negative if left is smaller than right, positive if left is greater than right,
    1.48 +zero if they are the same.
    1.49 +*/
    1.50 +TInt CRegisteredSurfaceMap::CompareDeviceSurfaces (const TSessionSurfaces& aLeft, const TSessionSurfaces& aRight)
    1.51 +	{
    1.52 +	return (TInt)&aLeft.Session()-(TInt)&aRight.Session();
    1.53 +	}
    1.54 +
    1.55 +/**
    1.56 +Function to register a surface on a client.  Will go through a process to add the surface to a list
    1.57 +for the client to keep track of which surfaces are registered for which clients.
    1.58 +@param aClient The client for which to register the surface.
    1.59 +@param aSurfaceId The surface to register on the client.
    1.60 +@return KErrNone on success or a system-wide error code.
    1.61 +@see CWsClient::RegisterSurface
    1.62 +*/
    1.63 +TInt CRegisteredSurfaceMap::Add(const CWsClient& aClient, const TSurfaceId& aSurfaceId)
    1.64 +	{
    1.65 +	TInt err;
    1.66 +	TInt tempPos;
    1.67 +	TSessionSurfaces tempDeviceSurface(aClient);
    1.68 +	
    1.69 +	//find client
    1.70 +	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
    1.71 +	
    1.72 +	//if the client is found
    1.73 +	if (err == KErrNone)
    1.74 +		{
    1.75 +		err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
    1.76 +		}
    1.77 +	else
    1.78 +		{
    1.79 +		if (err == KErrNotFound)
    1.80 +			{
    1.81 +			err = iSessionSurfaces.Insert(tempDeviceSurface, tempPos);
    1.82 +			if (err == KErrNone)
    1.83 +				{
    1.84 +				err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
    1.85 +				if ((err != KErrNone) && (err != KErrInUse))	//it didnt manage to register the surface id
    1.86 +					{
    1.87 +					iSessionSurfaces.Remove(tempPos);
    1.88 +					}
    1.89 +				}
    1.90 +			}
    1.91 +		}
    1.92 +	return err;
    1.93 +	}
    1.94 +
    1.95 +/**
    1.96 +Function to unregister a specific surface on a specific client.  Goes through a process to check
    1.97 +that the surface is registered for the client before remove it from the list and unregistering it.
    1.98 +@param aClient The client for which to unregister the surface.
    1.99 +@param aSurfaceId The surface to unregister on the client.
   1.100 +@return KErrNone on success or a system-wide error code.
   1.101 +@see CWsClient::UnregisterSurface
   1.102 +*/
   1.103 +TInt CRegisteredSurfaceMap::Remove(CWsClient& aClient, const TSurfaceId& aSurfaceId)
   1.104 +	{
   1.105 +	TInt err;
   1.106 +	TInt tempPos;
   1.107 +	TSessionSurfaces tempDeviceSurface(aClient);
   1.108 +	
   1.109 +	//find client
   1.110 +	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
   1.111 +	TInt surfaceAmountLeftOrError;
   1.112 +	//if found
   1.113 +	if (err == KErrNone)
   1.114 +		{
   1.115 +		surfaceAmountLeftOrError = iSessionSurfaces[tempPos].RemoveSurfaceId(aSurfaceId, iScene);
   1.116 +		if (surfaceAmountLeftOrError == 0)	//there are no more surfaces registered for the client
   1.117 +			{
   1.118 +			iSessionSurfaces.Remove(tempPos);
   1.119 +			}
   1.120 +		if (surfaceAmountLeftOrError < 0)	//if an error was returned
   1.121 +			{
   1.122 +			err = surfaceAmountLeftOrError;
   1.123 +			}
   1.124 +		}
   1.125 +	return err;
   1.126 +	}
   1.127 +
   1.128 +/**
   1.129 +Function that will unregister all surfaces for a specific client.
   1.130 +@param aClient The client for which to unregister all clients.
   1.131 +@return KErrNone on success or a system-wide error code.
   1.132 +@see CWsTop::ClearSurfaceMap
   1.133 +@see CWsClient::~CWsClient()
   1.134 +*/
   1.135 +TInt CRegisteredSurfaceMap::RemoveAll(CWsClient& aClient)
   1.136 +	{
   1.137 +	TInt err;
   1.138 +	TInt tempPos;
   1.139 +	TSessionSurfaces tempDeviceSurface(aClient);
   1.140 +	
   1.141 +	//find client
   1.142 +	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
   1.143 +	
   1.144 +	//if found
   1.145 +	if (err == KErrNone)
   1.146 +		{
   1.147 +		err = iSessionSurfaces[tempPos].RemoveAll(iScene);
   1.148 +		}
   1.149 +	if (err == KErrNone || err == KErrInUse)
   1.150 +		{
   1.151 +		iSessionSurfaces.Remove(tempPos);
   1.152 +		}
   1.153 +	return err;
   1.154 +	}
   1.155 +
   1.156 +TSessionSurfaces::TSessionSurfaces(const CWsClient& aSession):iSession(aSession)
   1.157 +	{}
   1.158 +
   1.159 +TInt TSessionSurfaces::CompareIds(const TSurfaceId& aLeft, const TSurfaceId& aRight)
   1.160 +	{
   1.161 +	//Compare each internal id of the surface
   1.162 +	TUint32 ll;
   1.163 +	TUint32 rr;
   1.164 +	TInt32 tempResult;
   1.165 +	ll = aLeft.iInternal[0];
   1.166 +	rr = aRight.iInternal[0];
   1.167 +	tempResult = ll-rr;
   1.168 +	if (tempResult == 0)
   1.169 +		{
   1.170 +		ll = aLeft.iInternal[1];
   1.171 +		rr = aRight.iInternal[1];
   1.172 +		tempResult = ll-rr;
   1.173 +		if (tempResult == 0)
   1.174 +			{
   1.175 +			ll = aLeft.iInternal[2];
   1.176 +			rr = aRight.iInternal[2];
   1.177 +			tempResult = ll-rr;
   1.178 +			if (tempResult == 0)
   1.179 +				{
   1.180 +				ll = aLeft.iInternal[3];
   1.181 +				rr = aRight.iInternal[3];
   1.182 +				tempResult = ll-rr;
   1.183 +				}
   1.184 +			}
   1.185 +		}
   1.186 +	if (tempResult != 0)	//if they are different ids
   1.187 +		{
   1.188 +		if (ll < rr)
   1.189 +			{
   1.190 +			return -1;
   1.191 +			}
   1.192 +		else
   1.193 +			{
   1.194 +			return 1;
   1.195 +			}
   1.196 +		}
   1.197 +	return 0;
   1.198 +	}
   1.199 +
   1.200 +TInt TSessionSurfaces::AddSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
   1.201 +	{
   1.202 +	TInt err;
   1.203 +	TInt tempPos;
   1.204 +	//find surface id
   1.205 +	err = iSurfaces.FindInOrder(aSurfaceId, tempPos, TLinearOrder<TSurfaceId>(CompareIds));
   1.206 +	
   1.207 +	if (err == KErrNotFound)
   1.208 +		{
   1.209 +		err = iSurfaces.Insert(aSurfaceId, tempPos);
   1.210 +		if (err == KErrNone)	//successfully added surface, can now register
   1.211 +			{
   1.212 +			err = aScene.RegisterSurface(aSurfaceId);
   1.213 +			}
   1.214 +		}
   1.215 +	else
   1.216 +		{
   1.217 +		if (err == KErrNone)
   1.218 +			{
   1.219 +			//shouldnt be registered more than once
   1.220 +			err = KErrInUse;
   1.221 +			}
   1.222 +		}
   1.223 +	return err;
   1.224 +	}
   1.225 +
   1.226 +TInt TSessionSurfaces::RemoveSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
   1.227 +	{
   1.228 +	TInt surfaceAmountLeftOrError;
   1.229 +	TInt tempPos;
   1.230 +
   1.231 +	//find surface id
   1.232 +	surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos, 
   1.233 +			TLinearOrder<TSurfaceId>(CompareIds));
   1.234 +	if (surfaceAmountLeftOrError!=KErrNone)
   1.235 +		surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos, 
   1.236 +				TLinearOrder<TSurfaceId>(CompareIds));
   1.237 +	//if found
   1.238 +	if (surfaceAmountLeftOrError == KErrNone)
   1.239 +		{
   1.240 +		
   1.241 +		surfaceAmountLeftOrError = aScene.UnregisterSurface(aSurfaceId);
   1.242 +		if ((surfaceAmountLeftOrError == KErrNone) || (surfaceAmountLeftOrError == KErrInUse))
   1.243 +			{
   1.244 +			iSurfaces.Remove(tempPos);
   1.245 +			surfaceAmountLeftOrError = iSurfaces.Count();
   1.246 +			}
   1.247 +		else
   1.248 +			{
   1.249 +			WS_ASSERT_DEBUG(EFalse,EWsPanicSurfaceMapError);	//Unexpected error
   1.250 +			}
   1.251 +		}
   1.252 +	return surfaceAmountLeftOrError;
   1.253 +	}
   1.254 +
   1.255 +TInt TSessionSurfaces::RemoveAll(MWsScene& aScene)
   1.256 +	{
   1.257 +    TInt err = KErrNone;
   1.258 +    TInt returnValue = KErrNone;
   1.259 +    TInt tempSize = iSurfaces.Count();
   1.260 +    for (TInt ii = 0; ii < tempSize; ii++)
   1.261 +        {
   1.262 +        err = aScene.UnregisterSurface(iSurfaces[ii]);
   1.263 +        WS_ASSERT_ALWAYS((err == KErrNone) || (err == KErrInUse), EWsPanicSurfaceMapError);
   1.264 +        if (err != KErrNone && returnValue == KErrNone)
   1.265 +            {   //return first error code
   1.266 +            returnValue = err;
   1.267 +            }
   1.268 +        }
   1.269 +    iSurfaces.Close();
   1.270 +    return returnValue;
   1.271 +	}