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;
49 void CWsObjectIx::ConstructL()
51 // Insert a dummy object into the first slot to avoid
52 // having a null handle
53 TWsObject nullObject(NULL,0);
54 iObjectArray.AppendL(nullObject);
57 /** Adds the object to the list.
59 If there is an empty slot (i.e. a slot that was previously used but has been freed) the
60 object is put in that slot else a new slot is created at the end of the array.
62 @param anObj The object to add to the list.
63 @return The handle to be used by the client to identify this object.
67 TInt CWsObjectIx::AddL(CWsObject* anObj)
69 TWsObject* ptr=&iObjectArray[0];
70 const TWsObject* base=ptr;
71 TInt index=iObjectArray.Count();
72 const TWsObject* end=ptr+index;
73 WS_ASSERT_DEBUG(base->iObject==NULL, EWsPanicObjectIndexError);
75 // Search for an empty slot
78 if (ptr->iObject==NULL)
86 // create a new handle for the object
87 TUint handleCount = ((iNewObjectCount<<TWsObject::ECountPosition) + TWsObject::ECountInc) & TWsObject::ECountMask;
91 // No available empty slot, so append this object to the queue
92 if (index==TWsObject::ECountInc)
94 User::LeaveNoMemory(); //Things will go wrong later if we ever have more 64K objects
96 TWsObject newObject(anObj,handleCount);
97 iObjectArray.AppendL(newObject);
98 ptr=&iObjectArray[index];
101 // assign the object a unique server-side handle (combination of handle count & object type)
102 ptr->iHandle = handleCount | anObj->Type();
104 // increment the object counter
105 if (++iNewObjectCount==TWsObject::ECountWrapAround)
106 iNewObjectCount = KNewObjectInitialCount;
108 // return to the client their unique handle for the object (combination of handle count & slot number)
109 return (handleCount + index);
112 void CWsObjectIx::Tidy()
114 TInt count=iObjectArray.Count()-1;
115 while(count>0) // Don't delete object [0]
117 if (iObjectArray[count].iObject!=NULL)
119 iObjectArray.Delete(count--);
123 void CWsObjectIx::Remove(CWsObject* anObj)
125 const TWsObject* ptr=FirstObject();
126 const TWsObject* end=ptr+iObjectArray.Count();
127 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
130 if (ptr->iObject==anObj)
139 void CWsObjectIx::Remove(const TWsObject* aObject)
141 WS_ASSERT_DEBUG(aObject->iObject!=NULL, EWsPanicObjectIndexError);
142 WS_ASSERT_DEBUG((aObject->iHandle&TWsObject::ETypeMask)==(TUint)aObject->iObject->Type(), EWsPanicObjectIndexError);
143 const_cast<TWsObject*>(aObject)->iObject=NULL;
146 CWsObject* CWsObjectIx::HandleToObject(TInt aHandle) const
148 TInt slot=aHandle&TWsObject::ESlotMask;
149 if (slot<0 || slot>=iObjectArray.Count())
151 const TWsObject* object=&iObjectArray[slot];
152 if ((object->iHandle&TWsObject::ECountMask)==((TUint)aHandle&TWsObject::ECountMask))
154 return object->iObject;
159 const TWsObject* CWsObjectIx::FirstObject() const
161 return(&iObjectArray[0]);
164 TInt CWsObjectIx::At(const CWsObject* anObj)
166 const TWsObject* base=FirstObject();
167 const TWsObject* ptr=base;
168 const TWsObject* end=base+iObjectArray.Count();
169 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
172 if (ptr->iObject==anObj && (ptr->iHandle&TWsObject::ETypeMask)==(TUint)anObj->Type())
175 return(KErrNotFound);
178 TInt CWsObjectIx::Count() const
180 const TWsObject* ptr=FirstObject();
181 const TWsObject* end=ptr+iObjectArray.Count();
182 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
186 if (ptr->iObject && ptr->iObject->Type()!=WS_HANDLE_CLIENT)
192 TInt CWsObjectIx::Length() const
194 return(iObjectArray.Count());