1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securityutils/test/trecog/trecogserver.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,119 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 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 the License "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 +
1.22 +/**
1.23 + @file
1.24 + @internalComponent - Internal Symbian test code
1.25 +*/
1.26 +
1.27 +
1.28 +#include "trecogserver.h"
1.29 +#include "trecogstep.h"
1.30 +
1.31 +CRecogServer* CRecogServer::NewL()
1.32 +/**
1.33 + @return - Instance of the test server
1.34 + Same code for Secure and non-secure variants
1.35 + Called inside the MainL() function to create and start the
1.36 + CTestServer derived server.
1.37 + */
1.38 + {
1.39 + CRecogServer * server = new (ELeave) CRecogServer();
1.40 + CleanupStack::PushL(server);
1.41 + // CServer base class call
1.42 + TParsePtrC serverName(RProcess().FileName());
1.43 + server->StartL(serverName.Name());
1.44 + CleanupStack::Pop(server);
1.45 + return server;
1.46 + }
1.47 +
1.48 +// __EDIT_ME__ - Use your own server class name
1.49 +CTestStep* CRecogServer::CreateTestStep(const TDesC& aStepName)
1.50 +/**
1.51 + @return - A CTestStep derived instance
1.52 + Secure and non-secure variants
1.53 + Implementation of CTestServer pure virtual
1.54 + */
1.55 + {
1.56 + CTestStep* testStep = NULL;
1.57 + // User::After(TTimeIntervalMicroSeconds32(5000000));
1.58 + // This server creates just one step but create as many as you want
1.59 + // They are created "just in time" when the worker thread is created
1.60 +
1.61 +
1.62 + if(aStepName == KRecogStep)
1.63 + {
1.64 + testStep = new CRecogStep();
1.65 + }
1.66 +
1.67 + return testStep;
1.68 + }
1.69 +
1.70 +// EKA2 much simpler
1.71 +// Just an E32Main and a MainL()
1.72 +LOCAL_C void MainL()
1.73 +/**
1.74 + Much simpler, uses the new Rendezvous() call to sync with the client
1.75 + */
1.76 + {
1.77 + // Leave the hooks in for platform security
1.78 +#if (defined __DATA_CAGING__)
1.79 + RProcess().DataCaging(RProcess::EDataCagingOn);
1.80 + RProcess().SecureApi(RProcess::ESecureApiOn);
1.81 +#endif
1.82 + CActiveScheduler* sched=NULL;
1.83 + sched=new(ELeave) CActiveScheduler;
1.84 + CActiveScheduler::Install(sched);
1.85 + CRecogServer* server = NULL;
1.86 + // Create the CTestServer derived server
1.87 + TRAPD(err,server = CRecogServer::NewL());;
1.88 +
1.89 + if(!err)
1.90 + {
1.91 + // Sync with the client and enter the active scheduler
1.92 + RProcess::Rendezvous(KErrNone);
1.93 + sched->Start();
1.94 + }
1.95 + delete server;
1.96 + delete sched;
1.97 + }
1.98 +
1.99 +// Only a DLL on emulator for typhoon and earlier
1.100 +GLDEF_C TInt E32Main()
1.101 +/**
1.102 + @return - Standard Epoc error code on exit
1.103 + */
1.104 + {
1.105 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.106 + if(cleanup == NULL)
1.107 + {
1.108 + return KErrNoMemory;
1.109 + }
1.110 + TRAPD(err,MainL());
1.111 + // This if statement is here just to shut up RVCT, which would otherwise warn
1.112 + // that err was set but never used
1.113 + if (err)
1.114 + {
1.115 + err = KErrNone;
1.116 + }
1.117 + delete cleanup;
1.118 + return KErrNone;
1.119 + }
1.120 +
1.121 +// Create a thread in the calling process
1.122 +// Emulator typhoon and earlier