os/graphics/windowing/windowserver/test/t_ratelimiter/src/t_wservratelimitertestserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // t_wservratelimitertestserver.h
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @test
    21  @internalComponent
    22 */
    23 
    24 #include "t_wservratelimitertestserver.h"
    25 #include "t_wservratelimiterteststep.h"
    26 
    27 //Name of the test step
    28 _LIT(KT_WServRateLimiterTestStep,"T_WServRateLimiterTestStep");
    29 
    30 /**
    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.
    35  */
    36 CT_WServRateLimiterTestServer* CT_WServRateLimiterTestServer::NewL()
    37 	{
    38 	CT_WServRateLimiterTestServer* server = new(ELeave) CT_WServRateLimiterTestServer();
    39 	CleanupStack::PushL(server);
    40 	server->ConstructL();
    41 	CleanupStack::Pop(server);
    42 	return server;
    43 	}
    44 
    45 void CT_WServRateLimiterTestServer::ConstructL()
    46 	{
    47 	RProcess	handle = RProcess();
    48 	TParsePtrC	serverName(handle.FileName());
    49 	CTestServer::ConstructL(serverName.Name());
    50 	}
    51 
    52 /**
    53  * Secure variant
    54  * Much simpler, uses the new Rendezvous() call to sync with the client
    55  */
    56 LOCAL_C void MainL()
    57 	{
    58 #if (defined __DATA_CAGING__)
    59 	RProcess().DataCaging(RProcess::EDataCagingOn);
    60 	RProcess().SecureApi(RProcess::ESecureApiOn);
    61 #endif
    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());
    68 	if(!err)
    69 		{
    70 		// Sync with the client and enter the active scheduler
    71 		RProcess::Rendezvous(KErrNone);
    72 		sched->Start();
    73 		}
    74 	delete server;
    75 	delete sched;
    76 	}
    77 
    78 /**
    79  * @return - Standard Epoc error code on process exit
    80  * Secure variant only
    81  * Process entry point. Called by client using RProcess Integ
    82  */
    83 GLDEF_C TInt E32Main()
    84 	{
    85 	__UHEAP_MARK;
    86 	CTrapCleanup* cleanup = CTrapCleanup::New();
    87 	if(cleanup == NULL)
    88 		{
    89 		return KErrNoMemory;
    90 		}
    91 #if (defined TRAP_IGNORE)
    92 	TRAP_IGNORE(MainL());
    93 #else
    94 	TRAPD(err,MainL());
    95 #endif
    96 	delete cleanup;
    97 	__UHEAP_MARKEND;
    98 	return KErrNone;
    99     }
   100 
   101 /**
   102  * @return - A CTestStep derived instance
   103  * Secure and non-secure variants
   104  * Implementation of CTestServer pure virtual
   105  */
   106 CTestStep* CT_WServRateLimiterTestServer::CreateTestStep(const TDesC& aStepName)
   107 	{
   108 	CTestStep*	testStep = NULL;
   109 
   110 	if ( aStepName==KT_WServRateLimiterTestStep )
   111 		{
   112 		testStep=new CT_WServRateLimiterTestStep();
   113 		}
   114 	return testStep;
   115 	}