1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/WSOBJIX.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,194 @@
1.4 +// Copyright (c) 1996-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 +// Object index
1.18 +//
1.19 +//
1.20 +
1.21 +#include "WSOBJIX.H"
1.22 +
1.23 +#include "OBJECT.H"
1.24 +#include "server.h"
1.25 +#include "panics.h"
1.26 +
1.27 +const TInt KNewObjectInitialCount = 1;
1.28 +
1.29 +CWsObjectIx::CWsObjectIx() : iObjectArray(8), iNewObjectCount(KNewObjectInitialCount)
1.30 + {
1.31 + }
1.32 +
1.33 +CWsObjectIx::~CWsObjectIx()
1.34 + {
1.35 + TInt count=iObjectArray.Count();
1.36 + if (count==0)
1.37 + return;
1.38 + TWsObject* ptr=&iObjectArray[0];
1.39 + const TWsObject* end=ptr+count;
1.40 + for (;ptr<end;ptr++)
1.41 + {
1.42 + CWsObject* obj=ptr->iObject;
1.43 + if (obj)
1.44 + {
1.45 + obj->CloseObject();
1.46 + }
1.47 + }
1.48 + iObjectArray.Reset();
1.49 + }
1.50 +
1.51 +void CWsObjectIx::ConstructL()
1.52 + {
1.53 + // Insert a dummy object into the first slot to avoid
1.54 + // having a null handle
1.55 + TWsObject nullObject(NULL,0);
1.56 + iObjectArray.AppendL(nullObject);
1.57 + }
1.58 +
1.59 +/** Adds the object to the list.
1.60 +
1.61 +If there is an empty slot (i.e. a slot that was previously used but has been freed) the
1.62 +object is put in that slot else a new slot is created at the end of the array.
1.63 +
1.64 +@param anObj The object to add to the list.
1.65 +@return The handle to be used by the client to identify this object.
1.66 +@internalComponent
1.67 +@released
1.68 +*/
1.69 +TInt CWsObjectIx::AddL(CWsObject* anObj)
1.70 + {
1.71 + TWsObject* ptr=&iObjectArray[0];
1.72 + const TWsObject* base=ptr;
1.73 + TInt index=iObjectArray.Count();
1.74 + const TWsObject* end=ptr+index;
1.75 + WS_ASSERT_DEBUG(base->iObject==NULL, EWsPanicObjectIndexError);
1.76 +
1.77 + // Search for an empty slot
1.78 + while(++ptr<end)
1.79 + {
1.80 + if (ptr->iObject==NULL)
1.81 + {
1.82 + ptr->iObject=anObj;
1.83 + index=ptr-base;
1.84 + break;
1.85 + }
1.86 + }
1.87 +
1.88 + // create a new handle for the object
1.89 + TUint handleCount = ((iNewObjectCount<<TWsObject::ECountPosition) + TWsObject::ECountInc) & TWsObject::ECountMask;
1.90 +
1.91 + if (ptr==end)
1.92 + {
1.93 + // No available empty slot, so append this object to the queue
1.94 + if (index==TWsObject::ECountInc)
1.95 + {
1.96 + User::LeaveNoMemory(); //Things will go wrong later if we ever have more 64K objects
1.97 + }
1.98 + TWsObject newObject(anObj,handleCount);
1.99 + iObjectArray.AppendL(newObject);
1.100 + ptr=&iObjectArray[index];
1.101 + }
1.102 +
1.103 + // assign the object a unique server-side handle (combination of handle count & object type)
1.104 + ptr->iHandle = handleCount | anObj->Type();
1.105 +
1.106 + // increment the object counter
1.107 + if (++iNewObjectCount==TWsObject::ECountWrapAround)
1.108 + iNewObjectCount = KNewObjectInitialCount;
1.109 +
1.110 + // return to the client their unique handle for the object (combination of handle count & slot number)
1.111 + return (handleCount + index);
1.112 + }
1.113 +
1.114 +void CWsObjectIx::Tidy()
1.115 + {
1.116 + TInt count=iObjectArray.Count()-1;
1.117 + while(count>0) // Don't delete object [0]
1.118 + {
1.119 + if (iObjectArray[count].iObject!=NULL)
1.120 + break;
1.121 + iObjectArray.Delete(count--);
1.122 + }
1.123 + }
1.124 +
1.125 +void CWsObjectIx::Remove(CWsObject* anObj)
1.126 + {
1.127 + const TWsObject* ptr=FirstObject();
1.128 + const TWsObject* end=ptr+iObjectArray.Count();
1.129 + WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
1.130 + while(++ptr<end)
1.131 + {
1.132 + if (ptr->iObject==anObj)
1.133 + {
1.134 + Remove(ptr);
1.135 + Tidy();
1.136 + return;
1.137 + }
1.138 + }
1.139 + }
1.140 +
1.141 +void CWsObjectIx::Remove(const TWsObject* aObject)
1.142 + {
1.143 + WS_ASSERT_DEBUG(aObject->iObject!=NULL, EWsPanicObjectIndexError);
1.144 + WS_ASSERT_DEBUG((aObject->iHandle&TWsObject::ETypeMask)==(TUint)aObject->iObject->Type(), EWsPanicObjectIndexError);
1.145 + const_cast<TWsObject*>(aObject)->iObject=NULL;
1.146 + }
1.147 +
1.148 +CWsObject* CWsObjectIx::HandleToObject(TInt aHandle) const
1.149 + {
1.150 + TInt slot=aHandle&TWsObject::ESlotMask;
1.151 + if (slot<0 || slot>=iObjectArray.Count())
1.152 + return(NULL);
1.153 + const TWsObject* object=&iObjectArray[slot];
1.154 + if ((object->iHandle&TWsObject::ECountMask)==((TUint)aHandle&TWsObject::ECountMask))
1.155 + {
1.156 + return object->iObject;
1.157 + }
1.158 + return(NULL);
1.159 + }
1.160 +
1.161 +const TWsObject* CWsObjectIx::FirstObject() const
1.162 + {
1.163 + return(&iObjectArray[0]);
1.164 + }
1.165 +
1.166 +TInt CWsObjectIx::At(const CWsObject* anObj)
1.167 + {
1.168 + const TWsObject* base=FirstObject();
1.169 + const TWsObject* ptr=base;
1.170 + const TWsObject* end=base+iObjectArray.Count();
1.171 + WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
1.172 + while(++ptr<end)
1.173 + {
1.174 + if (ptr->iObject==anObj && (ptr->iHandle&TWsObject::ETypeMask)==(TUint)anObj->Type())
1.175 + return(ptr-base);
1.176 + }
1.177 + return(KErrNotFound);
1.178 + }
1.179 +
1.180 +TInt CWsObjectIx::Count() const
1.181 + {
1.182 + const TWsObject* ptr=FirstObject();
1.183 + const TWsObject* end=ptr+iObjectArray.Count();
1.184 + WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
1.185 + TInt count=0;
1.186 + while(++ptr<end)
1.187 + {
1.188 + if (ptr->iObject && ptr->iObject->Type()!=WS_HANDLE_CLIENT)
1.189 + count++;
1.190 + }
1.191 + return(count);
1.192 + }
1.193 +
1.194 +TInt CWsObjectIx::Length() const
1.195 + {
1.196 + return(iObjectArray.Count());
1.197 + }