os/persistentdata/persistentstorage/sql/TEST/t_sqlcmdlineutil.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sql/TEST/t_sqlcmdlineutil.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,66 @@
     1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef T_SQLCMDLINEUTIL_H
    1.20 +#define T_SQLCMDLINEUTIL_H
    1.21 +
    1.22 +#include <f32file.h>
    1.23 +
    1.24 +class RTest;
    1.25 +
    1.26 +struct TCmdLineParams
    1.27 +	{
    1.28 +	enum TDbEncoding
    1.29 +		{
    1.30 +		EDbUtf8,
    1.31 +		EDbUtf16
    1.32 +		};
    1.33 +	
    1.34 +	inline TCmdLineParams(TDbEncoding aDefaultEncoding = EDbUtf16,
    1.35 +						  TInt aDefaultPageSize = 1024,
    1.36 +						  TInt aDefaultCacheSize = 1000) :	
    1.37 +		iDefaultEncoding(aDefaultEncoding),
    1.38 +	    iDefaultPageSize(aDefaultPageSize),
    1.39 +	    iDefaultCacheSize(aDefaultCacheSize)
    1.40 +		{
    1.41 +		SetDefaults();
    1.42 +		}
    1.43 +	
    1.44 +	inline void SetDefaults()
    1.45 +		{
    1.46 +		iDbEncoding = iDefaultEncoding;
    1.47 +		iPageSize = iDefaultPageSize;
    1.48 +		iCacheSize = iDefaultCacheSize;
    1.49 +		iDriveName.Copy(_L("c:"));
    1.50 +		iSoftHeapLimitKb = 0;
    1.51 +		}
    1.52 +	
    1.53 +	const TDbEncoding	iDefaultEncoding;
    1.54 +	const TInt			iDefaultPageSize;
    1.55 +	const TInt			iDefaultCacheSize;
    1.56 +	
    1.57 +	TDbEncoding	iDbEncoding;
    1.58 +	TInt		iPageSize;
    1.59 +	TInt 		iCacheSize;
    1.60 +	TDriveName	iDriveName;
    1.61 +	TInt		iSoftHeapLimitKb;
    1.62 +	};
    1.63 +
    1.64 +void GetCmdLineParamsAndSqlConfigString(RTest& aTest, const TDesC& aTestName, TCmdLineParams& aCmdLineParams, TDes8& aConfigStr);
    1.65 +void PrepareDbName(const TDesC& aDeafultDbName, const TDriveName& aDriveName, TDes& aDbName);
    1.66 +void SetSoftHeapLimit(TInt aSoftHeapLimit);
    1.67 +void ResetSoftHeapLimit();
    1.68 +
    1.69 +#endif//T_SQLCMDLINEUTIL_H