os/graphics/windowing/windowserver/test/t_wdp/src/t_wdpserver.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 //
    15 
    16 /**
    17 @file
    18 @test
    19 @internalComponent
    20 */
    21 
    22 //	User Includes
    23 #include "t_wdpserver.h"
    24 #include "t_wdptest.h"
    25 
    26 CT_WDPServer* CT_WDPServer::NewL()
    27 /**
    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.
    32  */
    33 	{
    34 	CT_WDPServer*	server = new (ELeave) CT_WDPServer;
    35 	CleanupStack::PushL(server);
    36 	server->ConstructL();
    37 	CleanupStack::Pop(server);
    38 	return server;
    39 	}
    40 
    41 void CT_WDPServer::ConstructL()
    42 	{
    43 	RProcess	handle = RProcess();
    44 	TParsePtrC	serverName(handle.FileName());
    45 	CTestServer::ConstructL(serverName.Name());
    46 	}
    47 
    48 LOCAL_C void MainL()
    49 /**
    50  * Secure variant
    51  * Much simpler, uses the new Rendezvous() call to sync with the client
    52  */
    53 	{
    54 #if (defined __DATA_CAGING__)
    55 	RProcess().DataCaging(RProcess::EDataCagingOn);
    56 	RProcess().SecureApi(RProcess::ESecureApiOn);
    57 #endif
    58 	CActiveScheduler*		sched=NULL;
    59 	sched=new(ELeave) CActiveScheduler;
    60 	CActiveScheduler::Install(sched);
    61 	CT_WDPServer*	server = NULL;
    62 	// Create the CTestServer derived server
    63 	TRAPD(err,server = CT_WDPServer::NewL());
    64 	if(!err)
    65 		{
    66 		// Sync with the client and enter the active scheduler
    67 		RProcess::Rendezvous(KErrNone);
    68 		sched->Start();
    69 		}
    70 	delete server;
    71 	delete sched;
    72 	}
    73 
    74 GLDEF_C TInt E32Main()
    75 /**
    76  * @return - Standard Epoc error code on process exit
    77  * Secure variant only
    78  * Process entry point. Called by client using RProcess Integ
    79  */
    80 	{
    81 	__UHEAP_MARK;
    82 	CTrapCleanup* cleanup = CTrapCleanup::New();
    83 	if(cleanup == NULL)
    84 		{
    85 		return KErrNoMemory;
    86 		}
    87 #if (defined TRAP_IGNORE)
    88 	TRAP_IGNORE(MainL());
    89 #else
    90 	TRAPD(err,MainL());
    91 #endif
    92 	delete cleanup;
    93 	__UHEAP_MARKEND;
    94 	return KErrNone;
    95     }
    96 
    97 CTestStep* CT_WDPServer::CreateTestStep(const TDesC& aStepName)
    98 /**
    99  * @return - A CTestStep derived instance
   100  * Secure and non-secure variants
   101  * Implementation of CTestServer pure virtual
   102  */
   103 	{
   104 	CTestStep*	testStep = NULL;
   105 
   106 	if ( aStepName==KT_WDPTestStep )
   107 		{
   108 		testStep=new CT_WDPTest();
   109 		}
   110 
   111 	return testStep;
   112 	}