os/persistentdata/persistentstorage/sql/TEST/t_sqlperformance4.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2009-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 // NTT DOCOMO, INC - Fix for Bug 3170 "SQL library test T_SQLPERFORMANCE4 fails with USER 84 panic"
    13 //
    14 // Description:
    15 //
    16 
    17 #include <e32test.h>
    18 #include <bautils.h>
    19 #include <sqldb.h>
    20 #include <hal.h>
    21 #include "t_sqlcmdlineutil.h"
    22 
    23 ///////////////////////////////////////////////////////////////////////////////////////
    24 
    25 RTest			TheTest(_L("t_sqlperformance4 test"));
    26 RSqlDatabase 	TheDbC;
    27 RFs				TheFs;
    28 
    29 _LIT(KCDriveDatabase, "c:[a000017f]t_sqlperformance4.db");
    30 
    31 TFileName		TheDbFileName;
    32 TBuf<200> TheTestTitle;
    33 TCmdLineParams TheCmdLineParams;
    34 TBuf8<200> TheSqlConfigString;
    35 
    36 _LIT(KUtf8,  "UTF8 ");
    37 _LIT(KUtf16, "UTF16");
    38 
    39 _LIT(KMusicCreateTable, "CREATE TABLE Music("
    40     L"UniqueId INTEGER PRIMARY KEY,"
    41     L"DbFlag INTEGER,"
    42     L"VolumeId INTEGER,"
    43     L"Title TEXT COLLATE NOCASE,"
    44     L"Artist INTEGER,"
    45     L"Art TEXT,"
    46     L"Deleted INTEGER DEFAULT 0,"
    47     L"Location TEXT,"
    48     L"AlbumTrack INTEGER,"
    49     L"PlayCount INTEGER DEFAULT 0,"
    50     L"TimeAdded TEXT,"
    51     L"TimePlayed TEXT DEFAULT '',"
    52     L"Duration INTEGER,"
    53     L"Sync INTEGER DEFAULT 0,"
    54     L"Modified INTEGER DEFAULT 0,"
    55     L"Album INTEGER,"
    56     L"Genre INTEGER,"
    57     L"Composer INTEGER,"
    58     L"ReleaseDate TEXT DEFAULT '',"
    59     L"Rating INTEGER,"
    60     L"Comment TEXT,"
    61     L"Copyright TEXT,"
    62     L"Url TEXT,"
    63     L"DRM INTEGER,"
    64     L"LastPlayPosition INTEGER DEFAULT 0,"
    65     L"SampleRate INTEGER,"
    66     L"BitRate INTEGER,"
    67     L"NumChannels INTEGER,"
    68     L"Codec INTEGER,"
    69     L"MimeType TEXT,"
    70     L"MTPDrmStatus INTEGER)");
    71 
    72 _LIT(KAuxiliaryCreateTable, "CREATE TABLE Auxiliary("
    73     L"Id INTEGER,"
    74     L"Version TEXT,"
    75     L"TimeRefreshed TEXT,"
    76     L"TimeSynced TEXT,"
    77     L"Corrupt INTEGER DEFAULT 0,"
    78     L"SaveDeletedRecordCount INTEGER DEFAULT 0)");
    79 
    80 _LIT(KAlbumCreateTable,"CREATE TABLE Album("
    81     L"UniqueId INTEGER PRIMARY KEY,"
    82     L"Name TEXT COLLATE NOCASE,"
    83     L"SongCount INTEGER,"
    84     L"Artist INTEGER,"
    85     L"Art TEXT)");
    86 
    87 _LIT(KArtistCreateTable,"CREATE TABLE Artist("
    88     L"UniqueId INTEGER PRIMARY KEY,"
    89     L"Name TEXT COLLATE NOCASE,"
    90     L"SongCount INTEGER)");
    91 
    92 _LIT(KComposerCreateTable,"CREATE TABLE Composer("
    93     L"UniqueId INTEGER PRIMARY KEY,"
    94     L"Name TEXT COLLATE NOCASE,"
    95     L"SongCount INTEGER)");
    96 
    97 _LIT(KGenreCreateTable,"CREATE TABLE Genre("
    98     L"UniqueId INTEGER PRIMARY KEY,"
    99     L"Name TEXT COLLATE NOCASE,"
   100     L"SongCount INTEGER)");
   101 
   102 _LIT(KPlaylistCreateTable, "CREATE TABLE Playlist("
   103     L"UniqueId INTEGER PRIMARY KEY,"
   104     L"VolumeId INTEGER,"
   105     L"DbFlag INTEGER,"
   106     L"Sync INTEGER,"
   107     L"Name TEXT COLLATE NOCASE,"
   108     L"Uri TEXT,"
   109     L"Time TEXT)");
   110 
   111 _LIT(KPlaylistSongsCreateTable, "CREATE TABLE PlaylistSongs("
   112     L"UniqueId INTEGER PRIMARY KEY AUTOINCREMENT,"
   113     L"SongId INTEGER,"
   114     L"PlaylistId INTEGER,"
   115     L"Ordinal INTEGER)");
   116 
   117 _LIT(KPlaylistSongInfoCreateTable, "CREATE TABLE PlaylistSongInfo("
   118     L"SongId INTEGER PRIMARY KEY,"
   119     L"VolumeId INTEGER,"
   120     L"DbFlag INTEGER,"
   121     L"Uri TEXT,"
   122     L"Title TEXT COLLATE NOCASE)");
   123 
   124 
   125 _LIT(KBeginTransaction, "BEGIN TRANSACTION");
   126 _LIT(KCommitTransaction, "COMMIT TRANSACTION");
   127 
   128 ///////////////////////////////////////////////////////////////////////////////////////
   129 
   130 void TestEnvDestroy()
   131 	{
   132 	TheDbC.Close();
   133 	(void)RSqlDatabase::Delete(TheDbFileName);
   134 	TheFs.Close();
   135 	}
   136 
   137 ///////////////////////////////////////////////////////////////////////////////////////
   138 ///////////////////////////////////////////////////////////////////////////////////////
   139 //Test macros and functions
   140 void Check1(TInt aValue, TInt aLine)
   141 	{
   142 	if(!aValue)
   143 		{
   144 		TestEnvDestroy();
   145 		TheTest.Printf(_L("*** Line %d\r\n"), aLine);
   146 		TheTest(EFalse, aLine);
   147 		}
   148 	}
   149 void Check2(TInt aValue, TInt aExpected, TInt aLine)
   150 	{
   151 	if(aValue != aExpected)
   152 		{
   153 		TestEnvDestroy();
   154 		TheTest.Printf(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
   155 		TheTest(EFalse, aLine);
   156 		}
   157 	}
   158 #define TEST(arg) ::Check1((arg), __LINE__)
   159 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
   160 
   161 
   162 TInt GetDuration(TUint32 aStartTicks, TUint32 aEndTicks)
   163 	{
   164 	static TInt freq = 0;
   165 	if(freq == 0)
   166 		{
   167 		HAL::Get(HAL::EFastCounterFrequency, freq);
   168 		}
   169 	TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
   170 	if(diffTicks < 0)
   171 		{
   172 		diffTicks = KMaxTUint32 + diffTicks + 1;
   173 		}
   174 	const TInt KMicroSecIn1Sec = 1000000;
   175 	
   176 	return ((diffTicks * KMicroSecIn1Sec) / freq);
   177 	}
   178 
   179 ///////////////////////////////////////////////////////////////////////////////////////
   180 
   181 void CreateDatabaseL(const TDesC& aDbName)
   182 	{			
   183 	// create the database now
   184 	RSqlSecurityPolicy securityPolicy;
   185 	CleanupClosePushL(securityPolicy);
   186 	
   187 	TSecurityPolicy policy(TSecurityPolicy::EAlwaysPass);
   188 	securityPolicy.Create(policy);
   189 	
   190 	TSecurityPolicy schemaPolicy(TSecurityPolicy::EAlwaysPass);
   191 	TSecurityPolicy readPolicy(TSecurityPolicy::EAlwaysPass);
   192 	TSecurityPolicy writePolicy(TSecurityPolicy::EAlwaysPass);
   193 	
   194 	User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::ESchemaPolicy, schemaPolicy));
   195 	User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EReadPolicy, readPolicy));
   196 	User::LeaveIfError(securityPolicy.SetDbPolicy(RSqlSecurityPolicy::EWritePolicy, writePolicy));
   197  
   198 	TheTest.Printf(_L("Creating Database %S\n"),  &aDbName);
   199 		
   200 	TInt err = TheDbC.Create(aDbName, securityPolicy, &TheSqlConfigString);
   201 
   202 	if (KErrAlreadyExists == err)
   203 		{
   204 		
   205 		// the file already exists
   206 		// make sure we delete the file
   207         User::LeaveIfError(TheDbC.Delete(aDbName));
   208 
   209         // try again
   210         err = TheDbC.Create(aDbName, securityPolicy, &TheSqlConfigString);
   211 
   212 		}
   213 	
   214 	User::LeaveIfError(err);
   215 	
   216 	//Create tables	
   217 	User::LeaveIfError(TheDbC.Exec(KMusicCreateTable));
   218 	User::LeaveIfError(TheDbC.Exec(KAuxiliaryCreateTable));
   219 	User::LeaveIfError(TheDbC.Exec(KAlbumCreateTable));
   220 	User::LeaveIfError(TheDbC.Exec(KArtistCreateTable));
   221 	User::LeaveIfError(TheDbC.Exec(KComposerCreateTable));
   222 	User::LeaveIfError(TheDbC.Exec(KGenreCreateTable));
   223 	User::LeaveIfError(TheDbC.Exec(KPlaylistCreateTable));
   224 	User::LeaveIfError(TheDbC.Exec(KPlaylistSongInfoCreateTable));
   225 	User::LeaveIfError(TheDbC.Exec(KPlaylistSongsCreateTable));
   226 	
   227 	TheDbC.Close();
   228 	
   229 	CleanupStack::PopAndDestroy(&securityPolicy);
   230 	}
   231 
   232 void TestEnvInit()
   233     {
   234     
   235 	TInt err = TheFs.Connect();
   236 	TEST2(err, KErrNone);	
   237 	
   238 	//Create database files
   239 	TRAP(err,CreateDatabaseL(TheDbFileName));
   240 	TEST2(err, KErrNone);
   241 	
   242 	}
   243 	
   244 		
   245 ///////////////////////////////////////////////////////////////////////////////////////
   246 /**
   247 @SYMTestCaseID			PDS-SQL-UT-4151
   248 @SYMTestCaseDesc		Measures the performance of inserting multiple records
   249 						into the Music Player MPX database.  This test is based on 
   250 						a real Music Player Harvesting use case
   251 @SYMTestPriority		Medium
   252 @SYMTestActions			Reads SQL transactions from a file and executes them.  
   253 						Records the time for executing each statement
   254 @SYMTestExpectedResults All statements should be executed without error and 
   255 						performance measurements logged
   256 @SYMDEF					DEF142306
   257 */
   258 void RunTest()
   259 	{
   260 	//Open the file with the sql statements 
   261 	_LIT(KSqlFileName,"z:\\test\\t_sqlperformance4.sql");
   262 	RFile sqlFile;
   263 	TInt err = sqlFile.Open(TheFs, KSqlFileName, EFileRead); 
   264 	TEST2(err, KErrNone);
   265 	
   266 	TInt fileLen = 0;
   267 	err = sqlFile.Size(fileLen); 
   268 	TEST2(err, KErrNone);
   269 	
   270 	HBufC8* sqlBuf = HBufC8::New(fileLen); 
   271 	TEST(sqlBuf != NULL);
   272 	TPtr8 sql = sqlBuf->Des();
   273 	err = sqlFile.Read(sql);
   274 	
   275 	sqlFile.Close();
   276 	TEST2(err, KErrNone);
   277 	TEST2(sql.Length(), fileLen);
   278 	
   279 	//Open main database
   280 	err = TheDbC.Open(TheDbFileName, &TheSqlConfigString);
   281 	TEST2(err, KErrNone);
   282 	
   283 	TheTest.Printf(_L("Beginning INSERTS...\n"));
   284 	
   285 	const TInt KRecordCount = 6544;
   286 	TInt recordCount = 0;
   287 	TInt insertCnt = 0;
   288 	TInt updateCnt = 0;
   289 	TInt selectCnt = 0;
   290 	TInt trnCnt = 0;
   291 	TInt totalTime = 0;
   292 
   293 	TInt insertTrnCnt = 0;
   294 	TInt updateTrnCnt = 0;
   295 	TInt selectTrnCnt = 0;
   296 	
   297 	for(;sql.Length()>0;)
   298 		{
   299 		TInt eolPos = sql.Locate(TChar('\n'));
   300 		if(eolPos < 0)
   301 			{
   302 			break;//No more SQL statements
   303 			}
   304 		TInt stmtLength = eolPos;
   305 		while (stmtLength > 0 && (sql[stmtLength-1] == '\r'))
   306 			{
   307 			--stmtLength; //Reduce length to remove carriage return characters from the end of the statement string
   308 			}
   309 		TPtrC8 sqlStmt8(sql.Ptr(), stmtLength);
   310 		TPtrC8 ptr = sql.Mid(eolPos + 1);//"eolPos + 1" - first character after '\n'
   311 		sql.Set(const_cast <TUint8*> (ptr.Ptr()), ptr.Length(), ptr.Length());
   312 		++recordCount;
   313 		
   314 		//Convert to 16 bit query string
   315 		TBuf<1024> query;
   316 		query.Copy(sqlStmt8);
   317 		
   318 		//Execute the statement
   319 		TInt start = User::FastCounter();
   320 		err = TheDbC.Exec(query);
   321 		TInt end = User::FastCounter();
   322 		
   323 		TEST(err >= 0);
   324 		
   325 		//Get the execution time for that statement
   326 		TInt duration = GetDuration(start, end);
   327 		totalTime += duration;
   328 		
   329 		if(query == KBeginTransaction)
   330 			{		
   331 			TheTest.Printf(_L("Execute Statement - BEGIN: %d us\n"), duration);
   332 			}
   333 		
   334 		else if(query == KCommitTransaction)
   335 			{
   336 			++trnCnt;
   337 			TheTest.Printf(_L("Execute Statement - COMMIT: %d us, Trn#%d, \"INSERT\" count: %d, \"UPDATE\" count: %d, \"SELECT\" count: %d\n"), 
   338 					duration, trnCnt, insertTrnCnt, updateTrnCnt, selectTrnCnt);
   339 			insertTrnCnt = updateTrnCnt = selectTrnCnt = 0;
   340 			}
   341 
   342 		else
   343 			{	
   344 			TPtrC queryType(query.Ptr(), 6);
   345 			TheTest.Printf(_L("Execute Statement - %S: %d us\n"),&queryType, duration);
   346 			if(queryType.FindF(_L("INSERT")) >= 0)
   347 				{
   348 				++insertCnt;
   349 				++insertTrnCnt;
   350 				}
   351 			else if(queryType.FindF(_L("UPDATE")) >= 0)
   352 				{
   353 				++updateCnt;
   354 				++updateTrnCnt;
   355 				}
   356 			else if(queryType.FindF(_L("SELECT")) >= 0)
   357 				{
   358 				++selectCnt;
   359 				++selectTrnCnt;
   360 				}
   361 			}
   362 		}
   363 	delete sqlBuf;
   364 	
   365 	TheDbC.Close();
   366 	
   367 	TheTest.Printf(_L("Total time to process Songs: %d us\n"), totalTime);
   368 	TheTest.Printf(_L("Transactions count: %d, \"INSERT\" count: %d, \"UPDATE\" count: %d, \"SELECT\" count: %d\n"), 
   369 			               trnCnt, insertCnt, updateCnt, selectCnt);
   370 	TEST2(recordCount, KRecordCount);
   371 	}
   372 ///////////////////////////////////////////////////////////////////////////////////
   373 ///////////////////////////////////////////////////////////////////////////////////
   374 
   375 void DoTests()
   376 	{
   377 	TheTestTitle.Format(_L("@SYMTestCaseID:PDS-SQL-UT-4151; SQL Music Player Db Performance Test, encoding: \"%S\", page size: %d\r\n"), 
   378 			TheCmdLineParams.iDbEncoding == TCmdLineParams::EDbUtf16 ? &KUtf16 : &KUtf8, TheCmdLineParams.iPageSize);
   379 	TheTest.Start(TheTestTitle);
   380 	
   381 	RunTest();
   382 	}
   383 
   384 TInt E32Main()
   385 	{
   386 	TheTest.Title();
   387 
   388 	CTrapCleanup* tc = CTrapCleanup::New();
   389 	TheTest(tc != NULL);
   390 
   391 	__UHEAP_MARK;
   392 
   393 	GetCmdLineParamsAndSqlConfigString(TheTest, _L("t_sqlperformance4"), TheCmdLineParams, TheSqlConfigString);
   394 	PrepareDbName(KCDriveDatabase, TheCmdLineParams.iDriveName, TheDbFileName);
   395 
   396 	TheTest.Printf(_L("==Databases: %S\r\n"), &TheDbFileName); 
   397 	
   398 	TestEnvInit();
   399 	
   400 	DoTests();
   401 	
   402 	TestEnvDestroy();
   403 	
   404 	__UHEAP_MARKEND;
   405 	
   406 	TheTest.End();
   407 	TheTest.Close();
   408 	
   409 	delete tc;
   410 
   411 	User::Heap().Check();
   412 	return KErrNone;
   413 	}