diff -r 8d540f55e491 -r 425d8f4f7fa5 linklayerprotocols/tundriver/te_tundriver/src/te_tundrivertestserver.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/linklayerprotocols/tundriver/te_tundriver/src/te_tundrivertestserver.cpp Wed Sep 15 00:18:51 2010 +0300 @@ -0,0 +1,119 @@ +// Copyright (c) 2010 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: +// Contains the implementation of TEF3.0 respective test server +// + + + +/** + @file te_tundrivertestserver.h + @internalTechnology +*/ + +#include "te_tundrivertestserver.h" + +/** +Function to instantiate TestServer. + +@return Returns the TestServer instance pointer. + +@internalTechnology +*/ +CTunDriverTestServer* CTunDriverTestServer::NewL() + { + CTunDriverTestServer* server = new (ELeave) CTunDriverTestServer(); + CleanupStack::PushL(server); + server->ConstructL(); + CleanupStack::Pop(server); + return server; + } + +/** +Function to instantiate TestBlock. + +This function is invoked by the TestEngine while parsing START_TEST_BLOCK command in the +script file. + +@return Returns the TestBlock instance pointer. + +@internalTechnology +*/ +CTestBlockController* CTunDriverTestServer::CreateTestBlock() + { + CTestBlockController* testBlockController=NULL; + TRAPD(err, testBlockController = CreateTestBlockL()); + if(err == KErrNone) + { + return testBlockController; + } + else + { + return NULL; + } + } + +/** +Function to instantiate TestBlock. + +@internalTechnology +*/ +CTestBlockController* CTunDriverTestServer::CreateTestBlockL() + { + return new (ELeave) CTunDriverTestBlock(); + } + +/** +Function to kick start the TestServer. + +@internalTechnology +*/ +LOCAL_C void MainL() + { +#if (defined __DATA_CAGING__) + RProcess().DataCaging(RProcess::EDataCagingOn); + RProcess().SecureApi(RProcess::ESecureApiOn); +#endif + CActiveScheduler* sched=NULL; + sched=new(ELeave) CActiveScheduler; + CActiveScheduler::Install(sched); + CTunDriverTestServer* server = NULL; + TRAPD(err, server = CTunDriverTestServer::NewL()); + if(!err) + { + RProcess::Rendezvous(KErrNone); + sched->Start(); + } + delete server; + delete sched; + } +/** +TestServer entry point. + +@return Returns KErrNone upon successfull completion, KErrNoMemory in low memory conditions. + +@internalTechnology +*/ +GLDEF_C TInt E32Main() + { + __UHEAP_MARK; + CTrapCleanup* cleanup = CTrapCleanup::New(); + if(cleanup == NULL) + { + return KErrNoMemory; + } + TRAP_IGNORE(MainL()); + delete cleanup; + __UHEAP_MARKEND; + return KErrNone; + }