summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/cntmodel2/t_requeststoretest.h
blob: 98bf1de90be769da8644f678eb747567d5d40f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
* Contact: http://www.qt-project.org/legal
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/


#ifndef __T_REQUESTSTOREFAILURE_H__
#define __T_REQUESTSTOREFAILURE_H__

#include <e32test.h>
#include <cntdb.h>

enum TTestCodes
    {
    ELockDatabase,
    EDeleteInvalidCnt
    };

const TTimeIntervalMicroSeconds32 KOneHalfSecondTimeOut =   500000;
const TTimeIntervalMicroSeconds32 KSixtySecondsTimeOut  = 60000000;

// forward declaration
class CConcurrentTester;
class CConcurrentController;


//===========================================================
// CLockDatabase Class
//===========================================================
//
class CLockDatabase: private CActive
    {
    public:
        ~CLockDatabase();
        static CLockDatabase* NewLC();

    public:
        // from CActive
        void DoCancel();
        TInt RunError(TInt aError);
        void RunL();

    private:
        // constructor & 2nd phase constructor
        CLockDatabase();
        void ConstructL();
        
        void OpenDatabaseL();        

    private:
        CContactDatabase* iContactDatabase;
        RTest* iTest;
        TBool iLocked;
    };

//===========================================================
// CDeleteInvalidCnt Class
//===========================================================
//
class CDeleteInvalidCnt: public CActive
    {
public:
    ~CDeleteInvalidCnt();
    static CDeleteInvalidCnt* NewLC();

public:
    // from CActive
    void DoCancel();
    TInt RunError(TInt aError);
    void RunL();

private:
    // constructor and 2nd phase constructor
    CDeleteInvalidCnt();
    void ConstructL();

    void OpenDatabaseL();

private:
    TInt iStep;
    CContactDatabase* iContactDatabase;
    RTest* iTest;
    };


//===========================================================
// CEventResponse Class
//
// Responsible for signalling the controller.
// It is created by the controller, passed into the Tester.
// The tester contains the response, and destroys it.
// The response is "completed" by the ThreadTest.
//===========================================================
//
class CEventResponse : CActive
    {
public:
    static CEventResponse* NewL(CConcurrentController& aController);
    ~CEventResponse();
    void CompleteRequest(TInt aError);
    TRequestStatus& RequestStatus();

private:
    TInt RunError(TInt aError);
    void RunL();
    void DoCancel();
    CEventResponse (CConcurrentController& aController);

private:
    CConcurrentController& iController;
    };


//===========================================================
// CConcurrentController Class
//===========================================================
//
class CConcurrentController : CBase
    {
public:
    ~CConcurrentController();
    static CConcurrentController* NewLC();
    void  StartTestL();
    void  PublishError(TInt aError);

private:
    void CreateContactsL(TInt aNumContacts);

    void CreateTestersL(TInt aNoOfTesters);
    void StartRequestStoreFailureTestL();

    // constructor & 2nd-phase constructor
    CConcurrentController();
    void ConstructL();

    TBool Completed();

private:
    RPointerArray<CConcurrentTester> iStore;
    };


//===========================================================
// CConcurrentTester Class
//===========================================================
//
class CConcurrentTester : CBase
    {
public:
    ~CConcurrentTester();
    static CConcurrentTester* NewL(CEventResponse* aResponse, const TDesC& aThreadName);
    static TInt ThreadFunction(TAny* aResponse);
    void RunTestThreadL(TInt iTestCode);
    TBool IsCompleted();

private:
    inline CConcurrentTester(CEventResponse* aResponse, const TDesC& aThreadName) :
                            iResponse(aResponse),
                            iThreadName(aThreadName),
                            iTestCode(-1) {}
    void RunTestL();

private:
    RThread                 iThread;
    CEventResponse*         iResponse;
    TBuf<256>                iThreadName;
    TInt                     iTestCode;
    };

#endif //__T_REQUESTSTOREFAILURE_H__