os/ossrv/genericservices/mimerecognitionfw/tef/TEmimeTestServer.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/mimerecognitionfw/tef/TEmimeTestServer.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,119 @@
     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 +// Secure EKA2 versions will be a simpler xxxServer.exe running in its own process.
    1.18 +// Non-secure versions will be xxxServer.Dll and require a thread to be started
    1.19 +// in the process of the client. The client initialises the server by calling the
    1.20 +// one and only ordinal.
    1.21 +// 
    1.22 +//
    1.23 +
    1.24 +/**
    1.25 + @file 
    1.26 + @internalComponent - Internal Symbian test code
    1.27 +*/
    1.28 +#include "TEmimeTestServer.h"
    1.29 +#include "T_MimeStep.h"
    1.30 +#include "T_MstrStep.h"
    1.31 +#include "T_Maps.h"
    1.32 +#include <ecom/ecom.h>
    1.33 +
    1.34 +
    1.35 +_LIT(KServerName,"TEmimeTestServer");
    1.36 +CTEmimeTestServer* CTEmimeTestServer::NewL()
    1.37 +/**
    1.38 +   @return - Instance of the test server
    1.39 +   Same code for Secure and non-secure variants
    1.40 +   Called inside the MainL() function to create and start the
    1.41 +   CTestServer derived server.
    1.42 + */
    1.43 +	{
    1.44 +	CTEmimeTestServer * server = new (ELeave) CTEmimeTestServer();
    1.45 +	CleanupStack::PushL(server);
    1.46 +	// CServer base class call
    1.47 +	server->StartL(KServerName);
    1.48 +	CleanupStack::Pop(server);
    1.49 +	return server;
    1.50 +	}
    1.51 +
    1.52 +
    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 +#if (defined __DATA_CAGING__)
    1.60 +	RProcess().DataCaging(RProcess::EDataCagingOn);
    1.61 +	RProcess().SecureApi(RProcess::ESecureApiOn);
    1.62 +#endif
    1.63 +	CActiveScheduler* sched=NULL;
    1.64 +	sched=new(ELeave) CActiveScheduler;
    1.65 +	CActiveScheduler::Install(sched);
    1.66 +	CTEmimeTestServer* server = NULL;
    1.67 +	// Create the CTestServer derived server
    1.68 +	TRAPD(err,server = CTEmimeTestServer::NewL());
    1.69 +	if(!err)
    1.70 +		{
    1.71 +		// Sync with the client and enter the active scheduler
    1.72 +		RProcess::Rendezvous(KErrNone);
    1.73 +		sched->Start();
    1.74 +		}
    1.75 +	delete server;
    1.76 +	delete sched;
    1.77 +	}
    1.78 +
    1.79 +GLDEF_C TInt E32Main()
    1.80 +
    1.81 +/** 
    1.82 +	@return - Standard Epoc error code on process exit
    1.83 +    Secure variant only
    1.84 +    Process entry point. Called by client using RProcess API
    1.85 +*/
    1.86 +	{
    1.87 +	__UHEAP_MARK;
    1.88 +	CTrapCleanup* cleanup = CTrapCleanup::New();
    1.89 +	if(cleanup == NULL)
    1.90 +		{
    1.91 +		return KErrNoMemory;
    1.92 +		}
    1.93 +	TRAP_IGNORE(MainL());
    1.94 +	delete cleanup;
    1.95 +	REComSession::FinalClose();	
    1.96 +	__UHEAP_MARKEND;
    1.97 +	return KErrNone;
    1.98 +    }
    1.99 +
   1.100 +
   1.101 +
   1.102 +// __EDIT_ME__ - Use your own server class name
   1.103 +CTestStep* CTEmimeTestServer::CreateTestStep(const TDesC& aStepName)
   1.104 +
   1.105 +/**
   1.106 +   @return - A CTestStep derived instance
   1.107 +   Secure and non-secure variants
   1.108 +   Implementation of CTestServer pure virtual
   1.109 + */
   1.110 +	{
   1.111 +	CTestStep* testStep = NULL;
   1.112 +	// __EDIT_ME__ - Create your own test steps here
   1.113 +	// This server creates just one step but create as many as you want
   1.114 +	// They are created "just in time" when the worker thread is created
   1.115 +	if(aStepName == KT_MimeStep)
   1.116 +		testStep = new CT_MimeStep();
   1.117 +	else if(aStepName == KT_MstrStep)
   1.118 +		testStep = new CT_MstrStep();
   1.119 +	else if(aStepName == KT_Maps)
   1.120 +		testStep = new CT_Maps();
   1.121 +	return testStep;
   1.122 +	}