sl@0: // Copyright (c) 2007-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 - Internal Symbian test code sl@0: */ sl@0: sl@0: #if !defined(__TSURFACEMANAGERMULTITHREAD_H__) sl@0: #define __TSURFACEMANAGERMULTITHREAD_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "tsmgmultprocessshared.h" sl@0: sl@0: /** sl@0: Enums for passing between the multi-threads within the testing process, sl@0: used to define which tests should be run on the sides of other threads. sl@0: */ sl@0: enum TThreadTestCase sl@0: { sl@0: ECreateSurfaceMapInfo, sl@0: ECreateSurfaceClose, sl@0: EOpenCloseSurface, sl@0: EOpenKillSurface, sl@0: ECreateKillSurface, sl@0: EOpenCloseSurfaceMultiThread, sl@0: EOpenMapSurfaceInfoMultiThread, sl@0: EMapSurfaceInfo, sl@0: ECloseSurfaces, sl@0: EOpenCloseMapSurfaceInfoMultiThread, sl@0: EOpenCloseOpenMultiThread, sl@0: ECloseBothSurfaces, sl@0: ENoTestCase sl@0: }; sl@0: sl@0: /** sl@0: Enums for single test results e.g. OpenSurface sl@0: */ sl@0: enum TSingleTestResult sl@0: { sl@0: EAllZero = 0x00000000, sl@0: EOpenSurfaceTestPassed = 0x00000001, sl@0: ECloseSurfaceTestPassed = 0x00000010, sl@0: EMapSurfaceTestPassed = 0x00000100, sl@0: ESurfaceInfoTestPassed = 0x00001000, sl@0: ESurfaceInfoTestPassed2 = 0x00004000, sl@0: ECreateSurfaceTestPassed = 0x00010000, sl@0: EOpenSurfaceTestFailed = 0x00000002, sl@0: ECloseSurfaceTestFailed = 0x00000020, sl@0: EMapSurfaceTestFailed = 0x00000200, sl@0: ESurfaceInfoTestFailed = 0x00002000, sl@0: ESurfaceInfoTestFailed2 = 0x00008000, sl@0: ECreateSurfaceTestFailed = 0x00020000, sl@0: }; sl@0: sl@0: _LIT(KTSurfaceManagerMultiThreadStep,"TSurfaceManagerMultiThread"); sl@0: sl@0: sl@0: /** sl@0: A class to wrap up the execution in the other threads sl@0: */ sl@0: class CChildThreadWrapper : public CBase sl@0: { sl@0: public: sl@0: CChildThreadWrapper(TAny* aInfo); sl@0: CChildThreadWrapper(); sl@0: ~CChildThreadWrapper(); sl@0: void CreateSurfaceThread(); sl@0: void MapSurfaceInfo(); sl@0: void CloseSurface(); sl@0: void OpenSurface(); sl@0: void CloseBothSurfaces(); sl@0: public: sl@0: RSurfaceManager& iSurfaceManager; sl@0: TSurfaceId& iSurfaceId; sl@0: TSurfaceId iSurfaceIdNew; sl@0: TThreadTestCase iThreadTestCase; sl@0: }; sl@0: class CTSurfaceManagerMultiThread : public CTGraphicsBase sl@0: { sl@0: public: sl@0: CTSurfaceManagerMultiThread(CTestStep* aStep); sl@0: ~CTSurfaceManagerMultiThread(); sl@0: sl@0: friend class CChildThreadWrapper; sl@0: protected: sl@0: //from CTGraphicsStep sl@0: virtual void RunTestCaseL(TInt aCurTestCase); sl@0: private: sl@0: void TestAccessSurfaceWithoutOpeningL(); sl@0: void TestCloseSurfaceWithoutOpeningL(); sl@0: void TestAccessSurfaceClosedThreadL(); sl@0: void TestCloseSurfaceClosedThreadL(); sl@0: void TestAccessSurfaceOpenedClosedThreadL(); sl@0: void TestCloseSurfaceOpenedClosedThreadL(); sl@0: void TestAccessSurfaceOpenedKilledThreadL(); sl@0: void TestCloseSurfaceOpenedKilledThreadL(); sl@0: void TestAccessSurfaceCreateKilledThreadL(); sl@0: void TestCloseSurfaceCreateKilledThreadL(); sl@0: void TestAccessSurfaceThreeThreadsL(); sl@0: void TestAccessSurfaceDieCloseOtherThreadsL(); sl@0: void TestOpenSurfaceDieCloseOtherThreadsL(); sl@0: void TestAccessSurfaceInExistingSharedChunkL(); sl@0: void TestCloseSurfaceExistingSharedChunkL(); sl@0: sl@0: static void CloseSurfaceWhenLeave(TAny* aSurfaceId) ; sl@0: public: sl@0: /** sl@0: Information to be passed into the rendering threads sl@0: */ sl@0: struct TInfo sl@0: { sl@0: RSurfaceManager iSurfaceManager; sl@0: TSurfaceId iSurfaceId; sl@0: TSurfaceId iSurfaceIdNew; sl@0: TThreadTestCase iThreadTestCase; sl@0: }; sl@0: sl@0: static TInt ThreadSecondStart(TAny* aInfo); sl@0: static TInt ThreadThirdStart(TAny* aInfo); sl@0: sl@0: private: sl@0: RSurfaceManager iSurfaceManager; sl@0: TSurfaceId iSurfaceId; sl@0: TSurfaceId iSurfaceIdNew; sl@0: TInfo iInfo; sl@0: TInfo iInfo2; sl@0: sl@0: }; sl@0: sl@0: sl@0: class CTSurfaceManagerMultiThreadStep : public CTGraphicsStep sl@0: { sl@0: public: sl@0: CTSurfaceManagerMultiThreadStep(); sl@0: protected: sl@0: //from CTGraphicsStep sl@0: virtual CTGraphicsBase* CreateTestL(); sl@0: virtual void TestSetupL(); sl@0: virtual void TestClose(); sl@0: }; sl@0: sl@0: sl@0: _LIT(KMultiThreadSemaphore, "Multi Thread Semaphore"); sl@0: _LIT(KMainThreadSemaphore, "Main Thread Semaphore"); sl@0: sl@0: #endif