genericopenlibs/openenvcore/libc/test/testifioctls/src/tifioctlsserver.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 16:27:53 +0300
branchRCL_3
changeset 75 254b651f304e
parent 64 c44f36bb61a3
permissions -rw-r--r--
Revision: 201039 Kit: 201041

/*
* Copyright (c) 2002-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:
*
*/



#include <c32comm.h>

#if defined (__WINS__)
#define PDD_NAME		_L("ECDRV")
#else
#define PDD_NAME		_L("EUART1")
#define PDD2_NAME		_L("EUART2")
#define PDD3_NAME		_L("EUART3")
#define PDD4_NAME		_L("EUART4")
#endif

#define LDD_NAME		_L("ECOMM")

/**
 * @file
 *
 * Pipe test server implementation
 */
#include "tifioctlsserver.h"
#include "tifioctls.h"


_LIT(KServerName, "tifioctls");

CIfioctlsTestServer* CIfioctlsTestServer::NewL()
	{
	CIfioctlsTestServer *server = new(ELeave) CIfioctlsTestServer();
	CleanupStack::PushL(server);
	server->ConstructL(KServerName);
	CleanupStack::Pop(server);
	return server;
	}

static void InitCommsL()
    {
    TInt ret = User::LoadPhysicalDevice(PDD_NAME);
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);

#ifndef __WINS__
    ret = User::LoadPhysicalDevice(PDD2_NAME);
    ret = User::LoadPhysicalDevice(PDD3_NAME);
    ret = User::LoadPhysicalDevice(PDD4_NAME);
#endif

    ret = User::LoadLogicalDevice(LDD_NAME);
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    ret = StartC32();
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    }

LOCAL_C void MainL()
	{
	// Leave the hooks in for platform security
#if (defined __DATA_CAGING__)
	RProcess().DataCaging(RProcess::EDataCagingOn);
	RProcess().SecureApi(RProcess::ESecureApiOn);
#endif
	InitCommsL();
	
	CActiveScheduler* sched=NULL;
	sched=new(ELeave) CActiveScheduler;
	CActiveScheduler::Install(sched);
	CIfioctlsTestServer* server = NULL;
	// Create the CTestServer derived server
	TRAPD(err, server = CIfioctlsTestServer::NewL());
	if(!err)
		{
		// Sync with the client and enter the active scheduler
		RProcess::Rendezvous(KErrNone);
		sched->Start();
		}
	delete server;
	delete sched;
	}

/**
 * Server entry point
 * @return Standard Epoc error code on exit
 */
TInt main()
	{
	__UHEAP_MARK;
	CTrapCleanup* cleanup = CTrapCleanup::New();
	if(cleanup == NULL) 
		{
		return KErrNoMemory;  
		}
	TRAP_IGNORE(MainL());
	delete cleanup;
	__UHEAP_MARKEND;
	
	return KErrNone;
	}

CTestStep* CIfioctlsTestServer::CreateTestStep(const TDesC& aStepName)
	{
	CTestStep* testStep = NULL;

	// This server creates just one step but create as many as you want
	// They are created "just in time" when the worker thread is created
	// install steps
	if(aStepName == KExampleL)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KListInterfaces)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KCreateManyActiveInterfaces)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KChooseInterface)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KChooseActiveInterface)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestIfNameIndex)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestIfIndexToName)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestIfNameToIndex)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestSiocGIfIndex)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KConnectToIpUsingConnection )
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KSendtoIpUsingConnection)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KConnectToUrlUsingConnection)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == Kioctltest)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == Kreadtest)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestAddDelRoute)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestAddDelRouteNegative1)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestAddDelRouteNegative2)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestMacAddress)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestMacAddressNegative1)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestioctlfile)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	if(aStepName == KTestioctl1)
		{
		testStep = new CTestIfioctls(aStepName);
		}
	return testStep;
	}