diff -r 000000000000 -r ba25891c3a9e secureswitools/swisistools/test/tinterpretsisinteg/tintsistef/tinterpretsisserver.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/secureswitools/swisistools/test/tinterpretsisinteg/tintsistef/tinterpretsisserver.cpp Thu Dec 17 08:51:10 2009 +0200 @@ -0,0 +1,174 @@ +/* +* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "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: +* +*/ + + +/** + @file tinterpretsisserver.cpp +*/ + +#include "tinterpretsisserver.h" +#include "tinterpretsisstep.h" + +_LIT(KServerName, "tinterpretsis"); +CInterpretsisServer* CInterpretsisServer::NewL() +/** + * @return - Instance of the test server + * Called inside the Mail() function to create and start the + * CTestServer derived server + * + */ + { + CInterpretsisServer* server = new (ELeave) CInterpretsisServer(); + CleanupStack::PushL(server); + server->StartL(KServerName); + CleanupStack::Pop(server); + return server; + } + + +CTestStep* CInterpretsisServer::CreateTestStep(const TDesC& aStepName) +/** + * @return - A CTestStep derived instance + * Implementation of CTestServer pure virtual + */ + { + CTestStep* testStep = NULL; + if(aStepName == KInterpretsisStep) + testStep = new CInterpretsisStep(); + return testStep; + } + +#if (!defined EKA2) +LOCAL_C void MainL() +/** + * REQUIRES semaphore to sync with client as the Rendezvous() + * calls are not available + */ + { + CActiveScheduler* sched=NULL; + sched=new(ELeave) CActiveScheduler; + CleanupStack::PushL(sched); + CActiveScheduler::Install(sched); + // __EDIT_ME__ Your server name here + CInterpretsisServer* server = NULL; + // Create the CTestServer derived server . __EDIT_ME__ Your server + TRAPD(err,server = CInterpretsisServer::NewL()); + if(!err) + { + CleanupStack::PushL(server); + RSemaphore sem; + // The client API will already have created the semaphore + User::LeaveIfError(sem.OpenGlobal(KServerName)); + CleanupStack::Pop(server); + // Sync with the client then enter the active scheduler + sem.Signal(); + sem.Close(); + sched->Start(); + } + CleanupStack::Pop(sched); + delete server; + delete sched; + } +#else +// EKA2 much simpler +// Just an E32Main and a MainL() +LOCAL_C void MainL() +/** + * Much simpler, uses the new Rendezvous() call to sync with the client + */ + { + // Leave the hooks in for platform security +#if (defined __DATA_CAGING__) + RProcess().DataCaging(RProcess::EDataCagingOn); + RProcess().SecureApi(RProcess::ESecureApiOn); +#endif + CActiveScheduler* sched=NULL; + sched=new(ELeave) CActiveScheduler; + CActiveScheduler::Install(sched); + // __EDIT_ME__ Your server name + CInterpretsisServer* server = NULL; + // Create the CTestServer derived server + // __EDIT_ME__ Your server name + TRAPD(err,server = CInterpretsisServer::NewL()); + if(!err) + { + // Sync with the client and enter the active scheduler + RProcess::Rendezvous(KErrNone); + sched->Start(); + } + delete server; + delete sched; + } +#endif + +GLDEF_C TInt E32Main() +/** + * @return - Standard Epoc error code on exit + */ + { + CTrapCleanup* cleanup = CTrapCleanup::New(); + if(cleanup == NULL) + { + return KErrNoMemory; + } + TRAP_IGNORE(MainL()); + delete cleanup; + return KErrNone; + } + +// Create a thread in the calling process +// Emulator typhoon and earlier +#if (defined __WINS__ && !defined EKA2) +TInt ThreadFunc (TAny* /*aParam*/) +/** + * @return - Server exit code + * @param - unused + * Server Thread function. Guts of the code in the MainL() function + */ + { + return E32Main(); + } + +EXPORT_C TInt WinsMain() +/** + * @return - Standard Epoc error codes + * 1st and only ordinal, called by the client API to initialise the server + */ + { + _LIT(KThread,"Thread"); + RThread thread; + // __EDIT_ME__ - Make sure the TBuf is large enough + TBuf threadName(KServerName); + // Create a hopefully unique thread name and use the ThreadFunc + threadName.Append(KThread); + const TInt KMaxHeapSize = 0x1000000; ///< Allow a 1Mb max heap + TInt err = thread.Create(threadName, ThreadFunc, KDefaultStackSize, + KMinHeapSize, KMaxHeapSize, + NULL, EOwnerProcess); + if(err) + return err; + thread.Resume(); + thread.Close(); + return KErrNone; + } + +GLDEF_C TInt E32Dll(enum TDllReason) + { + return 0; + } + +#endif