os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvSecurityMap.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) 2005-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
//
sl@0
    15
sl@0
    16
#ifndef __SQLSRVSECURITYMAP_H__
sl@0
    17
#define __SQLSRVSECURITYMAP_H__
sl@0
    18
sl@0
    19
#include "SqlMap.h"		//RSqlMap
sl@0
    20
sl@0
    21
//Forward declarations
sl@0
    22
class CSqlSecurityPolicy;
sl@0
    23
sl@0
    24
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    25
// {Secure database name : Security policy} map declarations
sl@0
    26
// "Secure database name" is UTF8 encoded, zero-terminated.
sl@0
    27
//
sl@0
    28
// "Secure database name" == <DRIVE:><NAME>[.EXT]
sl@0
    29
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    30
sl@0
    31
/**
sl@0
    32
{const TUint8*, const CSqlSecurityPolicy*} pair destructor.
sl@0
    33
Used as a template argument (DESTRUCTOR) in RSqlMap class.
sl@0
    34
sl@0
    35
@see TSqlPair
sl@0
    36
@see TSqlMapIterator
sl@0
    37
@see RSqlMap
sl@0
    38
sl@0
    39
@internalComponent
sl@0
    40
*/
sl@0
    41
NONSHARABLE_STRUCT(TSqlSecurityDestructor)
sl@0
    42
	{
sl@0
    43
	void Destroy(const TUint8*& aKey, const CSqlSecurityPolicy*& aData);
sl@0
    44
	};
sl@0
    45
sl@0
    46
/**
sl@0
    47
{const TUint8*, const CSqlSecurityPolicy*} pair reference counter.
sl@0
    48
Used as a template argument (REFCNTR) in RSqlMap class.
sl@0
    49
sl@0
    50
@see TSqlPair
sl@0
    51
@see TSqlMapIterator
sl@0
    52
@see RSqlMap
sl@0
    53
sl@0
    54
@internalComponent
sl@0
    55
*/
sl@0
    56
NONSHARABLE_STRUCT(TSqlSecurityRefCounter)
sl@0
    57
	{
sl@0
    58
	inline TSqlSecurityRefCounter() :
sl@0
    59
		iRefCount(0)
sl@0
    60
		{
sl@0
    61
		(void)Increment();
sl@0
    62
		}
sl@0
    63
	inline TInt Increment()
sl@0
    64
		{
sl@0
    65
		return ++iRefCount;	
sl@0
    66
		}
sl@0
    67
	inline TInt Decrement()
sl@0
    68
		{
sl@0
    69
		return --iRefCount;	
sl@0
    70
		}
sl@0
    71
	
sl@0
    72
	TInt iRefCount;
sl@0
    73
	};
sl@0
    74
sl@0
    75
//Typedefs for {const TUint8*, const CSqlSecurityPolicy*} map.
sl@0
    76
typedef struct TSqlPair<const TUint8*, const CSqlSecurityPolicy*, TSqlSecurityRefCounter>  TSqlSecurityPair;
sl@0
    77
typedef class TLinearOrder<TSqlSecurityPair> TSqlSecurityLinearOrder;
sl@0
    78
typedef class RSqlMap<const TUint8*, const CSqlSecurityPolicy*, TSqlSecurityRefCounter, TSqlSecurityDestructor>  RSqlSecurityMap;
sl@0
    79
sl@0
    80
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    81
// {Attached database name : Secure database file name} map declarations
sl@0
    82
// "Attached database name" is UTF8 encoded, zero-terminated.
sl@0
    83
// "Secure database file name" is UTF8 encoded, zero-terminated. Format: <Drive:><FileName[.Ext]>
sl@0
    84
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    85
sl@0
    86
/**
sl@0
    87
{const TUint8*, const TUint8*} pair destructor.
sl@0
    88
Used as a template argument (DESTRUCTOR) in RSqlMap class.
sl@0
    89
sl@0
    90
@see TSqlPair
sl@0
    91
@see TSqlMapIterator
sl@0
    92
@see RSqlMap
sl@0
    93
sl@0
    94
@internalComponent
sl@0
    95
*/
sl@0
    96
NONSHARABLE_STRUCT(TSqlAttachDbDestructor)
sl@0
    97
	{
sl@0
    98
	void Destroy(const TUint8*& aKey, const TUint8*& aData);
sl@0
    99
	};
sl@0
   100
sl@0
   101
/**
sl@0
   102
{const TUint8*, const TUint8*} pair reference counter.
sl@0
   103
Used as a template argument (REFCNTR) in RSqlMap class.
sl@0
   104
sl@0
   105
@see TSqlPair
sl@0
   106
@see TSqlMapIterator
sl@0
   107
@see RSqlMap
sl@0
   108
sl@0
   109
@internalComponent
sl@0
   110
*/
sl@0
   111
NONSHARABLE_STRUCT(TSqlAttachDbRefCounter)
sl@0
   112
	{
sl@0
   113
	inline TSqlAttachDbRefCounter()
sl@0
   114
		{
sl@0
   115
		(void)Increment();
sl@0
   116
		}
sl@0
   117
	inline TInt Increment()
sl@0
   118
		{
sl@0
   119
		return 1;	
sl@0
   120
		}
sl@0
   121
	inline TInt Decrement()
sl@0
   122
		{
sl@0
   123
		return 0;	
sl@0
   124
		}
sl@0
   125
	};
sl@0
   126
sl@0
   127
//Typedefs for {const TUint8*, const TUint8*} map.
sl@0
   128
typedef struct TSqlPair<const TUint8*, const TUint8*, TSqlAttachDbRefCounter>  TSqlAttachDbPair;
sl@0
   129
typedef class TLinearOrder<TSqlAttachDbPair> TSqlAttachDbLinearOrder;
sl@0
   130
typedef class RSqlMap<const TUint8*, const TUint8*, TSqlAttachDbRefCounter, TSqlAttachDbDestructor>  RSqlAttachDbMap;
sl@0
   131
sl@0
   132
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   133
// {Compact database name ("main" or attached db name) : Full database file name} map declarations
sl@0
   134
// "Compact database name" is UTF16 encoded.
sl@0
   135
// "Full database file name" is UTF16 encoded.
sl@0
   136
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   137
sl@0
   138
/**
sl@0
   139
A reference counter for the TSqlCompactDbPair pair and RSqlCompactDbMap.
sl@0
   140
sl@0
   141
@see TSqlPair
sl@0
   142
@see TSqlMapIterator
sl@0
   143
@see RSqlMap
sl@0
   144
sl@0
   145
@internalComponent
sl@0
   146
*/
sl@0
   147
NONSHARABLE_STRUCT(TSqlCompactDbRefCounter)
sl@0
   148
	{
sl@0
   149
	inline TSqlCompactDbRefCounter()
sl@0
   150
		{
sl@0
   151
		(void)Increment();
sl@0
   152
		}
sl@0
   153
	inline TInt Increment()
sl@0
   154
		{
sl@0
   155
		return 1;	
sl@0
   156
		}
sl@0
   157
	inline TInt Decrement()
sl@0
   158
		{
sl@0
   159
		return 0;	
sl@0
   160
		}
sl@0
   161
	};
sl@0
   162
sl@0
   163
/**
sl@0
   164
Destrucor for the TSqlCompactDbPair pair.
sl@0
   165
sl@0
   166
@see TSqlPair
sl@0
   167
@see TSqlMapIterator
sl@0
   168
@see RSqlMap
sl@0
   169
sl@0
   170
@internalComponent
sl@0
   171
*/
sl@0
   172
NONSHARABLE_STRUCT(TSqlCompactDbDestructor)
sl@0
   173
	{
sl@0
   174
	inline void Destroy(const HBufC*& aKey, const HBufC*& aData)
sl@0
   175
		{
sl@0
   176
		delete const_cast <HBufC*&> (aData);
sl@0
   177
		delete const_cast <HBufC*&> (aKey);
sl@0
   178
		}
sl@0
   179
	};
sl@0
   180
sl@0
   181
//Typedefs for the {const HBufC*, const HBufC*} map.
sl@0
   182
typedef struct TSqlPair<const HBufC*, const HBufC*, TSqlCompactDbRefCounter>  TSqlCompactDbPair;
sl@0
   183
typedef class TLinearOrder<TSqlCompactDbPair> TSqlCompactDbLinearOrder;
sl@0
   184
typedef class RSqlMap<const HBufC*, const HBufC*, TSqlCompactDbRefCounter, TSqlCompactDbDestructor>  RSqlCompactDbMap;
sl@0
   185
typedef class TSqlMapIterator<const HBufC*, const HBufC*, TSqlCompactDbRefCounter, TSqlCompactDbDestructor> TSqlCompactDbMapIterator;
sl@0
   186
typedef TSqlMapIterator<const TUint8*, const TUint8*, TSqlAttachDbRefCounter, TSqlAttachDbDestructor>  TSqlAttachDbMapIterator;
sl@0
   187
sl@0
   188
/////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   189
sl@0
   190
#endif//__SQLSRVSECURITYMAP_H__