Update contrib.
1 // Copyright (c) 2008-2010 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.
14 // SqlSvrObjContainer.inl
15 // Should not be a template class!
16 // Constructs an empty container.
21 RDbObjContainer<T>::RDbObjContainer() :
29 Destroys the container and its content.
32 void RDbObjContainer<T>::Close()
36 for(/*RDbObjContainer<T>::*/TEntry* entry=iEntries;entry<(iEntries+iSize);++entry)
47 Ensures that the next attempt for adding a new object to the container won't fail because there
49 (In other words - ensures that the container has at least one empty slot)
51 @leave KErrNoMemory, an out of memory condition has occured;
53 @panic SqlDb 7 In _DEBUG mode. Internal logic error.
56 void RDbObjContainer<T>::AllocL()
58 __ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
63 __SQLLEAVE(KErrNoMemory);
65 TInt size = iSize + RDbObjContainer<T>::KGranularity;
66 iEntries = (TEntry*)User::ReAllocL(iEntries, size * sizeof(TEntry));
68 for(TInt i=iFree;i<size;)
70 /*RDbObjContainer<T>::*/TEntry& entry = iEntries[i];
78 The method adds "aObj" pointer to the container.
80 @param aObj A pointer to the object which will be stored in the container.
82 @return Handle, uniquely identifying the stored object
84 @panic SqlDb 4 In _DEBUG mode. aObj parameter is NULL.
85 @panic SqlDb 7 In _DEBUG mode. Internal logic error.
88 TInt RDbObjContainer<T>::Add(T* aObj)
90 __ASSERT_DEBUG(aObj != NULL, __SQLPANIC(ESqlPanicBadArgument));
91 __ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
95 /*RDbObjContainer<T>::*/TEntry& entry = iEntries[idx];
96 __ASSERT_DEBUG(!entry.iObj, __SQLPANIC(ESqlPanicInternalError));
98 __ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
100 return MakeHandle(idx);
106 @param aIndex Valid container index.
108 @return Handle, uniquely identifying the object stored at aIndex index.
111 TInt RDbObjContainer<T>::MakeHandle(TInt aIndex) const
117 @param aHandle Unique object handle
119 @return Container index of the object, identified by aHandle parameter.
122 TInt RDbObjContainer<T>::MakeIndex(TInt aHandle) const
128 Removes an object from the container.
129 The removed object will be destroyed.
131 @param aHandle Unique object handle
133 @panic SqlDb 7 In _DEBUG mode. Internal logic error or there is no such object in the container.
136 void RDbObjContainer<T>::Remove(TInt aHandle)
138 __ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
139 if(aHandle > 0) //It is a handle, sent by the client. It isn't a server's problem if the handle is <= 0.
141 TInt idx = MakeIndex(aHandle);
144 /*RDbObjContainer<T>::*/TEntry& entry = iEntries[idx];
151 __ASSERT_DEBUG(iFree <= iSize, __SQLPANIC(ESqlPanicInternalError));
155 Looks up for an object in the container.
157 @param aHandle Unique object handle
159 @return A pointer to the found object or NULL.
162 T* RDbObjContainer<T>::Find(TInt aHandle) const
164 /*RDbObjContainer<T>::*/TEntry* entry = NULL;
165 if(aHandle > 0) //It is a handle, sent by the client. It isn't a server's problem if the handle is <= 0.
167 TInt idx = MakeIndex(aHandle);
170 entry = &iEntries[idx];
173 return entry != NULL ? entry->iObj : NULL;
177 Counts the alive objects in the container
179 @return The object count
182 TInt RDbObjContainer<T>::Count() const
185 const /*RDbObjContainer::*/TEntry* const base = iEntries;
188 for(const /*RDbObjContainer::*/TEntry* e=base+iSize;--e>=base;)