sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef STRESSLET_H sl@0: #define STRESSLET_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class CBaseStressletAllocator; sl@0: class MTestStepReporter; sl@0: sl@0: /** CStresslet base class */ sl@0: class CStresslet : public CBase sl@0: { sl@0: public: sl@0: static void LaunchL(CStresslet* aStresslet); sl@0: ~CStresslet(); sl@0: virtual void HandleRedraw(TWsRedrawEvent &aEvent) = 0; sl@0: virtual void HandleEvent(TWsEvent &aEvent) = 0; sl@0: RWsSession& Session(); sl@0: sl@0: protected: sl@0: CStresslet(MTestStepReporter& aReporter); sl@0: virtual void StartL()=0; sl@0: void ConcludeNow(void); sl@0: CWindowGc& WindowGc(); sl@0: MTestStepReporter& Reporter(); sl@0: sl@0: private: sl@0: void ConstructL(); sl@0: sl@0: /** Inner class CEventHandler */ sl@0: class CEventHandler : public CActive sl@0: { sl@0: public: sl@0: static CEventHandler* NewL (CStresslet& aStresslet); sl@0: ~CEventHandler (); sl@0: protected: // from CActive sl@0: void RunL (); sl@0: void DoCancel (); sl@0: void ConstructL (); sl@0: private: sl@0: CEventHandler (CStresslet& aStresslet); sl@0: private: sl@0: CStresslet& iStresslet; sl@0: TWsEvent iEvent; sl@0: }; sl@0: sl@0: /** Inner class CRedrawHandler */ sl@0: class CRedrawHandler : public CActive sl@0: { sl@0: public: sl@0: static CRedrawHandler* NewL (CStresslet& aStresslet); sl@0: ~CRedrawHandler (); sl@0: protected: // from CActive sl@0: void RunL (); sl@0: void DoCancel (); sl@0: void ConstructL (); sl@0: private: sl@0: CRedrawHandler (CStresslet& aStresslet); sl@0: private: sl@0: CStresslet& iStresslet; sl@0: TWsRedrawEvent iRedrawEvent; sl@0: }; sl@0: sl@0: private: sl@0: RWsSession iWs; sl@0: CWindowGc* iGc; sl@0: CWsScreenDevice* iScreenDevice; sl@0: CRedrawHandler* iRedrawHandler; sl@0: CEventHandler* iEventHandler; sl@0: sl@0: MTestStepReporter& iReporter; sl@0: }; sl@0: sl@0: #define REPORT_EVENT(value) (Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__)) sl@0: #define REPORT_EVENT_WITH_TEXT(value,text) (text,Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__)) sl@0: sl@0: sl@0: #endif // STRESSLET_H