os/persistentdata/loggingservices/rfilelogger/Logger/Src/Main.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/rfilelogger/Logger/Src/Main.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,76 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Server entry points
    1.18 +// EKA1 & EKA2
    1.19 +// EKA1 & WINS is a DLL. All others are exe's
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +/**
    1.24 + @file Main.cpp
    1.25 +*/
    1.26 +#include <test/rfilelogger.h>
    1.27 +#include "server.h"
    1.28 +
    1.29 +// Emulator EKA1 is the only DLL case
    1.30 +
    1.31 +// EKA2 all variats & EKA1 target only
    1.32 +// E32Main calls MainL()
    1.33 +LOCAL_C void MainL()
    1.34 +/**
    1.35 + * Secure variant
    1.36 + * Much simpler, uses the new Rendezvous() call to sync with the client
    1.37 + */
    1.38 +	{
    1.39 +	// Leave Platform security hooks in place
    1.40 +#if (defined __DATA_CAGING__)
    1.41 +	RProcess().DataCaging(RProcess::EDataCagingOn);
    1.42 +	RProcess().SecureApi(RProcess::ESecureApiOn);
    1.43 +#endif
    1.44 +	CActiveScheduler* sched=NULL;
    1.45 +	sched=new(ELeave) CActiveScheduler;
    1.46 +	CActiveScheduler::Install(sched);
    1.47 +	CLogServer* server = NULL;
    1.48 +	// Create the sever
    1.49 +	TRAPD(err,server = CLogServer::NewL());
    1.50 +	if(!err)
    1.51 +		{
    1.52 +		// Client Synchronisation different for EKA1 and EKA2
    1.53 +		// EKA2 really simple. Client blocks on reciprocal Rendezvous call
    1.54 +		RProcess::Rendezvous(KErrNone);
    1.55 +		// Go into the Active scheduler
    1.56 +		sched->Start();
    1.57 +		}
    1.58 +	// Free the server class
    1.59 +	delete server;
    1.60 +	delete sched;
    1.61 +	}
    1.62 +
    1.63 +GLDEF_C TInt E32Main()
    1.64 +/**
    1.65 + * @return - Standard Epoc error code on process exit
    1.66 + * Process entry point. Called by client using RProcess API
    1.67 + */
    1.68 +	{
    1.69 +	__UHEAP_MARK;
    1.70 +	CTrapCleanup* cleanup = CTrapCleanup::New();
    1.71 +	if(cleanup == NULL)
    1.72 +		{
    1.73 +		return KErrNoMemory;
    1.74 +		}
    1.75 +	TRAP_IGNORE(MainL());
    1.76 +	delete cleanup;
    1.77 +	__UHEAP_MARKEND;
    1.78 +	return KErrNone;
    1.79 +    }