os/graphics/windowing/windowserver/test/t_stress/src/stresslet.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include "stresslet.h"
sl@0
    23
#include "panic.h"
sl@0
    24
sl@0
    25
//
sl@0
    26
// CStresslet::CRedrawHandler
sl@0
    27
//
sl@0
    28
sl@0
    29
CStresslet::CRedrawHandler* CStresslet::CRedrawHandler::NewL(CStresslet& aStresslet)
sl@0
    30
	{
sl@0
    31
	CRedrawHandler * self = new (ELeave) CRedrawHandler(aStresslet);
sl@0
    32
	CleanupStack::PushL (self);
sl@0
    33
	self->ConstructL ();
sl@0
    34
	CleanupStack::Pop ();	
sl@0
    35
	return self;
sl@0
    36
	}
sl@0
    37
sl@0
    38
CStresslet::CRedrawHandler::~CRedrawHandler ()
sl@0
    39
	{
sl@0
    40
	Cancel ();
sl@0
    41
	}
sl@0
    42
sl@0
    43
CStresslet::CRedrawHandler::CRedrawHandler(CStresslet& aStresslet) :
sl@0
    44
	CActive(EPriorityNormal), iStresslet(aStresslet)
sl@0
    45
	{
sl@0
    46
	}
sl@0
    47
sl@0
    48
void CStresslet::CRedrawHandler::ConstructL ()
sl@0
    49
	{
sl@0
    50
	CActiveScheduler::Add (this);
sl@0
    51
	iStresslet.Session().RedrawReady (&iStatus);
sl@0
    52
	SetActive ();
sl@0
    53
	}
sl@0
    54
sl@0
    55
void CStresslet::CRedrawHandler::RunL ()
sl@0
    56
	{
sl@0
    57
	iStresslet.Session().GetRedraw (iRedrawEvent);
sl@0
    58
sl@0
    59
	if(iRedrawEvent.Handle () != 0)
sl@0
    60
		{
sl@0
    61
		iStresslet.HandleRedraw (iRedrawEvent);
sl@0
    62
		}
sl@0
    63
sl@0
    64
	iStresslet.Session().RedrawReady (&iStatus); 
sl@0
    65
	SetActive ();								 
sl@0
    66
	}
sl@0
    67
sl@0
    68
void CStresslet::CRedrawHandler::DoCancel ()
sl@0
    69
	{
sl@0
    70
	iStresslet.Session().RedrawReadyCancel ();
sl@0
    71
	}
sl@0
    72
sl@0
    73
//
sl@0
    74
// CStresslet::CEventHandler
sl@0
    75
//
sl@0
    76
sl@0
    77
CStresslet::CEventHandler* CStresslet::CEventHandler::NewL (CStresslet& aStresslet)
sl@0
    78
	{
sl@0
    79
	CEventHandler * self = new (ELeave) CEventHandler(aStresslet);
sl@0
    80
	CleanupStack::PushL (self);
sl@0
    81
	self->ConstructL ();
sl@0
    82
	CleanupStack::Pop (); 
sl@0
    83
	return self;
sl@0
    84
	}
sl@0
    85
sl@0
    86
CStresslet::CEventHandler::~CEventHandler ()
sl@0
    87
	{
sl@0
    88
	Cancel ();
sl@0
    89
	}
sl@0
    90
sl@0
    91
CStresslet::CEventHandler::CEventHandler (CStresslet& aStresslet) :
sl@0
    92
	CActive(EPriorityNormal), iStresslet(aStresslet)
sl@0
    93
	{
sl@0
    94
	}
sl@0
    95
sl@0
    96
void CStresslet::CEventHandler::ConstructL ()
sl@0
    97
	{
sl@0
    98
	CActiveScheduler::Add (this);
sl@0
    99
	iStresslet.Session().EventReady (&iStatus);
sl@0
   100
	SetActive ();
sl@0
   101
	}
sl@0
   102
sl@0
   103
void CStresslet::CEventHandler::RunL ()
sl@0
   104
	{
sl@0
   105
	iStresslet.Session().GetEvent (iEvent);
sl@0
   106
sl@0
   107
	iStresslet.HandleEvent (iEvent);
sl@0
   108
	
sl@0
   109
	iStresslet.Session().EventReady (&iStatus);		
sl@0
   110
	SetActive ();									
sl@0
   111
	
sl@0
   112
	}
sl@0
   113
sl@0
   114
void CStresslet::CEventHandler::DoCancel ()
sl@0
   115
	{
sl@0
   116
	iStresslet.Session().EventReadyCancel ();
sl@0
   117
	}
sl@0
   118
sl@0
   119
//
sl@0
   120
// CStresslet::CStresslet
sl@0
   121
//
sl@0
   122
sl@0
   123
CStresslet::CStresslet (MTestStepReporter& aReporter) :
sl@0
   124
	iReporter(aReporter)
sl@0
   125
	{
sl@0
   126
	}
sl@0
   127
sl@0
   128
MTestStepReporter& CStresslet::Reporter ()
sl@0
   129
	{
sl@0
   130
	return iReporter;
sl@0
   131
	}
sl@0
   132
sl@0
   133
void CStresslet::ConcludeNow (void)
sl@0
   134
	{
sl@0
   135
	CActiveScheduler::Stop ();
sl@0
   136
	}
sl@0
   137
sl@0
   138
void CStresslet::LaunchL (CStresslet* aStresslet)
sl@0
   139
	{
sl@0
   140
	CStresslet* obj = aStresslet;
sl@0
   141
sl@0
   142
	CActiveScheduler* runner = new (ELeave) CActiveScheduler;
sl@0
   143
	CleanupStack::PushL (runner);
sl@0
   144
	CActiveScheduler::Install (runner);
sl@0
   145
sl@0
   146
	obj->ConstructL();
sl@0
   147
	
sl@0
   148
	CActiveScheduler::Start (); //runner
sl@0
   149
sl@0
   150
	delete obj;
sl@0
   151
sl@0
   152
	CleanupStack::PopAndDestroy (runner);
sl@0
   153
	}
sl@0
   154
sl@0
   155
void CStresslet::ConstructL()
sl@0
   156
	{
sl@0
   157
	User::LeaveIfError(iWs.Connect());
sl@0
   158
	iRedrawHandler = CRedrawHandler::NewL (*this);
sl@0
   159
	iEventHandler = CEventHandler::NewL (*this);
sl@0
   160
	iScreenDevice = new (ELeave)CWsScreenDevice(iWs);
sl@0
   161
	User::LeaveIfError(iScreenDevice->Construct ());
sl@0
   162
	User::LeaveIfError(iScreenDevice->CreateContext (iGc));
sl@0
   163
	StartL ();
sl@0
   164
	}
sl@0
   165
sl@0
   166
CStresslet::~CStresslet ()
sl@0
   167
	{
sl@0
   168
	delete iRedrawHandler;
sl@0
   169
	delete iEventHandler;
sl@0
   170
	iWs.Close ();
sl@0
   171
	}
sl@0
   172
sl@0
   173
RWsSession& CStresslet::Session ()
sl@0
   174
	{
sl@0
   175
	return iWs;
sl@0
   176
	}
sl@0
   177
sl@0
   178
CWindowGc& CStresslet::WindowGc()
sl@0
   179
	{
sl@0
   180
	__ASSERT_ALWAYS(iGc, Panic(EPanic1));
sl@0
   181
	return *iGc;
sl@0
   182
	}