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.
14 // surface manager API
23 #include <graphics/surface.h>
24 #include <graphics/surfacemanager.h>
25 #include <test/tgraphicsharness.h>
29 RSurfaceManager iSurfaceManager;
30 TSurfaceId iSurfaceId;
33 static void CloseSurfaceWhenLeave(TAny* aInfo)
35 TInt err = ((TLeaveInfo*)aInfo)->iSurfaceManager.CloseSurface(((TLeaveInfo*)aInfo)->iSurfaceId);
37 RDebug::Print(_L("Error closing surface = %d\n"),err);
42 Enum for the slots for inter-process communication
46 EMultiProcessFirstSlot = 0,
47 EMultiProcessSecondSlot,
48 EMultiProcessThirdSlot,
49 EMultiProcessFourthSlot,
53 Enums for passing between the test process and the second process used in testing,
54 used to define which test should be run on the side of the second process.
56 enum TMultiProcessTestCase
58 // Second process opcodes
59 ETestOpenReceivedSurface,
60 ETestInfoReceivedSurface,
61 ETestOpenSurfaceInvalidParams,
64 EMapSurfaceInfoCantAccess,
69 ETestChannelMultiProcess1,
70 ETestChannelMultiProcess2,
75 // Third process opcodes
76 ECloseSurface = 0x00010000,
83 Enums for panics between my testing process and my second process
85 enum TCrossProcessPanics
91 Enums for the test results
95 EFirstTestPassed = 0x00000001,
96 ESecondTestPassed = 0x00000002,
97 EThirdTestPassed = 0x00000004,
98 EFourthTestPassed = 0x00000008,
99 EFifthTestPassed = 0x00000010,
100 ESixthTestPassed = 0x00000020,
101 ESeventhTestPassed = 0x00000040,
102 EEighthTestPassed = 0x00000080,
103 ENinthTestPassed = 0x00000100,
104 ETenthTestPassed = 0x00000200,
107 _LIT(KMultiProcessSemaphore, "Multi Process Semaphore");
108 _LIT(KMultiProcessSemaphore2, "Multi Process Semaphore 2");
109 _LIT(KMultiProcessSemaphore3, "Multi Process Semaphore 3");
110 _LIT(KMultiProcessSemaphore4, "Multi Process Semaphore 4");
111 _LIT(KSharedChunkName, "Surfaces test shared chunk");
114 const TInt KSharedChunkSize = ((4 * sizeof(TUint32)) + (2 * sizeof(TInt)));
117 Wraps a shared chunk for communication between the processes
119 class CChunkWrapper : public CBase
123 static CChunkWrapper* CreateL(const TDesC& aName, TInt aSize, TInt aMaxSize);
124 void CreateConstructL(const TDesC& aName, TInt aSize, TInt aMaxSize);
125 static CChunkWrapper* OpenL(const TDesC& aName, TBool aIsReadOnly);
126 void OpenConstructL(const TDesC& aName, TBool aIsReadOnly);
127 void SetSecondProcessResults(TInt aResult);
128 TInt GetSecondProcessResults();
129 void SetThirdProcessResults(TInt aResult);
130 TInt GetThirdProcessResults();
131 void SetId(const TSurfaceId& aId);
141 class CTestDriver : public CBase
145 virtual ~CTestDriver();
148 RSurfaceManager iSurfaceManager;
149 CChunkWrapper* iChunkWrapper;