os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvConfig.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __SQLSRVCONFIG_H__
    17 #define __SQLSRVCONFIG_H__
    18 
    19 #include <e32std.h>
    20 #include <f32file.h> 
    21 #include "SqlAssert.h"
    22 #include "SqlUtil.h"
    23 
    24 //Forward declarations
    25 class RFs;
    26 
    27 /**
    28 TSqlSrvConfigParams structure represents a set of configurable SQLITE parameters.
    29 These are:
    30 @code
    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;
    37 @endcode
    38 
    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.
    42 
    43 @see TSqlSrvConfig
    44 @see TSqlSrvConfig::GetConfigParamsL()
    45 @internalComponent
    46 */
    47 NONSHARABLE_STRUCT(TSqlSrvConfigParams)
    48 	{
    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
    51 	enum 
    52 		{
    53 #ifdef __WINSCW__
    54 		KDefaultSoftHeapLimitKb = 1024,
    55 #else
    56 		KDefaultSoftHeapLimitKb = 8192,
    57 #endif	
    58 #ifdef SYSLIBS_TEST	
    59 		KMinSoftHeapLimitKb = 8, 
    60 #else
    61 		KMinSoftHeapLimitKb = 512,
    62 #endif
    63 		KMaxSoftHeapLimitKb = KMaxTInt / 1024
    64 		};
    65 	
    66 	TSqlSrvConfigParams();	
    67 		
    68 	TInt				iCacheSize;
    69 	TInt				iPageSize;
    70 	TDbEncoding			iDbEncoding;
    71 	TInt				iSoftHeapLimitKb;
    72 	TSqlCompactionMode	iCompactionMode;
    73 	TInt				iFreePageThresholdKb;
    74 	};
    75 	
    76 /**
    77 TSqlSrvConfig class is used for:
    78 @code 
    79  - keeping the SQL server configuration file parameter values;
    80  - producing a TSqlSrvConfigParams object with correct SQLITE parameter values when requested (TSqlSrvConfig::GetConfigParamsL());
    81 @endcode
    82 
    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.
    85 
    86 The SQL server will use the following rules, which config parameter should be used:
    87 @code
    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 ----------------------------------------------------------------------------------------------
    96 @endcode
    97 
    98 TSqlSrvConfig::InitL() should be used once for loading the config parameter values from the SQL server comfiguration file.
    99 
   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.
   103 
   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;
   109 
   110 The configuration string format is: "PARAM1=VALUE1;PARAM2=VALUE2;...."
   111 
   112 @see TSqlSrvConfigParams
   113 @internalComponent
   114 */
   115 NONSHARABLE_CLASS(TSqlSrvConfig)
   116 	{	
   117 public:
   118 	void InitL(RFs& aFs, const TDesC& aFileName);
   119 	void GetConfigParamsL(const TDesC8& aConfigStr, TSqlSrvConfigParams& aConfigParams) const;
   120 	
   121 private:
   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);
   133 	
   134 private:
   135 	TSqlSrvConfigParams	iConfigFileParams;
   136 		
   137 	};
   138 
   139 /**
   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\. 
   149 
   150 @internalComponent
   151 */
   152 NONSHARABLE_CLASS(CDbConfigFiles) : public CBase
   153 {
   154 public:		
   155    	static CDbConfigFiles* NewL(const CDir& aDirEntries);
   156 	~CDbConfigFiles();
   157 	HBufC* FindConfigFile(const TDesC& aDbFilename) const;
   158 	
   159 private:
   160 	CDbConfigFiles();
   161 	void ConstructL(const CDir& aDirEntries);
   162 	void StoreFileNamesL(const CDir& aDirEntries);
   163 		
   164 private:
   165 	RPointerArray<HBufC> iConfigFileNames;
   166 };
   167 
   168 #endif//__SQLSRVCONFIG_H__