os/graphics/windowing/windowserver/test/t_capability/src/t_wservcapcheckserver.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 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_wservcapcheckserver.h"
    23 #include "t_wservcapchecksteptsizemode.h"
    24 
    25 
    26 CT_WServCapCheckServer* CT_WServCapCheckServer::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_WServCapCheckServer* server = new (ELeave) CT_WServCapCheckServer();
    35 	CleanupStack::PushL(server);
    36 	server->ConstructL();
    37 	CleanupStack::Pop(server);
    38 	return server;
    39 	}
    40 
    41 void CT_WServCapCheckServer::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 	RProcess().DataCaging(RProcess::EDataCagingOn);
    55 	RProcess().SecureApi(RProcess::ESecureApiOn);
    56 
    57 	CActiveScheduler*		sched=NULL;
    58 	sched=new(ELeave) CActiveScheduler;
    59 	CActiveScheduler::Install(sched);
    60 	CT_WServCapCheckServer* server = NULL;
    61 
    62 	// Create the CTestServer derived server
    63 	TRAPD(err,server = CT_WServCapCheckServer::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 
    83 	CTrapCleanup* cleanup = CTrapCleanup::New();
    84 	if(cleanup == NULL)
    85 		{
    86 		return KErrNoMemory;
    87 		}
    88 
    89 	TRAPD(err, MainL());
    90 	delete cleanup;
    91 
    92 	__UHEAP_MARKEND;
    93 
    94 	return err;
    95     }
    96 
    97 CTestStep* CT_WServCapCheckServer::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_WServCapCheckStepTSizeModePos )
   107 		{
   108 		testStep = new CT_WServCapCheckStepTSizeModePos();
   109 		}
   110 	if ( aStepName == KT_WServCapCheckStepTSizeModeNeg)
   111 		{
   112 		testStep = new CT_WServCapCheckStepTSizeModeNeg();
   113 		}
   114 	return testStep;
   115 	}