summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/integration/cntperftest/src/viewobserver.cpp
blob: 04e3bec6b9f210ea1a9f357b2456e6c6e248f7c1 (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
/*
* 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: 
*
*/


/**
 @file
 @publishedAll
 @released
*/
 
#include "viewobserver.h"

CViewObserver* CViewObserver::NewLC(const CContactViewTest &aTest, 
									void (CContactViewTest::*aFunc)())
	{
	CViewObserver *self = new(ELeave) CViewObserver(aTest, aFunc);
	CleanupStack::PushL(self);
	return self;
	}
	
CViewObserver::~CViewObserver()
	{
	CleanView();
	}

CViewObserver::CViewObserver( 	const CContactViewTest &aTest,
								void (CContactViewTest::*aFunc)()) : 
														CActive(EPriorityStandard),
														iMainFunc( aFunc ), 
														iTest( const_cast<CContactViewTest &>(aTest) )
	{
	CActiveScheduler::Add(this);
	}
	
	
void CViewObserver::RunL()
	{
	
	if(iMainFunc)
		{
		(iTest.*iMainFunc)();
		}
	else
		{
		(iTest.*iDoFunc)(*iLocalView);
		}
		
	if( !iDoFunc && !iMainFunc )
		{
		CActiveScheduler::Stop();
		}
	}
	
void CViewObserver::DoCancel()
	{
	}

TInt CViewObserver::RunError(TInt aError)
	{
	_LIT(KViewError,"ViewObserver:: Error in doTest runL: %d");
	iTest.ERR_PRINTF2(KViewError , aError );
	return aError;
	}

void CViewObserver::Activate()
	{
    if (!IsActive())
        {
    	TRequestStatus *pS=&iStatus;
    	User::RequestComplete(pS,KErrNone);
        SetActive();
        }
	}
	
	
void CViewObserver::HandleContactViewEvent(	const CContactViewBase& aView, 
											const TContactViewEvent& aEvent)
	{
	if (&aView==iLocalView)
		{
		switch(aEvent.iEventType)
			{
			case TContactViewEvent::EReady:
				{				
				Activate();
				break;
				}
			case TContactViewEvent::EItemAdded:
			case TContactViewEvent::EItemRemoved:
			case TContactViewEvent::EGroupChanged:
			case TContactViewEvent::ESortOrderChanged:
			case TContactViewEvent::EUnavailable:
				{
				break;
				}
			default:
				{
				_LIT(KViewError,"CViewObserver::HandleContactViewEvent, non ready event: %d and error: %d");
				iTest.ERR_PRINTF3(KViewError , aEvent.iEventType, aEvent.iInt );
				RDebug::Print(KViewError , aEvent.iEventType, aEvent.iInt  );
				iEvent = TContactViewEvent(aEvent.iEventType, aEvent.iInt, aEvent.iContactId);
				Activate();
				break;
				}
			}
		}
	}
	
void CViewObserver::CleanView()
	{
	if(iLocalView)
		{
		iLocalView->Close(*this);
		iLocalView = NULL;
		}
	}
	
void CViewObserver::SetView(const CContactViewBase *aLocalView)
	{
	CleanView();
	iLocalView = const_cast<CContactViewBase *>(aLocalView);
	}