os/security/cryptomgmtlibs/securityutils/test/trecog/trecogserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file
    21  @internalComponent - Internal Symbian test code 
    22 */
    23 
    24 
    25 #include "trecogserver.h"
    26 #include "trecogstep.h"
    27 
    28 CRecogServer* CRecogServer::NewL()
    29 /**
    30    @return - Instance of the test server
    31    Same code for Secure and non-secure variants
    32    Called inside the MainL() function to create and start the
    33    CTestServer derived server.
    34  */
    35 	{
    36 	CRecogServer * server = new (ELeave) CRecogServer();
    37 	CleanupStack::PushL(server);
    38 	// CServer base class call
    39 	TParsePtrC serverName(RProcess().FileName());	
    40 	server->StartL(serverName.Name());
    41 	CleanupStack::Pop(server);
    42 	return server;
    43 	}
    44 
    45 // __EDIT_ME__ - Use your own server class name
    46 CTestStep* CRecogServer::CreateTestStep(const TDesC& aStepName)
    47 /**
    48    @return - A CTestStep derived instance
    49    Secure and non-secure variants
    50    Implementation of CTestServer pure virtual
    51  */
    52 	{
    53 	CTestStep* testStep = NULL;
    54 	// User::After(TTimeIntervalMicroSeconds32(5000000));
    55 	// This server creates just one step but create as many as you want
    56 	// They are created "just in time" when the worker thread is created 
    57 	
    58 
    59 	if(aStepName == KRecogStep)
    60 		{
    61 		testStep = new CRecogStep();
    62 		}
    63 	
    64 	return testStep;
    65 	}
    66 
    67 // EKA2 much simpler
    68 // Just an E32Main and a MainL()
    69 LOCAL_C void MainL()
    70 /**
    71    Much simpler, uses the new Rendezvous() call to sync with the client
    72  */
    73 	{
    74 	// Leave the hooks in for platform security
    75 #if (defined __DATA_CAGING__)
    76 	RProcess().DataCaging(RProcess::EDataCagingOn);
    77 	RProcess().SecureApi(RProcess::ESecureApiOn);
    78 #endif
    79 	CActiveScheduler* sched=NULL;
    80 	sched=new(ELeave) CActiveScheduler;
    81 	CActiveScheduler::Install(sched);
    82 	CRecogServer* server = NULL;
    83 	// Create the CTestServer derived server
    84 	TRAPD(err,server = CRecogServer::NewL());;
    85 	
    86 	if(!err)
    87 		{
    88 		// Sync with the client and enter the active scheduler
    89 		RProcess::Rendezvous(KErrNone);
    90 		sched->Start();
    91 		}
    92 	delete server;
    93 	delete sched;
    94 	}
    95 
    96 // Only a DLL on emulator for typhoon and earlier
    97 GLDEF_C TInt E32Main()
    98 /**
    99    @return - Standard Epoc error code on exit
   100  */
   101 	{
   102 	CTrapCleanup* cleanup = CTrapCleanup::New();
   103 	if(cleanup == NULL)
   104 		{
   105 		return KErrNoMemory;
   106 		}
   107 	TRAPD(err,MainL());
   108 	// This if statement is here just to shut up RVCT, which would otherwise warn
   109 	// that err was set but never used
   110 	if (err)
   111 	    {
   112 	    err = KErrNone;
   113 	    }
   114 	delete cleanup;
   115 	return KErrNone;
   116     }
   117 
   118 // Create a thread in the calling process
   119 // Emulator typhoon and earlier