First public contribution.
1 // Copyright (c) 2006-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.
16 #ifndef __SQLSRVOBJCONTAINER_H__
17 #define __SQLSRVOBJCONTAINER_H__
20 #include "SqlAssert.h"
23 Indexed storage for server sdide objects.
25 RDbObjContainer container is used for storing IPC stream handles (HIpcStream) and
26 statement handles (CSqlSrvStatement).
28 Behaviour when the container is destroyed:
29 - all objects inside the container are destroyed too;
31 Behaviour when the an object is removed from the container:
32 - the container will destroy the object;
34 Behaviour when the an object is added to the container:
35 - the container stores the object <by_ref>, not <by_val>;
37 Behaviour when a look up is performed in the container for an object:
38 - a pointer to the object is returned or NULL if there is no object;
42 @see RDbObjContainer::Close()
43 @see RDbObjContainer::AllocL()
44 @see RDbObjContainer::Add()
45 @see RDbObjContainer::Remove()
46 @see RDbObjContainer::Find()
47 @see RDbObjContainer::Count()
51 template <class T> class RDbObjContainer
58 void Remove(TInt aHandle);
59 T* Find(TInt aHandle) const;
63 TInt MakeHandle(TInt aIndex) const;
64 TInt MakeIndex(TInt aHandle) const;
72 enum {KGranularity = 16};
73 //KMaxSize value depends on how many bits are used for handles - see
74 //KStmtHandleMask and KStreamHandleMask in SqlUtil.h file.
75 enum {KMaxSize = 0x7FF};
81 #include "SqlSrvObjContainer.inl"
83 #endif//__SQLSRVOBJCONTAINER_H__