os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_endpointimagelifetime.cpp
Update contrib.
1 // Copyright (c) 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 #include "egltest_endpointimage.h"
23 #include "egltest_surface.h"
24 #include "egltest_endpoint_util.h"
26 CEglTest_LocalTestStep_EndpointImageLifetimeProcess::CEglTest_LocalTestStep_EndpointImageLifetimeProcess()
28 TRAPD(err, TEndpointUtil::SetLoggerForProcessWrapperL(Logger()));
31 RDebug::Printf("Logging is not set up... Err = %d. Panicking...", err);
37 //function used for creating the queues.
38 TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepPreambleL()
41 User::LeaveIfError(iResultOutQueue.OpenGlobal(KResultProcessQueueName));
42 User::LeaveIfError(iParamsInQueue.OpenGlobal(KParamsProcessQueueName));
43 SetTestStepResult(EPass);
47 TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepPostambleL()
49 iResultOutQueue.Close();
50 iParamsInQueue.Close();
54 CEglTest_LocalTestStep_EndpointImageLifetimeProcess::~CEglTest_LocalTestStep_EndpointImageLifetimeProcess()
56 //closing an already closed handle is harmless
57 iResultOutQueue.Close();
58 iParamsInQueue.Close();
62 TVerdict CEglTest_LocalTestStep_EndpointImageLifetimeProcess::doTestStepL()
64 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
66 if (!eglInitialize(dpy, NULL, NULL))
68 INFO_PRINTF2(_L("EglInitialize failed, error %x"), eglGetError());
69 User::Leave(KErrNotFound);
73 iResultOutQueue.ReceiveBlocking(surfType);
75 CSurface *surface = CSurface::SurfaceFactoryL(static_cast<TSurfaceType>(surfType));
76 CleanupStack::PushL(surface);
78 surface->CreateL(EStandardSurface);
79 INFO_PRINTF2(_L("Using surface type %s"), surface->GetSurfaceTypeStr());
80 TSurfaceId id = surface->SurfaceId();
81 iParamsInQueue.SendBlocking(id);
84 iResultOutQueue.ReceiveBlocking(result);
87 surface->DrawContentL(0);
88 User::LeaveIfError(surface->SubmitContent(ETrue));
92 User::Panic(_L("Expected Panic"), 1);
97 CleanupStack::PopAndDestroy(surface);
103 void CEglTest_LocalTestStep_EndpointImageLifetimeProcess::MainL()
106 // Construct and destroy a process-wide state object in emulator builds.
107 // This will cause initialisation of PLS for EGL and SgDriver
108 // and allow checking for leaks in tests
112 // Create test step and perform CTestStep style initialisation (e.g. logging)
113 CEglTest_LocalTestStep_EndpointImageLifetimeProcess* testStep = new CEglTest_LocalTestStep_EndpointImageLifetimeProcess();
114 if (testStep == NULL)
116 User::Leave(KErrNotFound);
118 CleanupStack::PushL(testStep);
120 // perform CTestStep pre-amble
121 User::LeaveIfError(testStep->doTestStepPreambleL());
123 testStep->doTestStepL();
124 // perform CTestStep post-amble
125 User::LeaveIfError(testStep->doTestStepPostambleL());
128 CleanupStack::PopAndDestroy(testStep);
132 GLDEF_C TInt E32Main()
134 //When EGL Logging is enabled this causes a file server session to be allocated
135 //Which needs to be done before any allocation checks otherwise the test will fail
139 CTrapCleanup* cleanup = CTrapCleanup::New();
145 TRAPD(err, CEglTest_LocalTestStep_EndpointImageLifetimeProcess::MainL());