os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/te_sysstartersuiteserver.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/te_sysstartersuiteserver.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,112 @@
     1.4 +// Copyright (c) 2005-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 +// Example file/test code to demonstrate how to develop a TestExecute Server
    1.18 +// Developers should take this project as a template and substitute their own
    1.19 +// for (WINS && !EKA2) versions will be xxxServer.Dll and require a thread to be started
    1.20 +// in the process of the client. The client initialises the server by calling the
    1.21 +// one and only ordinal.
    1.22 +// 
    1.23 +//
    1.24 +
    1.25 +/**
    1.26 + @file Te_sysstarterSuiteServer.cpp
    1.27 + @internalTechnology
    1.28 +*/
    1.29 +
    1.30 +#include "te_sysstartersuiteserver.h"
    1.31 +#include "uloggersysstarttest.h"
    1.32 +
    1.33 +_LIT(KServerName,"uloggersysstarttest");
    1.34 +CTe_sysstartSuite* CTe_sysstartSuite::NewL()
    1.35 +/**
    1.36 + * @return - Instance of the test server
    1.37 + * Same code for Secure and non-secure variants
    1.38 + * Called inside the MainL() function to create and start the
    1.39 + * CTestServer derived server.
    1.40 + */
    1.41 +	{
    1.42 +	CTe_sysstartSuite * server = new (ELeave) CTe_sysstartSuite();
    1.43 +	CleanupStack::PushL(server);
    1.44 +
    1.45 +	server->ConstructL(KServerName);
    1.46 +	CleanupStack::Pop(server);
    1.47 +	return server;
    1.48 +	}
    1.49 +
    1.50 +
    1.51 +// Secure variants much simpler
    1.52 +// For EKA2, just an E32Main and a MainL()
    1.53 +LOCAL_C void MainL()
    1.54 +/**
    1.55 + * Secure variant
    1.56 + * Much simpler, uses the new Rendezvous() call to sync with the client
    1.57 + */
    1.58 +	{
    1.59 +	// Leave the hooks in for platform security
    1.60 +#if (defined __DATA_CAGING__)
    1.61 +	RProcess().DataCaging(RProcess::EDataCagingOn);
    1.62 +	RProcess().DataCaging(RProcess::ESecureApiOn);
    1.63 +#endif
    1.64 +	CActiveScheduler* sched=NULL;
    1.65 +	sched=new(ELeave) CActiveScheduler;
    1.66 +	CActiveScheduler::Install(sched);
    1.67 +	CTe_sysstartSuite* server = NULL;
    1.68 +	// Create the CTestServer derived server
    1.69 +	TRAPD(err,server = CTe_sysstartSuite::NewL());
    1.70 +	if(!err)
    1.71 +		{
    1.72 +		// Sync with the client and enter the active scheduler
    1.73 +		RProcess::Rendezvous(KErrNone);
    1.74 +		sched->Start();
    1.75 +		}
    1.76 +	delete server;
    1.77 +	delete sched;
    1.78 +	}
    1.79 +
    1.80 +
    1.81 +
    1.82 +GLDEF_C TInt E32Main()
    1.83 +/**
    1.84 + * @return - Standard Epoc error code on process exit
    1.85 + * Secure variant only
    1.86 + * Process entry point. Called by client using RProcess API
    1.87 + */
    1.88 +	{
    1.89 +	__UHEAP_MARK;
    1.90 +	CTrapCleanup* cleanup = CTrapCleanup::New();
    1.91 +	if(cleanup == NULL)
    1.92 +		{
    1.93 +		return KErrNoMemory;
    1.94 +		}
    1.95 +	TRAPD(err,MainL());
    1.96 +	delete cleanup;
    1.97 +	__UHEAP_MARKEND;
    1.98 +	return err;
    1.99 +    }
   1.100 +
   1.101 +
   1.102 +CTestStep* CTe_sysstartSuite::CreateTestStep(const TDesC& aStepName)
   1.103 +/**
   1.104 + * @return - A CTestStep derived instance
   1.105 + * Secure and non-secure variants
   1.106 + * Implementation of CTestServer pure virtual
   1.107 + */
   1.108 +	{
   1.109 +	CTestStep* testStep = NULL;
   1.110 +    if(aStepName == KSysStart0Step)
   1.111 +         testStep = new CSysStart0Step();
   1.112 +
   1.113 +
   1.114 +	return testStep;
   1.115 +	}