os/graphics/graphicshwdrivers/surfacemgr/test/inc/tsurfacemanagermultithread.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/graphicshwdrivers/surfacemgr/test/inc/tsurfacemanagermultithread.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,162 @@
     1.4 +// Copyright (c) 2007-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 - Internal Symbian test code
    1.23 +*/
    1.24 +
    1.25 +#if !defined(__TSURFACEMANAGERMULTITHREAD_H__)
    1.26 +#define __TSURFACEMANAGERMULTITHREAD_H__
    1.27 +
    1.28 +#include <test/tgraphicsharness.h>
    1.29 +#include <graphics/surface.h>
    1.30 +#include <graphics/surfacemanager.h>
    1.31 +#include "tsmgmultprocessshared.h"
    1.32 +
    1.33 +/**
    1.34 +Enums for passing between the multi-threads within the testing process, 
    1.35 +used to define which tests should be run on the sides of other threads.
    1.36 +*/
    1.37 +enum TThreadTestCase
    1.38 +	{
    1.39 +	ECreateSurfaceMapInfo,
    1.40 +	ECreateSurfaceClose,
    1.41 +	EOpenCloseSurface,
    1.42 +	EOpenKillSurface,
    1.43 +	ECreateKillSurface,
    1.44 +	EOpenCloseSurfaceMultiThread,
    1.45 +	EOpenMapSurfaceInfoMultiThread,
    1.46 +	EMapSurfaceInfo,
    1.47 +	ECloseSurfaces,
    1.48 +	EOpenCloseMapSurfaceInfoMultiThread,
    1.49 +	EOpenCloseOpenMultiThread,
    1.50 +	ECloseBothSurfaces,
    1.51 +	ENoTestCase
    1.52 +	};
    1.53 +	
    1.54 +/**
    1.55 +Enums for single test results e.g. OpenSurface
    1.56 +*/	
    1.57 +enum TSingleTestResult
    1.58 +	{
    1.59 +	EAllZero = 0x00000000,
    1.60 +	EOpenSurfaceTestPassed = 0x00000001,
    1.61 +	ECloseSurfaceTestPassed = 0x00000010,
    1.62 +	EMapSurfaceTestPassed = 0x00000100,
    1.63 +	ESurfaceInfoTestPassed = 0x00001000,
    1.64 +	ESurfaceInfoTestPassed2 = 0x00004000,
    1.65 +	ECreateSurfaceTestPassed = 0x00010000,
    1.66 +	EOpenSurfaceTestFailed = 0x00000002,
    1.67 +	ECloseSurfaceTestFailed = 0x00000020,
    1.68 +	EMapSurfaceTestFailed = 0x00000200,
    1.69 +	ESurfaceInfoTestFailed = 0x00002000,
    1.70 +	ESurfaceInfoTestFailed2 = 0x00008000,
    1.71 +	ECreateSurfaceTestFailed = 0x00020000,
    1.72 +	};
    1.73 +
    1.74 +_LIT(KTSurfaceManagerMultiThreadStep,"TSurfaceManagerMultiThread");
    1.75 +
    1.76 +
    1.77 +/**
    1.78 +A class to wrap up the execution in the other threads
    1.79 +*/
    1.80 +class CChildThreadWrapper : public CBase
    1.81 +	{
    1.82 +public:
    1.83 +	CChildThreadWrapper(TAny* aInfo);
    1.84 +	CChildThreadWrapper();
    1.85 +	~CChildThreadWrapper();
    1.86 +	void CreateSurfaceThread();
    1.87 +	void MapSurfaceInfo();
    1.88 +	void CloseSurface();
    1.89 +	void OpenSurface();
    1.90 +	void CloseBothSurfaces();
    1.91 +public:
    1.92 +	RSurfaceManager& iSurfaceManager;
    1.93 +	TSurfaceId& iSurfaceId;
    1.94 +	TSurfaceId iSurfaceIdNew;
    1.95 +	TThreadTestCase iThreadTestCase;
    1.96 +	};
    1.97 +class CTSurfaceManagerMultiThread : public CTGraphicsBase
    1.98 +	{
    1.99 +public:
   1.100 +	CTSurfaceManagerMultiThread(CTestStep* aStep);
   1.101 +	~CTSurfaceManagerMultiThread();
   1.102 +	
   1.103 +	friend class CChildThreadWrapper;
   1.104 +protected:
   1.105 +//from 	CTGraphicsStep
   1.106 +	virtual void RunTestCaseL(TInt aCurTestCase);
   1.107 +private:
   1.108 +	void TestAccessSurfaceWithoutOpeningL();
   1.109 +	void TestCloseSurfaceWithoutOpeningL();
   1.110 +	void TestAccessSurfaceClosedThreadL();
   1.111 +	void TestCloseSurfaceClosedThreadL();
   1.112 +	void TestAccessSurfaceOpenedClosedThreadL();
   1.113 +	void TestCloseSurfaceOpenedClosedThreadL();
   1.114 +	void TestAccessSurfaceOpenedKilledThreadL();
   1.115 +	void TestCloseSurfaceOpenedKilledThreadL();
   1.116 +	void TestAccessSurfaceCreateKilledThreadL();
   1.117 +	void TestCloseSurfaceCreateKilledThreadL();
   1.118 +	void TestAccessSurfaceThreeThreadsL();
   1.119 +	void TestAccessSurfaceDieCloseOtherThreadsL();
   1.120 +	void TestOpenSurfaceDieCloseOtherThreadsL();
   1.121 +	void TestAccessSurfaceInExistingSharedChunkL();
   1.122 +	void TestCloseSurfaceExistingSharedChunkL();
   1.123 +	
   1.124 +	static void CloseSurfaceWhenLeave(TAny* aSurfaceId) ;
   1.125 +public:
   1.126 +/**
   1.127 +Information to be passed into the rendering threads
   1.128 +*/
   1.129 +struct TInfo
   1.130 +	{
   1.131 +	RSurfaceManager iSurfaceManager;
   1.132 +	TSurfaceId iSurfaceId;
   1.133 +	TSurfaceId iSurfaceIdNew;
   1.134 +	TThreadTestCase iThreadTestCase;
   1.135 +	};
   1.136 +	
   1.137 +	static TInt ThreadSecondStart(TAny* aInfo);
   1.138 +	static TInt ThreadThirdStart(TAny* aInfo);
   1.139 +
   1.140 +private:
   1.141 +	RSurfaceManager iSurfaceManager;
   1.142 +	TSurfaceId iSurfaceId;
   1.143 +	TSurfaceId iSurfaceIdNew;
   1.144 +	TInfo iInfo;
   1.145 +	TInfo iInfo2;
   1.146 +	
   1.147 +	};
   1.148 +
   1.149 +	
   1.150 +class CTSurfaceManagerMultiThreadStep : public CTGraphicsStep
   1.151 +	{
   1.152 +public:
   1.153 +	CTSurfaceManagerMultiThreadStep();
   1.154 +protected:	
   1.155 +	//from CTGraphicsStep
   1.156 +	virtual CTGraphicsBase* CreateTestL();
   1.157 +	virtual void TestSetupL();
   1.158 +	virtual void TestClose();
   1.159 +	};
   1.160 +
   1.161 +
   1.162 +_LIT(KMultiThreadSemaphore, "Multi Thread Semaphore");
   1.163 +_LIT(KMainThreadSemaphore, "Main Thread Semaphore");
   1.164 +
   1.165 +#endif