1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/inc/stresslet.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,99 @@
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 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#ifndef STRESSLET_H
1.26 +#define STRESSLET_H
1.27 +
1.28 +#include <e32base.h>
1.29 +#include <w32std.h>
1.30 +
1.31 +class CBaseStressletAllocator;
1.32 +class MTestStepReporter;
1.33 +
1.34 +/** CStresslet base class */
1.35 +class CStresslet : public CBase
1.36 + {
1.37 +public:
1.38 + static void LaunchL(CStresslet* aStresslet);
1.39 + ~CStresslet();
1.40 + virtual void HandleRedraw(TWsRedrawEvent &aEvent) = 0;
1.41 + virtual void HandleEvent(TWsEvent &aEvent) = 0;
1.42 + RWsSession& Session();
1.43 +
1.44 +protected:
1.45 + CStresslet(MTestStepReporter& aReporter);
1.46 + virtual void StartL()=0;
1.47 + void ConcludeNow(void);
1.48 + CWindowGc& WindowGc();
1.49 + MTestStepReporter& Reporter();
1.50 +
1.51 +private:
1.52 + void ConstructL();
1.53 +
1.54 + /** Inner class CEventHandler */
1.55 + class CEventHandler : public CActive
1.56 + {
1.57 + public:
1.58 + static CEventHandler* NewL (CStresslet& aStresslet);
1.59 + ~CEventHandler ();
1.60 + protected: // from CActive
1.61 + void RunL ();
1.62 + void DoCancel ();
1.63 + void ConstructL ();
1.64 + private:
1.65 + CEventHandler (CStresslet& aStresslet);
1.66 + private:
1.67 + CStresslet& iStresslet;
1.68 + TWsEvent iEvent;
1.69 + };
1.70 +
1.71 + /** Inner class CRedrawHandler */
1.72 + class CRedrawHandler : public CActive
1.73 + {
1.74 + public:
1.75 + static CRedrawHandler* NewL (CStresslet& aStresslet);
1.76 + ~CRedrawHandler ();
1.77 + protected: // from CActive
1.78 + void RunL ();
1.79 + void DoCancel ();
1.80 + void ConstructL ();
1.81 + private:
1.82 + CRedrawHandler (CStresslet& aStresslet);
1.83 + private:
1.84 + CStresslet& iStresslet;
1.85 + TWsRedrawEvent iRedrawEvent;
1.86 + };
1.87 +
1.88 +private:
1.89 + RWsSession iWs;
1.90 + CWindowGc* iGc;
1.91 + CWsScreenDevice* iScreenDevice;
1.92 + CRedrawHandler* iRedrawHandler;
1.93 + CEventHandler* iEventHandler;
1.94 +
1.95 + MTestStepReporter& iReporter;
1.96 + };
1.97 +
1.98 +#define REPORT_EVENT(value) (Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))
1.99 +#define REPORT_EVENT_WITH_TEXT(value,text) (text,Reporter().LogCondition(value,(TText8*)__FILE__,__LINE__))
1.100 +
1.101 +
1.102 +#endif // STRESSLET_H