sl@0
|
1 |
// Copyright (c) 2008-2010 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 |
// SqlSvrObjContainer.inl
|
sl@0
|
15 |
// Should not be a template class!
|
sl@0
|
16 |
// Constructs an empty container.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
template <class T>
|
sl@0
|
21 |
RDbObjContainer<T>::RDbObjContainer() :
|
sl@0
|
22 |
iEntries(NULL),
|
sl@0
|
23 |
iSize(0),
|
sl@0
|
24 |
iFree(0)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
}
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
Destroys the container and its content.
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
template <class T>
|
sl@0
|
32 |
void RDbObjContainer<T>::Close()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
if(iEntries)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
for(/*RDbObjContainer<T>::*/TEntry* entry=iEntries;entry<(iEntries+iSize);++entry)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
delete entry->iObj;
|
sl@0
|
39 |
}
|
sl@0
|
40 |
User::Free(iEntries);
|
sl@0
|
41 |
iEntries = NULL;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
iFree = iSize = 0;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Ensures that the next attempt for adding a new object to the container won't fail because there
|
sl@0
|
48 |
is no memory.
|
sl@0
|
49 |
(In other words - ensures that the container has at least one empty slot)
|
sl@0
|
50 |
|
sl@0
|
51 |
@leave KErrNoMemory, an out of memory condition has occured;
|
sl@0
|
52 |
|
sl@0
|
53 |
@panic SqlDb 7 In _DEBUG mode. Internal logic error.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
template <class T>
|
sl@0
|
56 |
void RDbObjContainer<T>::AllocL()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
__ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
59 |
if(iFree == iSize)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
if(iSize >= KMaxSize)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
__SQLLEAVE(KErrNoMemory);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
TInt size = iSize + RDbObjContainer<T>::KGranularity;
|
sl@0
|
66 |
iEntries = (TEntry*)User::ReAllocL(iEntries, size * sizeof(TEntry));
|
sl@0
|
67 |
iSize = size;
|
sl@0
|
68 |
for(TInt i=iFree;i<size;)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
/*RDbObjContainer<T>::*/TEntry& entry = iEntries[i];
|
sl@0
|
71 |
entry.iObj = NULL;
|
sl@0
|
72 |
entry.iNext = ++i;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
}
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
The method adds "aObj" pointer to the container.
|
sl@0
|
79 |
|
sl@0
|
80 |
@param aObj A pointer to the object which will be stored in the container.
|
sl@0
|
81 |
|
sl@0
|
82 |
@return Handle, uniquely identifying the stored object
|
sl@0
|
83 |
|
sl@0
|
84 |
@panic SqlDb 4 In _DEBUG mode. aObj parameter is NULL.
|
sl@0
|
85 |
@panic SqlDb 7 In _DEBUG mode. Internal logic error.
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
template <class T>
|
sl@0
|
88 |
TInt RDbObjContainer<T>::Add(T* aObj)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
__ASSERT_DEBUG(aObj != NULL, __SQLPANIC(ESqlPanicBadArgument));
|
sl@0
|
91 |
__ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
92 |
TInt idx = iFree;
|
sl@0
|
93 |
if(idx < iSize)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
/*RDbObjContainer<T>::*/TEntry& entry = iEntries[idx];
|
sl@0
|
96 |
__ASSERT_DEBUG(!entry.iObj, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
97 |
iFree = entry.iNext;
|
sl@0
|
98 |
__ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
99 |
entry.iObj = aObj;
|
sl@0
|
100 |
return MakeHandle(idx);
|
sl@0
|
101 |
}
|
sl@0
|
102 |
return 0;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
/**
|
sl@0
|
106 |
@param aIndex Valid container index.
|
sl@0
|
107 |
|
sl@0
|
108 |
@return Handle, uniquely identifying the object stored at aIndex index.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
template <class T>
|
sl@0
|
111 |
TInt RDbObjContainer<T>::MakeHandle(TInt aIndex) const
|
sl@0
|
112 |
{
|
sl@0
|
113 |
return aIndex + 1;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
@param aHandle Unique object handle
|
sl@0
|
118 |
|
sl@0
|
119 |
@return Container index of the object, identified by aHandle parameter.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
template <class T>
|
sl@0
|
122 |
TInt RDbObjContainer<T>::MakeIndex(TInt aHandle) const
|
sl@0
|
123 |
{
|
sl@0
|
124 |
return aHandle - 1;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
Removes an object from the container.
|
sl@0
|
129 |
The removed object will be destroyed.
|
sl@0
|
130 |
|
sl@0
|
131 |
@param aHandle Unique object handle
|
sl@0
|
132 |
|
sl@0
|
133 |
@panic SqlDb 7 In _DEBUG mode. Internal logic error or there is no such object in the container.
|
sl@0
|
134 |
*/
|
sl@0
|
135 |
template <class T>
|
sl@0
|
136 |
void RDbObjContainer<T>::Remove(TInt aHandle)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
__ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
139 |
if(aHandle > 0) //It is a handle, sent by the client. It isn't a server's problem if the handle is <= 0.
|
sl@0
|
140 |
{
|
sl@0
|
141 |
TInt idx = MakeIndex(aHandle);
|
sl@0
|
142 |
if(idx < iSize)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
/*RDbObjContainer<T>::*/TEntry& entry = iEntries[idx];
|
sl@0
|
145 |
delete entry.iObj;
|
sl@0
|
146 |
entry.iObj = NULL;
|
sl@0
|
147 |
entry.iNext = iFree;
|
sl@0
|
148 |
iFree = idx;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
}
|
sl@0
|
151 |
__ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
Looks up for an object in the container.
|
sl@0
|
156 |
|
sl@0
|
157 |
@param aHandle Unique object handle
|
sl@0
|
158 |
|
sl@0
|
159 |
@return A pointer to the found object or NULL.
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
template <class T>
|
sl@0
|
162 |
T* RDbObjContainer<T>::Find(TInt aHandle) const
|
sl@0
|
163 |
{
|
sl@0
|
164 |
/*RDbObjContainer<T>::*/TEntry* entry = NULL;
|
sl@0
|
165 |
if(aHandle > 0) //It is a handle, sent by the client. It isn't a server's problem if the handle is <= 0.
|
sl@0
|
166 |
{
|
sl@0
|
167 |
TInt idx = MakeIndex(aHandle);
|
sl@0
|
168 |
if(idx < iSize)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
entry = &iEntries[idx];
|
sl@0
|
171 |
}
|
sl@0
|
172 |
}
|
sl@0
|
173 |
return entry != NULL ? entry->iObj : NULL;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
Counts the alive objects in the container
|
sl@0
|
178 |
|
sl@0
|
179 |
@return The object count
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
template <class T>
|
sl@0
|
182 |
TInt RDbObjContainer<T>::Count() const
|
sl@0
|
183 |
{
|
sl@0
|
184 |
TInt count = 0;;
|
sl@0
|
185 |
const /*RDbObjContainer::*/TEntry* const base = iEntries;
|
sl@0
|
186 |
if(base)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
for(const /*RDbObjContainer::*/TEntry* e=base+iSize;--e>=base;)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
if(e->iObj)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
++count;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
}
|
sl@0
|
195 |
}
|
sl@0
|
196 |
return count;
|
sl@0
|
197 |
}
|