Update contrib.
1 // Copyright (c) 1996-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.
24 const TInt KNewObjectInitialCount = 1;
26 CWsObjectIx::CWsObjectIx() : iObjectArray(8), iNewObjectCount(KNewObjectInitialCount)
30 CWsObjectIx::~CWsObjectIx()
32 TInt count=iObjectArray.Count();
35 TWsObject* ptr=&iObjectArray[0];
36 const TWsObject* end=ptr+count;
39 CWsObject* obj=ptr->iObject;
48 void CWsObjectIx::ConstructL()
50 // Insert a dummy object into the first slot to avoid
51 // having a null handle
52 TWsObject nullObject(NULL,0);
53 iObjectArray.AppendL(nullObject);
56 /** Adds the object to the list.
58 If there is an empty slot (i.e. a slot that was previously used but has been freed) the
59 object is put in that slot else a new slot is created at the end of the array.
61 @param anObj The object to add to the list.
62 @return The handle to be used by the client to identify this object.
66 TInt CWsObjectIx::AddL(CWsObject* anObj)
68 TWsObject* ptr=&iObjectArray[0];
69 const TWsObject* base=ptr;
70 TInt index=iObjectArray.Count();
71 const TWsObject* end=ptr+index;
72 WS_ASSERT_DEBUG(base->iObject==NULL, EWsPanicObjectIndexError);
74 // Search for an empty slot
77 if (ptr->iObject==NULL)
85 // create a new handle for the object
86 TUint handleCount = ((iNewObjectCount<<TWsObject::ECountPosition) + TWsObject::ECountInc) & TWsObject::ECountMask;
90 // No available empty slot, so append this object to the queue
91 if (index==TWsObject::ECountInc)
93 User::LeaveNoMemory(); //Things will go wrong later if we ever have more 64K objects
95 TWsObject newObject(anObj,handleCount);
96 iObjectArray.AppendL(newObject);
97 ptr=&iObjectArray[index];
100 // assign the object a unique server-side handle (combination of handle count & object type)
101 ptr->iHandle = handleCount | anObj->Type();
103 // increment the object counter
104 if (++iNewObjectCount==TWsObject::ECountWrapAround)
105 iNewObjectCount = KNewObjectInitialCount;
107 // return to the client their unique handle for the object (combination of handle count & slot number)
108 return (handleCount + index);
111 void CWsObjectIx::Tidy()
113 TInt count=iObjectArray.Count()-1;
114 while(count>0) // Don't delete object [0]
116 if (iObjectArray[count].iObject!=NULL)
118 iObjectArray.Delete(count--);
122 void CWsObjectIx::Remove(CWsObject* anObj)
124 const TWsObject* ptr=FirstObject();
125 const TWsObject* end=ptr+iObjectArray.Count();
126 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
129 if (ptr->iObject==anObj)
138 void CWsObjectIx::Remove(const TWsObject* aObject)
140 WS_ASSERT_DEBUG(aObject->iObject!=NULL, EWsPanicObjectIndexError);
141 WS_ASSERT_DEBUG((aObject->iHandle&TWsObject::ETypeMask)==(TUint)aObject->iObject->Type(), EWsPanicObjectIndexError);
142 const_cast<TWsObject*>(aObject)->iObject=NULL;
145 CWsObject* CWsObjectIx::HandleToObject(TInt aHandle) const
147 TInt slot=aHandle&TWsObject::ESlotMask;
148 if (slot<0 || slot>=iObjectArray.Count())
150 const TWsObject* object=&iObjectArray[slot];
151 if ((object->iHandle&TWsObject::ECountMask)==((TUint)aHandle&TWsObject::ECountMask))
153 return object->iObject;
158 const TWsObject* CWsObjectIx::FirstObject() const
160 return(&iObjectArray[0]);
163 TInt CWsObjectIx::At(const CWsObject* anObj)
165 const TWsObject* base=FirstObject();
166 const TWsObject* ptr=base;
167 const TWsObject* end=base+iObjectArray.Count();
168 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
171 if (ptr->iObject==anObj && (ptr->iHandle&TWsObject::ETypeMask)==(TUint)anObj->Type())
174 return(KErrNotFound);
177 TInt CWsObjectIx::Count() const
179 const TWsObject* ptr=FirstObject();
180 const TWsObject* end=ptr+iObjectArray.Count();
181 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
185 if (ptr->iObject && ptr->iObject->Type()!=WS_HANDLE_CLIENT)
191 TInt CWsObjectIx::Length() const
193 return(iObjectArray.Count());