os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvMain.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 __SQLSRVMAIN_H__
sl@0
    17
#define __SQLSRVMAIN_H__
sl@0
    18
sl@0
    19
#include <f32file.h>
sl@0
    20
#include "SqlAssert.h" 			//TSqlPanic
sl@0
    21
#include "SqlSrvFileData.h"		//TSqlSrvFileData
sl@0
    22
#include "SqlSrvAuthorizer.h"	//MSqlPolicyInspector
sl@0
    23
#include "SqlSrvSecurityMap.h"	//
sl@0
    24
#include "SqlSrvDriveSpace.h"	//RSqlDriveSpaceCol
sl@0
    25
#include "SqlSrvBurInterface.h"	//MSqlSrvBurInterface
sl@0
    26
#include "SqlBur.h"
sl@0
    27
#include "SqlBufFlat.h"			//RSqlBufFlat
sl@0
    28
sl@0
    29
//Forward declarations
sl@0
    30
class CSqlCompactor;
sl@0
    31
class CSqlServer;
sl@0
    32
sl@0
    33
CSqlServer& SqlServer(void);
sl@0
    34
sl@0
    35
/**
sl@0
    36
CSqlServer class derives from CServer2 and offers methods for:
sl@0
    37
  - creating new server side sessions;
sl@0
    38
  - accessing the last RMessage2 object;
sl@0
    39
  - accessing the TSqlSrvFileData instance (one per server);
sl@0
    40
  - accessing the security settings map (one per server);
sl@0
    41
  
sl@0
    42
CSqlServer class also implements MSqlPolicyInspector and MSqlSrvBurInterface interfaces;
sl@0
    43
sl@0
    44
The class owns also the folowing set of data:
sl@0
    45
- iFileData    - see TSqlSrvFileData;
sl@0
    46
- iSecurityMap - see RSqlSecurityMap and RSqlMap;
sl@0
    47
sl@0
    48
@see CServer2
sl@0
    49
@see MSqlPolicyInspector
sl@0
    50
@see TSqlSrvFileData
sl@0
    51
@see RSqlMap
sl@0
    52
@see RSqlSecurityMap
sl@0
    53
@see CSqlServer::NewLC()
sl@0
    54
@see CSqlServer::NewSessionL()
sl@0
    55
@see CSqlServer::FileData()
sl@0
    56
@see CSqlServer::SecurityMap()
sl@0
    57
@see CSqlServer::Check()
sl@0
    58
sl@0
    59
@internalComponent
sl@0
    60
*/
sl@0
    61
NONSHARABLE_CLASS(CSqlServer) : public CServer2, public MSqlPolicyInspector, public MSqlSrvBurInterface
sl@0
    62
	{
sl@0
    63
public:		
sl@0
    64
	static CSqlServer* NewLC();	
sl@0
    65
	~CSqlServer();
sl@0
    66
	inline TSqlSrvFileData& FileData();
sl@0
    67
	inline RSqlSecurityMap& SecurityMap();
sl@0
    68
	inline RSqlDriveSpaceCol& DriveSpaceCol();
sl@0
    69
	inline const TDesC& CollationDllName() const;
sl@0
    70
	inline MSqlPolicyInspector& SecurityInspector();
sl@0
    71
	//Server buffers
sl@0
    72
	RSqlBufFlat& GetFlatBufL(TInt aMinLen);
sl@0
    73
	TDes8& GetBuf8L(TInt aMinLen);
sl@0
    74
	TDes16& GetBuf16L(TInt aMinLen);
sl@0
    75
	inline TDes& FileNameBuf();
sl@0
    76
	void MinimizeBuffers(); 
sl@0
    77
	//Compactor
sl@0
    78
	inline CSqlCompactor& Compactor();
sl@0
    79
	//Overriding CServer2 abstract methods
sl@0
    80
	virtual CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const;
sl@0
    81
	//Overriding MSqlPolicyInspector abstract methods
sl@0
    82
	virtual TBool Check(const TSecurityPolicy& aPolicy) const;
sl@0
    83
	//Overriding MSqlSrvBurInterface abstract methods
sl@0
    84
	virtual RFs& Fs();
sl@0
    85
	virtual void GetBackUpListL(TSecureId aUid, TDriveNumber aDrive, RArray<HBufC*>& aFileNameList);
sl@0
    86
sl@0
    87
private:
sl@0
    88
	CSqlServer();
sl@0
    89
	void ConstructL();
sl@0
    90
	void GetCollationDllNameL();
sl@0
    91
	void CacheDbConfigFileNamesL(RFs& aFs, const TDesC& aServerPrivatePath);
sl@0
    92
	TInt ReAllocBuf(TInt aNewBufSize);
sl@0
    93
	void DeleteTempFilesL(TInt aDriveNumber, const TDesC& aServerPrivatePath) const;
sl@0
    94
sl@0
    95
private:
sl@0
    96
	TSqlSrvFileData		iFileData;		//Used as a temporary storage for file data (file name, drive, path, secure uid)
sl@0
    97
	RSqlSecurityMap		iSecurityMap;	//Collection of database security policies
sl@0
    98
	RSqlDriveSpaceCol	iDriveSpaceCol;	//Collection of "drive space" objects (reserved drive space management)
sl@0
    99
	CSqlBurEventMonitor* iBurEventMonitor;//Monitors B&R events
sl@0
   100
	TFileName			iCollationDllName;//Default collation - dll name - uniquely identifies the collation method
sl@0
   101
	RSqlBufFlat  		iFlatBuf;		//general purpose flat buffer. do not keep a state in it between calls!
sl@0
   102
	TUint8*				iBuf;			//general purpose buffer. do not keep a state in it between calls!
sl@0
   103
	TPtr8				iBufPtr8;		//8-bit pointer to iBuf
sl@0
   104
	TPtr16				iBufPtr16;		//16-bit pointer to iBuf
sl@0
   105
	TFileName 			iFileNameBuf;	//General purpose buffer, can be used for storing file names
sl@0
   106
	CDbConfigFiles*	    iDbConfigFiles; //Holds the database config file names, if any exist (will be NULL if no files exist)
sl@0
   107
	CSqlCompactor*		iCompactor;		//The background compacting object (container for the db entries to be compacted)
sl@0
   108
	};
sl@0
   109
sl@0
   110
/**
sl@0
   111
@return A reference to the file data object (one per server).
sl@0
   112
*/
sl@0
   113
inline TSqlSrvFileData& CSqlServer::FileData()
sl@0
   114
	{
sl@0
   115
	return iFileData;
sl@0
   116
	}
sl@0
   117
	
sl@0
   118
/**
sl@0
   119
@return A reference to the security settings map object which maintains a map of 
sl@0
   120
        {Database name, security settings container} entries.
sl@0
   121
*/
sl@0
   122
inline RSqlSecurityMap& CSqlServer::SecurityMap()
sl@0
   123
	{
sl@0
   124
	return iSecurityMap;
sl@0
   125
	}
sl@0
   126
sl@0
   127
/**
sl@0
   128
@return A reference to the "drive space" collection
sl@0
   129
*/
sl@0
   130
inline RSqlDriveSpaceCol& CSqlServer::DriveSpaceCol()
sl@0
   131
	{
sl@0
   132
	return iDriveSpaceCol;
sl@0
   133
	}
sl@0
   134
sl@0
   135
/**
sl@0
   136
@return A reference to the default collation - the dll name.
sl@0
   137
*/
sl@0
   138
inline const TDesC& CSqlServer::CollationDllName() const
sl@0
   139
	{
sl@0
   140
	return iCollationDllName;	
sl@0
   141
	}
sl@0
   142
sl@0
   143
/**
sl@0
   144
Returns a reference to the security policy inspector interface.
sl@0
   145
@return A reference to the security policy inspector interface.
sl@0
   146
*/
sl@0
   147
inline MSqlPolicyInspector& CSqlServer::SecurityInspector()
sl@0
   148
	{
sl@0
   149
	return static_cast <MSqlPolicyInspector&> (*this);
sl@0
   150
	}
sl@0
   151
sl@0
   152
/**
sl@0
   153
@return A reference to the file name buffer.
sl@0
   154
*/
sl@0
   155
inline TDes& CSqlServer::FileNameBuf()
sl@0
   156
	{
sl@0
   157
	return iFileNameBuf;		
sl@0
   158
	}
sl@0
   159
sl@0
   160
/**
sl@0
   161
@return A reference to the compactor.
sl@0
   162
@panic SqlDb 7 In _DEBUG mode if the compactor is NULL.
sl@0
   163
*/
sl@0
   164
inline CSqlCompactor& CSqlServer::Compactor()
sl@0
   165
	{
sl@0
   166
	__ASSERT_DEBUG(iCompactor != NULL, __SQLPANIC(ESqlPanicInternalError));			
sl@0
   167
	return *iCompactor;
sl@0
   168
	}
sl@0
   169
sl@0
   170
#endif//__SQLSRVMAIN_H__