os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimitertestserver.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.
14 // t_wservratelimitertestserver.h
24 #include "t_wservratelimitertestserver.h"
25 #include "t_wservratelimiterteststep.h"
27 //Name of the test step
28 _LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
31 * @return - Instance of the test server
32 * Same code for Secure and non-secure variants
33 * Called inside the MainL() function to create and start the
34 * CTestServer derived server.
36 CT_WServRateLimiterTestServer* CT_WServRateLimiterTestServer::NewL()
38 CT_WServRateLimiterTestServer* server = new(ELeave) CT_WServRateLimiterTestServer();
39 CleanupStack::PushL(server);
41 CleanupStack::Pop(server);
45 void CT_WServRateLimiterTestServer::ConstructL()
47 RProcess handle = RProcess();
48 TParsePtrC serverName(handle.FileName());
49 CTestServer::ConstructL(serverName.Name());
54 * Much simpler, uses the new Rendezvous() call to sync with the client
58 #if (defined __DATA_CAGING__)
59 RProcess().DataCaging(RProcess::EDataCagingOn);
60 RProcess().SecureApi(RProcess::ESecureApiOn);
62 CActiveScheduler* sched=NULL;
63 sched=new(ELeave) CActiveScheduler;
64 CActiveScheduler::Install(sched);
65 CT_WServRateLimiterTestServer* server = NULL;
66 // Create the CTestServer derived server
67 TRAPD(err,server = CT_WServRateLimiterTestServer::NewL());
70 // Sync with the client and enter the active scheduler
71 RProcess::Rendezvous(KErrNone);
79 * @return - Standard Epoc error code on process exit
81 * Process entry point. Called by client using RProcess Integ
83 GLDEF_C TInt E32Main()
86 CTrapCleanup* cleanup = CTrapCleanup::New();
91 #if (defined TRAP_IGNORE)
102 * @return - A CTestStep derived instance
103 * Secure and non-secure variants
104 * Implementation of CTestServer pure virtual
106 CTestStep* CT_WServRateLimiterTestServer::CreateTestStep(const TDesC& aStepName)
108 CTestStep* testStep = NULL;
110 if ( aStepName==KT_WServRateLimiterTestStep )
112 testStep=new CT_WServRateLimiterTestStep();