os/graphics/windowing/windowserver/nga/SERVER/openwfc/registeredsurfacemap.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "registeredsurfacemap.h"
sl@0
    17
#include "panics.h"
sl@0
    18
#include <graphics/wsscene.h>
sl@0
    19
#include <w32std.h>
sl@0
    20
sl@0
    21
/**
sl@0
    22
Destructor for the surface map, will unregister every surface in every client.
sl@0
    23
*/
sl@0
    24
CRegisteredSurfaceMap::~CRegisteredSurfaceMap()
sl@0
    25
	{
sl@0
    26
	TInt tempCount = iSessionSurfaces.Count();
sl@0
    27
	for (TInt ii = 0; ii < tempCount; ii++)
sl@0
    28
		{
sl@0
    29
		iSessionSurfaces[ii].RemoveAll(iScene);
sl@0
    30
		}
sl@0
    31
	iSessionSurfaces.Close();
sl@0
    32
	}
sl@0
    33
sl@0
    34
/**
sl@0
    35
Constructor for the surface map.
sl@0
    36
*/
sl@0
    37
CRegisteredSurfaceMap::CRegisteredSurfaceMap(MWsScene& aScene):iScene(aScene)
sl@0
    38
	{}
sl@0
    39
sl@0
    40
/**
sl@0
    41
Basic compare function, looking at the address of each session.
sl@0
    42
@param aLeft Left session for comparison.
sl@0
    43
@param aRight Right session for comparison.
sl@0
    44
@return Negative if left is smaller than right, positive if left is greater than right,
sl@0
    45
zero if they are the same.
sl@0
    46
*/
sl@0
    47
TInt CRegisteredSurfaceMap::CompareDeviceSurfaces (const TSessionSurfaces& aLeft, const TSessionSurfaces& aRight)
sl@0
    48
	{
sl@0
    49
	return (TInt)&aLeft.Session()-(TInt)&aRight.Session();
sl@0
    50
	}
sl@0
    51
sl@0
    52
/**
sl@0
    53
Function to register a surface on a client.  Will go through a process to add the surface to a list
sl@0
    54
for the client to keep track of which surfaces are registered for which clients.
sl@0
    55
@param aClient The client for which to register the surface.
sl@0
    56
@param aSurfaceId The surface to register on the client.
sl@0
    57
@return KErrNone on success or a system-wide error code.
sl@0
    58
@see CWsClient::RegisterSurface
sl@0
    59
*/
sl@0
    60
TInt CRegisteredSurfaceMap::Add(const CWsClient& aClient, const TSurfaceId& aSurfaceId)
sl@0
    61
	{
sl@0
    62
	TInt err;
sl@0
    63
	TInt tempPos;
sl@0
    64
	TSessionSurfaces tempDeviceSurface(aClient);
sl@0
    65
	
sl@0
    66
	//find client
sl@0
    67
	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
sl@0
    68
	
sl@0
    69
	//if the client is found
sl@0
    70
	if (err == KErrNone)
sl@0
    71
		{
sl@0
    72
		err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
sl@0
    73
		}
sl@0
    74
	else
sl@0
    75
		{
sl@0
    76
		if (err == KErrNotFound)
sl@0
    77
			{
sl@0
    78
			err = iSessionSurfaces.Insert(tempDeviceSurface, tempPos);
sl@0
    79
			if (err == KErrNone)
sl@0
    80
				{
sl@0
    81
				err = iSessionSurfaces[tempPos].AddSurfaceId(aSurfaceId, iScene);
sl@0
    82
				if ((err != KErrNone) && (err != KErrInUse))	//it didnt manage to register the surface id
sl@0
    83
					{
sl@0
    84
					iSessionSurfaces.Remove(tempPos);
sl@0
    85
					}
sl@0
    86
				}
sl@0
    87
			}
sl@0
    88
		}
sl@0
    89
	return err;
sl@0
    90
	}
sl@0
    91
sl@0
    92
/**
sl@0
    93
Function to unregister a specific surface on a specific client.  Goes through a process to check
sl@0
    94
that the surface is registered for the client before remove it from the list and unregistering it.
sl@0
    95
@param aClient The client for which to unregister the surface.
sl@0
    96
@param aSurfaceId The surface to unregister on the client.
sl@0
    97
@return KErrNone on success or a system-wide error code.
sl@0
    98
@see CWsClient::UnregisterSurface
sl@0
    99
*/
sl@0
   100
TInt CRegisteredSurfaceMap::Remove(CWsClient& aClient, const TSurfaceId& aSurfaceId)
sl@0
   101
	{
sl@0
   102
	TInt err;
sl@0
   103
	TInt tempPos;
sl@0
   104
	TSessionSurfaces tempDeviceSurface(aClient);
sl@0
   105
	
sl@0
   106
	//find client
sl@0
   107
	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
sl@0
   108
	TInt surfaceAmountLeftOrError;
sl@0
   109
	//if found
sl@0
   110
	if (err == KErrNone)
sl@0
   111
		{
sl@0
   112
		surfaceAmountLeftOrError = iSessionSurfaces[tempPos].RemoveSurfaceId(aSurfaceId, iScene);
sl@0
   113
		if (surfaceAmountLeftOrError == 0)	//there are no more surfaces registered for the client
sl@0
   114
			{
sl@0
   115
			iSessionSurfaces.Remove(tempPos);
sl@0
   116
			}
sl@0
   117
		if (surfaceAmountLeftOrError < 0)	//if an error was returned
sl@0
   118
			{
sl@0
   119
			err = surfaceAmountLeftOrError;
sl@0
   120
			}
sl@0
   121
		}
sl@0
   122
	return err;
sl@0
   123
	}
sl@0
   124
sl@0
   125
/**
sl@0
   126
Function that will unregister all surfaces for a specific client.
sl@0
   127
@param aClient The client for which to unregister all clients.
sl@0
   128
@return KErrNone on success or a system-wide error code.
sl@0
   129
@see CWsTop::ClearSurfaceMap
sl@0
   130
@see CWsClient::~CWsClient()
sl@0
   131
*/
sl@0
   132
TInt CRegisteredSurfaceMap::RemoveAll(CWsClient& aClient)
sl@0
   133
	{
sl@0
   134
	TInt err;
sl@0
   135
	TInt tempPos;
sl@0
   136
	TSessionSurfaces tempDeviceSurface(aClient);
sl@0
   137
	
sl@0
   138
	//find client
sl@0
   139
	err = iSessionSurfaces.FindInOrder(tempDeviceSurface, tempPos, TLinearOrder<TSessionSurfaces>(CompareDeviceSurfaces));
sl@0
   140
	
sl@0
   141
	//if found
sl@0
   142
	if (err == KErrNone)
sl@0
   143
		{
sl@0
   144
		err = iSessionSurfaces[tempPos].RemoveAll(iScene);
sl@0
   145
		}
sl@0
   146
	if (err == KErrNone || err == KErrInUse)
sl@0
   147
		{
sl@0
   148
		iSessionSurfaces.Remove(tempPos);
sl@0
   149
		}
sl@0
   150
	return err;
sl@0
   151
	}
sl@0
   152
sl@0
   153
TSessionSurfaces::TSessionSurfaces(const CWsClient& aSession):iSession(aSession)
sl@0
   154
	{}
sl@0
   155
sl@0
   156
TInt TSessionSurfaces::CompareIds(const TSurfaceId& aLeft, const TSurfaceId& aRight)
sl@0
   157
	{
sl@0
   158
	//Compare each internal id of the surface
sl@0
   159
	TUint32 ll;
sl@0
   160
	TUint32 rr;
sl@0
   161
	TInt32 tempResult;
sl@0
   162
	ll = aLeft.iInternal[0];
sl@0
   163
	rr = aRight.iInternal[0];
sl@0
   164
	tempResult = ll-rr;
sl@0
   165
	if (tempResult == 0)
sl@0
   166
		{
sl@0
   167
		ll = aLeft.iInternal[1];
sl@0
   168
		rr = aRight.iInternal[1];
sl@0
   169
		tempResult = ll-rr;
sl@0
   170
		if (tempResult == 0)
sl@0
   171
			{
sl@0
   172
			ll = aLeft.iInternal[2];
sl@0
   173
			rr = aRight.iInternal[2];
sl@0
   174
			tempResult = ll-rr;
sl@0
   175
			if (tempResult == 0)
sl@0
   176
				{
sl@0
   177
				ll = aLeft.iInternal[3];
sl@0
   178
				rr = aRight.iInternal[3];
sl@0
   179
				tempResult = ll-rr;
sl@0
   180
				}
sl@0
   181
			}
sl@0
   182
		}
sl@0
   183
	if (tempResult != 0)	//if they are different ids
sl@0
   184
		{
sl@0
   185
		if (ll < rr)
sl@0
   186
			{
sl@0
   187
			return -1;
sl@0
   188
			}
sl@0
   189
		else
sl@0
   190
			{
sl@0
   191
			return 1;
sl@0
   192
			}
sl@0
   193
		}
sl@0
   194
	return 0;
sl@0
   195
	}
sl@0
   196
sl@0
   197
TInt TSessionSurfaces::AddSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
sl@0
   198
	{
sl@0
   199
	TInt err;
sl@0
   200
	TInt tempPos;
sl@0
   201
	//find surface id
sl@0
   202
	err = iSurfaces.FindInOrder(aSurfaceId, tempPos, TLinearOrder<TSurfaceId>(CompareIds));
sl@0
   203
	
sl@0
   204
	if (err == KErrNotFound)
sl@0
   205
		{
sl@0
   206
		err = iSurfaces.Insert(aSurfaceId, tempPos);
sl@0
   207
		if (err == KErrNone)	//successfully added surface, can now register
sl@0
   208
			{
sl@0
   209
			err = aScene.RegisterSurface(aSurfaceId);
sl@0
   210
			}
sl@0
   211
		}
sl@0
   212
	else
sl@0
   213
		{
sl@0
   214
		if (err == KErrNone)
sl@0
   215
			{
sl@0
   216
			//shouldnt be registered more than once
sl@0
   217
			err = KErrInUse;
sl@0
   218
			}
sl@0
   219
		}
sl@0
   220
	return err;
sl@0
   221
	}
sl@0
   222
sl@0
   223
TInt TSessionSurfaces::RemoveSurfaceId(const TSurfaceId& aSurfaceId, MWsScene& aScene)
sl@0
   224
	{
sl@0
   225
	TInt surfaceAmountLeftOrError;
sl@0
   226
	TInt tempPos;
sl@0
   227
sl@0
   228
	//find surface id
sl@0
   229
	surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos, 
sl@0
   230
			TLinearOrder<TSurfaceId>(CompareIds));
sl@0
   231
	if (surfaceAmountLeftOrError!=KErrNone)
sl@0
   232
		surfaceAmountLeftOrError = iSurfaces.FindInOrder(aSurfaceId, tempPos, 
sl@0
   233
				TLinearOrder<TSurfaceId>(CompareIds));
sl@0
   234
	//if found
sl@0
   235
	if (surfaceAmountLeftOrError == KErrNone)
sl@0
   236
		{
sl@0
   237
		
sl@0
   238
		surfaceAmountLeftOrError = aScene.UnregisterSurface(aSurfaceId);
sl@0
   239
		if ((surfaceAmountLeftOrError == KErrNone) || (surfaceAmountLeftOrError == KErrInUse))
sl@0
   240
			{
sl@0
   241
			iSurfaces.Remove(tempPos);
sl@0
   242
			surfaceAmountLeftOrError = iSurfaces.Count();
sl@0
   243
			}
sl@0
   244
		else
sl@0
   245
			{
sl@0
   246
			WS_ASSERT_DEBUG(EFalse,EWsPanicSurfaceMapError);	//Unexpected error
sl@0
   247
			}
sl@0
   248
		}
sl@0
   249
	return surfaceAmountLeftOrError;
sl@0
   250
	}
sl@0
   251
sl@0
   252
TInt TSessionSurfaces::RemoveAll(MWsScene& aScene)
sl@0
   253
	{
sl@0
   254
    TInt err = KErrNone;
sl@0
   255
    TInt returnValue = KErrNone;
sl@0
   256
    TInt tempSize = iSurfaces.Count();
sl@0
   257
    for (TInt ii = 0; ii < tempSize; ii++)
sl@0
   258
        {
sl@0
   259
        err = aScene.UnregisterSurface(iSurfaces[ii]);
sl@0
   260
        WS_ASSERT_ALWAYS((err == KErrNone) || (err == KErrInUse), EWsPanicSurfaceMapError);
sl@0
   261
        if (err != KErrNone && returnValue == KErrNone)
sl@0
   262
            {   //return first error code
sl@0
   263
            returnValue = err;
sl@0
   264
            }
sl@0
   265
        }
sl@0
   266
    iSurfaces.Close();
sl@0
   267
    return returnValue;
sl@0
   268
	}