First public contribution.
1 // Copyright (c) 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.
13 // Description: MDS harvesting performance test
20 #include "t_sqlcmdlineutil.h"
22 RTest TheTest(_L("t_sqlperformance5 test"));
25 _LIT(KDbName, "c:\\test\\t_sqlperformance5.db");
27 TFileName TheDbFileName;
28 TBuf<200> TheTestTitle;
29 TCmdLineParams TheCmdLineParams(TCmdLineParams::EDbUtf16, 16384, 32);
30 TBuf8<200> TheSqlConfigString;
33 _LIT(KUtf16, "UTF16");
35 const TInt KThumbnailCount = 60;
36 const TInt KMaxThumbnailSize = 40 * 1024;
38 const TInt KThumbnailSizes[KThumbnailCount] =
40 //1 2 3 4 5 6 7 8 9 10
41 22054, 24076, 33281, 24733, 33094, 31443, 29264, 28725, 31798, 29322, //1
42 25002, 26926, 31097, 21988, 33659, 29081, 33050, 36857, 37686, 24034, //2
43 21093, 28314, 20186, 27222, 28600, 32735, 27279, 31898, 31380, 36316, //3
44 34295, 31642, 21829, 32912, 31584, 32557, 36601, 22744, 32808, 26130, //4
45 31222, 21545, 35899, 22257, 25856, 31169, 34893, 23496, 23034, 30381, //5
46 25810, 27123, 33442, 22275, 30260, 31028, 32415, 27345, 26614, 33704 //6
49 TInt TheFastCounterFreq = 0;
51 TInt TheCreateDbTime = 0;
52 TInt TheCreateTablesTime = 0;
53 TInt TheBindParamsTime = 0;
54 TInt TheStmtExecTime = 0;
55 TInt TheStmtResetTime = 0;
56 TInt ThePopulateTempTableTime = 0;
57 TInt TheFlushTime = 0;
59 ////////////////////////////////////////////////////////////////////////////////////////////////////
64 (void)RSqlDatabase::Delete(TheDbFileName);
68 ///////////////////////////////////////////////////////////////////////////////////////
69 ///////////////////////////////////////////////////////////////////////////////////////
70 //Test macros and functions
71 void Check1(TInt aValue, TInt aLine)
76 TheTest.Printf(_L("*** Line %d\r\n"), aLine);
77 TheTest(EFalse, aLine);
80 void Check2(TInt aValue, TInt aExpected, TInt aLine)
82 if(aValue != aExpected)
84 TSqlRetCodeClass cl = SqlRetCodeClass(aValue);
87 TPtrC errmsg = TheDb.LastErrorMessage();
88 TheTest.Printf(_L("*** SQLite err=\"%S\"\r\n"), &errmsg);
91 TheTest.Printf(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
92 TheTest(EFalse, aLine);
95 #define TEST(arg) ::Check1((arg), __LINE__)
96 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
98 ///////////////////////////////////////////////////////////////////////////////////////
103 TInt err = fs.Connect();
104 TEST2(err, KErrNone);
105 err = fs.MkDirAll(TheDbFileName);
106 TEST(err == KErrNone || err == KErrAlreadyExists);
110 TInt TimeDiffUs(TUint32 aStartTicks, TUint32 aEndTicks)
112 if(TheFastCounterFreq == 0)
114 TEST2(HAL::Get(HAL::EFastCounterFrequency, TheFastCounterFreq), KErrNone);
115 TheTest.Printf(_L("==Fast counter frequency: %d Hz\r\n"), TheFastCounterFreq);
117 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
120 diffTicks = KMaxTUint32 + diffTicks + 1;
122 const TInt KMicroSecIn1Sec = 1000000;
123 TInt us = (diffTicks * KMicroSecIn1Sec) / TheFastCounterFreq;
127 void PrintTime(const TDesC& aFmt, TUint32 aStartTicks, TUint32 aEndTicks)
129 TInt us = TimeDiffUs(aStartTicks, aEndTicks);
130 TheTest.Printf(aFmt, us);
133 //=============================================================================
136 @SYMTestCaseID PDS-SQL-CT-4205
137 @SYMTestCaseDesc Thumbnail database performance test.
138 @SYMTestPriority Medium
139 @SYMTestActions The test executes statements to create the thumbnail database.
140 @SYMTestExpectedResults The test must not fail
141 @SYMDEF ou1cimx1#362240
145 (void)RSqlDatabase::Delete(TheDbFileName);
147 TUint32 fc1 = User::FastCounter();
149 TInt err = TheDb.Create(TheDbFileName, &TheSqlConfigString);
151 TUint32 fc2 = User::FastCounter();
152 TheCreateDbTime = TimeDiffUs(fc1, fc2);
154 TEST2(err, KErrNone);
156 fc1 = User::FastCounter();
158 err = TheDb.Exec(_L("CREATE TABLE ThumbnailInfo (Path TEXT COLLATE NOCASE,TNId INTEGER,Size INTEGER,Format INTEGER,TNPath TEXT COLLATE NOCASE,Width INTEGER,Height INTEGER,OrigWidth INTEGER,OrigHeight INTEGER,Flags INTEGER,VideoPosition INTEGER,Orientation INTEGER,humbFromPath INTEGER,Modified LARGEINT);"));
161 err = TheDb.Exec(_L("CREATE TABLE ThumbnailInfoData(Data BLOB);"));
164 err = TheDb.Exec(_L("CREATE TABLE ThumbnailDeleted(Path TEXT UNIQUE COLLATE NOCASE);"));
167 err = TheDb.Exec(_L("CREATE INDEX idx1 ON ThumbnailInfo(Path, Size);"));
170 err = TheDb.Exec(_L("CREATE INDEX idx4 ON ThumbnailDeleted(Path);"));
173 err = TheDb.Exec(_L("CREATE TABLE ThumbnailVersion (Major INTEGER,Minor INTEGER,IMEI TEXT COLLATE NOCASE);"));
176 fc2 = User::FastCounter();
177 TheCreateTablesTime = TimeDiffUs(fc1, fc2);
182 void PoulateTempTables(RSqlStatement& aStmt1, RSqlStatement& aStmt2)
184 HBufC8* thumbnailBuf = HBufC8::New(KMaxThumbnailSize);
185 TEST(thumbnailBuf != NULL);
186 TPtr8 thumbnailData = thumbnailBuf->Des();
187 thumbnailData.SetLength(KMaxThumbnailSize);
188 thumbnailData.Fill(TChar('A'));
190 TUint32 fc3 = User::FastCounter();
192 for(TInt i=0;i<KThumbnailCount;++i)
194 TUint32 fc1 = User::FastCounter();
196 TInt paramIndex = aStmt1.ParameterIndex(_L(":Path"));
197 TEST(paramIndex >= 0);
198 TInt err = aStmt1.BindText(paramIndex, _L("c:\\test\\abcdefgh123456789.jpg"));
199 TEST2(err, KErrNone);
201 paramIndex = aStmt1.ParameterIndex(_L(":Width"));
202 TEST(paramIndex >= 0);
203 err = aStmt1.BindInt(paramIndex, 50);
204 TEST2(err, KErrNone);
206 paramIndex = aStmt1.ParameterIndex(_L(":Height"));
207 TEST(paramIndex >= 0);
208 err = aStmt1.BindInt(paramIndex, 40);
209 TEST2(err, KErrNone);
211 paramIndex = aStmt1.ParameterIndex(_L(":OrigWidth"));
212 TEST(paramIndex >= 0);
213 err = aStmt1.BindInt(paramIndex, 1000);
214 TEST2(err, KErrNone);
216 paramIndex = aStmt1.ParameterIndex(_L(":OrigHeight"));
217 TEST(paramIndex >= 0);
218 err = aStmt1.BindInt(paramIndex, 2000);
219 TEST2(err, KErrNone);
221 paramIndex = aStmt1.ParameterIndex(_L(":Format"));
222 TEST(paramIndex >= 0);
223 err = aStmt1.BindInt(paramIndex, 10);
224 TEST2(err, KErrNone);
226 paramIndex = aStmt1.ParameterIndex(_L(":Flags"));
227 TEST(paramIndex >= 0);
228 err = aStmt1.BindInt(paramIndex, 0x1E);
229 TEST2(err, KErrNone);
231 paramIndex = aStmt1.ParameterIndex(_L(":Size"));
232 TEST(paramIndex >= 0);
233 err = aStmt1.BindInt(paramIndex, 1200);
234 TEST2(err, KErrNone);
236 paramIndex = aStmt1.ParameterIndex(_L(":Orient"));
237 TEST(paramIndex >= 0);
238 err = aStmt1.BindInt(paramIndex, 2);
239 TEST2(err, KErrNone);
241 paramIndex = aStmt1.ParameterIndex(_L(":ThumbFromPath"));
242 TEST(paramIndex >= 0);
243 err = aStmt1.BindInt(paramIndex, 1);
244 TEST2(err, KErrNone);
246 paramIndex = aStmt1.ParameterIndex(_L(":Modified"));
247 TEST(paramIndex >= 0);
248 err = aStmt1.BindInt64(paramIndex, 3212398543392LL);
249 TEST2(err, KErrNone);
251 TUint32 fc2 = User::FastCounter();
252 TheBindParamsTime += TimeDiffUs(fc1, fc2);
254 fc1 = User::FastCounter();
256 fc2 = User::FastCounter();
257 TheStmtExecTime += TimeDiffUs(fc1, fc2);
261 fc1 = User::FastCounter();
262 err = aStmt1.Reset();
263 fc2 = User::FastCounter();
264 TheStmtResetTime += TimeDiffUs(fc1, fc2);
266 TEST2(err, KErrNone);
268 thumbnailData.SetLength(KThumbnailSizes[i]);
270 fc1 = User::FastCounter();
271 paramIndex = aStmt2.ParameterIndex(_L(":Data"));
272 TEST(paramIndex >= 0);
273 err = aStmt2.BindBinary(paramIndex, thumbnailData);
274 TEST2(err, KErrNone);
275 fc2 = User::FastCounter();
276 TheBindParamsTime += TimeDiffUs(fc1, fc2);
278 fc1 = User::FastCounter();
280 fc2 = User::FastCounter();
281 TheStmtExecTime += TimeDiffUs(fc1, fc2);
285 fc1 = User::FastCounter();
286 err = aStmt2.Reset();
287 fc2 = User::FastCounter();
288 TheStmtResetTime += TimeDiffUs(fc1, fc2);
290 TEST2(err, KErrNone);
293 TUint32 fc4 = User::FastCounter();
294 ThePopulateTempTableTime += TimeDiffUs(fc3, fc4);
299 void FlushTempTables()
301 TUint32 fc1 = User::FastCounter();
303 TInt err = TheDb.Exec(_L("BEGIN TRANSACTION"));
306 err = TheDb.Exec(_L("INSERT INTO ThumbnailInfo SELECT * FROM TempThumbnailInfo;"));
307 TEST2(err, KThumbnailCount);
309 err = TheDb.Exec(_L("INSERT INTO ThumbnailInfoData SELECT * FROM TempThumbnailInfoData;"));
310 TEST2(err, KThumbnailCount);
312 err = TheDb.Exec(_L("DELETE FROM TempThumbnailInfo;"));
315 err = TheDb.Exec(_L("DELETE FROM TempThumbnailInfoData;"));
318 err = TheDb.Exec(_L("COMMIT;"));
321 TUint32 fc2 = User::FastCounter();
322 TheFlushTime += TimeDiffUs(fc1, fc2);
326 @SYMTestCaseID PDS-SQL-CT-4206
327 @SYMTestCaseDesc Thumbnail database performance test.
328 @SYMTestPriority Medium
329 @SYMTestActions The test inserts 60 thumbnails with summary size of 1.7Mb into the thumbnail database.
330 @SYMTestExpectedResults The test must not fail
331 @SYMDEF ou1cimx1#362240
335 TInt dataToCommit = 0;
336 for(TInt i=0;i<KThumbnailCount;++i)
338 dataToCommit += KThumbnailSizes[i];
340 TReal d = dataToCommit / 1024.0;
341 TheTest.Printf(_L("==dataToCommit=%d bytes (%8.2lf Mb)\r\n"), dataToCommit, d);
343 TInt err = TheDb.Open(TheDbFileName, &TheSqlConfigString);
344 TEST2(err, KErrNone);
346 err = TheDb.Exec(_L("CREATE TEMP TABLE TempThumbnailInfo (Path TEXT COLLATE NOCASE,TNId INTEGER,Size INTEGER,Format INTEGER,TNPath TEXT COLLATE NOCASE,Width INTEGER,Height INTEGER,OrigWidth INTEGER,OrigHeight INTEGER,Flags INTEGER,VideoPosition INTEGER,Orientation INTEGER,ThumbFromPath INTEGER,Modified LARGEINT);"));
349 err = TheDb.Exec(_L("CREATE TEMP TABLE TempThumbnailInfoData (Data BLOB);"));
353 err = stmt1.Prepare(TheDb, _L("INSERT INTO TempThumbnailInfo(Path,Size,Format,Width,Height,OrigWidth,OrigHeight,Flags,Orientation,ThumbFromPath,Modified) VALUES (:Path,:Size,:Format,:Width,:Height,:OrigWidth,:OrigHeight,:Flags,:Orient,:ThumbFromPath,:Modified);"));
354 TEST2(err, KErrNone);
357 err = stmt2.Prepare(TheDb, _L("INSERT INTO TempThumbnailInfoData (Data) VALUES (:Data);"));
358 TEST2(err, KErrNone);
360 PoulateTempTables(stmt1, stmt2);
367 TheTest.Printf(_L("==Create database, time=%d microseconds\r\n"), TheCreateDbTime);
368 TheTest.Printf(_L("==Create tables, time=%d microseconds\r\n"), TheCreateTablesTime);
369 TheTest.Printf(_L("==Bind parameters time, time=%d microseconds\r\n"), TheBindParamsTime);
370 TheTest.Printf(_L("==Temp tables, statement exec, time=%d microseconds\r\n"), TheStmtExecTime);
371 TheTest.Printf(_L("==Temp tables, statement reset, time=%d microseconds\r\n"), TheStmtResetTime);
372 TheTest.Printf(_L("==Populate temp tables, time=%d microseconds\r\n"), ThePopulateTempTableTime);
373 TheTest.Printf(_L("==Copy temp tables to main tables, time=%d microseconds\r\n"), TheFlushTime);
378 TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-CT-4205 Create database, encoding: \"%S\", page size: %d\r\n"),
379 TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
380 TheTest.Start(TheTestTitle);
383 TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-CT-4206 Populate database, encoding: \"%S\", page size: %d\r\n"),
384 TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
385 TheTest.Next(TheTestTitle);
388 (void)RSqlDatabase::Delete(TheDbFileName);
395 CTrapCleanup* tc = CTrapCleanup::New();
400 GetCmdLineParamsAndSqlConfigString(TheTest, _L("t_sqlperformance5"), TheCmdLineParams, TheSqlConfigString);
401 PrepareDbName(KDbName, TheCmdLineParams.iDriveName, TheDbFileName);
402 SetSoftHeapLimit(TheCmdLineParams.iSoftHeapLimitKb);
404 TheTest.Printf(_L("==Databases: %S\r\n"), &TheDbFileName);
408 TRAPD(err, DoTestsL());
410 TEST2(err, KErrNone);
419 User::Heap().Check();