os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimitertestserver.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimitertestserver.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,115 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// t_wservratelimitertestserver.h
1.18 +//
1.19 +//
1.20 +
1.21 +/**
1.22 + @file
1.23 + @test
1.24 + @internalComponent
1.25 +*/
1.26 +
1.27 +#include "t_wservratelimitertestserver.h"
1.28 +#include "t_wservratelimiterteststep.h"
1.29 +
1.30 +//Name of the test step
1.31 +_LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
1.32 +
1.33 +/**
1.34 + * @return - Instance of the test server
1.35 + * Same code for Secure and non-secure variants
1.36 + * Called inside the MainL() function to create and start the
1.37 + * CTestServer derived server.
1.38 + */
1.39 +CT_WServRateLimiterTestServer* CT_WServRateLimiterTestServer::NewL()
1.40 + {
1.41 + CT_WServRateLimiterTestServer* server = new(ELeave) CT_WServRateLimiterTestServer();
1.42 + CleanupStack::PushL(server);
1.43 + server->ConstructL();
1.44 + CleanupStack::Pop(server);
1.45 + return server;
1.46 + }
1.47 +
1.48 +void CT_WServRateLimiterTestServer::ConstructL()
1.49 + {
1.50 + RProcess handle = RProcess();
1.51 + TParsePtrC serverName(handle.FileName());
1.52 + CTestServer::ConstructL(serverName.Name());
1.53 + }
1.54 +
1.55 +/**
1.56 + * Secure variant
1.57 + * Much simpler, uses the new Rendezvous() call to sync with the client
1.58 + */
1.59 +LOCAL_C void MainL()
1.60 + {
1.61 +#if (defined __DATA_CAGING__)
1.62 + RProcess().DataCaging(RProcess::EDataCagingOn);
1.63 + RProcess().SecureApi(RProcess::ESecureApiOn);
1.64 +#endif
1.65 + CActiveScheduler* sched=NULL;
1.66 + sched=new(ELeave) CActiveScheduler;
1.67 + CActiveScheduler::Install(sched);
1.68 + CT_WServRateLimiterTestServer* server = NULL;
1.69 + // Create the CTestServer derived server
1.70 + TRAPD(err,server = CT_WServRateLimiterTestServer::NewL());
1.71 + if(!err)
1.72 + {
1.73 + // Sync with the client and enter the active scheduler
1.74 + RProcess::Rendezvous(KErrNone);
1.75 + sched->Start();
1.76 + }
1.77 + delete server;
1.78 + delete sched;
1.79 + }
1.80 +
1.81 +/**
1.82 + * @return - Standard Epoc error code on process exit
1.83 + * Secure variant only
1.84 + * Process entry point. Called by client using RProcess Integ
1.85 + */
1.86 +GLDEF_C TInt E32Main()
1.87 + {
1.88 + __UHEAP_MARK;
1.89 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.90 + if(cleanup == NULL)
1.91 + {
1.92 + return KErrNoMemory;
1.93 + }
1.94 +#if (defined TRAP_IGNORE)
1.95 + TRAP_IGNORE(MainL());
1.96 +#else
1.97 + TRAPD(err,MainL());
1.98 +#endif
1.99 + delete cleanup;
1.100 + __UHEAP_MARKEND;
1.101 + return KErrNone;
1.102 + }
1.103 +
1.104 +/**
1.105 + * @return - A CTestStep derived instance
1.106 + * Secure and non-secure variants
1.107 + * Implementation of CTestServer pure virtual
1.108 + */
1.109 +CTestStep* CT_WServRateLimiterTestServer::CreateTestStep(const TDesC& aStepName)
1.110 + {
1.111 + CTestStep* testStep = NULL;
1.112 +
1.113 + if ( aStepName==KT_WServRateLimiterTestStep )
1.114 + {
1.115 + testStep=new CT_WServRateLimiterTestStep();
1.116 + }
1.117 + return testStep;
1.118 + }