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 #include "tsurfacemanagerserver.h"
23 #include "tsurfacemanager.h"
24 #include "tsurfacemanagermultithread.h"
25 #include "tsurfacemanagermultiprocess.h"
27 CTSurfaceManagerServer* CTSurfaceManagerServer::NewL()
29 @return - Instance of the test server
30 Same code for Secure and non-secure variants
31 Called inside the MainL() function to create and start the
32 CTestServer derived server.
35 CTSurfaceManagerServer * server = new (ELeave) CTSurfaceManagerServer();
36 CleanupStack::PushL(server);
38 // Get server name from process so we can use SetCap to change the capabilites and use this server with a different filename
39 RProcess handle = RProcess();
40 TParsePtrC serverName(handle.FileName());
42 // CServer base class call
43 server->StartL(serverName.Name());
44 CleanupStack::Pop(server);
52 // Much simpler, uses the new Rendezvous() call to sync with the client
55 RProcess().DataCaging(RProcess::EDataCagingOn);
56 RProcess().SecureApi(RProcess::ESecureApiOn);
57 CActiveScheduler* sched=NULL;
58 sched=new(ELeave) CActiveScheduler;
59 CActiveScheduler::Install(sched);
60 CTSurfaceManagerServer* server = NULL;
61 // Create the CTestServer derived server
62 TRAPD(err,server = CTSurfaceManagerServer::NewL());
65 // Sync with the client and enter the active scheduler
66 RProcess::Rendezvous(KErrNone);
73 /** @return - Standard Epoc error code on process exit
75 Process entry point. Called by client using RProcess API
77 GLDEF_C TInt E32Main()
80 CTrapCleanup* cleanup = CTrapCleanup::New();
88 RDebug::Print(_L("CTSurfaceManagerServer::MainL - Error: %d"), err);
89 User::Panic(_L("CTSurfaceManagerServer"),err);
96 CTestStep* CTSurfaceManagerServer::CreateTestStep(const TDesC& aStepName)
98 @return - A CTestStep derived instance
99 Secure and non-secure variants
100 Implementation of CTestServer pure virtual
103 if(aStepName == KTSurfaceManagerStep)
105 return new CTSurfaceManagerStep();
107 else if(aStepName == KTSurfaceManagerMultiThreadStep)
109 return new CTSurfaceManagerMultiThreadStep();
111 else if(aStepName == KTSurfaceManagerMultiProcessStep)
113 return new CTSurfaceManagerMultiProcessStep();