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