sl@0
|
1 |
// Copyright (c) 2008-2009 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 <e32test.h>
|
sl@0
|
17 |
#include <e32uid.h>
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include <e32math.h>
|
sl@0
|
20 |
#include <sqlite3.h>
|
sl@0
|
21 |
#include "t_sqlitewsd.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
void DoInserts(TInt aProcId, TInt aRecId1, TInt aRecId2)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
TEST(TheDb != 0);
|
sl@0
|
26 |
|
sl@0
|
27 |
TTime now;
|
sl@0
|
28 |
now.UniversalTime();
|
sl@0
|
29 |
TInt64 seed = now.Int64();
|
sl@0
|
30 |
|
sl@0
|
31 |
const TInt KMaxFailingAllocationNo = 20;
|
sl@0
|
32 |
TInt lockcnt = 0;
|
sl@0
|
33 |
|
sl@0
|
34 |
for(TInt recno=0;recno<KTestRecordCnt;)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
//Insert record 1 under OOM simulation
|
sl@0
|
37 |
TInt failingAllocationNo = Math::Rand(seed) % (KMaxFailingAllocationNo + 1);
|
sl@0
|
38 |
__UHEAP_SETFAIL(RHeap::EDeterministic, failingAllocationNo );
|
sl@0
|
39 |
TBuf8<100> sql;
|
sl@0
|
40 |
sql.Format(_L8("INSERT INTO A VALUES(%d)"), aRecId1);
|
sl@0
|
41 |
TInt err = sqlite3_exec(TheDb, (const char*)sql.PtrZ(), 0, 0, 0);
|
sl@0
|
42 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
43 |
TEST(err == SQLITE_NOMEM || err == SQLITE_BUSY || err == SQLITE_OK);
|
sl@0
|
44 |
if(err == SQLITE_BUSY)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
++lockcnt;
|
sl@0
|
47 |
User::After(1);
|
sl@0
|
48 |
continue;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
else if(err == SQLITE_OK)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
++recno;
|
sl@0
|
53 |
if((recno % 100) == 0)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
RDebug::Print(_L("Process %d: %d records inserted.\r\n"), aProcId, recno);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
continue;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
//Insert record 2
|
sl@0
|
60 |
sql.Format(_L8("INSERT INTO A VALUES(%d)"), aRecId2);
|
sl@0
|
61 |
err = sqlite3_exec(TheDb, (const char*)sql.PtrZ(), 0, 0, 0);
|
sl@0
|
62 |
TEST(err == SQLITE_BUSY || err == SQLITE_OK);
|
sl@0
|
63 |
if(err == SQLITE_BUSY)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
++lockcnt;
|
sl@0
|
66 |
User::After(1);
|
sl@0
|
67 |
continue;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
//SQLITE_OK case
|
sl@0
|
70 |
++recno;
|
sl@0
|
71 |
if((recno % 100) == 0)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
RDebug::Print(_L("Process %d: %d records inserted.\r\n"), aProcId, recno);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
}
|
sl@0
|
76 |
RDebug::Print(_L("Process %d inserted %d records. %d locks occured.\r\n"), aProcId, KTestRecordCnt, lockcnt);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|