os/graphics/windowing/windowserver/test/t_stress/src/test_srv.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 - Internal Symbian test code 
    20 */
    21  
    22 
    23 #include "test_srv.h"
    24 #include "test_step_comparison.h"
    25 
    26 
    27 CWServTestSrv* CWServTestSrv::NewLC( )
    28 	{
    29 	CWServTestSrv* server = new (ELeave) CWServTestSrv();
    30 	CleanupStack::PushL(server);
    31 	TParsePtrC serverName(RProcess().FileName());	
    32 	server->StartL(serverName.Name());
    33 	return server;
    34 	}
    35 
    36 static void MainL()
    37 	{
    38 	CActiveScheduler* sched = new(ELeave) CActiveScheduler;
    39 	CleanupStack::PushL (sched);
    40 	CActiveScheduler::Install (sched);
    41 
    42 	CWServTestSrv* server = CWServTestSrv::NewLC( );
    43 	RProcess::Rendezvous (KErrNone );
    44 	sched->Start( );
    45 
    46 	CleanupStack::PopAndDestroy (server );
    47 	CleanupStack::PopAndDestroy (sched );
    48 	}
    49 
    50 /**
    51  Process entry point. Called by client using RProcess API
    52  @return - Standard Epoc error code on process exit
    53  */
    54 TInt E32Main(void) //lint -e765 -e714 Suppress 'not referenced' and 'could be static'
    55 	{
    56 	
    57 	//__asm { int 3 };
    58 	//__DEBUGGER();
    59 	__UHEAP_MARK;
    60 	CTrapCleanup* cleanup = CTrapCleanup::New();
    61 	if(cleanup == NULL)
    62 		{
    63 		return KErrNoMemory;
    64 		}
    65 	TRAPD(err,MainL());	
    66 	if (err)
    67 		{
    68 		_LIT(KMainErrorStatement, "ProjectTestServer::MainL - Error: %d");
    69 		RDebug::Print(KMainErrorStatement, err);
    70 		_LIT(KProjectTestServerName, "ProjectTestServer");
    71 	   	User::Panic(KProjectTestServerName, err);
    72 		}		
    73 	delete cleanup;
    74 		
    75 	__UHEAP_MARKEND;
    76 	return KErrNone;
    77 	}
    78 
    79 /**
    80  @return - A CTestStep derived instance
    81  */
    82 CTestStep* CWServTestSrv::CreateTestStep(const TDesC& aStepName )
    83 	{
    84 	CTestStep* testStep = NULL;
    85 	if (aStepName == KServStressTest)
    86 		{
    87 		testStep = new CWServTestStep();
    88 		}
    89 	else
    90 		{
    91 		RDebug::Printf ("Unknown test step %S", &aStepName );
    92 		}
    93 
    94 	return testStep;
    95 	}