sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __SQLSRVSECURITYMAP_H__ sl@0: #define __SQLSRVSECURITYMAP_H__ sl@0: sl@0: #include "SqlMap.h" //RSqlMap sl@0: sl@0: //Forward declarations sl@0: class CSqlSecurityPolicy; sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: // {Secure database name : Security policy} map declarations sl@0: // "Secure database name" is UTF8 encoded, zero-terminated. sl@0: // sl@0: // "Secure database name" == [.EXT] sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: {const TUint8*, const CSqlSecurityPolicy*} pair destructor. sl@0: Used as a template argument (DESTRUCTOR) in RSqlMap class. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlSecurityDestructor) sl@0: { sl@0: void Destroy(const TUint8*& aKey, const CSqlSecurityPolicy*& aData); sl@0: }; sl@0: sl@0: /** sl@0: {const TUint8*, const CSqlSecurityPolicy*} pair reference counter. sl@0: Used as a template argument (REFCNTR) in RSqlMap class. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlSecurityRefCounter) sl@0: { sl@0: inline TSqlSecurityRefCounter() : sl@0: iRefCount(0) sl@0: { sl@0: (void)Increment(); sl@0: } sl@0: inline TInt Increment() sl@0: { sl@0: return ++iRefCount; sl@0: } sl@0: inline TInt Decrement() sl@0: { sl@0: return --iRefCount; sl@0: } sl@0: sl@0: TInt iRefCount; sl@0: }; sl@0: sl@0: //Typedefs for {const TUint8*, const CSqlSecurityPolicy*} map. sl@0: typedef struct TSqlPair TSqlSecurityPair; sl@0: typedef class TLinearOrder TSqlSecurityLinearOrder; sl@0: typedef class RSqlMap RSqlSecurityMap; sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: // {Attached database name : Secure database file name} map declarations sl@0: // "Attached database name" is UTF8 encoded, zero-terminated. sl@0: // "Secure database file name" is UTF8 encoded, zero-terminated. Format: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: {const TUint8*, const TUint8*} pair destructor. sl@0: Used as a template argument (DESTRUCTOR) in RSqlMap class. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlAttachDbDestructor) sl@0: { sl@0: void Destroy(const TUint8*& aKey, const TUint8*& aData); sl@0: }; sl@0: sl@0: /** sl@0: {const TUint8*, const TUint8*} pair reference counter. sl@0: Used as a template argument (REFCNTR) in RSqlMap class. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlAttachDbRefCounter) sl@0: { sl@0: inline TSqlAttachDbRefCounter() sl@0: { sl@0: (void)Increment(); sl@0: } sl@0: inline TInt Increment() sl@0: { sl@0: return 1; sl@0: } sl@0: inline TInt Decrement() sl@0: { sl@0: return 0; sl@0: } sl@0: }; sl@0: sl@0: //Typedefs for {const TUint8*, const TUint8*} map. sl@0: typedef struct TSqlPair TSqlAttachDbPair; sl@0: typedef class TLinearOrder TSqlAttachDbLinearOrder; sl@0: typedef class RSqlMap RSqlAttachDbMap; sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: // {Compact database name ("main" or attached db name) : Full database file name} map declarations sl@0: // "Compact database name" is UTF16 encoded. sl@0: // "Full database file name" is UTF16 encoded. sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: A reference counter for the TSqlCompactDbPair pair and RSqlCompactDbMap. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlCompactDbRefCounter) sl@0: { sl@0: inline TSqlCompactDbRefCounter() sl@0: { sl@0: (void)Increment(); sl@0: } sl@0: inline TInt Increment() sl@0: { sl@0: return 1; sl@0: } sl@0: inline TInt Decrement() sl@0: { sl@0: return 0; sl@0: } sl@0: }; sl@0: sl@0: /** sl@0: Destrucor for the TSqlCompactDbPair pair. sl@0: sl@0: @see TSqlPair sl@0: @see TSqlMapIterator sl@0: @see RSqlMap sl@0: sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_STRUCT(TSqlCompactDbDestructor) sl@0: { sl@0: inline void Destroy(const HBufC*& aKey, const HBufC*& aData) sl@0: { sl@0: delete const_cast (aData); sl@0: delete const_cast (aKey); sl@0: } sl@0: }; sl@0: sl@0: //Typedefs for the {const HBufC*, const HBufC*} map. sl@0: typedef struct TSqlPair TSqlCompactDbPair; sl@0: typedef class TLinearOrder TSqlCompactDbLinearOrder; sl@0: typedef class RSqlMap RSqlCompactDbMap; sl@0: typedef class TSqlMapIterator TSqlCompactDbMapIterator; sl@0: typedef TSqlMapIterator TSqlAttachDbMapIterator; sl@0: sl@0: ///////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: #endif//__SQLSRVSECURITYMAP_H__