os/persistentdata/persistentstorage/dbms/tdbms/t_dbbench.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <d32dbms.h>
    17 #include <s32file.h>
    18 #include <e32test.h>
    19 #include <e32math.h>
    20 #include <e32svr.h>
    21 #include <hal.h>
    22 #include <d32dbmsconstants.h>
    23 
    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
    28 #endif
    29 
    30 class TTimer
    31 	{
    32 public:
    33 	void Start();
    34 	TReal Stop() const;
    35 private:
    36 	TUint iTicks;
    37 	};
    38 
    39 LOCAL_D RTest test(_L("t_dbbench"));
    40 LOCAL_D CTrapCleanup* TheTrapCleanup;
    41 LOCAL_D RDbNamedDatabase TheDatabase;
    42 LOCAL_D RDbView TheView;
    43 LOCAL_D RFs TheFs;
    44 
    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;
    54 
    55 static TTimer TheTimer;
    56 
    57 void TTimer::Start()
    58 	{
    59 	iTicks=User::FastCounter();
    60 	}
    61 
    62 TReal TTimer::Stop() const
    63 	{
    64 	TUint ticks = User::FastCounter() - iTicks;
    65 	TInt freq = 0;
    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;
    71 	}
    72 
    73 LOCAL_C void CloseDatabase()
    74 	{
    75 	TheDatabase.Close();
    76 	}
    77 
    78 /**
    79 Create the database: keep the code 050 compatible
    80 
    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
    87 @SYMREQ                 REQ0000
    88 */
    89 LOCAL_C void CreateDatabaseL()
    90 	{
    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;
    96 	set.AddL(col);
    97 	col.iName=KColXcluster;
    98 	set.AddL(col);
    99 	col.iName=KColRandom;
   100 	set.AddL(col);
   101 	col.iName=KColXrandom;
   102 	set.AddL(col);
   103 	TInt r=TheDatabase.CreateTable(KTableName,set);
   104 	test (r==KErrNone);
   105 	CleanupStack::PopAndDestroy();
   106 	TheTimer.Start();
   107 	r=TheView.Prepare(TheDatabase,_L("select * from test"),TheView.EInsertOnly);
   108 	TheDatabase.Begin();
   109 	test (r==KErrNone);
   110 	TInt jj=0;
   111 	for (TInt ii=0;ii<KRecords;++ii)
   112 		{
   113 		TheView.InsertL();
   114 		jj=(jj+23);
   115 		if (jj>=KRecords)
   116 			jj-=KRecords;
   117 		TheView.SetColL(1,ii);
   118 		TheView.SetColL(2,ii);
   119 		TheView.SetColL(3,jj);
   120 		TheView.SetColL(4,jj);
   121 		TheView.PutL();
   122 		}
   123 	r=TheDatabase.Commit();
   124 	test (r==KErrNone);
   125 	TheView.Close();
   126 	test.Printf(_L("Build table: %7.1f ms\n"),TheTimer.Stop());
   127 	TheTimer.Start();
   128 	CDbKey& key=*CDbKey::NewLC();
   129 	key.AddL(KColXcluster);
   130 	key.MakeUnique();
   131 	r=TheDatabase.CreateIndex(KColXcluster,KTableName,key);
   132 	test (r==KErrNone);
   133 	test.Printf(_L("Cluster index: %7.1f ms\n"),TheTimer.Stop());
   134 	TheTimer.Start();
   135 	key.Clear();
   136 	key.AddL(KColXrandom);
   137 	r=TheDatabase.CreateIndex(KColXrandom,KTableName,key);
   138 	test (r==KErrNone);
   139 	CleanupStack::PopAndDestroy();
   140 	test.Printf(_L("Random index: %7.1f ms\n"),TheTimer.Stop());
   141 	TheTimer.Start();
   142 	r = TheDatabase.Compact();
   143 	test.Printf(_L("Compact: %7.1f ms\n"),TheTimer.Stop());
   144 	test (r == KErrNone);
   145 	}
   146 
   147 LOCAL_C TReal Evaluate(const TDesC& aSql)
   148 	{
   149 	TInt m=1;
   150 	for (;;)
   151 		{
   152 		TheTimer.Start();
   153 		for (TInt ii=0;ii<m;++ii)
   154 			{
   155 			TInt r=TheView.Prepare(TheDatabase,aSql,KDbUnlimitedWindow,TheView.EReadOnly);
   156 			if (r<0)
   157 				return r;
   158 			r=TheView.EvaluateAll();
   159 			test (r==KErrNone);
   160 			TheView.Close();
   161 			}
   162 		TReal t=TheTimer.Stop();
   163 		if (t>=100.0)
   164 			return t/m;
   165 		m*=4;
   166 		}
   167 	}
   168 
   169 struct TTest
   170 	{
   171 	const TText* iName;
   172 	const TText* iQuery;
   173 	};
   174 const TTest KQuery[]=
   175 	{
   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")}
   186 	};
   187 
   188 /**
   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
   194 @SYMREQ                 REQ0000
   195 */
   196 LOCAL_C void Queries()
   197 	{
   198 	test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0578 "));
   199 	for (TUint ii=0;ii<sizeof(KQuery)/sizeof(KQuery[0]);++ii)
   200 		{
   201 		test.Printf(_L("%15s: "),KQuery[ii].iName);
   202 		TReal t=Evaluate(TPtrC(KQuery[ii].iQuery));
   203 		if (t<0.0)
   204 			test.Printf(_L("-\n"));
   205 		else
   206 			test.Printf(_L("%7.1f ms\n"),t);
   207 		}
   208 	}
   209 
   210 //
   211 // Benchmark tests
   212 //
   213 LOCAL_C void BenchTestL()
   214 	{
   215 	CreateDatabaseL();
   216 	Queries();
   217 	CloseDatabase();
   218 	}
   219 
   220 //
   221 // Prepare the test directory.
   222 //
   223 LOCAL_C void setupTestDirectory()
   224     {
   225 	TInt r=TheFs.Connect();
   226 	test(r==KErrNone);
   227 //
   228 #if 0
   229 	TDriveList drives;
   230 	TheFs.DriveList(drives);
   231 	if (drives[EDriveK] == KDriveAbsent)
   232 		{
   233 		TInt r = TheFs.AddFileSystem(_L("ELFFS"));
   234 		test (r == KErrNone);
   235 		r = TheFs.MountFileSystem(_L("Lffs"),EDriveK);
   236 		if (r == KErrCorrupt || r == KErrNotReady)
   237 			{
   238 			RFormat format;
   239 			TInt    count;
   240 			r = format.Open(TheFs, _L("K:\\"), EHighDensity, count);
   241 			test (r == KErrNone);
   242 			while (count)
   243 				format.Next(count);
   244 			format.Close();
   245     		}
   246 		else
   247 			test (r == KErrNone);
   248 		}
   249 #endif
   250 //
   251 	r=TheFs.MkDir(KTestDatabase);
   252 	test(r==KErrNone || r==KErrAlreadyExists);
   253 	}
   254 
   255 //
   256 // Initialise the cleanup stack.
   257 //
   258 LOCAL_C void setupCleanup()
   259     {
   260 	TheTrapCleanup=CTrapCleanup::New();
   261 	test(TheTrapCleanup!=NULL);
   262 	TRAPD(r,\
   263 		{\
   264 		for (TInt i=KTestCleanupStack;i>0;i--)\
   265 			CleanupStack::PushL((TAny*)0);\
   266 		CleanupStack::Pop(KTestCleanupStack);\
   267 		});
   268 	test(r==KErrNone);
   269 	}
   270 
   271 //
   272 // entry point
   273 //
   274 GLDEF_C TInt E32Main()
   275     {
   276 	test.Title();
   277 	setupTestDirectory();
   278 	setupCleanup();
   279 	__UHEAP_MARK;
   280 //
   281 	test.Start(_L("Benchmarking..."));
   282 	TRAPD(r,BenchTestL());
   283 	test(r==KErrNone);
   284 	test.End();
   285 //
   286 	__UHEAP_MARKEND;
   287 	delete TheTrapCleanup;
   288 
   289 	//T_BENCH.DB cannot be deleted here, because it is used by T_COMP test!
   290 
   291 	TheFs.Close();
   292 	test.Close();
   293 	return 0;
   294     }