os/graphics/windowing/windowserver/test/TClick/multiptrclick.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/TClick/multiptrclick.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,246 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Test Multi Pointer Click Plug-In DLL
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include "W32CLICK.H"
    1.23 +#include "multiptrclick.h"
    1.24 +
    1.25 +class CMultiPtrClickMaker : public CClickMaker
    1.26 +	{
    1.27 +	enum {EEventBufferSize=32};
    1.28 +public:
    1.29 +	~CMultiPtrClickMaker();
    1.30 +	void ConstructL();
    1.31 +	//Virtual function from CClickMaker
    1.32 +	void KeyEvent(TEventCode aType, const TKeyEvent& aEvent);
    1.33 +	void PointerEvent(const TPointerEvent& aEvent);
    1.34 +	void OtherEvent(TInt aType, TAny* aParam);
    1.35 +	TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
    1.36 +
    1.37 +private:
    1.38 +	TInt AddEvent(const TWsEvent* aEvent);
    1.39 +	TInt AddEvent(const TPointerEventData* aEvent);
    1.40 +	TBool ComparePointerEvents(const TPointerEvent* aExpectedEvent, const TPointerEvent* aActualEvent);
    1.41 +	TBool CompareOtherEvents(const TPointerEventData* aExpectedEvent, const TPointerEventData* aActualEvent);
    1.42 +private:
    1.43 +	CCirBuf<TWsEvent> iPtrEventBuffer;
    1.44 +	CCirBuf<TPointerEventData> iOtherEventBuffer;
    1.45 +	TBuf<255> iErrorDes;
    1.46 +	TInt iPtrEventCount;
    1.47 +	TInt iOtherEventCount;
    1.48 +	TInt iError;
    1.49 +	};
    1.50 +
    1.51 +
    1.52 +void CMultiPtrClickMaker::ConstructL()
    1.53 +	{
    1.54 +	iPtrEventBuffer.SetLengthL(EEventBufferSize);
    1.55 +	iOtherEventBuffer.SetLengthL(EEventBufferSize);
    1.56 +	}
    1.57 +
    1.58 +CMultiPtrClickMaker::~CMultiPtrClickMaker()
    1.59 +	{
    1.60 +	}
    1.61 +
    1.62 +void CMultiPtrClickMaker::KeyEvent(TEventCode /*aType*/,const TKeyEvent& /*aEvent*/)
    1.63 +	{
    1.64 +	}
    1.65 +
    1.66 +TBool CMultiPtrClickMaker::ComparePointerEvents(const TPointerEvent* aExpectedEvent, const TPointerEvent* aActualEvent)
    1.67 +	{
    1.68 +	// Check pointer type
    1.69 +	if (aExpectedEvent->iType != aActualEvent->iType)
    1.70 +		{
    1.71 +		_LIT(KEventType, "Actual Wserv Event type = %d Expected Wserv Event Type = %d ");
    1.72 +		iErrorDes.Format(KEventType, aActualEvent->iType, aExpectedEvent->iType);
    1.73 +		return EFalse;
    1.74 +		}
    1.75 +	
    1.76 +	if (aExpectedEvent->iPosition != aActualEvent->iPosition)
    1.77 +		{
    1.78 +		_LIT(KPointerPosition, "Actual PointerPosition = (%d, %d) Expected PointerPosition = (%d, %d) ");
    1.79 +		iErrorDes.Format(KPointerPosition, aActualEvent->iPosition.iX, aActualEvent->iPosition.iY, aExpectedEvent->iPosition.iX, aExpectedEvent->iPosition.iY);
    1.80 +		return EFalse;
    1.81 +		}
    1.82 +	
    1.83 +	if (aExpectedEvent->iParentPosition != aActualEvent->iParentPosition)
    1.84 +		{
    1.85 +		_LIT(KPointerPosition, "Actual parent Position = (%d, %d) Expected parent Position = (%d, %d) ");
    1.86 +		iErrorDes.Format(KPointerPosition, aActualEvent->iParentPosition.iX, aActualEvent->iParentPosition.iY, aExpectedEvent->iParentPosition.iX, aExpectedEvent->iParentPosition.iY);
    1.87 +		return EFalse;
    1.88 +		}
    1.89 +	
    1.90 +	if (aExpectedEvent->IsAdvancedPointerEvent() != aActualEvent->IsAdvancedPointerEvent())
    1.91 +		{
    1.92 +		_LIT(KPointerPosition, "Actual event is TAdvancedPointerEvent = %d Expected event is TAdvancedPointerEvent = %d ");
    1.93 +		iErrorDes.Format(KPointerPosition, aActualEvent->IsAdvancedPointerEvent(), aExpectedEvent->IsAdvancedPointerEvent());
    1.94 +		return EFalse;
    1.95 +		}
    1.96 +	
    1.97 +	if (aExpectedEvent->IsAdvancedPointerEvent())
    1.98 +		{
    1.99 +		const TAdvancedPointerEvent& expectedAdvancedEvent = *aExpectedEvent->AdvancedPointerEvent();
   1.100 +		const TAdvancedPointerEvent& actualAdvancedEvent   = *aActualEvent->AdvancedPointerEvent();
   1.101 +		
   1.102 +		if (expectedAdvancedEvent.PointerNumber() != actualAdvancedEvent.PointerNumber())
   1.103 +			{
   1.104 +			_LIT(KPointerNumber, "Actual PointerNumber = %d Expected PointerNumber = %d ");
   1.105 +			iErrorDes.Format(KPointerNumber, actualAdvancedEvent.PointerNumber(), expectedAdvancedEvent.PointerNumber());
   1.106 +			return EFalse;
   1.107 +			}
   1.108 +		
   1.109 +		if (expectedAdvancedEvent.Pressure() != actualAdvancedEvent.Pressure())
   1.110 +			{
   1.111 +			_LIT(KPointerPressure, "Actual Pressure = %d Expected Pressure = %d ");
   1.112 +			iErrorDes.Format(KPointerPressure, actualAdvancedEvent.Pressure(), expectedAdvancedEvent.Pressure());
   1.113 +			return EFalse;
   1.114 +			}
   1.115 +		
   1.116 +		if (expectedAdvancedEvent.Proximity() != actualAdvancedEvent.Proximity())
   1.117 +			{
   1.118 +			_LIT(KPointerProximity, "Actual Proximity = %d Expected Proximity = %d ");
   1.119 +			iErrorDes.Format(KPointerProximity, actualAdvancedEvent.Proximity(), expectedAdvancedEvent.Proximity());
   1.120 +			return EFalse;
   1.121 +			}
   1.122 +		}
   1.123 +
   1.124 +	return ETrue;
   1.125 +	}
   1.126 +
   1.127 +//
   1.128 +void CMultiPtrClickMaker::PointerEvent(const TPointerEvent& aEvent)
   1.129 +	{
   1.130 +	// If it has already failed then do not test other events
   1.131 +	// becasue the error value and its descriptor will be over written
   1.132 +	if (iError)
   1.133 +		{
   1.134 +		return;
   1.135 +		}
   1.136 +		
   1.137 +	// Get pointer event from buffer
   1.138 +	TWsEvent expectedEvent;
   1.139 +	iPtrEventBuffer.Remove(&expectedEvent);
   1.140 +	
   1.141 +	// Increment event count
   1.142 +	iPtrEventCount++;
   1.143 +	
   1.144 +	// increment this counter in OtherEvent() becasue first pointer event iscalled and then OtherEvent() is called
   1.145 +	if (!ComparePointerEvents(expectedEvent.Pointer(), &aEvent))
   1.146 +		{
   1.147 +		iError = iPtrEventCount;
   1.148 +		}
   1.149 +	}
   1.150 +
   1.151 +TBool CMultiPtrClickMaker::CompareOtherEvents(const TPointerEventData* aExpectedEvent, const TPointerEventData* aActualEvent)
   1.152 +	{
   1.153 +	if (aExpectedEvent->iCurrentPos != aActualEvent->iCurrentPos)
   1.154 +		{
   1.155 +		_LIT(KCurrentPosition, "Actual CurrentPosition  w.r.t screen = (%d,%d) Expected CurrentPosition  w.r.t screen = (%d,%d)");
   1.156 +		iErrorDes.Copy(KCurrentPosition);
   1.157 +		iErrorDes.Format(KCurrentPosition, aActualEvent->iCurrentPos.iX, aActualEvent->iCurrentPos.iX, aExpectedEvent->iCurrentPos.iX, aExpectedEvent->iCurrentPos.iY);
   1.158 +		return EFalse;
   1.159 +		}
   1.160 +	
   1.161 +	if (aExpectedEvent->iClientHandle != aActualEvent->iClientHandle)
   1.162 +		{
   1.163 +		_LIT(KWindowHandle, "Actual Window Handle = %d Expected Window Handle = %d ");
   1.164 +		iErrorDes.Copy(KWindowHandle);
   1.165 +		iErrorDes.Format(KWindowHandle, aActualEvent->iClientHandle, aExpectedEvent->iClientHandle);
   1.166 +		return EFalse;
   1.167 +		}
   1.168 +	
   1.169 +	return ComparePointerEvents(&aExpectedEvent->iPointerEvent, &aActualEvent->iPointerEvent);
   1.170 +	}
   1.171 +
   1.172 +void CMultiPtrClickMaker::OtherEvent(TInt aType, TAny* aParam)
   1.173 +	{
   1.174 +	if (aType != EEventPointer)
   1.175 +		{
   1.176 +		return;
   1.177 +		}
   1.178 +			
   1.179 +	if (iError)
   1.180 +		{
   1.181 +		return;
   1.182 +		}
   1.183 +
   1.184 +	TPointerEventData expectedEvent;
   1.185 +	iOtherEventBuffer.Remove(&expectedEvent);
   1.186 +	
   1.187 +	iOtherEventCount++;
   1.188 +	
   1.189 +	TPointerEventData* data=static_cast<TPointerEventData*>(aParam);
   1.190 +	
   1.191 +	if (!CompareOtherEvents(&expectedEvent, data))
   1.192 +		{
   1.193 +		iError = iPtrEventCount;
   1.194 +		}
   1.195 +	}
   1.196 +
   1.197 +TInt CMultiPtrClickMaker::AddEvent(const TWsEvent* aEvent)
   1.198 +	{
   1.199 +	return iPtrEventBuffer.Add(aEvent);
   1.200 +	}
   1.201 +
   1.202 +TInt CMultiPtrClickMaker::AddEvent(const TPointerEventData* aEvent)
   1.203 +	{
   1.204 +	return iOtherEventBuffer.Add(aEvent);
   1.205 +	}
   1.206 +
   1.207 +TInt CMultiPtrClickMaker::CommandReplyL(TInt aOpcode, TAny *aArgs)
   1.208 +	{
   1.209 +	TMultiPtrClickArgUnion pData;
   1.210 +	pData.any=aArgs;
   1.211 +	switch (aOpcode)
   1.212 +		{
   1.213 +	case EMultiPtrClickEventAdd:
   1.214 +		return AddEvent(pData.WsEvent);
   1.215 +	case EMultiPtrOtherEventAdd:
   1.216 +		return AddEvent(pData.OtherEvent);
   1.217 +	case EMultiPtrClickEventError:
   1.218 +		return iError;
   1.219 +	case EMultiPtrClickEventErrorDesc:
   1.220 +		if (iError != KErrNone)
   1.221 +			{
   1.222 +			RChunk chunk;
   1.223 +			chunk.OpenGlobal(KMultiPtrClickChunk, ETrue);
   1.224 +			TUint8* desPtr = chunk.Base() + *(static_cast<TInt*>(aArgs));
   1.225 +			TPtr8 ptrDes(desPtr, iErrorDes.Length(), iErrorDes.Length());
   1.226 +			ptrDes.Copy(iErrorDes);
   1.227 +			chunk.Close();
   1.228 +			return iErrorDes.Length();
   1.229 +			// returns the error description which gets displayed in logs if test failed
   1.230 +			}
   1.231 +		break;
   1.232 +	case EMultiPtrClickEventReset:
   1.233 +		iPtrEventBuffer.Reset();
   1.234 +		iError = 0;
   1.235 +		iPtrEventCount = 0;
   1.236 +		break;
   1.237 +	default:;
   1.238 +		}
   1.239 +	return(KErrNone);
   1.240 +	}
   1.241 +
   1.242 +EXPORT_C CClickMaker* CreateMultiPtrClickMakerL()
   1.243 +	{
   1.244 +	CMultiPtrClickMaker* plugIn=new(ELeave) CMultiPtrClickMaker;
   1.245 +	CleanupStack::PushL(plugIn);
   1.246 +	plugIn->ConstructL();
   1.247 +	CleanupStack::Pop(plugIn);
   1.248 +	return plugIn;
   1.249 +	}