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 #ifndef __SQLSRVCONFIG_H__
17 #define __SQLSRVCONFIG_H__
21 #include "SqlAssert.h"
24 //Forward declarations
28 TSqlSrvConfigParams structure represents a set of configurable SQLITE parameters.
31 - iCacheSize - page cache size in pages;
32 - iPageSize - page size in bytes;
33 - iDbEncoding - database encoding - 16-bit or 8-bit;
34 - iSoftHeapLimitKb - soft heap limit in Kb;
35 - iCompactMode - manual, background, automatic;
36 - iFreePageThresholdKb - free page threshold (in Kb) is used by the background compaction framework;
39 There is only one way a valid TSqlSrvConfigParams object to be created - using TSqlSrvConfig::GetConfigParamsL().
40 GetConfigParamsL() uses an algorithm, described in TSqlSrvConfig class' comments, to decide which parameter value,
41 shall be used: build time, config file or the client defined one.
44 @see TSqlSrvConfig::GetConfigParamsL()
47 NONSHARABLE_STRUCT(TSqlSrvConfigParams)
49 enum {KConfigPrmValueNotSet = -1};//iCacheSize, iPageSize, iSoftHeapLimitKb are initialized by default with KConfigPrmValueNotSet
50 enum TDbEncoding {EEncNotSet, EEncUtf8, EEncUtf16};//Database encoding: the default value for iDbEncoding is EEncNotSet
54 KDefaultSoftHeapLimitKb = 1024,
56 KDefaultSoftHeapLimitKb = 8192,
59 KMinSoftHeapLimitKb = 8,
61 KMinSoftHeapLimitKb = 512,
63 KMaxSoftHeapLimitKb = KMaxTInt / 1024
66 TSqlSrvConfigParams();
70 TDbEncoding iDbEncoding;
71 TInt iSoftHeapLimitKb;
72 TSqlCompactionMode iCompactionMode;
73 TInt iFreePageThresholdKb;
77 TSqlSrvConfig class is used for:
79 - keeping the SQL server configuration file parameter values;
80 - producing a TSqlSrvConfigParams object with correct SQLITE parameter values when requested (TSqlSrvConfig::GetConfigParamsL());
83 If SQL server config file exists at the moment of the SQL server startup, the SQL server will keep
84 a copy of the config file parameter values in a TSqlSrvConfig object.
86 The SQL server will use the following rules, which config parameter should be used:
88 ----------------------------------------------------------------------------------------------
89 Server config file parameter | Client config string parameter | What parameter is used
90 ----------------------------------------------------------------------------------------------
91 .No..........................|.No.............................|.Build-time config parameter
92 .No..........................|.Yes............................|.Client config string parameter
93 .Yes.........................|.No.............................|.Server config file parameter
94 .Yes.........................|.Yes............................|.Client config string parameter
95 ----------------------------------------------------------------------------------------------
98 TSqlSrvConfig::InitL() should be used once for loading the config parameter values from the SQL server comfiguration file.
100 TSqlSrvConfig::GetConfigParamsL() can be used for retrieving correctly initialized TSqlSrvConfigParams object.
101 The rules described in the table above will be used for producing correct set of config parameter values in
102 the created TSqlSrvConfigParams object.
104 There are exceptions from the rules and these are:
105 - the "soft heap limit" parameter, which cannot be set using a configuration string,
106 it is a config file only parameter;
107 - the "free page threshold" parameter, which cannot be set using a configuration string,
108 it is a config file only parameter;
110 The configuration string format is: "PARAM1=VALUE1;PARAM2=VALUE2;...."
112 @see TSqlSrvConfigParams
115 NONSHARABLE_CLASS(TSqlSrvConfig)
118 void InitL(RFs& aFs, const TDesC& aFileName);
119 void GetConfigParamsL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams) const;
122 static void GetConfigStringFromFileL(RFs& aFs, const TDesC& aFileName, TDes8& aConfigStr);
123 static void ExtractConfigParamsFromStringL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams);
124 static TBool ExtractParamValuePairL(TPtrC8& aConfigStr, TPtrC8& aParamName, TPtrC8& aParamValue);
125 static void ExtractParamValueL(const TDesC8& aParamName, const TDesC8& aParamValue, TSqlSrvConfigParams& aConfigParams);
126 static TInt GetCacheSizeL(const TDesC8& aParamValue);
127 static TInt GetPageSizeL(const TDesC8& aParamValue);
128 static TSqlSrvConfigParams::TDbEncoding GetEncoding(const TDesC8& aParamValue);
129 static TInt GetSoftHeapLimitL(const TDesC8& aParamValue);
130 static TSqlCompactionMode GetCompactionModeL(const TDesC8& aParamValue);
131 static TPtrC8 TrimAndConstructPtr(const TUint8* aStr, TInt aLength);
132 static TInt GetFreePageThresholdL(const TDesC8& aParamValue);
135 TSqlSrvConfigParams iConfigFileParams;
140 CDbConfigFiles class is used to store the name of each database configuration
141 file that exists on the device. Database configuration files are currently
142 supported only for shared, secure databases and the name of a configuration
143 file is the name of the database itself prefixed with the string ‘cfg’ and
144 suffixed with the extension ‘.N’, where N is the version of the configuration
145 file. For example, for the database [12345678]a.db a valid configuration
146 filename is cfg[12345678]a.db.01. All database configuration files must
147 be located in the SQL Server’s private data cage on the Z: drive -
148 namely, Z:\private\10281E17\.
152 NONSHARABLE_CLASS(CDbConfigFiles) : public CBase
155 static CDbConfigFiles* NewL(const CDir& aDirEntries);
157 HBufC* FindConfigFile(const TDesC& aDbFilename) const;
161 void ConstructL(const CDir& aDirEntries);
162 void StoreFileNamesL(const CDir& aDirEntries);
165 RPointerArray<HBufC> iConfigFileNames;
168 #endif//__SQLSRVCONFIG_H__