os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqliteperf.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __T_SQLITEPERF_H__
sl@0
    21
#define __T_SQLITEPERF_H__
sl@0
    22
sl@0
    23
typedef enum 
sl@0
    24
	{
sl@0
    25
	EPerfTestSqlMode,				//Symbian SQL performance tests
sl@0
    26
	
sl@0
    27
	EPerfTestSqliteSqlMode,			//SQLite C API performance tests. The SQLite configuration matches the
sl@0
    28
									//SQLite configuration used by the server build
sl@0
    29
									
sl@0
    30
	EPerfTestSqliteDefaultMode,		//SQLite C API performance tests. Default SQLite configuration
sl@0
    31
	//
sl@0
    32
	EPerfTestModeCnt
sl@0
    33
	} TPerfTestMode;
sl@0
    34
	
sl@0
    35
typedef enum 
sl@0
    36
	{
sl@0
    37
	EPerfTestMultiInsert,
sl@0
    38
	EPerfTestMultiUpdate,
sl@0
    39
	EPerfTestMultiDelete,
sl@0
    40
	EPerfTestMultiSelect,
sl@0
    41
	EPerfTestSingleInsert,
sl@0
    42
	EPerfTestSingleUpdate,
sl@0
    43
	EPerfTestSingleDelete,
sl@0
    44
	EPerfTestSingleSelect,
sl@0
    45
	//
sl@0
    46
	EPerfTestTypeCnt
sl@0
    47
	} TPerfTestType;
sl@0
    48
sl@0
    49
#ifdef __cplusplus
sl@0
    50
extern "C" {
sl@0
    51
#endif
sl@0
    52
	void SqliteInitialize(TPerfTestMode aMode);
sl@0
    53
	void SqliteFinalize(TPerfTestMode aMode);
sl@0
    54
	void SqliteMultiInsertTest(TPerfTestMode aPerfTestMode, const char aInsertSql[], int aInsertRecCnt);
sl@0
    55
	void SqliteMultiUpdateTest(TPerfTestMode aPerfTestMode, const char aUpdateSql[], int aUpdateRecIds[], int aUpdateRecCnt);
sl@0
    56
	void SqliteMultiDeleteTest(TPerfTestMode aPerfTestMode, const char aDeleteSql[], int aDeleteRecIds[], int aDeleteRecCnt);
sl@0
    57
	void SqliteMultiSelectTest(TPerfTestMode aPerfTestMode, const char aSelectSql[], int aSelectRecIds[], int aSelectRecCnt);
sl@0
    58
	void SqliteSingleInsertTest(TPerfTestMode aPerfTestMode, const char aSingleInsertSql[], TInt aInsertRecId);
sl@0
    59
	void SqliteSingleUpdateTest(TPerfTestMode aPerfTestMode, const char aSingleUpdateSql[], TInt aUpdateRecId);
sl@0
    60
	void SqliteSingleDeleteTest(TPerfTestMode aPerfTestMode, const char aSingleUpdateSql[], TInt aUpdateRecId);
sl@0
    61
	void SqliteSingleSelectTest(TPerfTestMode aPerfTestMode, const char aSingleSelectSql[], TInt aSelectRecId);
sl@0
    62
	void TestAbort(TInt aLine);
sl@0
    63
	const char* TestDbName(void);
sl@0
    64
	unsigned int FastCounterValue(void);
sl@0
    65
	void StorePerfTestResult(TPerfTestMode aMode, TPerfTestType aType, unsigned int aResult);
sl@0
    66
	void PrintS(const char* aFmt, const char* aMsg);
sl@0
    67
	void PrintI(const char* aFmt, int a1);
sl@0
    68
	void PrintIII(const char* aFmt, int a1, int a2, int a3);
sl@0
    69
#ifdef __cplusplus
sl@0
    70
}
sl@0
    71
#endif
sl@0
    72
sl@0
    73
#endif /* __T_SQLITEPERF_H__ */