Update contrib.
1 // Copyright (c) 2006-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.
23 static RTest TheTest(_L("t_dbperf2"));
24 static CTrapCleanup* TheTrapCleanup;
27 static RDbNamedDatabase TheDatabase;
28 static RDbRowSet TheRowSet;
29 static RFile TheTestFile;
30 static TFileName TheDatabaseFileName;
31 static TFileName TheLogFileName;
32 static TFileName TheTestFileName;
33 static TParse TheParse;
35 #define COUNT_OF(array) (sizeof(array)/sizeof(array[0]))
37 const TInt KTestRecordCount = 400;
39 const TInt KTextColSize = 200;//Change KCreateTestTableSql string too!
41 _LIT(KCreateTestTableSql, "CREATE TABLE A(I1 INTEGER, I2 DOUBLE, I3 VARCHAR(200))");
42 _LIT(KCreateIndexSql, "CREATE UNIQUE INDEX IDX ON A(I1)");
44 const TInt KColSize2 = 500;
45 _LIT(KCreateTestTableSql2, "CREATE TABLE A(I1 INTEGER, I2 LONG VARCHAR, I3 LONG VARBINARY)");
47 const TChar KBufChar('O');
48 TBuf8<KColSize2> TheBinRndData;
49 TBuf16<KColSize2> TheTextRndData;
51 //////////////////////////////////////////////////////
53 static TInt TheCounterFreq = -10000000;
54 const TInt KMicroSecIn1Sec = 1000000;
56 TUint32 CalcTickDiff(TUint32 aStartTicks, TUint32 aEndTicks)
58 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
61 diffTicks = KMaxTUint32 + diffTicks + 1;
63 return (TUint32)diffTicks;
66 //Prints aFastCount parameter (converted to us)
67 void PrintFcDiffAsUs(const TDesC& aFormatStr, TUint32 aFastCount)
69 double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
71 TheTest.Printf(aFormatStr, v2);
74 //Prints aFastCount parameter (converted to us) and the records count
75 void PrintFcDiffAsUs2(const TDesC& aFormatStr, TInt aRecCnt, TUint32 aFastCount)
77 double v = ((double)aFastCount * KMicroSecIn1Sec) / (double)TheCounterFreq;
79 TheTest.Printf(aFormatStr, aRecCnt, v2);
82 //////////////////////////////////////////////////////
84 enum TRowSetType {EViewRowSet, ETableRowSet};
85 const TRowSetType KRowSetTypes[] = {EViewRowSet/*, ETableRowSet*/}; //Excluding ETableRowSet means that the test requires less time.
86 const TPtrC KRowSetTypeStr[] = {_L("RDbView.")/*, _L("RDbTable.")*/};//The coverage is not affected that much.
88 //////////////////////////////////////////////////////
90 const RDbRowSet::TAccess KAccessModes[] = {RDbRowSet::EInsertOnly, RDbRowSet::EUpdatable};
91 const TPtrC KAccessModeStr[] = {_L("Insert only."), _L("Updatable.")};
93 //////////////////////////////////////////////////////
95 enum TUpdDirection {EUpdBackward, EUpdForward};
96 const TUpdDirection KUpdDirectionTypes[] = {EUpdBackward, EUpdForward};
97 const TPtrC KUpdDirectionTypeStr[] = {_L("Backward."), _L("Forward.")};
99 //////////////////////////////////////////////////////
101 enum TCommitRecCnt {ECommit_1_Rec = 1, ECommit_Cnt_Rec = 20, ECommit_All_Rec = KTestRecordCount};
102 const TCommitRecCnt KCommitTypes[] = {ECommit_1_Rec, ECommit_Cnt_Rec, ECommit_All_Rec};
103 const TPtrC KCommitTypeStr[] = {_L("Commit after 1 op."), _L("Commit after 20 ops."), _L("Commit at end.")};
105 ///////////////////////////////////////////////////////////////////////////////////////
107 //Delete "aFullName" file.
108 static void DeleteFile(const TDesC& aFullName)
111 TInt err = fsSession.Connect();
115 if(fsSession.Entry(aFullName, entry) == KErrNone)
117 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
120 TheTest.Printf(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
122 err = fsSession.Delete(aFullName);
125 TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
132 TheTest.Printf(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
136 ///////////////////////////////////////////////////////////////////////////////////////
138 static void CloseAll()
147 ///////////////////////////////////////////////////////////////////////////////////////
148 ///////////////////////////////////////////////////////////////////////////////////////
149 //Tests macros and functions.
150 //If (!aValue) then the test will be panicked, the test data files will be deleted.
151 static void Check(TInt aValue, TInt aLine)
156 DeleteFile(TheDatabaseFileName);
157 DeleteFile(TheTestFileName);
158 TheTest(EFalse, aLine);
161 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
162 static void Check(TInt aValue, TInt aExpected, TInt aLine)
164 if(aValue != aExpected)
166 TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
168 DeleteFile(TheDatabaseFileName);
169 DeleteFile(TheTestFileName);
170 TheTest(EFalse, aLine);
173 //Use these to test conditions.
174 #define TEST(arg) ::Check((arg), __LINE__)
175 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
177 ///////////////////////////////////////////////////////////////////////////////////////
181 RDbDatabase::TSize s = TheDatabase.Size();
182 TheTest.Printf(_L("####FileSize: %d\r\n"), s.iSize);
185 ///////////////////////////////////////////////////////////////////////////////////////
187 void DbRowSetInsertTestL(TRowSetType aRowSetType, RDbRowSet::TAccess aAccessMode, TCommitRecCnt aCommitRecCnt)
189 TBuf<KTextColSize> textColVal;
190 for(TInt ii=23000;ii<(23000+KTextColSize);++ii)
192 textColVal.Append(TChar(ii));
194 for(TInt compaction=0;compaction<2;++compaction)
196 TheTest.Printf(compaction ? _L("Compaction:Yes.\r\n") : _L("Compaction:No.\r\n"));
199 err = TheDatabase.Execute(_L("DELETE FROM A"));
201 TUint32 fc = User::FastCounter();
202 if(aRowSetType == EViewRowSet)
205 err = view.Prepare(TheDatabase, _L("SELECT * FROM A"), aAccessMode);
206 TEST2(err, KErrNone);
207 err = view.EvaluateAll();
208 TEST2(err, KErrNone);
214 err = tbl.Open(TheDatabase, _L("A"), aAccessMode);
215 TEST2(err, KErrNone);
218 TUint32 prepFc = CalcTickDiff(fc, User::FastCounter());
220 TUint32 setcolFc = 0;
222 TUint32 commitFc = 0;
224 fc = User::FastCounter();
225 for(TInt i=0,count=0;i<KTestRecordCount;++i)
228 if(aCommitRecCnt != ECommit_1_Rec && count == 0)
230 tmpFc = User::FastCounter();
231 err = TheDatabase.Begin();
232 TEST2(err, KErrNone);
233 commitFc += CalcTickDiff(tmpFc, User::FastCounter());
235 tmpFc = User::FastCounter();
237 insFc += CalcTickDiff(tmpFc, User::FastCounter());
238 tmpFc = User::FastCounter();
239 TheRowSet.SetColL(1, i);
240 TheRowSet.SetColL(2, i * 10.1234);
241 TheRowSet.SetColL(3, textColVal);
242 setcolFc += CalcTickDiff(tmpFc, User::FastCounter());
243 tmpFc = User::FastCounter();
245 putFc += CalcTickDiff(tmpFc, User::FastCounter());
246 if(aCommitRecCnt != ECommit_1_Rec && ++count == aCommitRecCnt)
248 tmpFc = User::FastCounter();
250 err = TheDatabase.Commit();
251 TEST2(err, KErrNone);
252 commitFc += CalcTickDiff(tmpFc, User::FastCounter());
255 err = TheDatabase.Compact();
256 TEST2(err, KErrNone);
260 totalFc = CalcTickDiff(fc, User::FastCounter());
261 PrintFcDiffAsUs(_L("###Prepare,time=%d us\r\n"), prepFc);
262 PrintFcDiffAsUs(_L("###InsertL,time=%d us\r\n"), insFc);
263 PrintFcDiffAsUs(_L("###SetColL,time=%d us\r\n"), setcolFc);
264 PrintFcDiffAsUs(_L("###PutL, time=%d us\r\n"), putFc);
265 PrintFcDiffAsUs(_L("###Commit, time=%d us\r\n"), commitFc);
266 PrintFcDiffAsUs(_L("###Total, time=%d us\r\n"), totalFc);
270 if(aAccessMode != RDbRowSet::EInsertOnly)
273 err = view.Prepare(TheDatabase, _L("SELECT * FROM A"), aAccessMode);
274 TEST2(err, KErrNone);
275 err = view.EvaluateAll();
276 TEST2(err, KErrNone);
277 TInt count = view.CountL();
279 TEST2(count, KTestRecordCount);
281 }//end of - for(TInt compaction=0;compaction<2;++compaction)
284 void FirstRecL(TUpdDirection aUpdDirection)
287 switch(aUpdDirection)
290 rc = TheRowSet.LastL();
294 rc = TheRowSet.FirstL();
300 void NextRecL(TUpdDirection aUpdDirection)
303 switch(aUpdDirection)
306 rc = TheRowSet.PreviousL();
310 rc = TheRowSet.NextL();
316 void DbRowSetUpdateTestL(TRowSetType aRowSetType, TUpdDirection aUpdDirection, TCommitRecCnt aCommitRecCnt)
318 TBuf<KTextColSize> textColVal;
319 for(TInt ii=33000;ii<(33000+KTextColSize);++ii)
321 textColVal.Append(TChar(ii));
324 for(TInt compaction=0;compaction<2;++compaction)
326 TheTest.Printf(compaction ? _L("Compaction:Yes.\r\n") : _L("Compaction:No.\r\n"));
329 TUint32 fc = User::FastCounter();
330 if(aRowSetType == EViewRowSet)
333 err = view.Prepare(TheDatabase, _L("SELECT * FROM A WHERE I1 >= 0 AND I1 <= 1000000"), RDbRowSet::EUpdatable);
334 TEST2(err, KErrNone);
335 err = view.EvaluateAll();
336 TEST2(err, KErrNone);
342 err = tbl.Open(TheDatabase, _L("A"), RDbRowSet::EUpdatable);
343 TEST2(err, KErrNone);
346 TInt cnt = TheRowSet.CountL();
347 TEST2(cnt, KTestRecordCount);
348 TUint32 prepFc = CalcTickDiff(fc, User::FastCounter());
350 TUint32 setcolFc = 0;
352 TUint32 commitFc = 0;
354 fc = User::FastCounter();
355 for(TInt i=0,count=0;i<KTestRecordCount;++i)
357 TRAP(err, (i == 0 ? FirstRecL(aUpdDirection) : NextRecL(aUpdDirection)));
358 TEST2(err, KErrNone);
360 if(aCommitRecCnt != ECommit_1_Rec && count == 0)
362 tmpFc = User::FastCounter();
363 err = TheDatabase.Begin();
364 TEST2(err, KErrNone);
365 commitFc += CalcTickDiff(tmpFc, User::FastCounter());
367 tmpFc = User::FastCounter();
369 insFc += CalcTickDiff(tmpFc, User::FastCounter());
370 tmpFc = User::FastCounter();
371 TheRowSet.SetColL(2, i * 20.0);
372 TheRowSet.SetColL(3, textColVal);
373 setcolFc += CalcTickDiff(tmpFc, User::FastCounter());
374 tmpFc = User::FastCounter();
376 putFc += CalcTickDiff(tmpFc, User::FastCounter());
377 if(aCommitRecCnt != ECommit_1_Rec && ++count == aCommitRecCnt)
379 tmpFc = User::FastCounter();
381 err = TheDatabase.Commit();
382 TEST2(err, KErrNone);
383 commitFc += CalcTickDiff(tmpFc, User::FastCounter());
386 err = TheDatabase.Compact();
387 TEST2(err, KErrNone);
391 totalFc = CalcTickDiff(fc, User::FastCounter());
392 PrintFcDiffAsUs(_L("###Prepare,time=%d us\r\n"), prepFc);
393 PrintFcDiffAsUs(_L("###UpdateL,time=%d us\r\n"), insFc);
394 PrintFcDiffAsUs(_L("###SetColL,time=%d us\r\n"), setcolFc);
395 PrintFcDiffAsUs(_L("###PutL, time=%d us\r\n"), putFc);
396 PrintFcDiffAsUs(_L("###Commit, time=%d us\r\n"), commitFc);
397 PrintFcDiffAsUs(_L("###Total, time=%d us\r\n"), totalFc);
400 }//end of - for(TInt compaction=0;compaction<2;++compaction)
403 ///////////////////////////////////////////////////////////////////////////////////////
405 void CreateDatabase()
407 TInt err = TheDatabase.Replace(TheFs, TheDatabaseFileName);
408 TEST2(err, KErrNone);
410 err = TheDbs.Connect();
411 TEST2(err, KErrNone);
412 err = TheDatabase.Open(TheDbs, TheDatabaseFileName);
413 TEST2(err, KErrNone);
414 err = TheDatabase.Execute(KCreateTestTableSql);
415 TEST2(err, KErrNone);
416 err = TheDatabase.Execute(KCreateIndexSql);
417 TEST2(err, KErrNone);
420 void CreateAndFillDatabase()
422 TInt err = TheDatabase.Replace(TheFs, TheDatabaseFileName);
423 TEST2(err, KErrNone);
425 err = TheDbs.Connect();
426 TEST2(err, KErrNone);
427 err = TheDatabase.Open(TheDbs, TheDatabaseFileName);
428 TEST2(err, KErrNone);
429 err = TheDatabase.Execute(KCreateTestTableSql);
430 TEST2(err, KErrNone);
431 err = TheDatabase.Execute(KCreateIndexSql);
432 TEST2(err, KErrNone);
434 TBuf<KTextColSize> textColVal;
435 for(TInt ii=23000;ii<(23000+KTextColSize);++ii)
437 textColVal.Append(TChar(ii));
439 err = TheDatabase.Begin();
440 TEST2(err, KErrNone);
441 for(TInt i=0;i<KTestRecordCount;++i)
443 TBuf<KTextColSize + 100> sql;
444 sql.Format(_L("INSERT INTO A(I1,I2,I3) VALUES(%d,%d,'%S')"), i, i + 100000, &textColVal);
445 err = TheDatabase.Execute(sql);
448 err = TheDatabase.Commit();
449 TEST2(err, KErrNone);
452 void DestroyDatabase()
457 TInt err = TheFs.Delete(TheDatabaseFileName);
458 TEST2(err, KErrNone);
461 void GetFastCounterFrequency()
463 TheTest.Start(_L("Get fast counter frequency"));
464 TEST2(HAL::Get(HAL::EFastCounterFrequency, TheCounterFreq), KErrNone);
465 TheTest.Printf(_L("Counter frequency=%d\r\n"), TheCounterFreq);
468 void FileBlockSizeTestsL()
470 TheTest.Next(_L("File Block Size test"));
472 const TInt KBlockSizeLow = 64, KBlockSizeHigh = 1024 * 64;
473 for(TInt blockSize=KBlockSizeLow;blockSize<=KBlockSizeHigh;blockSize*=2)
475 for(TInt addSize=-4;addSize<=4;addSize+=4)
477 TInt currBlockSize = blockSize + addSize;
479 title.Copy(_L("File block size "));
480 title.AppendNum((TInt64)currBlockSize);
481 title.Append(_L(" bytes"));
482 TheTest.Printf(title);
484 HBufC8* data = HBufC8::New(currBlockSize);
486 TPtr8 dataPtr = data->Des();
487 dataPtr.SetLength(currBlockSize);
489 TInt err = TheTestFile.Replace(TheFs, TheTestFileName, EFileRead | EFileWrite);
490 TEST2(err, KErrNone);
491 err = TheTestFile.Write(dataPtr);
492 TEST2(err, KErrNone);
493 err = TheTestFile.Flush();
494 TEST2(err, KErrNone);
495 TUint32 fc = User::FastCounter();
496 err = TheTestFile.Write(0, dataPtr);
497 fc = CalcTickDiff(fc, User::FastCounter());
498 PrintFcDiffAsUs(_L("###Time=%d us\r\n"), fc);
499 TEST2(err, KErrNone);
505 DeleteFile(TheTestFileName);
509 @SYMTestCaseID SYSLIB-DBMS-UT-3310
510 @SYMTestCaseDesc DBMS, RDbView performance tests.
511 @SYMTestPriority High
512 @SYMTestActions The test creates and fills a test table with integer, real and text column. Then
513 executes 3 test subcases:
514 - updates the integer column only in all records, using "SELECT I1,I2,I3" cursor;
515 - updates the text column only in all records, using "SELECT I1,I2,I3" cursor;
516 - updates all columns in all records, using "SELECT I1,I2,I3" cursor;
517 The execution times are printed out.
518 @SYMTestExpectedResults Test must not fail
521 void RecordLenTestL()
523 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3310 Record length test - create database"));
524 CreateAndFillDatabase();
525 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
526 TheTest.Printf(_L("Record length test - update the integer column only"));
527 TUint32 fc = User::FastCounter();
529 TInt err = view.Prepare(TheDatabase, _L("SELECT * FROM A"));
530 TEST2(err, KErrNone);
531 err = view.EvaluateAll();
532 TEST2(err, KErrNone);
534 err = TheDatabase.Begin();
535 TEST2(err, KErrNone);
541 TheRowSet.SetColL(1, 60000 + recCnt);
545 while(TheRowSet.NextL());
546 TEST2(recCnt, KTestRecordCount);
547 err = TheDatabase.Commit();
548 TEST2(err, KErrNone);
549 PrintFcDiffAsUs(_L("###Time=%d us\r\n"), CalcTickDiff(fc, User::FastCounter()));
551 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
552 TheTest.Printf(_L("Record length test - update the text column only"));
553 fc = User::FastCounter();
554 err = view.Prepare(TheDatabase, _L("SELECT * FROM A"));
555 TEST2(err, KErrNone);
556 err = view.EvaluateAll();
557 TEST2(err, KErrNone);
559 err = TheDatabase.Begin();
560 TEST2(err, KErrNone);
566 TheRowSet.SetColL(3, _L("0123456789"));
570 while(TheRowSet.NextL());
571 TEST2(recCnt, KTestRecordCount);
572 err = TheDatabase.Commit();
573 TEST2(err, KErrNone);
574 PrintFcDiffAsUs(_L("###Time=%d us\r\n"), CalcTickDiff(fc, User::FastCounter()));
576 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
577 TheTest.Printf(_L("Record length test - update all columns"));
578 fc = User::FastCounter();
579 err = view.Prepare(TheDatabase, _L("SELECT * FROM A"));
580 TEST2(err, KErrNone);
581 err = view.EvaluateAll();
582 TEST2(err, KErrNone);
584 err = TheDatabase.Begin();
585 TEST2(err, KErrNone);
591 TheRowSet.SetColL(1, 34567 - recCnt);
592 TheRowSet.SetColL(2, 888.111);
593 TheRowSet.SetColL(3, _L("QWETYUIOPASDF"));
597 while(TheRowSet.NextL());
598 TEST2(recCnt, KTestRecordCount);
599 err = TheDatabase.Commit();
600 TEST2(err, KErrNone);
601 PrintFcDiffAsUs(_L("###Time=%d ms\r\n"), CalcTickDiff(fc, User::FastCounter()));
602 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
603 DestroyDatabase();//This will destroy TheRowSet object too.
607 @SYMTestCaseID SYSLIB-DBMS-UT-3311
608 @SYMTestCaseDesc DBMS, RDbView performance tests.
609 @SYMTestPriority High
610 @SYMTestActions The test measures the time used by insert-only or updatable cursor to:
611 - insert certain amount of records, comitting after each insert;
612 - insert certain amount of records, comitting after 20 inserts;
613 - insert certain amount of records, comitting at the end;
614 All cases repeated with and without compaction (except the first one).
615 The execution times are printed out.
616 @SYMTestExpectedResults Test must not fail
621 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3311 RDbView \"insert\" performance tests"));
622 for(TInt i1=0;i1<COUNT_OF(KRowSetTypes);++i1)
624 for(TInt i2=0;i2<COUNT_OF(KAccessModes);++i2)
626 for(TInt i3=0;i3<COUNT_OF(KCommitTypes);++i3)
630 title.Copy(_L("Insert."));
631 title.Append(KRowSetTypeStr[i1]);
632 title.Append(KAccessModeStr[i2]);
633 title.Append(KCommitTypeStr[i3]);
634 TheTest.Printf(title);
635 DbRowSetInsertTestL(KRowSetTypes[i1], KAccessModes[i2], KCommitTypes[i3]);
643 @SYMTestCaseID SYSLIB-DBMS-UT-3312
644 @SYMTestCaseDesc DBMS, RDbView performance tests.
645 @SYMTestPriority High
646 @SYMTestActions The test measures the time used by updatable cursor to:
647 - update (moving forward/backward) certain amount of records, comitting after each update;
648 - update (moving forward/backward) certain amount of records, comitting after 20 update;
649 - update (moving forward/backward) certain amount of records, comitting at the end;
650 All cases repeated with and without compaction (except the first one).
651 The execution times are printed out.
652 @SYMTestExpectedResults Test must not fail
657 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3312 RDbView \"update\" performance tests"));
658 for(TInt i1=0;i1<COUNT_OF(KRowSetTypes);++i1)
660 for(TInt i2=0;i2<COUNT_OF(KUpdDirectionTypes);++i2)
662 for(TInt i3=0;i3<COUNT_OF(KCommitTypes);++i3)
664 CreateAndFillDatabase();
666 title.Copy(_L("Update."));
667 title.Append(KRowSetTypeStr[i1]);
668 title.Append(KUpdDirectionTypeStr[i2]);
669 title.Append(KCommitTypeStr[i3]);
670 TheTest.Printf(title);
671 DbRowSetUpdateTestL(KRowSetTypes[i1], KUpdDirectionTypes[i2], KCommitTypes[i3]);
679 @SYMTestCaseID SYSLIB-DBMS-UT-3313
680 @SYMTestCaseDesc DBMS, RDbDatabase::Execute() performance tests.
681 @SYMTestPriority High
682 @SYMTestActions The test measures the time used by RDbDatabase::Execute() to:
683 - insert certain amount of records, comitting after each insert;
684 - insert certain amount of records, comitting after 20 inserts;
685 - insert certain amount of records, comitting at the end;
686 All cases repeated with and without compaction (except the first one).
687 The execution times are printed out.
688 @SYMTestExpectedResults Test must not fail
691 void DbInsertTestsL()
693 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3313 RDbDatabase::Execute() \"insert\" performance tests"));
694 TBuf<KTextColSize> textColVal;
695 for(TInt ii=23000;ii<(23000+KTextColSize);++ii)
697 textColVal.Append(TChar(ii));
699 for(TInt compaction=0;compaction<2;++compaction)
701 for(TInt i3=0;i3<COUNT_OF(KCommitTypes);++i3)
705 title.Copy(_L("RDbDatabase::Execute().Insert."));
706 title.Append(KCommitTypeStr[i3]);
707 title.Append(compaction ? _L("Compaction:Yes.") : _L("Compaction:No."));
708 TheTest.Printf(title);
709 TInt count = 0, err = KErrNone;
710 TUint32 fc = User::FastCounter();
711 for(TInt i=0;i<KTestRecordCount;++i)
713 if(KCommitTypes[i3] != ECommit_1_Rec && count == 0)
715 err = TheDatabase.Begin();
716 TEST2(err, KErrNone);
718 TBuf<KTextColSize + 100> sql;
719 sql.Format(_L("INSERT INTO A(I1,I2,I3) VALUES(%d,%d,'%S')"), i, i + 100000, &textColVal);
720 err = TheDatabase.Execute(sql);
722 if(KCommitTypes[i3] != ECommit_1_Rec && ++count == KCommitTypes[i3])
725 err = TheDatabase.Commit();
726 TEST2(err, KErrNone);
729 err = TheDatabase.Compact();
730 TEST2(err, KErrNone);
734 PrintFcDiffAsUs(_L("###RDbDatabase::Execute(), Time=%d us\r\n"), CalcTickDiff(fc, User::FastCounter()));
742 @SYMTestCaseID SYSLIB-DBMS-UT-3314
743 @SYMTestCaseDesc DBMS, RDbDatabase::Execute() performance tests.
744 @SYMTestPriority High
745 @SYMTestActions The test measures the time used by RDbDatabase::Execute() to:
746 - update certain amount of records, comitting after each update;
747 - update certain amount of records, comitting after 20 updates;
748 - update certain amount of records, comitting at the end;
749 All cases repeated with and without compaction (except the first one).
750 The execution times are printed out.
751 @SYMTestExpectedResults Test must not fail
754 void DbUpdateTestsL()
756 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3314 RDbDatabase::Execute() \"update\" performance tests"));
757 TBuf<KTextColSize> textColVal;
758 for(TInt ii=43000;ii<(43000+KTextColSize);++ii)
760 textColVal.Append(TChar(ii));
762 for(TInt compaction=0;compaction<2;++compaction)
764 for(TInt i3=0;i3<COUNT_OF(KCommitTypes);++i3)
766 CreateAndFillDatabase();
768 title.Copy(_L("RDbDatabase::Execute().Update."));
769 title.Append(KCommitTypeStr[i3]);
770 title.Append(compaction ? _L("Compaction:Yes.") : _L("Compaction:No."));
771 TheTest.Printf(title);
772 TInt count = 0, err = KErrNone;
773 TUint32 fc = User::FastCounter();
774 for(TInt i=0;i<KTestRecordCount;++i)
776 if(KCommitTypes[i3] != ECommit_1_Rec && count == 0)
778 err = TheDatabase.Begin();
779 TEST2(err, KErrNone);
781 TBuf<KTextColSize + 100> sql;
782 sql.Format(_L("UPDATE A SET I2=%d,I3='%S' WHERE I1=%d"), i + 556622, &textColVal, i);
783 err = TheDatabase.Execute(sql);
785 if(KCommitTypes[i3] != ECommit_1_Rec && ++count == KCommitTypes[i3])
788 err = TheDatabase.Commit();
789 TEST2(err, KErrNone);
792 err = TheDatabase.Compact();
793 TEST2(err, KErrNone);
797 PrintFcDiffAsUs(_L("###RDbDatabase::Execute(), Time=%d us\r\n"), CalcTickDiff(fc, User::FastCounter()));
805 @SYMTestCaseID PDS-DBMS-UT-4010
806 @SYMTestCaseDesc Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
807 Tests the performance of RDbColWriteStream::OpenLC() and RDbColWriteStream::OpenL().
808 @SYMTestPriority High
809 @SYMTestActions Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase
810 @SYMTestExpectedResults Test must not fail
813 void DbColWriteStreamTestsL()
815 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4010 RDbColWriteStream performance test"));
817 TInt err = TheDatabase.Replace(TheFs, TheDatabaseFileName);
818 TEST2(err, KErrNone);
819 err = TheDatabase.Execute(KCreateTestTableSql2);
823 err = view.Prepare(TheDatabase, _L("select * from A"), view.EInsertOnly);
824 TEST2(err, KErrNone);
827 CDbColSet* colSet = TheRowSet.ColSetL();
828 const TDbColNo KIdx1 = colSet->ColNo(_L("I1"));
829 const TDbColNo KIdx2 = colSet->ColNo(_L("I2"));
830 const TDbColNo KIdx3 = colSet->ColNo(_L("I3"));
833 TheTextRndData.SetLength(KColSize2);
834 TheTextRndData.Fill(KBufChar);
835 TheBinRndData.SetLength(KColSize2);
836 TheBinRndData.Fill(KBufChar);
838 err = TheDatabase.Begin();
839 TEST2(err, KErrNone);
841 TUint32 openLcFc = 0;
843 TUint32 fc = User::FastCounter();
845 for(TInt i=0;i<KTestRecordCount;++i)
848 TheRowSet.SetColL(KIdx1, i + 1);
850 RDbColWriteStream strm1;
851 TUint32 tmp = User::FastCounter();
852 strm1.OpenLC(TheRowSet, KIdx2);
853 openLcFc += CalcTickDiff(tmp, User::FastCounter());
854 strm1.WriteL(TheTextRndData, KColSize2);
856 CleanupStack::PopAndDestroy(&strm1);
858 RDbColWriteStream strm2;
859 CleanupClosePushL(strm2);
860 tmp = User::FastCounter();
861 strm2.OpenL(TheRowSet, KIdx3);
862 openLFc += CalcTickDiff(tmp, User::FastCounter());
863 strm2.WriteL(TheBinRndData, KColSize2);
865 CleanupStack::PopAndDestroy(&strm2);
870 PrintFcDiffAsUs2(_L("###RDbColWriteStream, write %3d records, Time=%d us\r\n"),
871 KTestRecordCount, CalcTickDiff(fc, User::FastCounter()));
872 PrintFcDiffAsUs (_L("###OpenLC() , Time=%d us\r\n"), openLcFc);
873 PrintFcDiffAsUs (_L("###OpenL() , Time=%d us\r\n"), openLFc);
877 err = TheDatabase.Commit();
878 TEST2(err, KErrNone);
884 @SYMTestCaseID PDS-DBMS-UT-4011
885 @SYMTestCaseDesc Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
886 Tests the performance of RDbColReadStream::OpenLC() and RDbColReadStream::OpenL().
887 @SYMTestPriority High
888 @SYMTestActions Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
889 @SYMTestExpectedResults Test must not fail
892 void DbColReadStreamTestsL()
894 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4011 RDbColReadStream performance test"));
896 TInt err = TheDatabase.Open(TheFs, TheDatabaseFileName);
897 TEST2(err, KErrNone);
900 err = view.Prepare(TheDatabase, _L("select * from A"), view.EReadOnly);
901 TEST2(err, KErrNone);
904 err = view.EvaluateAll();
905 TEST2(err, KErrNone);
907 CDbColSet* colSet = TheRowSet.ColSetL();
908 const TDbColNo KIdx1 = colSet->ColNo(_L("I1"));
909 const TDbColNo KIdx2 = colSet->ColNo(_L("I2"));
910 const TDbColNo KIdx3 = colSet->ColNo(_L("I3"));
913 TBuf8<KColSize2> binData;
914 TBuf16<KColSize2> textData;
917 TUint32 openLcFc = 0;
919 TUint32 fc = User::FastCounter();
921 if(TheRowSet.FirstL())
928 TInt i1 = TheRowSet.ColInt(KIdx1);
931 RDbColReadStream strm1;
932 TUint32 tmp = User::FastCounter();
933 strm1.OpenLC(TheRowSet, KIdx2);
934 openLcFc += CalcTickDiff(tmp, User::FastCounter());
935 strm1.ReadL(textData, KColSize2);
936 CleanupStack::PopAndDestroy(&strm1);
937 TEST(textData == TheTextRndData);
939 RDbColReadStream strm2;
940 CleanupClosePushL(strm2);
941 tmp = User::FastCounter();
942 strm2.OpenL(TheRowSet, KIdx3);
943 openLFc += CalcTickDiff(tmp, User::FastCounter());
944 strm2.ReadL(binData, KColSize2);
945 CleanupStack::PopAndDestroy(&strm2);
946 TEST(binData == TheBinRndData);
947 } while(TheRowSet.NextL());
949 TEST2(recCnt, KTestRecordCount);
951 PrintFcDiffAsUs2(_L("###RDbColReadStream, read %3d records, Time=%d us\r\n"),
952 recCnt, CalcTickDiff(fc, User::FastCounter()));
953 PrintFcDiffAsUs (_L("###OpenLC() , Time=%d us\r\n"), openLcFc);
954 PrintFcDiffAsUs (_L("###OpenL() , Time=%d us\r\n"), openLFc);
962 @SYMTestCaseID PDS-DBMS-UT-4012
963 @SYMTestCaseDesc Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
964 RDbUpdate performance tests.
965 @SYMTestPriority High
966 @SYMTestActions Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase
967 @SYMTestExpectedResults Test must not fail
972 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4012 RDbUpdate performance test"));
974 TInt err = TheDbs.Connect();
975 TEST2(err, KErrNone);
977 err = TheDatabase.Open(TheDbs, TheDatabaseFileName);
978 TEST2(err, KErrNone);
982 TUint32 rowCntFc = 0;
987 TUint32 fc = User::FastCounter();
988 err = upd1.Execute(TheDatabase, _L("UPDATE A SET I1=1000, I2='8888888888888888'"));
989 execFc = CalcTickDiff(fc, User::FastCounter());
990 TEST2(err, KErrNone);
991 TUint32 tmp = User::FastCounter();
992 while((err = upd1.Next()) > 0)
995 nextFc = CalcTickDiff(tmp, User::FastCounter());
996 tmp = User::FastCounter();
997 recCnt = upd1.RowCount();
998 rowCntFc = CalcTickDiff(tmp, User::FastCounter());
1000 fc = CalcTickDiff(fc, User::FastCounter());
1002 TEST2(recCnt, KTestRecordCount);
1004 TheDatabase.Close();
1006 PrintFcDiffAsUs2(_L("###Sync RDbUpdate, %3d records, Time=%d us\r\n"), recCnt, fc);
1007 PrintFcDiffAsUs (_L("###Execute() , Time=%d us\r\n"), execFc);
1008 PrintFcDiffAsUs (_L("###Next() , Time=%d us\r\n"), nextFc);
1009 PrintFcDiffAsUs (_L("###RowCount() , Time=%d us\r\n"), rowCntFc);
1011 //Asynchronous update
1012 err = TheDatabase.Open(TheDbs, TheDatabaseFileName);
1013 TEST2(err, KErrNone);
1021 fc = User::FastCounter();
1022 err = upd2.Execute(TheDatabase, _L("UPDATE A SET I1=5678, I2='9w27u22272252542r2242242424221'"));
1023 execFc = CalcTickDiff(fc, User::FastCounter());
1024 TEST2(err, KErrNone);
1025 TRequestStatus stat;
1026 tmp = User::FastCounter();
1030 User::WaitForRequest(stat);
1031 } while(stat.Int() > 0);
1032 nextFc = CalcTickDiff(tmp, User::FastCounter());
1033 tmp = User::FastCounter();
1034 recCnt = upd2.RowCount();
1035 rowCntFc = CalcTickDiff(tmp, User::FastCounter());
1037 fc = CalcTickDiff(fc, User::FastCounter());
1038 TEST2(stat.Int(), 0);
1039 TEST2(recCnt, KTestRecordCount);
1041 TheDatabase.Close();
1043 PrintFcDiffAsUs2(_L("###Async RDbUpdate, %3d records, Time=%d us\r\n"), recCnt, fc);
1044 PrintFcDiffAsUs (_L("###Execute() , Time=%d us\r\n"), execFc);
1045 PrintFcDiffAsUs (_L("###Next() , Time=%d us\r\n"), nextFc);
1046 PrintFcDiffAsUs (_L("###RowCount() , Time=%d us\r\n"), rowCntFc);
1049 err = TheFs.Delete(TheDatabaseFileName);
1050 TEST2(err, KErrNone);
1054 @SYMTestCaseID PDS-DBMS-UT-4013
1055 @SYMTestCaseDesc Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
1056 RDbStoreDatabase performance tests.
1057 @SYMTestPriority High
1058 @SYMTestActions Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
1059 @SYMTestExpectedResults Test must not fail
1062 void DbStoreDatabaseTestL()
1064 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4013 RDbStoreDatabase performance test"));
1066 CFileStore* fstore = CPermanentFileStore::ReplaceLC(TheFs, TheDatabaseFileName, EFileRead | EFileWrite);
1067 fstore->SetTypeL(fstore->Layout());
1069 //Create the database, insert records, compress the store.
1071 RDbStoreDatabase db1;
1072 CleanupClosePushL(db1);
1073 TUint32 fc = User::FastCounter();
1074 TStreamId strmId = db1.CreateL(fstore);
1075 TUint32 createFc = CalcTickDiff(fc, User::FastCounter());
1077 TInt err = db1.Execute(KCreateTestTableSql2);
1081 for(TInt i=0;i<KTestRecordCount;++i)
1083 err = db1.Execute(_L("INSERT INTO A(I1, I2) VALUES(1, 'ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZAAAAAAAAAAAAAAAAAAAAAAAAAAAA')"));
1089 CleanupStack::PopAndDestroy(&db1);
1090 TUint32 writeFc = CalcTickDiff(fc, User::FastCounter());
1093 err = fstore->File().Size(fsize1);
1094 TEST2(err, KErrNone);
1096 fc = User::FastCounter();
1097 RDbStoreDatabase::CompressL(*fstore, strmId);
1098 TUint32 compressFc = CalcTickDiff(fc, User::FastCounter());
1101 err = fstore->File().Size(fsize2);
1102 TEST2(err, KErrNone);
1104 CleanupStack::PopAndDestroy(fstore);
1106 PrintFcDiffAsUs2(_L("###RDbStoreDatabase, write %3d records, Time=%d us\r\n"), KTestRecordCount, writeFc);
1107 PrintFcDiffAsUs (_L("###CreateL() , Time=%d us\r\n"), createFc);
1108 PrintFcDiffAsUs (_L("###CompressL() , Time=%d us\r\n"), compressFc);
1110 //Decompress the store, open the database, read the records
1112 fstore = CPermanentFileStore::OpenLC(TheFs, TheDatabaseFileName, EFileRead | EFileWrite);
1113 fstore->SetTypeL(fstore->Layout());
1115 fc = User::FastCounter();
1116 RDbStoreDatabase::DecompressL(*fstore, strmId);
1117 TUint32 decompressFc = CalcTickDiff(fc, User::FastCounter());
1120 err = fstore->File().Size(fsize3);
1121 TEST2(err, KErrNone);
1123 RDbStoreDatabase db2;
1124 CleanupClosePushL(db2);
1125 fc = User::FastCounter();
1126 db2.OpenL(fstore, strmId);
1127 TUint32 openFc = CalcTickDiff(fc, User::FastCounter());
1130 err = view.Prepare(db2, _L("SELECT * FROM A"));
1131 TEST2(err, KErrNone);
1132 err = view.EvaluateAll();
1133 TEST2(err, KErrNone);
1136 CDbColSet* colSet = TheRowSet.ColSetL();
1137 const TDbColNo KIdx1 = colSet->ColNo(_L("I1"));
1138 const TDbColNo KIdx2 = colSet->ColNo(_L("I2"));
1139 const TDbColNo KIdx3 = colSet->ColNo(_L("I3"));
1143 if(TheRowSet.FirstL())
1150 RDbColReadStream strm1;
1151 strm1.OpenLC(TheRowSet, KIdx2);
1152 TBuf<KColSize2> buf;
1153 _LIT(KText, "ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZAAAAAAAAAAAAAAAAAAAAAAAAAAAA");//the same as the used in the INSERT statement above
1154 strm1.ReadL(buf, KText().Length());
1155 CleanupStack::PopAndDestroy(&strm1);
1156 TEST(KText() == buf);
1157 } while(TheRowSet.NextL());
1159 TEST2(recCnt, KTestRecordCount);
1162 TUint32 readFc = CalcTickDiff(fc, User::FastCounter());
1164 CleanupStack::PopAndDestroy(&db2);
1165 CleanupStack::PopAndDestroy(fstore);
1167 PrintFcDiffAsUs2(_L("###RDbStoreDatabase, read %3d records , Time=%d us\r\n"), recCnt, readFc);
1168 PrintFcDiffAsUs (_L("###OpenL() , Time=%d us\r\n"), openFc);
1169 PrintFcDiffAsUs (_L("###DecompressL() , Time=%d us\r\n"), decompressFc);
1170 TheTest.Printf(_L("###File size. After write: %d. After Compress(): %d. After Decompress(): %d\r\n"), fsize1, fsize2, fsize3);
1172 err = TheFs.Delete(TheDatabaseFileName);
1173 TEST2(err, KErrNone);
1177 @SYMTestCaseID PDS-DBMS-UT-4014
1178 @SYMTestCaseDesc Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
1179 RDbDatabase performance tests.
1180 @SYMTestPriority High
1181 @SYMTestActions Test for DEF141419 - DBMS, new performance tests - RDbUpdate, RDbStoreDatabase.
1182 @SYMTestExpectedResults Test must not fail
1185 void DbDatabaseTestL()
1187 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4014 RDbDatabase performance test"));
1189 TInt err = TheDatabase.Replace(TheFs, TheDatabaseFileName);
1190 TEST2(err, KErrNone);
1193 _LIT(KColName1, "Col1");
1194 _LIT(KColName2, "Col2");
1195 _LIT(KColName3, "Col3");
1196 TUint32 fc = User::FastCounter();
1197 CDbColSet* colset = CDbColSet::NewLC();
1198 TDbCol col1(KColName1, EDbColInt32);
1200 TDbCol col2(KColName2, EDbColText16, 100);
1202 TDbCol col3(KColName3, EDbColBinary, 100);
1204 TUint32 colSetFc = CalcTickDiff(fc, User::FastCounter());
1205 PrintFcDiffAsUs(_L("###CDbColSet::NewLC() & CDbColSet::AddL(), Time=%d us\r\n"), colSetFc);
1207 //RDbDatabase::CreateTable()
1208 _LIT(KTblName, "ATbl");
1209 fc = User::FastCounter();
1210 err = TheDatabase.CreateTable(KTblName, *colset);
1211 TUint32 createTblFc = CalcTickDiff(fc, User::FastCounter());
1212 TEST2(err, KErrNone);
1213 PrintFcDiffAsUs(_L("###RDbDatabase::CreateTable(), Time=%d us\r\n"), createTblFc);
1215 //RDbDatabase::AlterTable()
1216 _LIT(KColName4, "Col4");
1217 TDbCol col4(KColName4, EDbColReal64);
1219 fc = User::FastCounter();
1220 err = TheDatabase.AlterTable(KTblName, *colset);
1221 TUint32 alterTblFc = CalcTickDiff(fc, User::FastCounter());
1222 TEST2(err, KErrNone);
1223 PrintFcDiffAsUs(_L("###RDbDatabase::AlterTable(), Time=%d us\r\n"), alterTblFc);
1226 fc = User::FastCounter();
1227 CDbKey* dbKey = CDbKey::NewLC();
1228 TDbKeyCol keyCol1(KColName1, TDbKeyCol::EAsc);
1229 dbKey->AddL(keyCol1);
1230 TDbKeyCol keyCol2(KColName4, TDbKeyCol::EDesc);
1231 dbKey->AddL(keyCol2);
1232 TUint32 dbKeyFc = CalcTickDiff(fc, User::FastCounter());
1233 PrintFcDiffAsUs(_L("###CDbKey::NewLC() & CDbKey::AddL(), Time=%d us\r\n"), dbKeyFc);
1235 //RDbDatabase::CreateIndex()
1236 _LIT(KKeyName, "AKey");
1237 fc = User::FastCounter();
1238 err = TheDatabase.CreateIndex(KKeyName, KTblName, *dbKey);
1239 TUint32 createIndexFc = CalcTickDiff(fc, User::FastCounter());
1240 TEST2(err, KErrNone);
1241 PrintFcDiffAsUs(_L("###RDbDatabase::CreateIndex(), Time=%d us\r\n"), createIndexFc);
1243 CleanupStack::PopAndDestroy(dbKey);
1244 CleanupStack::PopAndDestroy(colset);
1246 //RDbDatabase::TableNamesL()
1247 fc = User::FastCounter();
1248 CDbTableNames* tblNames = TheDatabase.TableNamesL();
1249 TUint32 tblNamesFc = CalcTickDiff(fc, User::FastCounter());
1251 PrintFcDiffAsUs(_L("###RDbDatabase::TableNamesL(), Time=%d us\r\n"), tblNamesFc);
1253 //RDbDatabase::IndexNamesL()
1254 fc = User::FastCounter();
1255 CDbIndexNames* idxNames = TheDatabase.IndexNamesL(KTblName);
1256 TUint32 idxNamesFc = CalcTickDiff(fc, User::FastCounter());
1258 PrintFcDiffAsUs(_L("###RDbDatabase::IndexNamesL(), Time=%d us\r\n"), idxNamesFc);
1260 //RDbDatabase::ColSetL()
1261 fc = User::FastCounter();
1262 colset = TheDatabase.ColSetL(KTblName);
1263 colSetFc = CalcTickDiff(fc, User::FastCounter());
1265 PrintFcDiffAsUs(_L("###RDbDatabase::ColSetL(), Time=%d us\r\n"), colSetFc);
1267 //RDbDatabase::KeyL()
1268 fc = User::FastCounter();
1269 dbKey = TheDatabase.KeyL(KKeyName, KTblName);
1270 dbKeyFc = CalcTickDiff(fc, User::FastCounter());
1272 PrintFcDiffAsUs(_L("###RDbDatabase::KeyL(), Time=%d us\r\n"), dbKeyFc);
1274 //RDbDatabase::DropIndex()
1275 fc = User::FastCounter();
1276 err = TheDatabase.DropIndex(KKeyName, KTblName);
1277 TUint32 dropIdxFc = CalcTickDiff(fc, User::FastCounter());
1278 TEST2(err, KErrNone);
1279 PrintFcDiffAsUs(_L("###RDbDatabase::DropIndex(), Time=%d us\r\n"), dropIdxFc);
1281 //RDbDatabase::DropTable()
1282 fc = User::FastCounter();
1283 err = TheDatabase.DropTable(KTblName);
1284 TUint32 dropTblFc = CalcTickDiff(fc, User::FastCounter());
1285 TEST2(err, KErrNone);
1286 PrintFcDiffAsUs(_L("###RDbDatabase::DropTable(), Time=%d us\r\n"), dropTblFc);
1288 TheDatabase.Close();
1291 void PrintDiskUsage(const TDesC& aPath, TInt aOffset = 0)
1294 TheTest.Printf(_L("%*.*S%S\r\n"), aOffset, aOffset, &KSpace, &aPath);
1295 TFindFile* findFile = new TFindFile(TheFs);//TFindFile has TParse data member.
1296 //Since this function is called recoursively, on some platforms
1297 //the test might crash - "stack overflow" problem.
1298 TEST(findFile != NULL);
1299 CDir* fileNameCol = NULL;
1300 TBuf<8> fileNameMask;
1301 fileNameMask.Copy(_L("*.*"));
1302 TInt err = findFile->FindWildByDir(fileNameMask, aPath, fileNameCol);
1307 const TDesC& file = findFile->File();//"file" variable contains the drive and the path. the file name in "file" is invalid in this case.
1308 (void)TheParse.Set(file, NULL, NULL);
1309 TPtrC driveName = TheParse.Drive();
1310 if(aPath.FindF(driveName) >= 0)
1312 TInt cnt = fileNameCol->Count();
1313 for(TInt i=0;i<cnt;++i)
1315 const ::TEntry& entry = (*fileNameCol)[i];
1318 TheTest.Printf(_L("%*.*S %S, size=%d\r\n"), aOffset, aOffset, &KSpace, &entry.iName, entry.iSize);
1322 TFileName* path = new TFileName;//allocated in heap to prevent "stack overflow" prolem
1325 path->Append(entry.iName);
1326 path->Append(_L("\\"));
1327 PrintDiskUsage(*path, aOffset + 4);
1331 } // if(aPath.FindF(driveName) >= 0)
1335 } while((err = findFile->FindWild(fileNameCol)) == KErrNone);//Get the next set of files
1339 TheTest.Printf(_L(" FindWildByDir() failed with err=%d\r\n"), err);
1346 GetFastCounterFrequency();
1348 FileBlockSizeTestsL();
1360 DbColWriteStreamTestsL();
1362 DbColReadStreamTestsL();
1366 DbStoreDatabaseTestL();
1371 //Usage: "t_dbperf2 [<drive letter>:]"
1376 TheTrapCleanup = CTrapCleanup::New();
1377 TEST(TheTrapCleanup != NULL);
1379 //Construct test database file name
1380 _LIT(KTestDatabase, "c:\\dbms-tst\\t_dbperf2.db");
1382 User::CommandLine(fname);
1384 parse.Set(fname, &KTestDatabase, 0);
1385 const TDesC& dbFilePath = parse.FullName();
1386 TheDatabaseFileName.Copy(dbFilePath);
1387 TheTest.Printf(_L("Test database: %S\r\n"), &TheDatabaseFileName);
1388 //Construct test file name
1389 _LIT(KTestFile, "c:\\dbms-tst\\t_dbperf2.dat");
1390 parse.Set(fname, &KTestFile, 0);
1391 const TDesC& testFilePath = parse.FullName();
1392 TheTestFileName.Copy(testFilePath);
1396 TInt err = TheFs.Connect();
1397 TEST2(err, KErrNone);
1398 err = TheFs.MkDir(TheDatabaseFileName);
1399 TheTest.Printf(_L("MkDir(): err=%d\r\n"), err);
1400 TEST(err == KErrNone || err == KErrAlreadyExists);
1402 DeleteFile(TheDatabaseFileName);
1403 TRAP(err, DoTestL());
1404 DeleteFile(TheDatabaseFileName);
1405 DeleteFile(TheTestFileName);
1406 TEST2(err, KErrNone);
1408 TheTest.Printf(_L("====================== Disk usage ==================\r\n"));
1409 PrintDiskUsage(_L("c:\\"));
1410 TheTest.Printf(_L("====================================================\r\n"));
1419 delete TheTrapCleanup;