os/persistentdata/persistentstorage/sql/SRC/Common/SqlMap.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2004-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
// RSqlMap template class declaration.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SQLMAP_H__
sl@0
    19
#define __SQLMAP_H__
sl@0
    20
sl@0
    21
#include "SqlAssert.h"
sl@0
    22
sl@0
    23
//Forward declaration
sl@0
    24
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR> class RSqlMap;
sl@0
    25
sl@0
    26
/**
sl@0
    27
(KEY, DATA, REFCNTR) template pair class used by RSqlMap template class.
sl@0
    28
sl@0
    29
The class has 3 template arguments:
sl@0
    30
 - KEY        - the key part of the pair object;
sl@0
    31
 - DATA       - the data part of the pair object;
sl@0
    32
 - REFCNTR    - the reference counting part of the pair object;
sl@0
    33
                REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
sl@0
    34
sl@0
    35
@see TSqlMapIterator
sl@0
    36
@see RSqlMap
sl@0
    37
sl@0
    38
@internalComponent
sl@0
    39
*/
sl@0
    40
template <class KEY, class DATA, class REFCNTR> 
sl@0
    41
NONSHARABLE_STRUCT(TSqlPair)
sl@0
    42
	{
sl@0
    43
	TSqlPair(const KEY& aKey, const DATA& aData);
sl@0
    44
	TSqlPair(const KEY& aKey);
sl@0
    45
	TSqlPair();
sl@0
    46
	
sl@0
    47
	KEY		iKey;
sl@0
    48
	DATA	iData;
sl@0
    49
	REFCNTR	iRefCounter;
sl@0
    50
	
sl@0
    51
	};
sl@0
    52
sl@0
    53
/**
sl@0
    54
TSqlMapIterator class. It describes an object which can be used as a 
sl@0
    55
forward, read-only iterator for RSqlMap containers.
sl@0
    56
sl@0
    57
The class has 4 template arguments:
sl@0
    58
 - KEY        - the key part of the pair object;
sl@0
    59
 - DATA       - the data part of the pair object;
sl@0
    60
 - REFCNTR    - the reference counting part of the pair object;
sl@0
    61
                REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
sl@0
    62
 - DESTRUCTOR - the KEY and DATA objects destroying part of the pair object;
sl@0
    63
				DESTRUCTOR class has to provide "void Destroy(KEY& aKey, DATA& aData)" method.
sl@0
    64
sl@0
    65
@see TSqlPair
sl@0
    66
@see RSqlMap
sl@0
    67
sl@0
    68
@internalComponent
sl@0
    69
*/
sl@0
    70
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR> 
sl@0
    71
NONSHARABLE_CLASS(TSqlMapIterator)
sl@0
    72
	{
sl@0
    73
public:
sl@0
    74
	TSqlMapIterator(const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>& aMap);
sl@0
    75
	TBool Next(TSqlPair<KEY, DATA, REFCNTR>& aPair) const;
sl@0
    76
	
sl@0
    77
private:
sl@0
    78
	const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>&	iMap;
sl@0
    79
	mutable TInt									iIndex;
sl@0
    80
	
sl@0
    81
	};
sl@0
    82
sl@0
    83
/**
sl@0
    84
RSqlMap template class describes an object that controls an ordered sequence of reference counted entries.
sl@0
    85
Each entry has a key of type KEY and an associated with it data of type DATA.
sl@0
    86
sl@0
    87
The class has 4 template arguments:
sl@0
    88
 - KEY        - the key part of the pair object;
sl@0
    89
 - DATA       - the data part of the pair object;
sl@0
    90
 - REFCNTR    - the reference counting part of the pair object;
sl@0
    91
                REFCNTR class has to provide "TInt Increment()" and "TInt Decrement()" methods.
sl@0
    92
 - DESTRUCTOR - the KEY and DATA objects destroying part of the pair object;
sl@0
    93
				DESTRUCTOR class has to provide "void Destroy(KEY& aKey, DATA& aData)" method.
sl@0
    94
sl@0
    95
The algorithm for determining the order of two entries is provided by a TLinearOrder
sl@0
    96
object, supplied by the client of RSqlMap during RSqlMap instance construction
sl@0
    97
(RSqlMap constructor, aOrder argument).
sl@0
    98
sl@0
    99
@see TSqlPair
sl@0
   100
@see TSqlMapIterator
sl@0
   101
sl@0
   102
@internalComponent
sl@0
   103
*/
sl@0
   104
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR> 
sl@0
   105
NONSHARABLE_CLASS(RSqlMap)
sl@0
   106
	{
sl@0
   107
	friend class TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>;
sl@0
   108
	
sl@0
   109
public:
sl@0
   110
	RSqlMap(const TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> >& aOrder, const DESTRUCTOR& aDestructor);
sl@0
   111
	void Close();
sl@0
   112
	TInt Insert(const KEY& aKey, const DATA& aData);
sl@0
   113
	void Remove(const KEY& aKey);
sl@0
   114
	TSqlPair<KEY, DATA, REFCNTR>* Entry(const KEY& aKey);
sl@0
   115
sl@0
   116
private:
sl@0
   117
	TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> >	iOrder;
sl@0
   118
	RArray< TSqlPair<KEY, DATA, REFCNTR> >			iSet;
sl@0
   119
	DESTRUCTOR 										iDestructor;
sl@0
   120
sl@0
   121
	};
sl@0
   122
sl@0
   123
#include "SqlMap.inl"
sl@0
   124
sl@0
   125
#endif//__SQLMAP_H__