sl@0
|
1 |
// Copyright (c) 2005-2009 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 __SQLSRVDATABASE_H__
|
sl@0
|
17 |
#define __SQLSRVDATABASE_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <sqldb.h> //RSqlDatabase::TIsolationLevel
|
sl@0
|
21 |
#include "SqlSrvSecurityMap.h"
|
sl@0
|
22 |
#include "sqlite3.h"
|
sl@0
|
23 |
#include "SqliteSymbian.h" //sqlite3SymbianLastOsError()
|
sl@0
|
24 |
#include "SqlSrvStatementUtil.h"//Global sql statement related functions
|
sl@0
|
25 |
#include "SqlSrvStrings.h"
|
sl@0
|
26 |
#include "SqlSrvCollation.h" //User defined collations
|
sl@0
|
27 |
#include "SqlSrvDbSysSettings.h"//TSqlDbSysSettings
|
sl@0
|
28 |
#include "SqlSecurityImpl.h" //CSqlSecurityPolicy
|
sl@0
|
29 |
#include "SqlUtil.h" //TSqlLikeWildcard
|
sl@0
|
30 |
|
sl@0
|
31 |
//Forward declarations
|
sl@0
|
32 |
class TSqlSrvFileData;
|
sl@0
|
33 |
struct TSqlSrvConfigParams;
|
sl@0
|
34 |
|
sl@0
|
35 |
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
36 |
///////////////////////////// CSqlSrvDatabase class /////////////////////////////////////////////
|
sl@0
|
37 |
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
SQL database connection manager. (SQL database handle)
|
sl@0
|
41 |
|
sl@0
|
42 |
CSqlSrvDatabase is a server side class which processes the client side requests for:
|
sl@0
|
43 |
- creating a SQL database (CSqlSrvDatabase::Create());
|
sl@0
|
44 |
- opening an existing SQL database (CSqlSrvDatabase::Open());
|
sl@0
|
45 |
- retrieving the last SQL error message (CSqlSrvDatabase::LastErrorMessage());
|
sl@0
|
46 |
- executing 8-bit and 16-bit SQL statements (CSqlSrvDatabase::ExecL());
|
sl@0
|
47 |
- setting the transaction isolation level (CSqlSrvDatabase::SetIsolationLevelL());
|
sl@0
|
48 |
- retrieving the database security policy (CSqlSrvDatabase::SecurityPolicy());
|
sl@0
|
49 |
- attaching an existing SQL database to current connection (CSqlSrvDatabase::AttachDbL());
|
sl@0
|
50 |
- detaching previously attached SQL database from current connection (CSqlSrvDatabase::DetachDbL());
|
sl@0
|
51 |
|
sl@0
|
52 |
CSqlSrvDatabase class also manages all platform security related activities for secure databases:
|
sl@0
|
53 |
- loading/storing database security policies when creating/opening a database connection;
|
sl@0
|
54 |
- asserting client rights to perform a specific database operation;
|
sl@0
|
55 |
- maintaining security related internal data structures in tact;
|
sl@0
|
56 |
|
sl@0
|
57 |
@see CSqlSrvDatabase::Create()
|
sl@0
|
58 |
@see CSqlSrvDatabase::Open()
|
sl@0
|
59 |
@see CSqlSrvDatabase::LastErrorMessage()
|
sl@0
|
60 |
@see CSqlSrvDatabase::ExecL()
|
sl@0
|
61 |
@see CSqlSrvDatabase::SetIsolationLevelL()
|
sl@0
|
62 |
@see CSqlSrvDatabase::SecurityPolicy()
|
sl@0
|
63 |
@see CSqlSrvDatabase::AttachDbL()
|
sl@0
|
64 |
@see CSqlSrvDatabase::DetachDbL()
|
sl@0
|
65 |
@see CSqlSrvDatabase::LastChangesCount()
|
sl@0
|
66 |
|
sl@0
|
67 |
@internalComponent
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
NONSHARABLE_CLASS(CSqlSrvDatabase) : public CBase
|
sl@0
|
70 |
{
|
sl@0
|
71 |
public:
|
sl@0
|
72 |
//Object creation methods
|
sl@0
|
73 |
static CSqlSrvDatabase* CreateSecureL(const TSqlSrvFileData& aFileData, CSqlSecurityPolicy* aSecurityPolicy);
|
sl@0
|
74 |
static CSqlSrvDatabase* CreateL(const TSqlSrvFileData& aFileData);
|
sl@0
|
75 |
static CSqlSrvDatabase* OpenL(const TSqlSrvFileData& aFileData);
|
sl@0
|
76 |
virtual ~CSqlSrvDatabase();
|
sl@0
|
77 |
//Interface methods
|
sl@0
|
78 |
inline TPtrC LastErrorMessage() const;
|
sl@0
|
79 |
inline void ExecL(TDes16& aSqlStmt);
|
sl@0
|
80 |
inline void ExecL(const TDesC8& aSqlStmt);
|
sl@0
|
81 |
inline void SetIsolationLevelL(RSqlDatabase::TIsolationLevel aLevel);
|
sl@0
|
82 |
inline sqlite3* RawDbHandle() const;
|
sl@0
|
83 |
inline const CSqlSecurityPolicy* SecurityPolicy() const;
|
sl@0
|
84 |
void AttachDbL(const TSqlSrvFileData& aFileData, const TDesC& aDbName);
|
sl@0
|
85 |
void DetachDbL(const TDesC& aDbName);
|
sl@0
|
86 |
inline TInt LastChangesCount();
|
sl@0
|
87 |
inline TInt64 LastInsertedRowId();
|
sl@0
|
88 |
inline TBool InTransaction() const;
|
sl@0
|
89 |
TInt64 SizeL(const TDesC& aDbName = KNullDesC);
|
sl@0
|
90 |
TInt64 FreeSpaceL(const TDesC& aDbName = KNullDesC);
|
sl@0
|
91 |
void QueryConfigL(TDes8& aDest);
|
sl@0
|
92 |
TInt CompactL(TInt aSize, const TDesC& aDbName = KNullDesC);
|
sl@0
|
93 |
static TInt AuthorizeCallback(void* aDb, TInt aDbOpType,
|
sl@0
|
94 |
const char* aDbObjName1, const char* aDbObjName2,
|
sl@0
|
95 |
const char* aDbName, const char* aTrgOrViewName);
|
sl@0
|
96 |
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
CSqlSrvDatabase();
|
sl@0
|
99 |
void CreateNewDbFileL(const TSqlSrvFileData& aFileData);
|
sl@0
|
100 |
void OpenExistingDbFileL(const TSqlSrvFileData& aFileData);
|
sl@0
|
101 |
void InstallAuthorizerL();
|
sl@0
|
102 |
inline void InstallCollationsL();
|
sl@0
|
103 |
void InstallUDFsL();
|
sl@0
|
104 |
const TUint8* SecurityMapKeyL(const TDesC& aDbFileName);
|
sl@0
|
105 |
void UpdateSecurityMapL(TBool aAttachedDb, const TSqlSrvFileData& aFileData,
|
sl@0
|
106 |
const TUint8*& aMapKey, const CSqlSecurityPolicy*& aSecurityPolicy);
|
sl@0
|
107 |
void RemoveFromMapsL(const TDesC& aDbName);
|
sl@0
|
108 |
void InsertInAttachDbMapL(const TDesC& aDbFileName, const TDesC& aDbName);
|
sl@0
|
109 |
void InitAttachedDbL(const TSqlSrvFileData& aFileData, const TDesC& aDbName);
|
sl@0
|
110 |
TInt FinalizeAttachedDb(const TDesC& aDbName);
|
sl@0
|
111 |
static void AttachCleanup(void* aCleanup);
|
sl@0
|
112 |
enum TAttachState {EAStNone, EAStDbAttached, EAStSecurityMapUpdated};
|
sl@0
|
113 |
void DoAttachSecureDbL(TAttachState& aState, const TSqlSrvFileData& aFileData, const TDesC& aDbName, const TUint8*& aMapKey);
|
sl@0
|
114 |
inline void BasicSecurityPolicyCheckL(const CSqlSecurityPolicy& aSecurityPolicy);
|
sl@0
|
115 |
inline void StoreSettingsL(const TDesC& aCollationDllName, TInt aDbConfigFileVersion, TSqlCompactionMode aCompactionMode);
|
sl@0
|
116 |
void ProcessSettingsL(const TSqlSrvFileData& aFileData, const TDesC& aDbName);
|
sl@0
|
117 |
void ApplyConfigUpdatesL(const TDesC& aStoredCollationDllName, const TInt& aStoredDbConfigFileVersion,
|
sl@0
|
118 |
const TSqlSrvFileData& aFileData, const TDesC& aDbName);
|
sl@0
|
119 |
void SetConfigL(const TSqlSrvConfigParams& aConfigParams, TBool aSetPageSize, const TDesC& aLogicalDbName = KNullDesC);
|
sl@0
|
120 |
void InitCompactionL(TSqlCompactionMode aCompactionMode, TInt aFreePageThresholdKb,
|
sl@0
|
121 |
const TDesC& aDbFileName, TSqliteVacuumMode aCurrentVacuumMode, const TDesC& aDbName = KMainDb16);
|
sl@0
|
122 |
void NewCompactEntryL(TInt aFreePageThresholdKb, const TDesC& aDbFileName, const TDesC& aDbName);
|
sl@0
|
123 |
void ReleaseCompactEntry(const TDesC& aDbName);
|
sl@0
|
124 |
static void CompactCleanup(void* aCleanup);
|
sl@0
|
125 |
TInt PageSizeL(const TDesC& aDbName = KNullDesC);
|
sl@0
|
126 |
//ConstructL() methods
|
sl@0
|
127 |
void ConstructCreateSecureL(const TSqlSrvFileData& aFileData, CSqlSecurityPolicy* aSecurityPolicy);
|
sl@0
|
128 |
void ConstructCreateL(const TSqlSrvFileData& aFileData);
|
sl@0
|
129 |
void DoCommonConstructCreateL(const TSqlSrvFileData& aFileData, TBool aSecureDb);
|
sl@0
|
130 |
void ConstructOpenSecureL(const TSqlSrvFileData& aFileData);
|
sl@0
|
131 |
void ConstructOpenL(const TSqlSrvFileData& aFileData);
|
sl@0
|
132 |
void DoCommonConstructOpenL(const TSqlSrvFileData& aFileData, TBool aSecureDb);
|
sl@0
|
133 |
//
|
sl@0
|
134 |
static void LikeSqlFunc(sqlite3_context* aContext, int aArgc, sqlite3_value** aArgv);
|
sl@0
|
135 |
|
sl@0
|
136 |
private:
|
sl@0
|
137 |
sqlite3* iDbHandle;//The database handle, owned by CSqlSrvDatabase.
|
sl@0
|
138 |
const CSqlSecurityPolicy* iSecurityPolicy;//The main database security policy, not owned by CSqlSrvDatabase (owned by the CSqlServer::iSecurityMap object).
|
sl@0
|
139 |
TUint8 iFileNameBuf[KMaxFileName + 1];//Temporary buffer for storing UTF8 encoded, zero terminated database names.
|
sl@0
|
140 |
TBool iAuthorizerInstalled;//If non-zero then the authorizer callback is already installed.
|
sl@0
|
141 |
//Fact: the authorizer callback must be installed for each
|
sl@0
|
142 |
//secure CSqlSrvDatabase object. But it is possible that
|
sl@0
|
143 |
// - there is one secure database object;
|
sl@0
|
144 |
// - a second secure database is attached to the first one.
|
sl@0
|
145 |
// in this case there is no need to install the authorizer again.
|
sl@0
|
146 |
//
|
sl@0
|
147 |
//Or there is another situation: non-secure main database + secure attached database.
|
sl@0
|
148 |
TBool iAuthorizerDisabled; //See the comments for iAuthorizerInstalled.
|
sl@0
|
149 |
//This flag is used only when attaching a secure database.
|
sl@0
|
150 |
//Since during this operation the system tables are read/writen,
|
sl@0
|
151 |
//The authorizer callback has to be temporary disabled.
|
sl@0
|
152 |
RSqlAttachDbMap iAttachDbMap;//["dbName":"dbFileName"] map, owned by CSqlSrvDatabase.
|
sl@0
|
153 |
const TUint8* iSecureDbName;//<Drive:><Name[.Ext]>, used as a key in the security map. Not owned by CSqlSrvDatabase.
|
sl@0
|
154 |
RSqlCompactDbMap iCompactDbMap; //["dbName":"Compact db entry"] map, owned by CSqlSrvDatabase.
|
sl@0
|
155 |
TInt iPageSize; //Main database page size in bytes
|
sl@0
|
156 |
|
sl@0
|
157 |
};
|
sl@0
|
158 |
|
sl@0
|
159 |
#include "SqlSrvDatabase.inl"
|
sl@0
|
160 |
|
sl@0
|
161 |
#endif//__SQLSRVDATABASE_H__
|