os/graphics/windowing/windowserver/nonnga/SERVER/WSOBJIX.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-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
// Object index
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "WSOBJIX.H"
sl@0
    19
sl@0
    20
#include "OBJECT.H"
sl@0
    21
#include "server.h"
sl@0
    22
#include "panics.h"
sl@0
    23
sl@0
    24
const TInt KNewObjectInitialCount = 1;
sl@0
    25
sl@0
    26
CWsObjectIx::CWsObjectIx() : iObjectArray(8), iNewObjectCount(KNewObjectInitialCount)
sl@0
    27
	{
sl@0
    28
	}
sl@0
    29
sl@0
    30
CWsObjectIx::~CWsObjectIx()
sl@0
    31
	{
sl@0
    32
	TInt count=iObjectArray.Count();
sl@0
    33
	if (count==0)
sl@0
    34
		return;
sl@0
    35
	TWsObject* ptr=&iObjectArray[0];
sl@0
    36
	const TWsObject* end=ptr+count;
sl@0
    37
	for (;ptr<end;ptr++)
sl@0
    38
		{
sl@0
    39
		CWsObject* obj=ptr->iObject;
sl@0
    40
		if (obj)
sl@0
    41
			{
sl@0
    42
			ptr->iObject=NULL;
sl@0
    43
			obj->CloseObject();
sl@0
    44
			}
sl@0
    45
		}
sl@0
    46
	iObjectArray.Reset();
sl@0
    47
	}
sl@0
    48
sl@0
    49
void CWsObjectIx::ConstructL()
sl@0
    50
	{
sl@0
    51
	// Insert a dummy object into the first slot to avoid
sl@0
    52
	// having a null handle
sl@0
    53
	TWsObject nullObject(NULL,0);
sl@0
    54
	iObjectArray.AppendL(nullObject);
sl@0
    55
	}
sl@0
    56
sl@0
    57
/** Adds the object to the list.
sl@0
    58
sl@0
    59
If there is an empty slot (i.e. a slot that was previously used but has been freed) the
sl@0
    60
object is put in that slot else a new slot is created at the end of the array.
sl@0
    61
sl@0
    62
@param anObj The object to add to the list.
sl@0
    63
@return The handle to be used by the client to identify this object.
sl@0
    64
@internalComponent
sl@0
    65
@released
sl@0
    66
*/
sl@0
    67
TInt CWsObjectIx::AddL(CWsObject* anObj)
sl@0
    68
	{
sl@0
    69
	TWsObject* ptr=&iObjectArray[0];
sl@0
    70
	const TWsObject* base=ptr;
sl@0
    71
	TInt index=iObjectArray.Count();
sl@0
    72
	const TWsObject* end=ptr+index;
sl@0
    73
	WS_ASSERT_DEBUG(base->iObject==NULL, EWsPanicObjectIndexError);
sl@0
    74
	
sl@0
    75
	// Search for an empty slot
sl@0
    76
	while(++ptr<end)
sl@0
    77
		{
sl@0
    78
		if (ptr->iObject==NULL)
sl@0
    79
			{
sl@0
    80
			ptr->iObject=anObj;
sl@0
    81
			index=ptr-base;
sl@0
    82
			break;
sl@0
    83
			}
sl@0
    84
		}
sl@0
    85
	
sl@0
    86
	// create a new handle for the object
sl@0
    87
	TUint handleCount = ((iNewObjectCount<<TWsObject::ECountPosition) + TWsObject::ECountInc) & TWsObject::ECountMask;
sl@0
    88
	
sl@0
    89
	if (ptr==end)
sl@0
    90
		{
sl@0
    91
		// No available empty slot, so append this object to the queue
sl@0
    92
		if (index==TWsObject::ECountInc)
sl@0
    93
			{
sl@0
    94
			User::LeaveNoMemory();	//Things will go wrong later if we ever have more 64K objects
sl@0
    95
			}	
sl@0
    96
		TWsObject newObject(anObj,handleCount);
sl@0
    97
		iObjectArray.AppendL(newObject);
sl@0
    98
		ptr=&iObjectArray[index];
sl@0
    99
		}
sl@0
   100
 
sl@0
   101
	// assign the object a unique server-side handle (combination of handle count & object type)
sl@0
   102
	ptr->iHandle = handleCount | anObj->Type();
sl@0
   103
sl@0
   104
	// increment the object counter
sl@0
   105
	if (++iNewObjectCount==TWsObject::ECountWrapAround)
sl@0
   106
		iNewObjectCount = KNewObjectInitialCount;
sl@0
   107
 	
sl@0
   108
	// return to the client their unique handle for the object (combination of handle count & slot number)
sl@0
   109
	return (handleCount + index);
sl@0
   110
	}	 
sl@0
   111
sl@0
   112
void CWsObjectIx::Tidy()
sl@0
   113
	{
sl@0
   114
	TInt count=iObjectArray.Count()-1;
sl@0
   115
	while(count>0)	// Don't delete object [0]
sl@0
   116
		{
sl@0
   117
		if (iObjectArray[count].iObject!=NULL)
sl@0
   118
			break;
sl@0
   119
		iObjectArray.Delete(count--);
sl@0
   120
		}
sl@0
   121
	}
sl@0
   122
sl@0
   123
void CWsObjectIx::Remove(CWsObject* anObj)
sl@0
   124
	{
sl@0
   125
	const TWsObject* ptr=FirstObject();
sl@0
   126
	const TWsObject* end=ptr+iObjectArray.Count();
sl@0
   127
	WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
sl@0
   128
	while(++ptr<end)
sl@0
   129
		{
sl@0
   130
		if (ptr->iObject==anObj)
sl@0
   131
			{
sl@0
   132
			Remove(ptr);
sl@0
   133
			Tidy();
sl@0
   134
			return;
sl@0
   135
			}
sl@0
   136
		}
sl@0
   137
	}
sl@0
   138
sl@0
   139
void CWsObjectIx::Remove(const TWsObject* aObject)
sl@0
   140
	{
sl@0
   141
	WS_ASSERT_DEBUG(aObject->iObject!=NULL, EWsPanicObjectIndexError);
sl@0
   142
	WS_ASSERT_DEBUG((aObject->iHandle&TWsObject::ETypeMask)==(TUint)aObject->iObject->Type(), EWsPanicObjectIndexError);
sl@0
   143
	const_cast<TWsObject*>(aObject)->iObject=NULL;
sl@0
   144
	}
sl@0
   145
sl@0
   146
CWsObject* CWsObjectIx::HandleToObject(TInt aHandle) const
sl@0
   147
	{
sl@0
   148
	TInt slot=aHandle&TWsObject::ESlotMask;
sl@0
   149
	if (slot<0 || slot>=iObjectArray.Count())
sl@0
   150
		return(NULL);
sl@0
   151
	const TWsObject* object=&iObjectArray[slot];
sl@0
   152
	if ((object->iHandle&TWsObject::ECountMask)==((TUint)aHandle&TWsObject::ECountMask))
sl@0
   153
		{
sl@0
   154
		return object->iObject;
sl@0
   155
		}
sl@0
   156
	return(NULL);
sl@0
   157
	}
sl@0
   158
sl@0
   159
const TWsObject* CWsObjectIx::FirstObject() const
sl@0
   160
	{
sl@0
   161
	return(&iObjectArray[0]);
sl@0
   162
	}
sl@0
   163
sl@0
   164
TInt CWsObjectIx::At(const CWsObject* anObj)
sl@0
   165
	{
sl@0
   166
	const TWsObject* base=FirstObject();
sl@0
   167
	const TWsObject* ptr=base;
sl@0
   168
	const TWsObject* end=base+iObjectArray.Count();
sl@0
   169
	WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
sl@0
   170
	while(++ptr<end)
sl@0
   171
		{
sl@0
   172
		if (ptr->iObject==anObj && (ptr->iHandle&TWsObject::ETypeMask)==(TUint)anObj->Type())
sl@0
   173
			return(ptr-base);
sl@0
   174
		}
sl@0
   175
	return(KErrNotFound);
sl@0
   176
	}
sl@0
   177
sl@0
   178
TInt CWsObjectIx::Count() const
sl@0
   179
	{
sl@0
   180
	const TWsObject* ptr=FirstObject();
sl@0
   181
	const TWsObject* end=ptr+iObjectArray.Count();
sl@0
   182
	WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
sl@0
   183
	TInt count=0;
sl@0
   184
	while(++ptr<end)
sl@0
   185
		{
sl@0
   186
		if (ptr->iObject && ptr->iObject->Type()!=WS_HANDLE_CLIENT)
sl@0
   187
			count++;
sl@0
   188
		}
sl@0
   189
	return(count);
sl@0
   190
	}
sl@0
   191
sl@0
   192
TInt CWsObjectIx::Length() const
sl@0
   193
	{
sl@0
   194
	return(iObjectArray.Count());
sl@0
   195
	}