Update contrib.
1 // Copyright (c) 1998-2009 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.
22 #include <d32dbmsconstants.h>
24 // MSVC++ up to 5.0 has problems with expanding inline functions
25 // This disables the mad warnings for the whole project
26 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
27 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
39 LOCAL_D RTest test(_L("t_dbbench"));
40 LOCAL_D CTrapCleanup* TheTrapCleanup;
41 LOCAL_D RDbNamedDatabase TheDatabase;
42 LOCAL_D RDbView TheView;
45 const TInt KTestCleanupStack=0x20;
46 //T_BENCH file shall not be deleted at the end of the test! It will be used by T_COMP test.
47 const TPtrC KTestDatabase=_S("\\DBMS-TST\\T_BENCH.DB");
48 const TPtrC KTableName=_S("Test");
49 const TPtrC KColCluster=_S("Cluster");
50 const TPtrC KColXcluster=_S("xCluster");
51 const TPtrC KColRandom=_S("Random");
52 const TPtrC KColXrandom=_S("xRandom");
53 const TInt KRecords=2000;
55 static TTimer TheTimer;
59 iTicks=User::FastCounter();
62 TReal TTimer::Stop() const
64 TUint ticks = User::FastCounter() - iTicks;
66 test(HAL::Get(HAL::EFastCounterFrequency, freq) == KErrNone);
67 const TInt KMicroSecIn1Sec = 1000000;
68 const TInt KMsIn1Sec = 1000;
69 double v = ((double)ticks * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
70 return v2 / KMsIn1Sec;
73 LOCAL_C void CloseDatabase()
79 Create the database: keep the code 050 compatible
81 @SYMTestCaseID SYSLIB-DBMS-CT-0577
82 @SYMTestCaseDesc Benchmark Tests. Creation of a local Database test
83 @SYMTestPriority Medium
84 @SYMTestActions Attempt to test RDbNamedDatabase::CreateTable(),RDbNamedDatabase::CreateIndex(),
85 RDbNamedDatabase::Compact(),RDbView::Prepare() functions
86 @SYMTestExpectedResults Test must not fail
89 LOCAL_C void CreateDatabaseL()
91 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0577 "));
92 User::LeaveIfError(TheDatabase.Replace(TheFs,KTestDatabase));
93 CDbColSet& set=*CDbColSet::NewLC();
94 TDbCol col(KColCluster,EDbColInt32);
95 col.iAttributes=col.ENotNull;
97 col.iName=KColXcluster;
101 col.iName=KColXrandom;
103 TInt r=TheDatabase.CreateTable(KTableName,set);
105 CleanupStack::PopAndDestroy();
107 r=TheView.Prepare(TheDatabase,_L("select * from test"),TheView.EInsertOnly);
111 for (TInt ii=0;ii<KRecords;++ii)
117 TheView.SetColL(1,ii);
118 TheView.SetColL(2,ii);
119 TheView.SetColL(3,jj);
120 TheView.SetColL(4,jj);
123 r=TheDatabase.Commit();
126 test.Printf(_L("Build table: %7.1f ms\n"),TheTimer.Stop());
128 CDbKey& key=*CDbKey::NewLC();
129 key.AddL(KColXcluster);
131 r=TheDatabase.CreateIndex(KColXcluster,KTableName,key);
133 test.Printf(_L("Cluster index: %7.1f ms\n"),TheTimer.Stop());
136 key.AddL(KColXrandom);
137 r=TheDatabase.CreateIndex(KColXrandom,KTableName,key);
139 CleanupStack::PopAndDestroy();
140 test.Printf(_L("Random index: %7.1f ms\n"),TheTimer.Stop());
142 r = TheDatabase.Compact();
143 test.Printf(_L("Compact: %7.1f ms\n"),TheTimer.Stop());
144 test (r == KErrNone);
147 LOCAL_C TReal Evaluate(const TDesC& aSql)
153 for (TInt ii=0;ii<m;++ii)
155 TInt r=TheView.Prepare(TheDatabase,aSql,KDbUnlimitedWindow,TheView.EReadOnly);
158 r=TheView.EvaluateAll();
162 TReal t=TheTimer.Stop();
174 const TTest KQuery[]=
176 {_S("project"),_S("select cluster,xcluster,random,xrandom from test")},
177 {_S("restrict 1"),_S("select * from test where cluster=0")},
178 {_S("restrict 2"),_S("select * from test where xrandom=0")},
179 {_S("restrict 3"),_S("select * from test where xcluster<500 and xrandom <500")},
180 {_S("order 1"),_S("select * from test order by xrandom")},
181 {_S("order 2"),_S("select * from test order by cluster")},
182 {_S("all 1"),_S("select * from test where random<500 order by xrandom")},
183 {_S("all 2"),_S("select * from test where xcluster<500 order by xrandom")},
184 {_S("all 3"),_S("select * from test where xcluster<500 order by xcluster")},
185 {_S("all 4"),_S("select * from test where xcluster<500 and xrandom<200 order by xcluster")}
189 @SYMTestCaseID SYSLIB-DBMS-CT-0578
190 @SYMTestCaseDesc Benchmark Test.Querying a local Database Test
191 @SYMTestPriority Medium
192 @SYMTestActions Evaluate SELECT queries on the created database
193 @SYMTestExpectedResults Test must not fail
196 LOCAL_C void Queries()
198 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0578 "));
199 for (TUint ii=0;ii<sizeof(KQuery)/sizeof(KQuery[0]);++ii)
201 test.Printf(_L("%15s: "),KQuery[ii].iName);
202 TReal t=Evaluate(TPtrC(KQuery[ii].iQuery));
204 test.Printf(_L("-\n"));
206 test.Printf(_L("%7.1f ms\n"),t);
213 LOCAL_C void BenchTestL()
221 // Prepare the test directory.
223 LOCAL_C void setupTestDirectory()
225 TInt r=TheFs.Connect();
230 TheFs.DriveList(drives);
231 if (drives[EDriveK] == KDriveAbsent)
233 TInt r = TheFs.AddFileSystem(_L("ELFFS"));
234 test (r == KErrNone);
235 r = TheFs.MountFileSystem(_L("Lffs"),EDriveK);
236 if (r == KErrCorrupt || r == KErrNotReady)
240 r = format.Open(TheFs, _L("K:\\"), EHighDensity, count);
241 test (r == KErrNone);
247 test (r == KErrNone);
251 r=TheFs.MkDir(KTestDatabase);
252 test(r==KErrNone || r==KErrAlreadyExists);
256 // Initialise the cleanup stack.
258 LOCAL_C void setupCleanup()
260 TheTrapCleanup=CTrapCleanup::New();
261 test(TheTrapCleanup!=NULL);
264 for (TInt i=KTestCleanupStack;i>0;i--)\
265 CleanupStack::PushL((TAny*)0);\
266 CleanupStack::Pop(KTestCleanupStack);\
274 GLDEF_C TInt E32Main()
277 setupTestDirectory();
281 test.Start(_L("Benchmarking..."));
282 TRAPD(r,BenchTestL());
287 delete TheTrapCleanup;
289 //T_BENCH.DB cannot be deleted here, because it is used by T_COMP test!