os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvConfig.cpp
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) 2007-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
#include <f32file.h>
sl@0
    16
#include <f32file64.h>
sl@0
    17
#include "SqlSrvConfig.h"
sl@0
    18
#include "SqlSrvUtil.h"
sl@0
    19
#include "OstTraceDefinitions.h"
sl@0
    20
#ifdef OST_TRACE_COMPILER_IN_USE
sl@0
    21
#include "SqlSrvConfigTraces.h"
sl@0
    22
#endif
sl@0
    23
#include "SqlTraceDef.h"
sl@0
    24
sl@0
    25
/**
sl@0
    26
Initializes TSqlSrvConfigParams data members with their default values.
sl@0
    27
*/
sl@0
    28
TSqlSrvConfigParams::TSqlSrvConfigParams() :
sl@0
    29
	iCacheSize(TSqlSrvConfigParams::KConfigPrmValueNotSet),
sl@0
    30
	iPageSize(TSqlSrvConfigParams::KConfigPrmValueNotSet),
sl@0
    31
	iDbEncoding(TSqlSrvConfigParams::EEncNotSet),
sl@0
    32
	iSoftHeapLimitKb(TSqlSrvConfigParams::KConfigPrmValueNotSet),
sl@0
    33
	iCompactionMode(ESqlCompactionNotSet),
sl@0
    34
	iFreePageThresholdKb(TSqlSrvConfigParams::KConfigPrmValueNotSet)
sl@0
    35
	{
sl@0
    36
	}
sl@0
    37
sl@0
    38
/**
sl@0
    39
"Object initialization" method.
sl@0
    40
Opens and reads the SQL server configuration file (if it exists).
sl@0
    41
Initializes TSqlSrvConfig data members using the data from the config file.
sl@0
    42
If the configuration file does not exist, TSqlSrvConfig data members stay unchanged,
sl@0
    43
except: 
sl@0
    44
 - the soft heap limit, which default value is TSqlSrvConfigParams::KDefaultSoftHeapLimit;
sl@0
    45
 - the free pages threshold, which default value is KSqlCompactFreePageThreshold;
sl@0
    46
sl@0
    47
@param aFs File session
sl@0
    48
@param aFileName Config file name
sl@0
    49
@leave KErrEof No valid config string found in the configuration file;
sl@0
    50
               Note that the function may also leave with some other system-wide error codes.
sl@0
    51
*/
sl@0
    52
void TSqlSrvConfig::InitL(RFs& aFs, const TDesC& aFileName)
sl@0
    53
	{
sl@0
    54
	SQL_TRACE_INTERNALS(OstTraceExt2(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL_ENTRY, "Entry;0;TSqlSrvConfig::InitL;aFs.Handle()=0x%X;aFileName=%S", (TUint)aFs.Handle(), __SQLPRNSTR(aFileName)));
sl@0
    55
	if(::FileExists(aFs, aFileName))
sl@0
    56
		{
sl@0
    57
        SQL_TRACE_INTERNALS(OstTrace0(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL1, "0;TSqlSrvConfig::InitL;Config file found"));
sl@0
    58
		TBuf8<KSqlSrvMaxConfigStrLen> configFileStr;
sl@0
    59
		//Step 1: get the config string from the config file and store the string in configFileStr
sl@0
    60
		TSqlSrvConfig::GetConfigStringFromFileL(aFs, aFileName, configFileStr);
sl@0
    61
		__SQLTRACE_INTERNALSVAR(TBuf<100> des16prnbuf);
sl@0
    62
        SQL_TRACE_INTERNALS(OstTraceExt1(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL2, "0;TSqlSrvConfig::InitL;Config file string=%s", __SQLPRNSTR8(configFileStr, des16prnbuf)));
sl@0
    63
		//Step 2: extract config file parameters from the string (configFileStr)  and store them in iConfigFileParams
sl@0
    64
		TSqlSrvConfig::ExtractConfigParamsFromStringL(configFileStr, iConfigFileParams);
sl@0
    65
		}
sl@0
    66
	//If the soft heap limit is not set from the file or the file does not exist - then set the soft heap limit with the default value
sl@0
    67
	if(iConfigFileParams.iSoftHeapLimitKb == TSqlSrvConfigParams::KConfigPrmValueNotSet)
sl@0
    68
		{
sl@0
    69
		iConfigFileParams.iSoftHeapLimitKb = TSqlSrvConfigParams::KDefaultSoftHeapLimitKb;
sl@0
    70
		}
sl@0
    71
	//If the free page threshold is not set from the file or the file does not exist - then set the free page threshold with the default value
sl@0
    72
	if(iConfigFileParams.iFreePageThresholdKb == TSqlSrvConfigParams::KConfigPrmValueNotSet)
sl@0
    73
		{
sl@0
    74
		iConfigFileParams.iFreePageThresholdKb = KSqlCompactFreePageThresholdKb;
sl@0
    75
		}
sl@0
    76
sl@0
    77
#ifdef _SQL_RDEBUG_PRINT
sl@0
    78
    SQL_TRACE_INTERNALS(OstTraceExt4(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL_EXIT1, "Exit;0;TSqlSrvConfig::InitL;iCacheSize=%d;iPageSize=%d;iDbEncoding=%d;iSoftHeapLimit=%d", iConfigFileParams.iCacheSize, iConfigFileParams.iPageSize, iConfigFileParams.iDbEncoding, iConfigFileParams.iSoftHeapLimitKb));
sl@0
    79
#else	
sl@0
    80
    SQL_TRACE_INTERNALS(OstTraceExt4(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL_EXIT2, "Exit;0;TSqlSrvConfig::InitL;iCacheSize=%d;iPageSize=%d;iDbEncoding=%{TSqlSrvConfig_TDbEncoding};iSoftHeapLimit=%d", iConfigFileParams.iCacheSize, iConfigFileParams.iPageSize, iConfigFileParams.iDbEncoding, iConfigFileParams.iSoftHeapLimitKb));
sl@0
    81
#endif    
sl@0
    82
    SQL_TRACE_INTERNALS(OstTraceExt2(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL_EXIT3, "Exit;0;TSqlSrvConfig::InitL;iCompactionMode=%d;iFreePageThresholdKb=%d", iConfigFileParams.iCompactionMode, iConfigFileParams.iFreePageThresholdKb));
sl@0
    83
	}
sl@0
    84
sl@0
    85
/**
sl@0
    86
Parses the config string parameter (aConfigStr), extracts configuration parameters values and 
sl@0
    87
and initialises with them aConfigParams data members.
sl@0
    88
The config string format is: "PARAM1=VALUE1;PARAM2=VALUE2;..."
sl@0
    89
If there is unknown parameter "name=value" pair in the config string, it will be skipped - not reported as an error.
sl@0
    90
In a case of a leave, the old content of aConfigStr is preserved.
sl@0
    91
The rules for TSqlSrvConfigParams data members initialization are described in TSqlSrvConfig class' comments.
sl@0
    92
sl@0
    93
@see TSqlSrvConfig
sl@0
    94
@param aConfigStr the config descriptor
sl@0
    95
@param aConfigParams Output argument, config parameters will be stored there.
sl@0
    96
@leave KErrArgument if the config is not good or the config string contains "soft heap limit" parameter/value pair.
sl@0
    97
@leave KErrArgument if the config is not good or the config string contains "free page threshold" parameter/value pair.
sl@0
    98
*/
sl@0
    99
void TSqlSrvConfig::GetConfigParamsL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams) const
sl@0
   100
	{
sl@0
   101
	__SQLTRACE_INTERNALSVAR(TBuf<100> des16prnbuf);
sl@0
   102
    SQL_TRACE_INTERNALS(OstTraceExt1(TRACE_INTERNALS, TSQLSRVCONFIGFILE_GETCONFIGPARAMSL_ENTRY, "Entry;0;TSqlSrvConfig::GetConfigParamsL;aConfigStr=%s", __SQLPRNSTR8(aConfigStr, des16prnbuf)));
sl@0
   103
	TSqlSrvConfigParams tmpConfigParams;
sl@0
   104
	//Step 1: extract configuration parameters from aConfigStr, store them in tmpConfigParams.
sl@0
   105
	TSqlSrvConfig::ExtractConfigParamsFromStringL(aConfigStr, tmpConfigParams);
sl@0
   106
	if(tmpConfigParams.iSoftHeapLimitKb != TSqlSrvConfigParams::KConfigPrmValueNotSet || 
sl@0
   107
	   tmpConfigParams.iFreePageThresholdKb != TSqlSrvConfigParams::KConfigPrmValueNotSet)
sl@0
   108
		{//It is not allowed the soft heap limit to be set from a config string, only from the SQL server config file.
sl@0
   109
		 //It is not allowed the free page threshold to be set from a config string, only from the SQL server config file.
sl@0
   110
		__SQLLEAVE(KErrArgument);
sl@0
   111
		}
sl@0
   112
	//Step 2: store tmpConfigParams in aConfigParams.
sl@0
   113
	aConfigParams = tmpConfigParams;
sl@0
   114
	//Step 3: replace each "not set" parameter in aConfigParams with the related parameter value from iConfigFileParams (the config file).
sl@0
   115
	if(aConfigParams.iPageSize == TSqlSrvConfigParams::KConfigPrmValueNotSet)
sl@0
   116
		{
sl@0
   117
		aConfigParams.iPageSize = iConfigFileParams.iPageSize;
sl@0
   118
		}
sl@0
   119
	if(aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncNotSet)
sl@0
   120
		{
sl@0
   121
		aConfigParams.iDbEncoding = iConfigFileParams.iDbEncoding;
sl@0
   122
		}
sl@0
   123
	if(aConfigParams.iCompactionMode == ESqlCompactionNotSet)
sl@0
   124
		{
sl@0
   125
		aConfigParams.iCompactionMode = iConfigFileParams.iCompactionMode;
sl@0
   126
		}
sl@0
   127
	//Step 4: set the soft heap limit.
sl@0
   128
	aConfigParams.iSoftHeapLimitKb = iConfigFileParams.iSoftHeapLimitKb;
sl@0
   129
	//Step 5: set the free page threshold.
sl@0
   130
	aConfigParams.iFreePageThresholdKb = iConfigFileParams.iFreePageThresholdKb;
sl@0
   131
	//Step 6: assert the parameter values.
sl@0
   132
	__ASSERT_DEBUG(aConfigParams.iPageSize == TSqlSrvConfigParams::KConfigPrmValueNotSet || aConfigParams.iPageSize >= 0, __SQLPANIC(ESqlPanicInternalError));
sl@0
   133
	__ASSERT_DEBUG(aConfigParams.iCacheSize == TSqlSrvConfigParams::KConfigPrmValueNotSet || aConfigParams.iCacheSize >= 0, __SQLPANIC(ESqlPanicInternalError));
sl@0
   134
	__ASSERT_DEBUG(aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncNotSet || 
sl@0
   135
				aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncUtf8 || 
sl@0
   136
				aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncUtf16, __SQLPANIC(ESqlPanicInternalError));
sl@0
   137
	__ASSERT_DEBUG(aConfigParams.iSoftHeapLimitKb == TSqlSrvConfigParams::KConfigPrmValueNotSet || 
sl@0
   138
	            (aConfigParams.iSoftHeapLimitKb >= TSqlSrvConfigParams::KMinSoftHeapLimitKb &&
sl@0
   139
	             aConfigParams.iSoftHeapLimitKb <= TSqlSrvConfigParams::KMaxSoftHeapLimitKb), __SQLPANIC(ESqlPanicInternalError));
sl@0
   140
	__ASSERT_DEBUG(aConfigParams.iCompactionMode == ESqlCompactionNotSet || aConfigParams.iCompactionMode == ESqlCompactionManual || 
sl@0
   141
				aConfigParams.iCompactionMode == ESqlCompactionBackground || aConfigParams.iCompactionMode == ESqlCompactionAuto, __SQLPANIC(ESqlPanicInternalError));
sl@0
   142
	__ASSERT_DEBUG(aConfigParams.iFreePageThresholdKb == TSqlSrvConfigParams::KConfigPrmValueNotSet || 
sl@0
   143
				aConfigParams.iFreePageThresholdKb >= 0, __SQLPANIC(ESqlPanicInternalError));
sl@0
   144
#ifdef _SQL_RDEBUG_PRINT
sl@0
   145
    SQL_TRACE_INTERNALS(OstTraceExt4(TRACE_INTERNALS, TSQLSRVCONFIGFILE_GETCONFIGPARAMSL_EXIT1, "Exit;0;TSqlSrvConfig::GetConfigParamsL;cacheSize=%d;pageSize=%d;dbEncoding=%d;softHeapLimit=%d", aConfigParams.iCacheSize, aConfigParams.iPageSize, aConfigParams.iDbEncoding, aConfigParams.iSoftHeapLimitKb));
sl@0
   146
#else   
sl@0
   147
    SQL_TRACE_INTERNALS(OstTraceExt4(TRACE_INTERNALS, TSQLSRVCONFIGFILE_GETCONFIGPARAMSL_EXIT2, "Exit;0;TSqlSrvConfig::GetConfigParamsL;cacheSize=%d;pageSize=%d;dbEncoding=%{TSqlSrvConfig_TDbEncoding};softHeapLimit=%d", aConfigParams.iCacheSize, aConfigParams.iPageSize, aConfigParams.iDbEncoding, aConfigParams.iSoftHeapLimitKb));
sl@0
   148
#endif    
sl@0
   149
    SQL_TRACE_INTERNALS(OstTraceExt2(TRACE_INTERNALS, TSQLSRVCONFIGFILE_GETCONFIGPARAMSL_EXIT3, "Exit;0;TSqlSrvConfig::GetConfigParamsL;compactionMode=%d;freePageThresholdKb=%d", aConfigParams.iCompactionMode, aConfigParams.iFreePageThresholdKb));
sl@0
   150
	}
sl@0
   151
sl@0
   152
//The function opeans the aFileName config file and reads the config string, storring it in aConfigStr argument.
sl@0
   153
//Preconditions:
sl@0
   154
// - The config file does exist;
sl@0
   155
// - It is a file, containing 16-bit strings;
sl@0
   156
// - aConfigStr max size is at least KSqlSrvMaxConfigStrLen bytes;
sl@0
   157
//The function may leave if some of the file I/O operations (open file, read file) fails.
sl@0
   158
void TSqlSrvConfig::GetConfigStringFromFileL(RFs& aFs, const TDesC& aFileName, TDes8& aConfigStr)
sl@0
   159
	{
sl@0
   160
	__ASSERT_DEBUG(aConfigStr.MaxLength() >= KSqlSrvMaxConfigStrLen, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
   161
	RFile64 cfgFile;
sl@0
   162
	CleanupClosePushL(cfgFile);
sl@0
   163
	__SQLLEAVE_IF_ERROR2(cfgFile.Open(aFs, aFileName, EFileRead));
sl@0
   164
	TFileText cfgFileReader;
sl@0
   165
	cfgFileReader.Set(cfgFile);
sl@0
   166
	TBuf<KSqlSrvMaxConfigStrLen> buf;
sl@0
   167
	TBool cfgLineFound = EFalse;
sl@0
   168
	TInt err = KErrNone;
sl@0
   169
	//Read the configuration file line by line until get the first "non-comment" line.
sl@0
   170
	while((err = cfgFileReader.Read(buf)) == KErrNone)
sl@0
   171
		{
sl@0
   172
		buf.TrimAll();
sl@0
   173
		if(buf.Length() == 0 || buf.Locate('#') == 0)	//'#' means - this line is a comment
sl@0
   174
			{
sl@0
   175
			continue;
sl@0
   176
			}
sl@0
   177
		cfgLineFound = ETrue;
sl@0
   178
		break;
sl@0
   179
		}
sl@0
   180
	CleanupStack::PopAndDestroy(&cfgFile);
sl@0
   181
	if(err != KErrEof)
sl@0
   182
		{//The "read configuration file" operation has failed with "err" (if err != KErrNone)
sl@0
   183
		__SQLLEAVE_IF_ERROR2(err);	
sl@0
   184
		}
sl@0
   185
	if(!cfgLineFound)
sl@0
   186
		{//End of config file reached - no valid configuration line found.
sl@0
   187
		__SQLLEAVE2(KErrEof);	
sl@0
   188
		}
sl@0
   189
	__ASSERT_DEBUG(err == KErrNone || err == KErrEof, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   190
	aConfigStr.Copy(buf);
sl@0
   191
	}
sl@0
   192
sl@0
   193
//Parses the config string parameter (aConfigStr) and stores the extracted configuration parameter values in the aConfigParams argument.
sl@0
   194
//The config string format is: "PARAM1=VALUE1;PARAM2=VALUE2;..."
sl@0
   195
//If there is unknown parameter name in the config string, it will be skipped - not reported as an error.
sl@0
   196
//The function will leave with KErrArgument in a case of a bad config string (bad parameter values).
sl@0
   197
void TSqlSrvConfig::ExtractConfigParamsFromStringL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams)
sl@0
   198
	{
sl@0
   199
	//Search iteratively the config string for "PARAM=VALUE;" pairs. If such pair is found, extract the parameter name and
sl@0
   200
	//parameter value. Adjust the string start ptr to point to the rest of the string.
sl@0
   201
	for(TPtrC8 ptr(aConfigStr);ptr.Length()>0;)
sl@0
   202
		{
sl@0
   203
		TPtrC8 prmName(KNullDesC8);
sl@0
   204
		TPtrC8 prmValue(KNullDesC8);
sl@0
   205
		if(TSqlSrvConfig::ExtractParamValuePairL(ptr, prmName, prmValue))
sl@0
   206
			{
sl@0
   207
			TSqlSrvConfig::ExtractParamValueL(prmName, prmValue, aConfigParams);
sl@0
   208
			}
sl@0
   209
		}
sl@0
   210
	//Assert the extracted parameter values.
sl@0
   211
	__ASSERT_DEBUG(aConfigParams.iPageSize == TSqlSrvConfigParams::KConfigPrmValueNotSet || aConfigParams.iPageSize >= 0, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   212
	__ASSERT_DEBUG(aConfigParams.iCacheSize == TSqlSrvConfigParams::KConfigPrmValueNotSet || aConfigParams.iCacheSize >= 0, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   213
	__ASSERT_DEBUG(aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncNotSet || 
sl@0
   214
				aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncUtf8 || 
sl@0
   215
				aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncUtf16, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   216
	__ASSERT_DEBUG(aConfigParams.iSoftHeapLimitKb == TSqlSrvConfigParams::KConfigPrmValueNotSet || 
sl@0
   217
	            (aConfigParams.iSoftHeapLimitKb >= TSqlSrvConfigParams::KMinSoftHeapLimitKb &&
sl@0
   218
	             aConfigParams.iSoftHeapLimitKb <= TSqlSrvConfigParams::KMaxSoftHeapLimitKb), __SQLPANIC2(ESqlPanicInternalError));
sl@0
   219
	__ASSERT_DEBUG(aConfigParams.iCompactionMode == ESqlCompactionNotSet || aConfigParams.iCompactionMode == ESqlCompactionManual || 
sl@0
   220
				aConfigParams.iCompactionMode == ESqlCompactionBackground || aConfigParams.iCompactionMode == ESqlCompactionAuto, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   221
	__ASSERT_DEBUG(aConfigParams.iFreePageThresholdKb == TSqlSrvConfigParams::KConfigPrmValueNotSet || 
sl@0
   222
			    aConfigParams.iFreePageThresholdKb >= 0, __SQLPANIC2(ESqlPanicInternalError));
sl@0
   223
	}
sl@0
   224
sl@0
   225
//The function searches aConfigStr arguments for "PARAM=VALUE;" pair. If such pair is found, then 
sl@0
   226
//aParamName is set to point to the parameter name, aParamValue is set to point to the parameter value,
sl@0
   227
//aConfigStr is set to point to the rest of the config string (skipping the just found "param=value;" pair).
sl@0
   228
//The function leaves with KErrArgument in case of a bad config string.
sl@0
   229
//The function returns false if a ";" string is found instead of a "param=value;" pair.
sl@0
   230
//When the function returns true, it means that aParamName and aParamValue arguments are set to point to the
sl@0
   231
//parameter name and parameter value.
sl@0
   232
TBool TSqlSrvConfig::ExtractParamValuePairL(TPtrC8& aConfigStr, TPtrC8& aParamName, TPtrC8& aParamValue)
sl@0
   233
	{
sl@0
   234
	const TChar KSemiColon(';');
sl@0
   235
	const TChar KAssignment('=');
sl@0
   236
	TInt pos = aConfigStr.Locate(KSemiColon);
sl@0
   237
	TPtrC8 prmText(KNullDesC8);
sl@0
   238
	if(pos < 0)
sl@0
   239
		{
sl@0
   240
		pos = aConfigStr.Length() - 1;	
sl@0
   241
		prmText.Set(TSqlSrvConfig::TrimAndConstructPtr(aConfigStr.Ptr(), aConfigStr.Length()));
sl@0
   242
		}
sl@0
   243
	else
sl@0
   244
		{
sl@0
   245
		prmText.Set(TSqlSrvConfig::TrimAndConstructPtr(aConfigStr.Ptr(), pos));
sl@0
   246
		}
sl@0
   247
	//Set aConfigStr to the "point" right after the last found ';'
sl@0
   248
	if(pos == aConfigStr.Length() - 1)
sl@0
   249
		{
sl@0
   250
		aConfigStr.Set(NULL, 0);	
sl@0
   251
		}
sl@0
   252
	else
sl@0
   253
		{
sl@0
   254
		aConfigStr.Set(aConfigStr.Ptr() + pos + 1, aConfigStr.Length() - (pos + 1));
sl@0
   255
		}
sl@0
   256
	if(prmText.Length() == 0)
sl@0
   257
		{//Empty ";"
sl@0
   258
		return EFalse;	
sl@0
   259
		}
sl@0
   260
	//Find the parameter name and parameter value
sl@0
   261
	pos = prmText.Locate(KAssignment);
sl@0
   262
	if(pos < 0 || pos >= (prmText.Length() - 1))
sl@0
   263
		{
sl@0
   264
		__SQLLEAVE2(KErrArgument);
sl@0
   265
		}
sl@0
   266
	//we've got now prmText pointing to a " PARAM = VALUE " string.
sl@0
   267
	aParamName.Set(TSqlSrvConfig::TrimAndConstructPtr(prmText.Ptr(), pos));
sl@0
   268
	aParamValue.Set(TSqlSrvConfig::TrimAndConstructPtr(prmText.Ptr() + pos + 1, prmText.Length() - (pos + 1)));
sl@0
   269
	return ETrue;
sl@0
   270
	}
sl@0
   271
sl@0
   272
//The function compares aParamName argument against a set of predefined parameter names and if one of them is matched,
sl@0
   273
//then the function converts aParamValue argument to a numerical value and assigns it to the corresponding aConfigParams data member.
sl@0
   274
//The function may leave with KErrArgument, if the parameter value is invalid.
sl@0
   275
void TSqlSrvConfig::ExtractParamValueL(const TDesC8& aParamName, const TDesC8& aParamValue, TSqlSrvConfigParams& aConfigParams)
sl@0
   276
	{
sl@0
   277
	if(aParamName.CompareF(KCacheSize) == 0)
sl@0
   278
		{
sl@0
   279
		aConfigParams.iCacheSize = TSqlSrvConfig::GetCacheSizeL(aParamValue);
sl@0
   280
		}
sl@0
   281
	else if(aParamName.CompareF(KPageSize) == 0)
sl@0
   282
		{
sl@0
   283
		aConfigParams.iPageSize = TSqlSrvConfig::GetPageSizeL(aParamValue);
sl@0
   284
		}
sl@0
   285
	else if(aParamName.CompareF(KEncoding) == 0)
sl@0
   286
		{
sl@0
   287
		aConfigParams.iDbEncoding = TSqlSrvConfig::GetEncoding(aParamValue);
sl@0
   288
		}
sl@0
   289
	else if(aParamName.CompareF(KSoftHeapLimitKb) == 0)
sl@0
   290
		{
sl@0
   291
		aConfigParams.iSoftHeapLimitKb = TSqlSrvConfig::GetSoftHeapLimitL(aParamValue);
sl@0
   292
		}
sl@0
   293
	else if(aParamName.CompareF(KCompactionMode) == 0)
sl@0
   294
		{
sl@0
   295
		aConfigParams.iCompactionMode = TSqlSrvConfig::GetCompactionModeL(aParamValue);
sl@0
   296
		}
sl@0
   297
	else if(aParamName.CompareF(KFreePageThresholdKb) == 0)
sl@0
   298
		{
sl@0
   299
		aConfigParams.iFreePageThresholdKb = TSqlSrvConfig::GetFreePageThresholdL(aParamValue);
sl@0
   300
		}
sl@0
   301
	//else
sl@0
   302
	//	{
sl@0
   303
	//	Unrecognized parameter/value pair - no problem, skip it.
sl@0
   304
	//	}
sl@0
   305
	}
sl@0
   306
sl@0
   307
//The function converts aParamValue to a numerical value (the cache size in pages) and returns it.
sl@0
   308
//If the converted numerical value is less than 0, the function leaves with KErrArgument.
sl@0
   309
TInt TSqlSrvConfig::GetCacheSizeL(const TDesC8& aParamValue)
sl@0
   310
	{
sl@0
   311
	TLex8 lex(aParamValue);
sl@0
   312
	TInt cacheSize = TSqlSrvConfigParams::KConfigPrmValueNotSet;
sl@0
   313
	TInt err = lex.Val(cacheSize);
sl@0
   314
	if(err != KErrNone || cacheSize < 0) 	//The correct check is for "<=0", but it has to be backward 
sl@0
   315
		{									//compatible with the previous implementation
sl@0
   316
		__SQLLEAVE2(KErrArgument);
sl@0
   317
		}
sl@0
   318
	return cacheSize;
sl@0
   319
	}
sl@0
   320
sl@0
   321
//The function converts aParamValue to a numerical value (the page size in bytes) and returns it.
sl@0
   322
//If the converted numerical value is less than 0, the function leaves with KErrArgument.
sl@0
   323
TInt TSqlSrvConfig::GetPageSizeL(const TDesC8& aParamValue)
sl@0
   324
	{
sl@0
   325
	TLex8 lex(aParamValue);
sl@0
   326
	TInt pageSize = TSqlSrvConfigParams::KConfigPrmValueNotSet;
sl@0
   327
	TInt err = lex.Val(pageSize);
sl@0
   328
	if(err != KErrNone || pageSize < 0) 	//The correct check is for "<0", "power of 2", "between 512 and 32768",
sl@0
   329
		{									//but it has to be backward compatible with the previous implementation
sl@0
   330
		__SQLLEAVE2(KErrArgument);
sl@0
   331
		}
sl@0
   332
	return pageSize;
sl@0
   333
	}
sl@0
   334
sl@0
   335
//The function converts aParamValue to a numerical value (the database encoding) and returns it.
sl@0
   336
TSqlSrvConfigParams::TDbEncoding TSqlSrvConfig::GetEncoding(const TDesC8& aParamValue)
sl@0
   337
	{
sl@0
   338
	TSqlSrvConfigParams::TDbEncoding encoding = TSqlSrvConfigParams::EEncNotSet;
sl@0
   339
	if(aParamValue.CompareF(KUTF8) == 0 || aParamValue.CompareF(KUTF8Q) == 0)
sl@0
   340
		{
sl@0
   341
		encoding = TSqlSrvConfigParams::EEncUtf8;
sl@0
   342
		}
sl@0
   343
	else if(aParamValue.CompareF(KUTF16) == 0 || aParamValue.CompareF(KUTF16Q) == 0)
sl@0
   344
		{
sl@0
   345
		encoding = TSqlSrvConfigParams::EEncUtf16;
sl@0
   346
		}
sl@0
   347
	//else
sl@0
   348
	//	{
sl@0
   349
	//	Invalid encoding - bypass it in order to be compatible with the previous implementation
sl@0
   350
	//	}
sl@0
   351
	return encoding;
sl@0
   352
	}
sl@0
   353
sl@0
   354
//The function converts aParamValue to a numerical value (the soft heap limit in Kb) and returns it.
sl@0
   355
TInt TSqlSrvConfig::GetSoftHeapLimitL(const TDesC8& aParamValue)
sl@0
   356
	{
sl@0
   357
	TLex8 lex(aParamValue);
sl@0
   358
	TInt softHeapLimitKb = TSqlSrvConfigParams::KConfigPrmValueNotSet;
sl@0
   359
	TInt err = lex.Val(softHeapLimitKb);
sl@0
   360
	if(err != KErrNone || softHeapLimitKb < 0 || 
sl@0
   361
	   (softHeapLimitKb < TSqlSrvConfigParams::KMinSoftHeapLimitKb || softHeapLimitKb > TSqlSrvConfigParams::KMaxSoftHeapLimitKb))
sl@0
   362
		{					
sl@0
   363
		__SQLLEAVE2(KErrArgument);
sl@0
   364
		}
sl@0
   365
	return softHeapLimitKb;
sl@0
   366
	}
sl@0
   367
	
sl@0
   368
//The function converts aParamValue to a numerical value (the database compaction mode) and returns it.
sl@0
   369
TSqlCompactionMode TSqlSrvConfig::GetCompactionModeL(const TDesC8& aParamValue)
sl@0
   370
	{
sl@0
   371
	TSqlCompactionMode compactionMode = ESqlCompactionNotSet;
sl@0
   372
	if(aParamValue.CompareF(KManual) == 0)
sl@0
   373
		{
sl@0
   374
		compactionMode = ESqlCompactionManual;
sl@0
   375
		}
sl@0
   376
	else if(aParamValue.CompareF(KBackground) == 0)
sl@0
   377
		{
sl@0
   378
		compactionMode = ESqlCompactionBackground;
sl@0
   379
		}
sl@0
   380
	else if(aParamValue.CompareF(KAuto) == 0 || aParamValue.CompareF(KSynchronous) == 0)
sl@0
   381
		{
sl@0
   382
		compactionMode = ESqlCompactionAuto;
sl@0
   383
		}
sl@0
   384
	//else
sl@0
   385
	//	{
sl@0
   386
	//	Invalid compaction mode
sl@0
   387
	//	}
sl@0
   388
	return compactionMode;
sl@0
   389
	}
sl@0
   390
sl@0
   391
//The function converts aParamValue to a numerical value (the free page threshold in pages) and returns it.
sl@0
   392
TInt TSqlSrvConfig::GetFreePageThresholdL(const TDesC8& aParamValue)
sl@0
   393
	{
sl@0
   394
	TLex8 lex(aParamValue);
sl@0
   395
	TInt freePageThreshold = 0;
sl@0
   396
	TInt err = lex.Val(freePageThreshold);
sl@0
   397
	if(err != KErrNone || freePageThreshold < 0)
sl@0
   398
		{					
sl@0
   399
		__SQLLEAVE2(KErrArgument);
sl@0
   400
		}
sl@0
   401
	return freePageThreshold;
sl@0
   402
	}
sl@0
   403
	
sl@0
   404
sl@0
   405
//The function searches aStr for leading and trailing whitespace 
sl@0
   406
//characters, then creates and returns TPtrC object which points to the 
sl@0
   407
//aStr content without leading and trailing whitespace characters.
sl@0
   408
TPtrC8 TSqlSrvConfig::TrimAndConstructPtr(const TUint8* aStr, TInt aLength)
sl@0
   409
	{
sl@0
   410
	__ASSERT_DEBUG(aStr != NULL, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
   411
	__ASSERT_DEBUG(aLength >= 0, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
   412
	//Trim left
sl@0
   413
	for(;aLength>0;--aLength,++aStr)
sl@0
   414
		{
sl@0
   415
		if(!TChar(*aStr).IsSpace())
sl@0
   416
			{
sl@0
   417
			break;
sl@0
   418
			}
sl@0
   419
		}
sl@0
   420
	//Trim right
sl@0
   421
	for(const TUint8* p=aStr+aLength-1;aLength>0;--aLength,--p)
sl@0
   422
		{
sl@0
   423
		if(!TChar(*p).IsSpace())
sl@0
   424
			{
sl@0
   425
			break;
sl@0
   426
			}
sl@0
   427
		}
sl@0
   428
	return TPtrC8(aStr, aLength);
sl@0
   429
	}
sl@0
   430
sl@0
   431
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   432
	
sl@0
   433
CDbConfigFiles* CDbConfigFiles::NewL(const CDir& aDirEntries)
sl@0
   434
	{
sl@0
   435
	CDbConfigFiles* self = new(ELeave) CDbConfigFiles();
sl@0
   436
	CleanupStack::PushL(self);
sl@0
   437
	self->ConstructL(aDirEntries);	
sl@0
   438
	CleanupStack::Pop();
sl@0
   439
	return self;
sl@0
   440
	}
sl@0
   441
sl@0
   442
CDbConfigFiles::CDbConfigFiles()
sl@0
   443
	{
sl@0
   444
	}
sl@0
   445
sl@0
   446
void CDbConfigFiles::ConstructL(const CDir& aDirEntries)
sl@0
   447
	{	
sl@0
   448
	StoreFileNamesL(aDirEntries);
sl@0
   449
	}
sl@0
   450
	
sl@0
   451
CDbConfigFiles::~CDbConfigFiles()
sl@0
   452
	{
sl@0
   453
	iConfigFileNames.ResetAndDestroy(); 
sl@0
   454
	}
sl@0
   455
	
sl@0
   456
//Stores the names of the given database configuration files.
sl@0
   457
//These files were found in the server's private data cage on 
sl@0
   458
//the Z: drive and begin with the prefix 'cfg'
sl@0
   459
void CDbConfigFiles::StoreFileNamesL(const CDir& aDirEntries)
sl@0
   460
	{
sl@0
   461
	//Store the file names in reverse alphabetical order so that
sl@0
   462
	//in FindConfigFile() if there is more than one version of the same
sl@0
   463
	//config file (which there shouldn't be) then the highest version
sl@0
   464
	//will be returned
sl@0
   465
	for(TInt i = aDirEntries.Count() - 1; i >= 0; --i)
sl@0
   466
		{
sl@0
   467
		const TEntry& entry = aDirEntries[i];
sl@0
   468
		if(!entry.IsDir())
sl@0
   469
			{
sl@0
   470
			HBufC* filename = entry.iName.AllocLC();
sl@0
   471
			iConfigFileNames.AppendL(filename);
sl@0
   472
			CleanupStack::Pop(); // filename
sl@0
   473
			}
sl@0
   474
		}
sl@0
   475
	}
sl@0
   476
	
sl@0
   477
//Finds the configuration file corresponding to the given database, if one exists.
sl@0
   478
//The database filename including the extension is passed as a parameter - for example,
sl@0
   479
//[12345678]a.db. Note that if more than one version of a configuration file exists 
sl@0
   480
//for the given database (which shouldn't happen) - for example, cfg[12345678]a.db.01 
sl@0
   481
//and cfg[12345678]a.db.02 - then the highest version will be returned 
sl@0
   482
HBufC* CDbConfigFiles::FindConfigFile(const TDesC& aDbFilename) const
sl@0
   483
	{	
sl@0
   484
	TInt count = iConfigFileNames.Count();
sl@0
   485
	for(TInt i = 0; i < count; ++i)
sl@0
   486
		{
sl@0
   487
		TInt offset = iConfigFileNames[i]->Des().FindF(aDbFilename);
sl@0
   488
		if(KErrNotFound != offset)
sl@0
   489
			{
sl@0
   490
			return iConfigFileNames[i];
sl@0
   491
			}
sl@0
   492
		}
sl@0
   493
	return NULL;
sl@0
   494
	}