os/persistentdata/persistentstorage/sql/SRC/Client/SqlDatabaseImpl.cpp
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
#include "SqlSecurityImpl.h"	//CSqlSecurityPolicy
sl@0
    17
#include "SqlDatabaseImpl.h"	//CSqlDatabaseImpl
sl@0
    18
#include <e32debug.h>
sl@0
    19
sl@0
    20
/**
sl@0
    21
Manual compaction - max compacton step execution time in microseconds.
sl@0
    22
sl@0
    23
@internalComponent
sl@0
    24
*/
sl@0
    25
static const TInt KCompactMaxStepTimeUs = 100000;
sl@0
    26
sl@0
    27
/**
sl@0
    28
Minimal amount of free database space to be removed by the compaction steps.
sl@0
    29
sl@0
    30
@internalComponent
sl@0
    31
*/
sl@0
    32
static const TInt KCompactMinStepSize =  2 * 1024;
sl@0
    33
sl@0
    34
/**
sl@0
    35
The amount of free database space to be removed by the first compaction step.
sl@0
    36
sl@0
    37
@internalComponent
sl@0
    38
*/
sl@0
    39
static const TInt KCompactStartStepSize = 32 * 1024;
sl@0
    40
sl@0
    41
/**
sl@0
    42
The aim of the function is to determine the maximum size of space to be freed, which fits within the time constraint.
sl@0
    43
The decision is based on the time spent on the pervious compaction step.
sl@0
    44
If the time is bigger than KCompactMaxStepTimeUs then the space will be reduced by factor of 2 (slow media),
sl@0
    45
bet will never be less than KCompactMinStepSize.
sl@0
    46
If the time is less than the KCompactMaxStepTimeUs/2 then the space will be increased by factor of 2 (fast media).
sl@0
    47
sl@0
    48
@param aRemaining The remaining free database space.
sl@0
    49
@param aStep The size of the space removed by the previous compaction step.
sl@0
    50
@param aTime The execution time of the previous compaction step.
sl@0
    51
sl@0
    52
@return The size in bytes if the next comaction step - the amount of space to be removed.
sl@0
    53
sl@0
    54
@see KMaxStepTimeUs
sl@0
    55
@see KMinStepSize
sl@0
    56
@see KStartStepSize
sl@0
    57
sl@0
    58
@internalComponent
sl@0
    59
*/
sl@0
    60
static TInt CalcCompactionStep(TInt aRemaining, TInt aStep, TInt aTime)
sl@0
    61
	{
sl@0
    62
	if(aTime > KCompactMaxStepTimeUs)
sl@0
    63
		{
sl@0
    64
		aStep /= 2;
sl@0
    65
		if(aStep < KCompactMinStepSize)
sl@0
    66
			{
sl@0
    67
			aStep = KCompactMinStepSize; 
sl@0
    68
			}
sl@0
    69
		}
sl@0
    70
	else if(aTime <= (KCompactMaxStepTimeUs / 2))
sl@0
    71
		{
sl@0
    72
		aStep *= 2;
sl@0
    73
		}
sl@0
    74
	if(aRemaining < aStep)
sl@0
    75
		{//If, for example, aStep is 4000 bytes, aRemaining is 2000 bytes, then the step should be 2000,  
sl@0
    76
		 //because that is what is left in the database as a free space.
sl@0
    77
		aStep = aRemaining;
sl@0
    78
		}
sl@0
    79
	return aStep;
sl@0
    80
	}
sl@0
    81
 
sl@0
    82
/**
sl@0
    83
Creates a new CSqlDatabaseImpl instance.
sl@0
    84
sl@0
    85
CSqlDatabaseImpl implements RSqlDatabase, which means that CSqlDatabaseImpl instance will be created from 
sl@0
    86
RSqlDatabase functions doing RSqlDatabase instance initialization - Create() and Open().
sl@0
    87
sl@0
    88
@param aFunction It may have one of the following values: 																																																																																																																																																																																																																																																																																																																																																																																																							
sl@0
    89
 ESqlSrvDbCreate       - Create a shared non-secure or private secure database;
sl@0
    90
 ESqlSrvDbCreateSecure - Create a shared secure database;
sl@0
    91
 ESqlSrvDbOpen         - Open a shared non-secure, shared secure or private secure database;
sl@0
    92
	
sl@0
    93
@param aDbFileName The name of the file that is to host the database.
sl@0
    94
				   If it is a secure database, then the format of the name is 
sl@0
    95
				   \<drive\>:\<[SID]database file name excluding the path\>. "[SID]" refers to the application SID.
sl@0
    96
				   If it is a non-secure database then aDbFileName should contain the full path name of the file 
sl@0
    97
				   that is to host the database.
sl@0
    98
@param aSecurityPolicy The container for the security policies. 
sl@0
    99
				   aSecurityPolicy is NULL if aDbFileName refers to a non-secure database.
sl@0
   100
@param aConfig the configuration string "PARAM=VALUE;...."
sl@0
   101
sl@0
   102
@return A pointer to the created CSqlDatabaseImpl instance.
sl@0
   103
sl@0
   104
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
   105
       KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
sl@0
   106
       KErrArgument, system table name found in the security policies (aSecurityPolicy);
sl@0
   107
       KErrAlreadyExists, the file already exists;
sl@0
   108
       KErrNotReady, the drive does not exist or is not ready;
sl@0
   109
       KErrInUse, the file is already open;
sl@0
   110
       KErrNotFound, database file not found;
sl@0
   111
       KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
sl@0
   112
       KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
sl@0
   113
       KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
sl@0
   114
                      Note that the function may leave with database specific errors categorised as ESqlDbError and
sl@0
   115
                      other system-wide error codes.
sl@0
   116
                      
sl@0
   117
@see RSqlDatabase
sl@0
   118
@see RSqlDatabase::Create()
sl@0
   119
@see RSqlDatabase::Open()
sl@0
   120
@see TSqlSrvFunction
sl@0
   121
@see CSqlSecurityPolicy
sl@0
   122
*/
sl@0
   123
CSqlDatabaseImpl* CSqlDatabaseImpl::NewL(TSqlSrvFunction aFunction, const TDesC& aDbFileName, 
sl@0
   124
										 const CSqlSecurityPolicy* aSecurityPolicy,
sl@0
   125
										 const TDesC8* aConfig)
sl@0
   126
	{
sl@0
   127
	CSqlDatabaseImpl* self = new (ELeave) CSqlDatabaseImpl;
sl@0
   128
	CleanupStack::PushL(self);
sl@0
   129
	self->ConstructL(aFunction, aDbFileName, aSecurityPolicy, aConfig);
sl@0
   130
	CleanupStack::Pop(self);
sl@0
   131
	return self;
sl@0
   132
	}
sl@0
   133
sl@0
   134
/**
sl@0
   135
Initializes the created CSqlDatabaseImpl instance.
sl@0
   136
sl@0
   137
@param aFunction It may have one of the following values:
sl@0
   138
  ESqlSrvDbCreate       - Create a shared non-secure or private secure database;
sl@0
   139
  ESqlSrvDbCreateSecure - Create a shared secure database;
sl@0
   140
  ESqlSrvDbOpen         - Open a shared non-secure, shared secure or private secure database;
sl@0
   141
sl@0
   142
@param aDbFileName The name of the file that is to host the database.
sl@0
   143
				   If it is a secure database, then the format of the name is 
sl@0
   144
				   \<drive\>:\<[SID]database file name excluding the path\>. "[SID]" refers to the application SID.
sl@0
   145
				   If it is a non-secure database then aDbFileName should contain the full path name of the file 
sl@0
   146
				   that is to host the database.
sl@0
   147
@param aSecurityPolicy The container for the security policies. 
sl@0
   148
				   aSecurityPolicy is NULL if aDbFileName refers to a non-secure database.
sl@0
   149
@param aConfig the configuration string "PARAM=VALUE;...."
sl@0
   150
sl@0
   151
@leave KErrNoMemory, an out of memory condition has occurred;
sl@0
   152
       KErrBadName, the file name is invalid - it has either a zero length or it is the name of a directory;
sl@0
   153
       KErrArgument, system table name found in the security policies (aSecurityPolicy);
sl@0
   154
       KErrAlreadyExists, the file already exists;
sl@0
   155
       KErrNotReady, the drive does not exist or is not ready;
sl@0
   156
       KErrInUse, the file is already open;
sl@0
   157
       KErrNotFound, database file not found;
sl@0
   158
       KErrGeneral, missing or invalid security policies (if the database to be opened is a secure database);
sl@0
   159
       KErrNotSupported, incompatible SQL security version (if the database to be opened is a secure database).
sl@0
   160
       KErrPermissionDenied, the caller does not satisfy the relevant database security policies.
sl@0
   161
                      Note that the function may leave with database specific errors categorised as ESqlDbError and
sl@0
   162
                      other system-wide error codes.
sl@0
   163
sl@0
   164
@see CSqlDatabaseImpl::NewL()
sl@0
   165
sl@0
   166
@panic SqlDb 4 In _DEBUG mode. aSecurityPolicy is NULL, but the request is for opening/creating a secure database.
sl@0
   167
*/
sl@0
   168
void CSqlDatabaseImpl::ConstructL(TSqlSrvFunction aFunction, const TDesC& aDbFileName, 
sl@0
   169
								  const CSqlSecurityPolicy* aSecurityPolicy, const TDesC8* aConfig)
sl@0
   170
	{
sl@0
   171
	TPtrC8 securityPolicyData;
sl@0
   172
	if(aFunction == ESqlSrvDbCreateSecure)	
sl@0
   173
		{
sl@0
   174
		__ASSERT_DEBUG(aSecurityPolicy != NULL, __SQLPANIC(ESqlPanicBadArgument));
sl@0
   175
		const RSqlBufFlat& bufFlat = aSecurityPolicy->BufFlat();
sl@0
   176
		securityPolicyData.Set(bufFlat.BufDes());
sl@0
   177
		}
sl@0
   178
	__SQLLEAVE_IF_ERROR(Session().Connect(aFunction, aDbFileName, securityPolicyData, aConfig));
sl@0
   179
	}
sl@0
   180
sl@0
   181
/**
sl@0
   182
Frees the allocated by CSqlDatabaseImpl instance memory and other resources.
sl@0
   183
*/
sl@0
   184
CSqlDatabaseImpl::~CSqlDatabaseImpl()
sl@0
   185
	{
sl@0
   186
	Session().Close();
sl@0
   187
	}
sl@0
   188
sl@0
   189
/**
sl@0
   190
Creates and returns a copy of the database security policies object.
sl@0
   191
The caller is responsible for destroying the returned CSqlSecurityPolicy instance.
sl@0
   192
sl@0
   193
Implements RSqlDatabase::GetSecurityPolicyL().
sl@0
   194
sl@0
   195
@return A copy of the database security policies object. 
sl@0
   196
        The returned copy must be destroyed by the caller.
sl@0
   197
        
sl@0
   198
@leave KErrNotSupported, the current database is not a secure database;
sl@0
   199
       KErrNoMemory, an out of memory condition has occurred;
sl@0
   200
sl@0
   201
@see RSqlDatabase
sl@0
   202
@see RSqlDatabase::GetSecurityPolicyL()
sl@0
   203
*/
sl@0
   204
CSqlSecurityPolicy* CSqlDatabaseImpl::CloneSecurityPolicyL()
sl@0
   205
	{
sl@0
   206
	TSecurityPolicy defaultPolicy(TSecurityPolicy::EAlwaysFail);
sl@0
   207
	CSqlSecurityPolicy* dbPolicy = CSqlSecurityPolicy::NewLC(defaultPolicy);
sl@0
   208
	__SQLLEAVE_IF_ERROR(Session().GetSecurityPolicy(dbPolicy->BufFlat()));
sl@0
   209
	CleanupStack::Pop(dbPolicy);
sl@0
   210
	return dbPolicy;
sl@0
   211
	}
sl@0
   212
sl@0
   213
/**
sl@0
   214
Implements RSqlDatabase::Compact().
sl@0
   215
sl@0
   216
@param aSize Can be one of:
sl@0
   217
				 RSqlDatabase::EMaxCompaction - requests a full database compaction. All free pages
sl@0
   218
				  (if any exists) will be removed;
sl@0
   219
				 Positive integer value - the server will attempt to compact the database removing 
sl@0
   220
				  at most aSize bytes from the database file, rounded up to the nearest page count, 
sl@0
   221
				  e.g. request for removing 1 byte will remove one free page from the database;
sl@0
   222
@param aDbName The attached database name or KNullDesC for the main database
sl@0
   223
sl@0
   224
@return Zero or positive integer - the operation has completed succesfully, the return value is the
sl@0
   225
         						   size of the removed free space in bytes,
sl@0
   226
		KErrArgument, Invalid aSize value;
sl@0
   227
        KErrBadName, Invalid (too long) attached database name;
sl@0
   228
        KSqlErrReadOnly, Read-only database;
sl@0
   229
        KSqlErrGeneral, There is no an attached database with aDbName name;
sl@0
   230
                  Note that database specific errors categorised as ESqlDbError, and
sl@0
   231
                  other system-wide error codes may also be returned.
sl@0
   232
sl@0
   233
Usage of the IPC call arguments:
sl@0
   234
Arg 0: [out]	How much space in bytes should be compacted, all free pages should be removed if the
sl@0
   235
				parameter value is RSqlDatabase::EMaxCompaction.
sl@0
   236
Arg 1: [out]	The database name length in characters
sl@0
   237
Arg 2: [out]	The attached database name or KNullDesC for the main database
sl@0
   238
*/
sl@0
   239
TInt CSqlDatabaseImpl::Compact(TInt aSize, const TDesC& aDbName)
sl@0
   240
	{
sl@0
   241
	if(aSize < 0)
sl@0
   242
		{
sl@0
   243
		if(aSize != RSqlDatabase::EMaxCompaction)
sl@0
   244
			{
sl@0
   245
			return KErrArgument;
sl@0
   246
			}
sl@0
   247
		aSize = KMaxTInt;
sl@0
   248
		}
sl@0
   249
	TInt remaining = aSize;
sl@0
   250
	TInt compacted = 0;
sl@0
   251
	TInt step = KCompactStartStepSize;
sl@0
   252
	TInt rc = 0;
sl@0
   253
	TTimeIntervalMicroSeconds interval(0);
sl@0
   254
	while(remaining > 0)
sl@0
   255
		{
sl@0
   256
		step = ::CalcCompactionStep(remaining, step, interval.Int64());
sl@0
   257
		TTime start;
sl@0
   258
		start.HomeTime();
sl@0
   259
		rc = Session().SendReceive(ESqlSrvDbCompact, TIpcArgs(step, aDbName.Length(), &aDbName));
sl@0
   260
		if(rc <= 0)
sl@0
   261
			{
sl@0
   262
			break;	
sl@0
   263
			}
sl@0
   264
		TTime end;
sl@0
   265
		end.HomeTime();
sl@0
   266
		interval = end.MicroSecondsFrom(start);
sl@0
   267
		remaining -= rc;				
sl@0
   268
		compacted += rc;
sl@0
   269
		}
sl@0
   270
	return rc < 0 ? rc : compacted;
sl@0
   271
	}
sl@0
   272
sl@0
   273
/**
sl@0
   274
Usage of the IPC call arguments:
sl@0
   275
Arg 0: [out]	How much space in bytes should be compacted, all free pages should be removed if the
sl@0
   276
				parameter value is RSqlDatabase::EMaxCompaction.
sl@0
   277
Arg 1: [out]	The database name length in characters
sl@0
   278
Arg 2: [out]	The attached database name or KNullDesC for the main database
sl@0
   279
*/
sl@0
   280
void CSqlDatabaseImpl::Compact(TInt aSize, const TDesC& aDbName, TRequestStatus& aStatus)
sl@0
   281
	{
sl@0
   282
	if(aSize == 0)
sl@0
   283
		{
sl@0
   284
		TRequestStatus* stat = &aStatus;
sl@0
   285
		User::RequestComplete(stat, 0);
sl@0
   286
		return;
sl@0
   287
		}
sl@0
   288
	Session().SendReceive(ESqlSrvDbCompact, TIpcArgs(aSize, aDbName.Length(), &aDbName), aStatus);
sl@0
   289
	}