testexecfw/stf/stfext/testmodules/teftestmod/teftestmodulefw/logger/src/main.cpp
author Johnson Ma <johnson.ma@nokia.com>
Fri, 09 Apr 2010 10:46:28 +0800
changeset 2 8bb370ba6d1d
permissions -rw-r--r--
contribute STF 1.0.0

/*
* Copyright (c) 2005-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:  
* Server entry points
* EKA1 & EKA2
* EKA1 & WINS is a DLL. All others are exe's
*
*/



/**
 @file Main.cpp
*/
#include <test/testexecutelog.h>
#include "server.h"

// Emulator EKA1 is the only DLL case

// EKA2 all variats & EKA1 target only
// E32Main calls MainL()
LOCAL_C void MainL()
/**
 * Secure variant
 * Much simpler, uses the new Rendezvous() call to sync with the client
 */
	{
	// Leave Platform security hooks in place
#if (defined __DATA_CAGING__)
	RProcess().DataCaging(RProcess::EDataCagingOn);
	RProcess().SecureApi(RProcess::ESecureApiOn);
#endif
	CActiveScheduler* sched=NULL;
	sched=new(ELeave) CActiveScheduler;
	CActiveScheduler::Install(sched);
	CLogServer* server = NULL;
	// Create the sever
	TRAPD(err,server = CLogServer::NewL());
	if(!err)
		{
		// Client Synchronisation different for EKA1 and EKA2
		// EKA2 really simple. Client blocks on reciprocal Rendezvous call
		RProcess::Rendezvous(KErrNone);
		// Go into the Active scheduler
		sched->Start();
		// Free the server class
		delete server;
		}
	delete sched;
	}

GLDEF_C TInt E32Main()
/**
 * @return - Standard Epoc error code on process exit
 * Process entry point. Called by client using RProcess API
 */
	{
	__UHEAP_MARK;
	CTrapCleanup* cleanup = CTrapCleanup::New();
	if(cleanup == NULL)
		{
		return KErrNoMemory;
		}
	TRAP_IGNORE(MainL());
	delete cleanup;
	__UHEAP_MARKEND;
	return KErrNone;
    }