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