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