Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
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"
23 #include "SqlTraceDef.h"
26 Initializes TSqlSrvConfigParams data members with their default values.
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)
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,
44 - the soft heap limit, which default value is TSqlSrvConfigParams::KDefaultSoftHeapLimit;
45 - the free pages threshold, which default value is KSqlCompactFreePageThreshold;
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.
52 void TSqlSrvConfig::InitL(RFs& aFs, const TDesC& aFileName)
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))
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);
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)
69 iConfigFileParams.iSoftHeapLimitKb = TSqlSrvConfigParams::KDefaultSoftHeapLimitKb;
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)
74 iConfigFileParams.iFreePageThresholdKb = KSqlCompactFreePageThresholdKb;
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));
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));
82 SQL_TRACE_INTERNALS(OstTraceExt2(TRACE_INTERNALS, TSQLSRVCONFIGFILE_INITL_EXIT3, "Exit;0;TSqlSrvConfig::InitL;iCompactionMode=%d;iFreePageThresholdKb=%d", iConfigFileParams.iCompactionMode, iConfigFileParams.iFreePageThresholdKb));
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.
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.
99 void TSqlSrvConfig::GetConfigParamsL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams) const
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);
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)
117 aConfigParams.iPageSize = iConfigFileParams.iPageSize;
119 if(aConfigParams.iDbEncoding == TSqlSrvConfigParams::EEncNotSet)
121 aConfigParams.iDbEncoding = iConfigFileParams.iDbEncoding;
123 if(aConfigParams.iCompactionMode == ESqlCompactionNotSet)
125 aConfigParams.iCompactionMode = iConfigFileParams.iCompactionMode;
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));
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));
149 SQL_TRACE_INTERNALS(OstTraceExt2(TRACE_INTERNALS, TSQLSRVCONFIGFILE_GETCONFIGPARAMSL_EXIT3, "Exit;0;TSqlSrvConfig::GetConfigParamsL;compactionMode=%d;freePageThresholdKb=%d", aConfigParams.iCompactionMode, aConfigParams.iFreePageThresholdKb));
152 //The function opeans the aFileName config file and reads the config string, storring it in aConfigStr argument.
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)
160 __ASSERT_DEBUG(aConfigStr.MaxLength() >= KSqlSrvMaxConfigStrLen, __SQLPANIC2(ESqlPanicBadArgument));
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;
169 //Read the configuration file line by line until get the first "non-comment" line.
170 while((err = cfgFileReader.Read(buf)) == KErrNone)
173 if(buf.Length() == 0 || buf.Locate('#') == 0) //'#' means - this line is a comment
177 cfgLineFound = ETrue;
180 CleanupStack::PopAndDestroy(&cfgFile);
182 {//The "read configuration file" operation has failed with "err" (if err != KErrNone)
183 __SQLLEAVE_IF_ERROR2(err);
186 {//End of config file reached - no valid configuration line found.
187 __SQLLEAVE2(KErrEof);
189 __ASSERT_DEBUG(err == KErrNone || err == KErrEof, __SQLPANIC2(ESqlPanicInternalError));
190 aConfigStr.Copy(buf);
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)
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;)
203 TPtrC8 prmName(KNullDesC8);
204 TPtrC8 prmValue(KNullDesC8);
205 if(TSqlSrvConfig::ExtractParamValuePairL(ptr, prmName, prmValue))
207 TSqlSrvConfig::ExtractParamValueL(prmName, prmValue, aConfigParams);
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));
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)
234 const TChar KSemiColon(';');
235 const TChar KAssignment('=');
236 TInt pos = aConfigStr.Locate(KSemiColon);
237 TPtrC8 prmText(KNullDesC8);
240 pos = aConfigStr.Length() - 1;
241 prmText.Set(TSqlSrvConfig::TrimAndConstructPtr(aConfigStr.Ptr(), aConfigStr.Length()));
245 prmText.Set(TSqlSrvConfig::TrimAndConstructPtr(aConfigStr.Ptr(), pos));
247 //Set aConfigStr to the "point" right after the last found ';'
248 if(pos == aConfigStr.Length() - 1)
250 aConfigStr.Set(NULL, 0);
254 aConfigStr.Set(aConfigStr.Ptr() + pos + 1, aConfigStr.Length() - (pos + 1));
256 if(prmText.Length() == 0)
260 //Find the parameter name and parameter value
261 pos = prmText.Locate(KAssignment);
262 if(pos < 0 || pos >= (prmText.Length() - 1))
264 __SQLLEAVE2(KErrArgument);
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)));
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)
277 if(aParamName.CompareF(KCacheSize) == 0)
279 aConfigParams.iCacheSize = TSqlSrvConfig::GetCacheSizeL(aParamValue);
281 else if(aParamName.CompareF(KPageSize) == 0)
283 aConfigParams.iPageSize = TSqlSrvConfig::GetPageSizeL(aParamValue);
285 else if(aParamName.CompareF(KEncoding) == 0)
287 aConfigParams.iDbEncoding = TSqlSrvConfig::GetEncoding(aParamValue);
289 else if(aParamName.CompareF(KSoftHeapLimitKb) == 0)
291 aConfigParams.iSoftHeapLimitKb = TSqlSrvConfig::GetSoftHeapLimitL(aParamValue);
293 else if(aParamName.CompareF(KCompactionMode) == 0)
295 aConfigParams.iCompactionMode = TSqlSrvConfig::GetCompactionModeL(aParamValue);
297 else if(aParamName.CompareF(KFreePageThresholdKb) == 0)
299 aConfigParams.iFreePageThresholdKb = TSqlSrvConfig::GetFreePageThresholdL(aParamValue);
303 // Unrecognized parameter/value pair - no problem, skip it.
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)
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);
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)
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);
335 //The function converts aParamValue to a numerical value (the database encoding) and returns it.
336 TSqlSrvConfigParams::TDbEncoding TSqlSrvConfig::GetEncoding(const TDesC8& aParamValue)
338 TSqlSrvConfigParams::TDbEncoding encoding = TSqlSrvConfigParams::EEncNotSet;
339 if(aParamValue.CompareF(KUTF8) == 0 || aParamValue.CompareF(KUTF8Q) == 0)
341 encoding = TSqlSrvConfigParams::EEncUtf8;
343 else if(aParamValue.CompareF(KUTF16) == 0 || aParamValue.CompareF(KUTF16Q) == 0)
345 encoding = TSqlSrvConfigParams::EEncUtf16;
349 // Invalid encoding - bypass it in order to be compatible with the previous implementation
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)
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))
363 __SQLLEAVE2(KErrArgument);
365 return softHeapLimitKb;
368 //The function converts aParamValue to a numerical value (the database compaction mode) and returns it.
369 TSqlCompactionMode TSqlSrvConfig::GetCompactionModeL(const TDesC8& aParamValue)
371 TSqlCompactionMode compactionMode = ESqlCompactionNotSet;
372 if(aParamValue.CompareF(KManual) == 0)
374 compactionMode = ESqlCompactionManual;
376 else if(aParamValue.CompareF(KBackground) == 0)
378 compactionMode = ESqlCompactionBackground;
380 else if(aParamValue.CompareF(KAuto) == 0 || aParamValue.CompareF(KSynchronous) == 0)
382 compactionMode = ESqlCompactionAuto;
386 // Invalid compaction mode
388 return compactionMode;
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)
394 TLex8 lex(aParamValue);
395 TInt freePageThreshold = 0;
396 TInt err = lex.Val(freePageThreshold);
397 if(err != KErrNone || freePageThreshold < 0)
399 __SQLLEAVE2(KErrArgument);
401 return freePageThreshold;
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)
410 __ASSERT_DEBUG(aStr != NULL, __SQLPANIC2(ESqlPanicBadArgument));
411 __ASSERT_DEBUG(aLength >= 0, __SQLPANIC2(ESqlPanicBadArgument));
413 for(;aLength>0;--aLength,++aStr)
415 if(!TChar(*aStr).IsSpace())
421 for(const TUint8* p=aStr+aLength-1;aLength>0;--aLength,--p)
423 if(!TChar(*p).IsSpace())
428 return TPtrC8(aStr, aLength);
431 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
433 CDbConfigFiles* CDbConfigFiles::NewL(const CDir& aDirEntries)
435 CDbConfigFiles* self = new(ELeave) CDbConfigFiles();
436 CleanupStack::PushL(self);
437 self->ConstructL(aDirEntries);
442 CDbConfigFiles::CDbConfigFiles()
446 void CDbConfigFiles::ConstructL(const CDir& aDirEntries)
448 StoreFileNamesL(aDirEntries);
451 CDbConfigFiles::~CDbConfigFiles()
453 iConfigFileNames.ResetAndDestroy();
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)
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
465 for(TInt i = aDirEntries.Count() - 1; i >= 0; --i)
467 const TEntry& entry = aDirEntries[i];
470 HBufC* filename = entry.iName.AllocLC();
471 iConfigFileNames.AppendL(filename);
472 CleanupStack::Pop(); // filename
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
484 TInt count = iConfigFileNames.Count();
485 for(TInt i = 0; i < count; ++i)
487 TInt offset = iConfigFileNames[i]->Des().FindF(aDbFilename);
488 if(KErrNotFound != offset)
490 return iConfigFileNames[i];