os/graphics/windowing/windowserver/test/t_stress/inc/stresslet.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef STRESSLET_H
sl@0
    23
#define STRESSLET_H
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <w32std.h>
sl@0
    27
sl@0
    28
class CBaseStressletAllocator;
sl@0
    29
class MTestStepReporter;
sl@0
    30
sl@0
    31
/** CStresslet base class */
sl@0
    32
class CStresslet : public CBase
sl@0
    33
	{
sl@0
    34
public:
sl@0
    35
	static void LaunchL(CStresslet* aStresslet);
sl@0
    36
	~CStresslet();
sl@0
    37
	virtual void HandleRedraw(TWsRedrawEvent &aEvent) = 0;
sl@0
    38
	virtual void HandleEvent(TWsEvent &aEvent) = 0;
sl@0
    39
	RWsSession& Session();
sl@0
    40
	
sl@0
    41
protected:
sl@0
    42
	CStresslet(MTestStepReporter& aReporter);
sl@0
    43
	virtual void StartL()=0;
sl@0
    44
	void ConcludeNow(void);
sl@0
    45
	CWindowGc& WindowGc();
sl@0
    46
	MTestStepReporter& Reporter();
sl@0
    47
	
sl@0
    48
private:
sl@0
    49
	void ConstructL();
sl@0
    50
sl@0
    51
	/** Inner class CEventHandler */
sl@0
    52
	class CEventHandler : public CActive
sl@0
    53
		{
sl@0
    54
	public:
sl@0
    55
		static CEventHandler* NewL (CStresslet& aStresslet);
sl@0
    56
		~CEventHandler ();
sl@0
    57
	protected: // from CActive
sl@0
    58
		void RunL ();
sl@0
    59
		void DoCancel ();
sl@0
    60
		void ConstructL ();
sl@0
    61
	private:
sl@0
    62
		CEventHandler (CStresslet& aStresslet);
sl@0
    63
	private:
sl@0
    64
		CStresslet& iStresslet;
sl@0
    65
		TWsEvent iEvent;
sl@0
    66
		};
sl@0
    67
	
sl@0
    68
	/** Inner class CRedrawHandler */	
sl@0
    69
	class CRedrawHandler : public CActive
sl@0
    70
		{
sl@0
    71
	public:
sl@0
    72
		static CRedrawHandler* NewL (CStresslet& aStresslet);
sl@0
    73
		~CRedrawHandler ();
sl@0
    74
	protected: // from CActive
sl@0
    75
		void RunL ();
sl@0
    76
		void DoCancel ();
sl@0
    77
		void ConstructL ();
sl@0
    78
	private:
sl@0
    79
		CRedrawHandler (CStresslet& aStresslet);
sl@0
    80
	private:
sl@0
    81
		CStresslet& iStresslet;
sl@0
    82
		TWsRedrawEvent iRedrawEvent;
sl@0
    83
		};		
sl@0
    84
	
sl@0
    85
private:
sl@0
    86
	RWsSession iWs;
sl@0
    87
	CWindowGc* iGc;
sl@0
    88
	CWsScreenDevice* iScreenDevice;
sl@0
    89
	CRedrawHandler* iRedrawHandler;
sl@0
    90
	CEventHandler* iEventHandler;
sl@0
    91
	
sl@0
    92
	MTestStepReporter& iReporter;
sl@0
    93
	};
sl@0
    94
sl@0
    95
#define REPORT_EVENT(value) (Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))
sl@0
    96
#define REPORT_EVENT_WITH_TEXT(value,text) (text,Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))
sl@0
    97
sl@0
    98
	
sl@0
    99
#endif // STRESSLET_H