traceservices/tracefw/ulogger/unit_test/te-sysconfig/te_test_syscfgserver.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 15 Sep 2010 00:35:00 +0300
branchRCL_3
changeset 25 047f208ea78f
parent 0 08ec8eefde2f
permissions -rw-r--r--
Revision: 201035 Kit: 201035

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// User includes
// 
//

#include "te_test_syscfgserver.h"
#include "te_test_syscfgstep.h"

_LIT(KServerName,"Te_SysCfg");


/**
 * Creates an instance of CTestSysCfgServer object
 * @return a pointer to the new created CTestSysCfgServer Object
 */
 
CTestSysCfgServer* CTestSysCfgServer::NewL()
	{
	CTestSysCfgServer* tracer = new (ELeave) CTestSysCfgServer();
	CleanupStack::PushL(tracer);
	tracer->ConstructL(KServerName);
	CleanupStack::Pop(tracer); 
	return tracer;
	}

/**
 * Creates an instance of CTestStep object
 * @return a CTestStep derived instance
 * @param Test step name
 */

CTestStep* CTestSysCfgServer::CreateTestStep(const TDesC& aStepName)
{
	CTestStep* testStep = NULL;
	if(aStepName == KSysCfgTeststep1)
		testStep = new CSysCfgTest1();
	else if(aStepName == KSysCfgTeststep2)
		testStep = new CSysCfgTest2();
	else if(aStepName == KSysCfgTeststep3)
		testStep = new CSysCfgTest3();
	else if(aStepName == KSysCfgTeststep4)
		testStep = new CSysCfgTest4();
	return testStep;	
}

/**
 * Creates installs and starts the active scheduler 
 */
 
LOCAL_C void MainL()
	{
	CActiveScheduler* sched=NULL;
	sched=new(ELeave) CActiveScheduler;
	CActiveScheduler::Install(sched);
	
	CTestSysCfgServer* server = NULL;
	TRAPD(err,server = CTestSysCfgServer::NewL());
	
	if(!err)
		{
 	  	RProcess::Rendezvous(KErrNone);
	  	sched->Start(); 
		}
		
	delete server;
	delete sched;
	}

/**
 *	Entrypoint method, creates a cleanup trap and calls
 *  the application start method.
 *	@return Standard error code on exit.
 */ 
GLDEF_C TInt E32Main()
	{
    __UHEAP_MARK;
    CTrapCleanup* cleanup = CTrapCleanup::New();
   
	if(cleanup == NULL)
		{
		return KErrNoMemory;
		}
	TRAP_IGNORE(MainL());
	delete cleanup;
	__UHEAP_MARKEND;

	return KErrNone;
	}