Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
22 #if !defined(__TSURFACEMANAGERMULTITHREAD_H__)
23 #define __TSURFACEMANAGERMULTITHREAD_H__
25 #include <test/tgraphicsharness.h>
26 #include <graphics/surface.h>
27 #include <graphics/surfacemanager.h>
28 #include "tsmgmultprocessshared.h"
31 Enums for passing between the multi-threads within the testing process,
32 used to define which tests should be run on the sides of other threads.
36 ECreateSurfaceMapInfo,
41 EOpenCloseSurfaceMultiThread,
42 EOpenMapSurfaceInfoMultiThread,
45 EOpenCloseMapSurfaceInfoMultiThread,
46 EOpenCloseOpenMultiThread,
52 Enums for single test results e.g. OpenSurface
54 enum TSingleTestResult
56 EAllZero = 0x00000000,
57 EOpenSurfaceTestPassed = 0x00000001,
58 ECloseSurfaceTestPassed = 0x00000010,
59 EMapSurfaceTestPassed = 0x00000100,
60 ESurfaceInfoTestPassed = 0x00001000,
61 ESurfaceInfoTestPassed2 = 0x00004000,
62 ECreateSurfaceTestPassed = 0x00010000,
63 EOpenSurfaceTestFailed = 0x00000002,
64 ECloseSurfaceTestFailed = 0x00000020,
65 EMapSurfaceTestFailed = 0x00000200,
66 ESurfaceInfoTestFailed = 0x00002000,
67 ESurfaceInfoTestFailed2 = 0x00008000,
68 ECreateSurfaceTestFailed = 0x00020000,
71 _LIT(KTSurfaceManagerMultiThreadStep,"TSurfaceManagerMultiThread");
75 A class to wrap up the execution in the other threads
77 class CChildThreadWrapper : public CBase
80 CChildThreadWrapper(TAny* aInfo);
81 CChildThreadWrapper();
82 ~CChildThreadWrapper();
83 void CreateSurfaceThread();
84 void MapSurfaceInfo();
87 void CloseBothSurfaces();
89 RSurfaceManager& iSurfaceManager;
90 TSurfaceId& iSurfaceId;
91 TSurfaceId iSurfaceIdNew;
92 TThreadTestCase iThreadTestCase;
94 class CTSurfaceManagerMultiThread : public CTGraphicsBase
97 CTSurfaceManagerMultiThread(CTestStep* aStep);
98 ~CTSurfaceManagerMultiThread();
100 friend class CChildThreadWrapper;
102 //from CTGraphicsStep
103 virtual void RunTestCaseL(TInt aCurTestCase);
105 void TestAccessSurfaceWithoutOpeningL();
106 void TestCloseSurfaceWithoutOpeningL();
107 void TestAccessSurfaceClosedThreadL();
108 void TestCloseSurfaceClosedThreadL();
109 void TestAccessSurfaceOpenedClosedThreadL();
110 void TestCloseSurfaceOpenedClosedThreadL();
111 void TestAccessSurfaceOpenedKilledThreadL();
112 void TestCloseSurfaceOpenedKilledThreadL();
113 void TestAccessSurfaceCreateKilledThreadL();
114 void TestCloseSurfaceCreateKilledThreadL();
115 void TestAccessSurfaceThreeThreadsL();
116 void TestAccessSurfaceDieCloseOtherThreadsL();
117 void TestOpenSurfaceDieCloseOtherThreadsL();
118 void TestAccessSurfaceInExistingSharedChunkL();
119 void TestCloseSurfaceExistingSharedChunkL();
121 static void CloseSurfaceWhenLeave(TAny* aSurfaceId) ;
124 Information to be passed into the rendering threads
128 RSurfaceManager iSurfaceManager;
129 TSurfaceId iSurfaceId;
130 TSurfaceId iSurfaceIdNew;
131 TThreadTestCase iThreadTestCase;
134 static TInt ThreadSecondStart(TAny* aInfo);
135 static TInt ThreadThirdStart(TAny* aInfo);
138 RSurfaceManager iSurfaceManager;
139 TSurfaceId iSurfaceId;
140 TSurfaceId iSurfaceIdNew;
147 class CTSurfaceManagerMultiThreadStep : public CTGraphicsStep
150 CTSurfaceManagerMultiThreadStep();
152 //from CTGraphicsStep
153 virtual CTGraphicsBase* CreateTestL();
154 virtual void TestSetupL();
155 virtual void TestClose();
159 _LIT(KMultiThreadSemaphore, "Multi Thread Semaphore");
160 _LIT(KMainThreadSemaphore, "Main Thread Semaphore");