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.
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
22 ///////////////////////////////////////////////////////////////////////////////////////////////////////
23 //////////////////////// TSqlResourceTestData /////////////////////////////
24 ///////////////////////////////////////////////////////////////////////////////////////////////////////
26 #pragma BullseyeCoverage off
31 Ensures that TSqlResourceTestData singleton is created and returns a pointer to the object.
33 The function has a meaningfull implementation only in _DEBUG mode.
35 @return A pointer to TSqlResourceTestData singleton. The return result might be NULL.
37 TSqlResourceTestData* TSqlResourceTestData::Instance()
39 TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
42 instance = new TSqlResourceTestData;
45 if(Dll::SetTls(instance) != KErrNone)
56 Destroys TSqlResourceTestData singleton.
58 The function has a meaningfull implementation only in _DEBUG mode.
60 void TSqlResourceTestData::Release()
62 TSqlResourceTestData* instance = static_cast <TSqlResourceTestData*> (Dll::Tls());
64 (void)Dll::SetTls(NULL);
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.
72 The function has a meaningfull implementation only in _DEBUG mode.
74 @param aDbSession A reference to RDbSession instance.
76 @return KErrNone The call completed successfully, system-wide error code otherwise.
78 TInt TSqlResourceTestData::Init(RSqlDbSession& aDbSession)
80 iDbSession = &aDbSession;
84 rc = iDbSession->SendReceive(iFunction, TIpcArgs(iAllocFailType, iRate));
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.
95 The function has a meaningfull implementation only in _DEBUG mode.
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
101 @return KErrNone The call completed successfully, system-wide error code otherwise.
103 TInt TSqlResourceTestData::Set(TSqlSrvFunction aFunction, TInt aAllocFailType, TInt aRate)
105 __ASSERT_DEBUG(!iRqPending, __SQLPANIC(ESqlPanicMisuse));
108 return iDbSession->SendReceive(aFunction, TIpcArgs(aAllocFailType, aRate));
112 iFunction = aFunction;
113 iAllocFailType = aAllocFailType;
121 The function has a meaningfull implementation only in _DEBUG mode.
123 TSqlResourceTestData::TSqlResourceTestData() :
126 iFunction(ESqlSrvTestBase),
127 iAllocFailType(RHeap::ENone),
132 ///////////////////////////////////////////////////////////////////////////////////////////////////////
133 //////////////////////// TSqlResourceTester ///////////////////////////////
134 ///////////////////////////////////////////////////////////////////////////////////////////////////////
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.
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)
144 TInt rc = KErrNoMemory;
145 TSqlResourceTestData* instance = TSqlResourceTestData::Instance();
148 rc = instance->Set(aFunction, aAllocFailType, aRate);
153 //Sends a test command to the SQL server.
154 //aFunction parameter is the test command code to be sent,
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)
160 return SendCommand(aFunction, RHeap::ENone, 0);
164 Sends a request to the SQL server to mark the allocated resources.
166 The function has a meaningfull implementation only in _DEBUG mode.
168 EXPORT_C void TSqlResourceTester::Mark()
170 (void)::SendCommand(ESqlSrvResourceMark);
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)
178 The function has a meaningfull implementation only in _DEBUG mode.
180 EXPORT_C void TSqlResourceTester::Check()
182 (void)::SendCommand(ESqlSrvResourceCheck);
186 @return Count of the allocated SQL server resources.
188 The function has a meaningfull implementation only in _DEBUG mode.
190 EXPORT_C TInt TSqlResourceTester::Count()
192 return ::SendCommand(ESqlSrvResourceCount);
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.
199 The function has a meaningfull implementation only in _DEBUG mode.
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
206 EXPORT_C void TSqlResourceTester::SetDbHeapFailure(TInt aAllocFailType, TInt aRate)
208 if(static_cast <RHeap::TAllocFail> (aAllocFailType) == RHeap::ENone)
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());
221 (void)::SendCommand(ESqlSrvSetDbHeapFailure, aAllocFailType, aRate);
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.
228 The function has a meaningfull implementation only in _DEBUG mode.
230 @param aAllocFailType Heap failure allocation type
231 @param arate Heap failure rate
233 EXPORT_C void TSqlResourceTester::SetHeapFailure(TInt aAllocFailType, TInt aRate)
235 if(static_cast <RHeap::TAllocFail> (aAllocFailType) == RHeap::ENone)
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());
248 (void)::SendCommand(ESqlSrvSetHeapFailure, aAllocFailType, aRate);
253 void TSqlResourceTestData::Release()
257 EXPORT_C void TSqlResourceTester::Mark()
261 EXPORT_C void TSqlResourceTester::Check()
265 EXPORT_C TInt TSqlResourceTester::Count()
270 EXPORT_C void TSqlResourceTester::SetDbHeapFailure(TInt, TInt)
274 EXPORT_C void TSqlResourceTester::SetHeapFailure(TInt, TInt)
280 #pragma BullseyeCoverage on