os/ossrv/stdlibs/libcrypt/test/src/tcryptserver.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdlibs/libcrypt/test/src/tcryptserver.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,112 @@
     1.4 +/*
     1.5 +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +#include <c32comm.h>
    1.22 +
    1.23 +#if defined (__WINS__)
    1.24 +#define PDD_NAME		_L("ECDRV")
    1.25 +#else
    1.26 +#define PDD_NAME		_L("EUART1")
    1.27 +#define PDD2_NAME		_L("EUART2")
    1.28 +#define PDD3_NAME		_L("EUART3")
    1.29 +#define PDD4_NAME		_L("EUART4")
    1.30 +#endif
    1.31 +
    1.32 +#define LDD_NAME		_L("ECOMM")
    1.33 +
    1.34 +/**
    1.35 + * @file
    1.36 + *
    1.37 + * Pipe test server implementation
    1.38 + */
    1.39 +#include "tcryptserver.h"
    1.40 +#include "tcrypt.h"
    1.41 +
    1.42 +_LIT(KServerName, "tcrypt");
    1.43 +
    1.44 +CTestCryptServer* CTestCryptServer::NewL()
    1.45 +	{
    1.46 +	CTestCryptServer *server = new(ELeave) CTestCryptServer();
    1.47 +	CleanupStack::PushL(server);
    1.48 +	server->ConstructL(KServerName);
    1.49 +	CleanupStack::Pop(server);
    1.50 +	return server;
    1.51 +	}
    1.52 +
    1.53 +static void InitCommsL()
    1.54 +    {
    1.55 +    TInt ret = User::LoadPhysicalDevice(PDD_NAME);
    1.56 +    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    1.57 +
    1.58 +#ifndef __WINS__
    1.59 +    ret = User::LoadPhysicalDevice(PDD2_NAME);
    1.60 +    ret = User::LoadPhysicalDevice(PDD3_NAME);
    1.61 +    ret = User::LoadPhysicalDevice(PDD4_NAME);
    1.62 +#endif
    1.63 +
    1.64 +    ret = User::LoadLogicalDevice(LDD_NAME);
    1.65 +    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    1.66 +    ret = StartC32();
    1.67 +    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    1.68 +    }
    1.69 +LOCAL_C void MainL()
    1.70 +	{
    1.71 +	// Leave the hooks in for platform security
    1.72 +#if (defined __DATA_CAGING__)
    1.73 +	RProcess().DataCaging(RProcess::EDataCagingOn);
    1.74 +	RProcess().SecureApi(RProcess::ESecureApiOn);
    1.75 +#endif
    1.76 +	//InitCommsL();
    1.77 +	CActiveScheduler* sched=NULL;
    1.78 +	sched=new(ELeave) CActiveScheduler;
    1.79 +	CActiveScheduler::Install(sched);
    1.80 +	CTestCryptServer* server = NULL;
    1.81 +	// Create the CTestServer derived server
    1.82 +	TRAPD(err, server = CTestCryptServer::NewL());
    1.83 +	if(!err)
    1.84 +		{
    1.85 +		// Sync with the client and enter the active scheduler
    1.86 +		RProcess::Rendezvous(KErrNone);
    1.87 +		sched->Start();
    1.88 +		}
    1.89 +	delete server;
    1.90 +	delete sched;
    1.91 +	}
    1.92 +
    1.93 +/**
    1.94 + * Server entry point
    1.95 + * @return Standard Epoc error code on exit
    1.96 + */
    1.97 +TInt main()
    1.98 +	{
    1.99 +	TRAP_IGNORE(MainL());
   1.100 +	return KErrNone;
   1.101 +	}
   1.102 +
   1.103 +CTestStep* CTestCryptServer::CreateTestStep(const TDesC& aStepName)
   1.104 +	{
   1.105 +	CTestStep* testStep = NULL;
   1.106 +
   1.107 +	// This server creates just one step but create as many as you want
   1.108 +	// They are created "just in time" when the worker thread is created
   1.109 +	// install steps
   1.110 +	if (aStepName == KEncrypt)
   1.111 +		testStep = new CTestCrypt(aStepName);
   1.112 +	else if (aStepName == KCrypt)
   1.113 +		testStep = new CTestCrypt(aStepName);
   1.114 +	return testStep;
   1.115 +	}