os/persistentdata/persistentstorage/sql/SRC/Client/SqlResourceTest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <sqldb.h>				//TSqlResourceTester
    17 #include "SqlResourceTest.h"	//TSqlResourceTestData
    18 #include "SqlAssert.h"			//ESqlPanicInternalError
    19 #include "SqlDbSession.h"		//RSqlDbSession
    20 #include "SqlResourceTester.h"		//TSqlResourceTester
    21 
    22 ///////////////////////////////////////////////////////////////////////////////////////////////////////
    23 ////////////////////////             TSqlResourceTestData                 /////////////////////////////
    24 ///////////////////////////////////////////////////////////////////////////////////////////////////////
    25 
    26 #pragma BullseyeCoverage off
    27 
    28 #ifdef _DEBUG
    29 
    30 /**
    31 Ensures that TSqlResourceTestData singleton is created and returns a pointer to the object.
    32 
    33 The function has a meaningfull implementation only in _DEBUG mode.
    34 
    35 @return A pointer to TSqlResourceTestData singleton. The return result might be NULL.
    36 */
    37 TSqlResourceTestData* TSqlResourceTestData::Instance()
    38 	{
    39 	TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
    40 	if(!instance)
    41 		{
    42 		instance = new TSqlResourceTestData;
    43 		if(instance)
    44 			{
    45 			if(Dll::SetTls(instance) != KErrNone)
    46 				{
    47 				delete instance;	
    48 				instance = NULL;
    49 				}
    50 			}
    51 		}
    52 	return instance;
    53 	}
    54 
    55 /**
    56 Destroys TSqlResourceTestData singleton.
    57 
    58 The function has a meaningfull implementation only in _DEBUG mode.
    59 */
    60 void TSqlResourceTestData::Release()
    61 	{
    62 	TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
    63 	delete instance;
    64 	(void)Dll::SetTls(NULL);
    65 	}
    66 		
    67 /**
    68 Initializes TSqlResourceTestData singleton with a reference to RSqlDbSession instance.
    69 If a test data has been previously set by calling TSqlResourceTestData::Set(), then
    70 the test data will be sent now to the SQL server.
    71 
    72 The function has a meaningfull implementation only in _DEBUG mode.
    73 
    74 @param aDbSession A reference to RDbSession instance.
    75 
    76 @return KErrNone The call completed successfully, system-wide error code otherwise.
    77 */
    78 TInt TSqlResourceTestData::Init(RSqlDbSession& aDbSession)
    79 	{
    80 	iDbSession = &aDbSession;
    81 	TInt rc = KErrNone;
    82 	if(iRqPending)
    83 		{
    84 		rc = iDbSession->SendReceive(iFunction, TIpcArgs(iAllocFailType, iRate));
    85 		}
    86 	iRqPending = EFalse;
    87 	return rc;
    88 	}
    89 	
    90 /**
    91 If the TSqlResourceTestData singleton is already initialized (TSqlResourceTestData::Init() call),
    92 then the test command and data will be sent directly to the SQL server. Othwerwise the test command
    93 and data will be stored and sent later when the TSqlResourceTestData singleton gets initialized.
    94 
    95 The function has a meaningfull implementation only in _DEBUG mode.
    96 
    97 @param aFunction Test command to be sent to the SQL server
    98 @param aAllocFailType Heap failure allocation type
    99 @param arate Heap failure rate
   100 
   101 @return KErrNone The call completed successfully, system-wide error code otherwise.
   102 */
   103 TInt TSqlResourceTestData::Set(TSqlSrvFunction aFunction, TInt aAllocFailType, TInt aRate)
   104 	{
   105 	__ASSERT_DEBUG(!iRqPending, __SQLPANIC(ESqlPanicMisuse));
   106 	if(iDbSession)	
   107 		{
   108 		return iDbSession->SendReceive(aFunction, TIpcArgs(aAllocFailType, aRate));
   109 		}
   110 	else
   111 		{
   112 		iFunction = aFunction;
   113 		iAllocFailType = aAllocFailType;
   114 		iRate = aRate;
   115 		iRqPending = ETrue;
   116 		return KErrNone;
   117 		}
   118 	}
   119 
   120 /**
   121 The function has a meaningfull implementation only in _DEBUG mode.
   122 */
   123 TSqlResourceTestData::TSqlResourceTestData() :
   124 	iRqPending(EFalse),
   125 	iDbSession(NULL),
   126 	iFunction(ESqlSrvTestBase),
   127 	iAllocFailType(RHeap::ENone),
   128 	iRate(0)
   129 	{
   130 	}
   131 
   132 ///////////////////////////////////////////////////////////////////////////////////////////////////////
   133 ////////////////////////             TSqlResourceTester                 ///////////////////////////////
   134 ///////////////////////////////////////////////////////////////////////////////////////////////////////
   135 
   136 //Sends a test command to the SQL server.
   137 //aFunction parameter is the test command code to be sent, 
   138 //aAllocFailType is the heap failure type, aRate is the heap failure rate.
   139 //
   140 //The function will get a pointer to the TSqlResourceTestData instance and call its Set() method to
   141 //send the test command and data.
   142 static TInt SendCommand(TSqlSrvFunction aFunction, TInt aAllocFailType, TInt aRate)
   143 	{
   144 	TInt rc = KErrNoMemory;
   145 	TSqlResourceTestData* instance = TSqlResourceTestData::Instance();
   146 	if(instance)
   147 		{
   148 		rc = instance->Set(aFunction, aAllocFailType, aRate);
   149 		}
   150 	return rc;
   151 	}
   152 
   153 //Sends a test command to the SQL server.
   154 //aFunction parameter is the test command code to be sent, 
   155 //
   156 //The function will get a pointer to the TSqlResourceTestData instance and call its Set() method to
   157 //send the test command and data.
   158 static TInt SendCommand(TSqlSrvFunction aFunction)
   159 	{
   160 	return SendCommand(aFunction, RHeap::ENone, 0);
   161 	}
   162 
   163 /**
   164 Sends a request to the SQL server to mark the allocated resources.
   165 
   166 The function has a meaningfull implementation only in _DEBUG mode.
   167 */
   168 EXPORT_C void TSqlResourceTester::Mark()
   169 	{
   170 	(void)::SendCommand(ESqlSrvResourceMark);
   171 	}
   172 	
   173 /**
   174 Sends a request to the SQL server to check the allocated resources.
   175 (to compare their count with the marked resource count, made by the 
   176  TSqlResourceTester::Mark() call)
   177 
   178 The function has a meaningfull implementation only in _DEBUG mode.
   179 */
   180 EXPORT_C void TSqlResourceTester::Check()
   181 	{
   182 	(void)::SendCommand(ESqlSrvResourceCheck);
   183 	}
   184 	
   185 /**
   186 @return Count of the allocated SQL server resources.
   187 
   188 The function has a meaningfull implementation only in _DEBUG mode.
   189 */
   190 EXPORT_C TInt TSqlResourceTester::Count()
   191 	{
   192 	return ::SendCommand(ESqlSrvResourceCount);
   193 	}
   194 
   195 /**
   196 Sends a request to the SQL server to simulate out of memory failure.
   197 This call can be used to test the server side of RSqlDatabase class.
   198 
   199 The function has a meaningfull implementation only in _DEBUG mode.
   200 
   201 @param aAllocFailType Heap failure allocation type
   202 	   	If bit 12 of aAllocFailType is set, then the SQL server will delay
   203 	   	the heap failure simulation until the database is opened.
   204 @param arate Heap failure rate
   205 */
   206 EXPORT_C void TSqlResourceTester::SetDbHeapFailure(TInt aAllocFailType, TInt aRate)
   207 	{
   208 	if(static_cast <RHeap::TAllocFail> (aAllocFailType) == RHeap::ENone)
   209 		{
   210 		//This is a command to reset the memory allocation failure simulation.
   211 		//Execute it only if there is a valid TSqlResourceTestData instance.
   212 		//Otherwise this function will try to allocate memory for TSqlResourceTestData instance
   213 		//and this happens at the moment when the request is for stopping the simulation (so the OOM test).
   214 		//The test application will find one more memory cell is allocated and will fail.
   215 		TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
   216 		if(!instance)
   217 			{
   218 			return;	
   219 			}
   220 		}
   221 	(void)::SendCommand(ESqlSrvSetDbHeapFailure, aAllocFailType, aRate);
   222 	}
   223 	
   224 /**
   225 Sends a request to the SQL server to simulate out of memory failure.
   226 This call can be used to test the server side of RSqlStatement class.
   227 
   228 The function has a meaningfull implementation only in _DEBUG mode.
   229 
   230 @param aAllocFailType Heap failure allocation type
   231 @param arate Heap failure rate
   232 */
   233 EXPORT_C void TSqlResourceTester::SetHeapFailure(TInt aAllocFailType, TInt aRate)
   234 	{
   235 	if(static_cast <RHeap::TAllocFail> (aAllocFailType) == RHeap::ENone)
   236 		{
   237 		//This is a command to reset the memory allocation failure simulation.
   238 		//Execute it only if there is a valid TSqlResourceTestData instance.
   239 		//Otherwise this function will try to allocate memory for TSqlResourceTestData instance
   240 		//and this happens at the moment when the request is for stopping the simulation (so the OOM test).
   241 		//The test application will find one more memory cell is allocated and will fail.
   242 		TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
   243 		if(!instance)
   244 			{
   245 			return;	
   246 			}
   247 		}
   248 	(void)::SendCommand(ESqlSrvSetHeapFailure, aAllocFailType, aRate);
   249 	}
   250 
   251 #else //_DEBUG
   252 
   253 void TSqlResourceTestData::Release()
   254 	{
   255 	}
   256 
   257 EXPORT_C void TSqlResourceTester::Mark()
   258 	{
   259 	}
   260 
   261 EXPORT_C void TSqlResourceTester::Check()
   262 	{
   263 	}
   264 
   265 EXPORT_C TInt TSqlResourceTester::Count()
   266 	{
   267 	return 0;
   268 	}
   269 
   270 EXPORT_C void TSqlResourceTester::SetDbHeapFailure(TInt, TInt)
   271 	{
   272 	}
   273 
   274 EXPORT_C void TSqlResourceTester::SetHeapFailure(TInt, TInt)
   275 	{
   276 	}
   277 
   278 #endif//_DEBUG
   279 
   280 #pragma BullseyeCoverage on