os/graphics/windowing/windowserver/test/t_genericplugin/src/t_wservgenericpluginserver.cpp
Update contrib.
1 // Copyright (c) 2008-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.
23 #include "t_wservgenericpluginserver.h"
24 #include "t_wservgenericpluginstepload.h"
25 #include "t_wservgenericpluginconsts.h"
28 * @return - Instance of the test server
29 * Same code for Secure and non-secure variants
30 * Called inside the MainL() function to create and start the
31 * CTestServer derived server.
33 CT_WServGenericpluginServer* CT_WServGenericpluginServer::NewL()
35 CT_WServGenericpluginServer* server = new(ELeave) CT_WServGenericpluginServer();
36 CleanupStack::PushL(server);
38 CleanupStack::Pop(server);
42 void CT_WServGenericpluginServer::ConstructL()
44 RProcess handle = RProcess();
45 TParsePtrC serverName(handle.FileName());
46 CTestServer::ConstructL(serverName.Name());
51 * Much simpler, uses the new Rendezvous() call to sync with the client
55 #if (defined __DATA_CAGING__)
56 RProcess().DataCaging(RProcess::EDataCagingOn);
57 RProcess().SecureApi(RProcess::ESecureApiOn);
59 CActiveScheduler* sched=NULL;
60 sched=new(ELeave) CActiveScheduler;
61 CActiveScheduler::Install(sched);
62 CT_WServGenericpluginServer* server = NULL;
63 // Create the CTestServer derived server
64 TRAPD(err,server = CT_WServGenericpluginServer::NewL());
67 // Sync with the client and enter the active scheduler
68 RProcess::Rendezvous(KErrNone);
76 * @return - Standard Epoc error code on process exit
78 * Process entry point. Called by client using RProcess Integ
80 GLDEF_C TInt E32Main()
83 CTrapCleanup* cleanup = CTrapCleanup::New();
88 #if (defined TRAP_IGNORE)
99 * @return - A CTestStep derived instance
100 * Secure and non-secure variants
101 * Implementation of CTestServer pure virtual
103 CTestStep* CT_WServGenericpluginServer::CreateTestStep(const TDesC& aStepName)
105 CTestStep* testStep = NULL;
107 if ( aStepName==KT_WServGenericpluginStepLoad )
109 testStep=new CT_WServGenericpluginStepLoad();