os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqliteperfc.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include <stdio.h>
sl@0
    21
#include <stdlib.h>
sl@0
    22
#include <string.h>
sl@0
    23
#include <wchar.h>
sl@0
    24
#include <errno.h>
sl@0
    25
#include <sys/stat.h>
sl@0
    26
#include <unistd.h>
sl@0
    27
#include <sqlite3.h>
sl@0
    28
#include "t_sqliteperf.h"
sl@0
    29
sl@0
    30
static sqlite3* TheDb2 = 0;
sl@0
    31
sl@0
    32
static char TheSqlBuf2[2000];
sl@0
    33
sl@0
    34
#define UNUSED_VAR(a) (a) = (a)
sl@0
    35
sl@0
    36
/* ///////////////////////////////////////////////////////////////////////////////////// */
sl@0
    37
sl@0
    38
static void TestCleanup()
sl@0
    39
	{
sl@0
    40
	if(TheDb2)
sl@0
    41
		{
sl@0
    42
		sqlite3_close(TheDb2);
sl@0
    43
		TheDb2 = 0;
sl@0
    44
		}
sl@0
    45
	(void)remove(TestDbName());
sl@0
    46
	}
sl@0
    47
sl@0
    48
/* ///////////////////////////////////////////////////////////////////////////////////// */
sl@0
    49
/* Test macros and functions */
sl@0
    50
sl@0
    51
static void Check1(int aValue, int aLine)
sl@0
    52
	{
sl@0
    53
	if(!aValue)
sl@0
    54
		{
sl@0
    55
		if(TheDb2)
sl@0
    56
			{
sl@0
    57
			const char* errmsg = sqlite3_errmsg(TheDb2);
sl@0
    58
			PrintS("*** SQLITE error message: %s\r\n", errmsg);
sl@0
    59
			}
sl@0
    60
		TestCleanup();
sl@0
    61
		PrintI("*** Test check failed! Line=%d\r\n", aLine);
sl@0
    62
		TestAbort(aLine);
sl@0
    63
		}
sl@0
    64
	}
sl@0
    65
static void Check2(int aValue, int aExpected, int aLine)
sl@0
    66
	{
sl@0
    67
	if(aValue != aExpected)
sl@0
    68
		{
sl@0
    69
		if(TheDb2)
sl@0
    70
			{
sl@0
    71
			const char* errmsg = sqlite3_errmsg(TheDb2);
sl@0
    72
			PrintS("*** SQLITE error message: %s\r\n", errmsg);
sl@0
    73
			}
sl@0
    74
		TestCleanup();
sl@0
    75
		PrintIII("*** Test check failed! Line=%d. Expected error: %d, got: %d\r\n", aLine, aExpected, aValue);
sl@0
    76
		TestAbort(aLine);
sl@0
    77
		}
sl@0
    78
	}
sl@0
    79
#define TEST(arg) Check1((arg), __LINE__)
sl@0
    80
#define TEST2(aValue, aExpected) Check2(aValue, aExpected, __LINE__)
sl@0
    81
sl@0
    82
/* ///////////////////////////////////////////////////////////////////////////////////// */
sl@0
    83
sl@0
    84
//"PRAGMA cache_size=1024" and "PRAGMA locking_mode=EXCLUSIVE" statements executed only if 
sl@0
    85
//aPerfTestMode is EPerfTestSqliteMode (to match the Symbian SQL build time settings of SQLite)
sl@0
    86
static void ExecSqliteConfig(TPerfTestMode aPerfTestMode)
sl@0
    87
	{
sl@0
    88
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
    89
	if(aPerfTestMode == EPerfTestSqliteSqlMode)
sl@0
    90
		{
sl@0
    91
		int err;
sl@0
    92
		err = sqlite3_exec(TheDb2, "PRAGMA cache_size=1024", 0, 0, 0);
sl@0
    93
		TEST2(err, SQLITE_OK);
sl@0
    94
		err = sqlite3_exec(TheDb2, "PRAGMA locking_mode=EXCLUSIVE", 0, 0, 0);
sl@0
    95
		TEST2(err, SQLITE_OK);
sl@0
    96
		err = sqlite3_exec(TheDb2, "PRAGMA auto_vacuum=incremental", 0, 0, 0);
sl@0
    97
		TEST2(err, SQLITE_OK);
sl@0
    98
		err = sqlite3_exec(TheDb2, "PRAGMA journal_mode=PERSIST", 0, 0, 0);
sl@0
    99
		TEST2(err, SQLITE_OK);
sl@0
   100
		err = sqlite3_exec(TheDb2, "PRAGMA journal_size_limit=2048000", 0, 0, 0);
sl@0
   101
		TEST2(err, SQLITE_OK);
sl@0
   102
		}
sl@0
   103
	}
sl@0
   104
sl@0
   105
/* ///////////////////////////////////////////////////////////////////////////////////// */
sl@0
   106
sl@0
   107
/**
sl@0
   108
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4018
sl@0
   109
@SYMTestCaseDesc		SQLite library multi-insert performance test.
sl@0
   110
						The test inserts 1000 records in a single transaction and stores 
sl@0
   111
						the execution time for later use (comparison and printing).
sl@0
   112
						The results of this test case will be compared against the results of
sl@0
   113
						the SYSLIB-SQLITE3-UT-4010 test case - "SQL server multi-insert performance test".
sl@0
   114
@SYMTestPriority		High
sl@0
   115
@SYMTestActions			SQLite library multi-insert performance test.
sl@0
   116
@SYMTestExpectedResults Test must not fail
sl@0
   117
@SYMREQ					REQ8782
sl@0
   118
*/
sl@0
   119
void SqliteMultiInsertTest(TPerfTestMode aPerfTestMode, const char aInsertSql[], int aInsertRecCnt)
sl@0
   120
	{
sl@0
   121
	int err;
sl@0
   122
	int i;
sl@0
   123
	const char* tail = 0;
sl@0
   124
	sqlite3_stmt* stmt = 0;
sl@0
   125
	unsigned int fc;
sl@0
   126
	
sl@0
   127
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   128
	TEST(!TheDb2);
sl@0
   129
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   130
	TEST2(err, SQLITE_OK);
sl@0
   131
	ExecSqliteConfig(aPerfTestMode);
sl@0
   132
sl@0
   133
	err = sqlite3_prepare(TheDb2, aInsertSql, -1, &stmt, &tail);
sl@0
   134
	TEST2(err, SQLITE_OK);
sl@0
   135
	
sl@0
   136
	fc = FastCounterValue();
sl@0
   137
	err = sqlite3_exec(TheDb2, "BEGIN", 0, 0, 0);
sl@0
   138
	TEST2(err, SQLITE_OK);
sl@0
   139
sl@0
   140
	for(i=0;i<aInsertRecCnt;++i)
sl@0
   141
		{
sl@0
   142
		err = sqlite3_bind_int(stmt, 1, i + 1);
sl@0
   143
		TEST2(err, SQLITE_OK);
sl@0
   144
sl@0
   145
		err = sqlite3_step(stmt);
sl@0
   146
		TEST2(err, SQLITE_DONE);
sl@0
   147
		
sl@0
   148
		err = sqlite3_reset(stmt);		
sl@0
   149
		TEST2(err, SQLITE_OK);
sl@0
   150
		}
sl@0
   151
sl@0
   152
	err = sqlite3_exec(TheDb2, "COMMIT", 0, 0, 0);
sl@0
   153
	TEST2(err, SQLITE_OK);
sl@0
   154
	StorePerfTestResult(aPerfTestMode, EPerfTestMultiInsert, FastCounterValue() - fc);
sl@0
   155
sl@0
   156
	sqlite3_finalize(stmt);	
sl@0
   157
	sqlite3_close(TheDb2);
sl@0
   158
	TheDb2 = 0;
sl@0
   159
	}
sl@0
   160
sl@0
   161
static void FormatSqlStmt(char* aSqlBuf, const char aSql[], int aRecIds[], int aRecCnt)
sl@0
   162
	{
sl@0
   163
	int i;
sl@0
   164
	strcpy(aSqlBuf, aSql);
sl@0
   165
	strcat(aSqlBuf, "(");
sl@0
   166
	for(i=0;i<aRecCnt;++i)
sl@0
   167
		{
sl@0
   168
		char tmp[10];
sl@0
   169
		sprintf(tmp, "%d", aRecIds[i]);
sl@0
   170
		strcat(aSqlBuf, tmp);
sl@0
   171
		strcat(aSqlBuf, ",");
sl@0
   172
		}
sl@0
   173
	aSqlBuf[strlen(aSqlBuf) - 1] = ')';
sl@0
   174
	}
sl@0
   175
sl@0
   176
/**
sl@0
   177
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4019
sl@0
   178
@SYMTestCaseDesc		SQLite library multi-update performance test.
sl@0
   179
						The test updates 100 records and stores 
sl@0
   180
						the execution time for later use (comparison and printing).
sl@0
   181
						The IDs of the updated records are exactly the same as the IDs of the updated
sl@0
   182
						records, used by SYSLIB-SQLITE3-UT-4011 test case.
sl@0
   183
						The results of this test case will be compared against the results of
sl@0
   184
						the SYSLIB-SQLITE3-UT-4011 test case - "SQL server multi-update performance test".
sl@0
   185
@SYMTestPriority		High
sl@0
   186
@SYMTestActions			SQLite library multi-update performance test.
sl@0
   187
@SYMTestExpectedResults Test must not fail
sl@0
   188
@SYMREQ					REQ8782
sl@0
   189
*/
sl@0
   190
void SqliteMultiUpdateTest(TPerfTestMode aPerfTestMode, const char aUpdateSql[], int aUpdateRecIds[], int aUpdateRecCnt)
sl@0
   191
	{
sl@0
   192
	int err;
sl@0
   193
	unsigned int fc;
sl@0
   194
	
sl@0
   195
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   196
	TEST(!TheDb2);
sl@0
   197
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   198
	TEST2(err, SQLITE_OK);
sl@0
   199
	ExecSqliteConfig(aPerfTestMode);
sl@0
   200
sl@0
   201
	FormatSqlStmt(TheSqlBuf2, aUpdateSql, aUpdateRecIds, aUpdateRecCnt);
sl@0
   202
sl@0
   203
	fc = FastCounterValue();
sl@0
   204
	err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
sl@0
   205
	StorePerfTestResult(aPerfTestMode, EPerfTestMultiUpdate, FastCounterValue() - fc);
sl@0
   206
	TEST2(err, SQLITE_OK);
sl@0
   207
	
sl@0
   208
	sqlite3_close(TheDb2);
sl@0
   209
	TheDb2 = 0;
sl@0
   210
	}
sl@0
   211
sl@0
   212
/**
sl@0
   213
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4020
sl@0
   214
@SYMTestCaseDesc		SQLite library multi-delete performance test.
sl@0
   215
						The test deletes 100 records and stores 
sl@0
   216
						the execution time for later use (comparison and printing).
sl@0
   217
						The IDs of the deleted records are exactly the same as the IDs of the deleted
sl@0
   218
						records, used by SYSLIB-SQLITE3-UT-4012 test case.
sl@0
   219
						The results of this test case will be compared against the results of
sl@0
   220
						the SYSLIB-SQLITE3-UT-4012 test case - "SQL server multi-delete performance test".
sl@0
   221
@SYMTestPriority		High
sl@0
   222
@SYMTestActions			SQLite library multi-delete performance test.
sl@0
   223
@SYMTestExpectedResults Test must not fail
sl@0
   224
@SYMREQ					REQ8782
sl@0
   225
*/
sl@0
   226
void SqliteMultiDeleteTest(TPerfTestMode aPerfTestMode, const char aDeleteSql[], int aDeleteRecIds[], int aDeleteRecCnt)
sl@0
   227
	{
sl@0
   228
	int err;
sl@0
   229
	unsigned int fc;
sl@0
   230
	
sl@0
   231
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   232
	TEST(!TheDb2);
sl@0
   233
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   234
	TEST2(err, SQLITE_OK);
sl@0
   235
	ExecSqliteConfig(aPerfTestMode);
sl@0
   236
sl@0
   237
	FormatSqlStmt(TheSqlBuf2, aDeleteSql, aDeleteRecIds, aDeleteRecCnt);
sl@0
   238
sl@0
   239
	fc = FastCounterValue();
sl@0
   240
	err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
sl@0
   241
	StorePerfTestResult(aPerfTestMode, EPerfTestMultiDelete, FastCounterValue() - fc);
sl@0
   242
	TEST2(err, SQLITE_OK);
sl@0
   243
	
sl@0
   244
	sqlite3_close(TheDb2);
sl@0
   245
	TheDb2 = 0;
sl@0
   246
	}
sl@0
   247
sl@0
   248
/**
sl@0
   249
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4021
sl@0
   250
@SYMTestCaseDesc		SQLite library multi-select performance test.
sl@0
   251
						The test selects 100 records and stores 
sl@0
   252
						the execution time for later use (comparison and printing).
sl@0
   253
						The IDs of the selected records are exactly the same as the IDs of the selected
sl@0
   254
						records, used by SYSLIB-SQLITE3-UT-4013 test case.
sl@0
   255
						The results of this test case will be compared against the results of
sl@0
   256
						the SYSLIB-SQLITE3-UT-4013 test case - "SQL server multi-select performance test".
sl@0
   257
@SYMTestPriority		High
sl@0
   258
@SYMTestActions			SQLite library multi-select performance test.
sl@0
   259
@SYMTestExpectedResults Test must not fail
sl@0
   260
@SYMREQ					REQ8782
sl@0
   261
*/
sl@0
   262
void SqliteMultiSelectTest(TPerfTestMode aPerfTestMode, const char aSelectSql[], int aSelectRecIds[], int aSelectRecCnt)
sl@0
   263
	{
sl@0
   264
	int err;
sl@0
   265
	const char* tail = 0;
sl@0
   266
	sqlite3_stmt* stmt = 0;
sl@0
   267
	int recCnt = 0;
sl@0
   268
	unsigned int fc;
sl@0
   269
	
sl@0
   270
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   271
	TEST(!TheDb2);
sl@0
   272
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   273
	TEST2(err, SQLITE_OK);
sl@0
   274
	ExecSqliteConfig(aPerfTestMode);
sl@0
   275
sl@0
   276
	FormatSqlStmt(TheSqlBuf2, aSelectSql, aSelectRecIds, aSelectRecCnt);
sl@0
   277
sl@0
   278
	err = sqlite3_prepare(TheDb2, TheSqlBuf2, -1, &stmt, &tail);
sl@0
   279
	TEST2(err, SQLITE_OK);
sl@0
   280
	
sl@0
   281
	fc = FastCounterValue();
sl@0
   282
	while((err = sqlite3_step(stmt)) == SQLITE_ROW)
sl@0
   283
		{
sl@0
   284
		__int64 i64;
sl@0
   285
		double d;
sl@0
   286
		const unsigned short* t;
sl@0
   287
		const unsigned char* b;
sl@0
   288
		
sl@0
   289
		i64 = sqlite3_column_int64(stmt, 0);
sl@0
   290
		UNUSED_VAR(i64);
sl@0
   291
		d = sqlite3_column_double(stmt, 1);
sl@0
   292
		UNUSED_VAR(d);
sl@0
   293
		t = (const unsigned short*)sqlite3_column_text16(stmt, 2);
sl@0
   294
		UNUSED_VAR(t);
sl@0
   295
		b = (const unsigned char*)sqlite3_column_blob(stmt, 3);
sl@0
   296
		UNUSED_VAR(b);
sl@0
   297
		++recCnt;
sl@0
   298
		}
sl@0
   299
	StorePerfTestResult(aPerfTestMode, EPerfTestMultiSelect, FastCounterValue() - fc);
sl@0
   300
	TEST2(err, SQLITE_DONE);
sl@0
   301
	TEST2(recCnt, aSelectRecCnt);
sl@0
   302
sl@0
   303
	sqlite3_finalize(stmt);	
sl@0
   304
	sqlite3_close(TheDb2);
sl@0
   305
	TheDb2 = 0;
sl@0
   306
	}
sl@0
   307
sl@0
   308
/**
sl@0
   309
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4022
sl@0
   310
@SYMTestCaseDesc		SQLite library single-insert performance test.
sl@0
   311
						The test inserts one record and stores 
sl@0
   312
						the execution time for later use (comparison and printing).
sl@0
   313
						The ID of the inserted record is exactly the same as the ID of the inserted
sl@0
   314
						record, used by SYSLIB-SQLITE3-UT-4014 test case.
sl@0
   315
						The results of this test case will be compared against the results of
sl@0
   316
						the SYSLIB-SQLITE3-UT-4014 test case - "SQL server single-insert performance test".
sl@0
   317
@SYMTestPriority		High
sl@0
   318
@SYMTestActions			SQLite library single-insert performance test.
sl@0
   319
@SYMTestExpectedResults Test must not fail
sl@0
   320
@SYMREQ					REQ8782
sl@0
   321
*/
sl@0
   322
void SqliteSingleInsertTest(TPerfTestMode aPerfTestMode, const char aSingleInsertSql[], TInt aInsertRecId)
sl@0
   323
	{
sl@0
   324
	int err;
sl@0
   325
	unsigned int fc;
sl@0
   326
	
sl@0
   327
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   328
	TEST(!TheDb2);
sl@0
   329
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   330
	TEST2(err, SQLITE_OK);
sl@0
   331
	ExecSqliteConfig(aPerfTestMode);
sl@0
   332
sl@0
   333
	sprintf(TheSqlBuf2, aSingleInsertSql, aInsertRecId);
sl@0
   334
	fc = FastCounterValue();
sl@0
   335
	err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
sl@0
   336
	StorePerfTestResult(aPerfTestMode, EPerfTestSingleInsert, FastCounterValue() - fc);
sl@0
   337
	TEST2(err, SQLITE_OK);
sl@0
   338
	
sl@0
   339
	sqlite3_close(TheDb2);
sl@0
   340
	TheDb2 = 0;
sl@0
   341
	}
sl@0
   342
sl@0
   343
/**
sl@0
   344
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4023
sl@0
   345
@SYMTestCaseDesc		SQLite library single-update performance test.
sl@0
   346
						The test updates one record and stores 
sl@0
   347
						the execution time for later use (comparison and printing).
sl@0
   348
						The ID of the updated record is exactly the same as the ID of the updated
sl@0
   349
						record, used by SYSLIB-SQLITE3-UT-4015 test case.
sl@0
   350
						The results of this test case will be compared against the results of
sl@0
   351
						the SYSLIB-SQLITE3-UT-4015 test case - "SQL server single-update performance test".
sl@0
   352
@SYMTestPriority		High
sl@0
   353
@SYMTestActions			SQLite library single-update performance test.
sl@0
   354
@SYMTestExpectedResults Test must not fail
sl@0
   355
@SYMREQ					REQ8782
sl@0
   356
*/
sl@0
   357
void SqliteSingleUpdateTest(TPerfTestMode aPerfTestMode, const char aSingleUpdateSql[], TInt aUpdateRecId)
sl@0
   358
	{
sl@0
   359
	int err;
sl@0
   360
	unsigned int fc;
sl@0
   361
	char tmp[10];
sl@0
   362
	
sl@0
   363
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   364
	TEST(!TheDb2);
sl@0
   365
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   366
	TEST2(err, SQLITE_OK);
sl@0
   367
	ExecSqliteConfig(aPerfTestMode);
sl@0
   368
sl@0
   369
	sprintf(tmp, "%d", aUpdateRecId);
sl@0
   370
	strcpy(TheSqlBuf2, aSingleUpdateSql);
sl@0
   371
	strcat(TheSqlBuf2, tmp);
sl@0
   372
	fc = FastCounterValue();
sl@0
   373
	err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
sl@0
   374
	StorePerfTestResult(aPerfTestMode, EPerfTestSingleUpdate, FastCounterValue() - fc);
sl@0
   375
	TEST2(err, SQLITE_OK);
sl@0
   376
	
sl@0
   377
	sqlite3_close(TheDb2);
sl@0
   378
	TheDb2 = 0;
sl@0
   379
	}
sl@0
   380
sl@0
   381
/**
sl@0
   382
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4024
sl@0
   383
@SYMTestCaseDesc		SQLite library single-delete performance test.
sl@0
   384
						The test deletes one record and stores 
sl@0
   385
						the execution time for later use (comparison and printing).
sl@0
   386
						The ID of the deleted record is exactly the same as the ID of the deleted
sl@0
   387
						record, used by SYSLIB-SQLITE3-UT-4016 test case.
sl@0
   388
						The results of this test case will be compared against the results of
sl@0
   389
						the SYSLIB-SQLITE3-UT-4016 test case - "SQL server single-delete performance test".
sl@0
   390
@SYMTestPriority		High
sl@0
   391
@SYMTestActions			SQLite library single-delete performance test.
sl@0
   392
@SYMTestExpectedResults Test must not fail
sl@0
   393
@SYMREQ					REQ8782
sl@0
   394
*/
sl@0
   395
void SqliteSingleDeleteTest(TPerfTestMode aPerfTestMode, const char aSingleDeleteSql[], TInt aDeleteRecId)
sl@0
   396
	{
sl@0
   397
	int err;
sl@0
   398
	unsigned int fc;
sl@0
   399
	char tmp[10];
sl@0
   400
	
sl@0
   401
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   402
	TEST(!TheDb2);
sl@0
   403
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   404
	TEST2(err, SQLITE_OK);
sl@0
   405
	ExecSqliteConfig(aPerfTestMode);
sl@0
   406
sl@0
   407
	sprintf(tmp, "%d", aDeleteRecId);
sl@0
   408
	strcpy(TheSqlBuf2, aSingleDeleteSql);
sl@0
   409
	strcat(TheSqlBuf2, tmp);
sl@0
   410
	fc = FastCounterValue();
sl@0
   411
	err = sqlite3_exec(TheDb2, TheSqlBuf2, 0, 0, 0);
sl@0
   412
	StorePerfTestResult(aPerfTestMode, EPerfTestSingleDelete, FastCounterValue() - fc);
sl@0
   413
	TEST2(err, SQLITE_OK);
sl@0
   414
	
sl@0
   415
	sqlite3_close(TheDb2);
sl@0
   416
	TheDb2 = 0;
sl@0
   417
	}
sl@0
   418
sl@0
   419
/**
sl@0
   420
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4025
sl@0
   421
@SYMTestCaseDesc		SQLite library single-select performance test.
sl@0
   422
						The test selects one record and stores 
sl@0
   423
						the execution time for later use (comparison and printing).
sl@0
   424
						The ID of the selected record is exactly the same as the ID of the selected
sl@0
   425
						record, used by SYSLIB-SQLITE3-UT-4017 test case.
sl@0
   426
						The results of this test case will be compared against the results of
sl@0
   427
						the SYSLIB-SQLITE3-UT-4017 test case - "SQL server single-select performance test".
sl@0
   428
@SYMTestPriority		High
sl@0
   429
@SYMTestActions			SQLite library single-select performance test.
sl@0
   430
@SYMTestExpectedResults Test must not fail
sl@0
   431
@SYMREQ					REQ8782
sl@0
   432
*/
sl@0
   433
void SqliteSingleSelectTest(TPerfTestMode aPerfTestMode, const char aSingleSelectSql[], TInt aSelectRecId)
sl@0
   434
	{
sl@0
   435
	int err;
sl@0
   436
	const char* tail = 0;
sl@0
   437
	sqlite3_stmt* stmt = 0;
sl@0
   438
	int recCnt = 0;
sl@0
   439
	unsigned int fc;
sl@0
   440
	char tmp[10];
sl@0
   441
	
sl@0
   442
	TEST(aPerfTestMode > EPerfTestSqlMode && aPerfTestMode < EPerfTestModeCnt);
sl@0
   443
	TEST(!TheDb2);
sl@0
   444
	err = sqlite3_open(TestDbName(), &TheDb2);
sl@0
   445
	TEST2(err, SQLITE_OK);
sl@0
   446
	ExecSqliteConfig(aPerfTestMode);
sl@0
   447
sl@0
   448
	sprintf(tmp, "%d", aSelectRecId);
sl@0
   449
	strcpy(TheSqlBuf2, aSingleSelectSql);
sl@0
   450
	strcat(TheSqlBuf2, tmp);
sl@0
   451
	
sl@0
   452
	err = sqlite3_prepare(TheDb2, TheSqlBuf2, -1, &stmt, &tail);
sl@0
   453
	TEST2(err, SQLITE_OK);
sl@0
   454
	
sl@0
   455
	fc = FastCounterValue();
sl@0
   456
	while((err = sqlite3_step(stmt)) == SQLITE_ROW)
sl@0
   457
		{
sl@0
   458
		__int64 i64;
sl@0
   459
		double d;
sl@0
   460
		const unsigned short* t;
sl@0
   461
		const unsigned char* b;
sl@0
   462
		
sl@0
   463
		i64 = sqlite3_column_int64(stmt, 0);
sl@0
   464
		UNUSED_VAR(i64);
sl@0
   465
		d = sqlite3_column_double(stmt, 1);
sl@0
   466
		UNUSED_VAR(d);
sl@0
   467
		t = (const unsigned short*)sqlite3_column_text16(stmt, 2);
sl@0
   468
		UNUSED_VAR(t);
sl@0
   469
		b = (const unsigned char*)sqlite3_column_blob(stmt, 3);
sl@0
   470
		UNUSED_VAR(b);
sl@0
   471
		++recCnt;
sl@0
   472
		}
sl@0
   473
	StorePerfTestResult(aPerfTestMode, EPerfTestSingleSelect, FastCounterValue() - fc);
sl@0
   474
	TEST2(err, SQLITE_DONE);
sl@0
   475
	TEST2(recCnt, 1);
sl@0
   476
sl@0
   477
	sqlite3_finalize(stmt);	
sl@0
   478
	sqlite3_close(TheDb2);
sl@0
   479
	TheDb2 = 0;
sl@0
   480
	}
sl@0
   481
sl@0
   482
void SqliteInitialize(TPerfTestMode aMode)
sl@0
   483
	{
sl@0
   484
	if(aMode == EPerfTestSqliteSqlMode)
sl@0
   485
		{
sl@0
   486
		const TInt KSqliteLookAsideCellSize = 128;
sl@0
   487
		const TInt KSqliteLookAsideCellCount = 512;
sl@0
   488
		int err;
sl@0
   489
		err = sqlite3_config(SQLITE_CONFIG_LOOKASIDE, KSqliteLookAsideCellSize, KSqliteLookAsideCellCount);
sl@0
   490
		TEST2(err, SQLITE_OK);
sl@0
   491
		sqlite3_soft_heap_limit(1024 * 1024);
sl@0
   492
		err = sqlite3_enable_shared_cache(1);
sl@0
   493
		TEST2(err, SQLITE_OK);
sl@0
   494
		}
sl@0
   495
	}
sl@0
   496
sl@0
   497
void SqliteFinalize(TPerfTestMode aMode)
sl@0
   498
	{
sl@0
   499
	if(aMode == EPerfTestSqliteSqlMode)
sl@0
   500
		{
sl@0
   501
		(void)sqlite3_enable_shared_cache(0);
sl@0
   502
		sqlite3_soft_heap_limit(0);
sl@0
   503
		}
sl@0
   504
	sqlite3_shutdown();
sl@0
   505
	}