os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/te_uloggerclientsuiteserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Example file/test code to demonstrate how to develop a TestExecute Server
    15 // Developers should take this project as a template and substitute their own
    16 // for (WINS && !EKA2) versions will be xxxServer.Dll and require a thread to be started
    17 // in the process of the client. The client initialises the server by calling the
    18 // one and only ordinal.
    19 // 
    20 //
    21 
    22 /**
    23  @file Te_uloggerclientSuiteServer.cpp
    24  @internalTechnology
    25 */
    26 
    27 #include "te_uloggerclientsuiteserver.h"
    28 #include "testconnectstep.h"
    29 #include "teststartstep.h"
    30 #include "teststopstep.h"
    31 #include "testsetprimaryfltstep.h"
    32 #include "testgetprimaryfilterslstep.h"
    33 #include "testgetsecondaryfilterslstep.h"
    34 #include "testgettracebuffersizestep.h"
    35 #include "testremoveprimaryfltstep.h"
    36 #include "testresizetracebuffersizestep.h"
    37 #include "testsetdatanotificationsizestep.h"
    38 #include "testsetsecondaryfilterallstep.h"
    39 #include "testsetsecondaryfltstep.h"
    40 #include "testversionstep.h"
    41 #include "testdeactivateoutputpluginstep.h"
    42 #include "testruloggerapi_ext.h"
    43 
    44 _LIT(KServerName,"UloggerClientAPIServer");
    45 CTestUloggerClientApi* CTestUloggerClientApi::NewL()
    46 /**
    47  * @return - Instance of the test server
    48  * Same code for Secure and non-secure variants
    49  * Called inside the MainL() function to create and start the
    50  * CTestServer derived server.
    51  */
    52 	{
    53 	CTestUloggerClientApi * server = new (ELeave) CTestUloggerClientApi();
    54 	CleanupStack::PushL(server);
    55 
    56 	server->ConstructL(KServerName);
    57 	CleanupStack::Pop(server);
    58 	return server;
    59 	}
    60 
    61 
    62 // Secure variants much simpler
    63 // For EKA2, just an E32Main and a MainL()
    64 LOCAL_C void MainL()
    65 /**
    66  * Secure variant
    67  * Much simpler, uses the new Rendezvous() call to sync with the client
    68  */
    69 	{
    70 	// Leave the hooks in for platform security
    71 #if (defined __DATA_CAGING__)
    72 	RProcess().DataCaging(RProcess::EDataCagingOn);
    73 	RProcess().DataCaging(RProcess::ESecureApiOn);
    74 #endif
    75 	CActiveScheduler* sched=NULL;
    76 	sched=new(ELeave) CActiveScheduler;
    77 	CActiveScheduler::Install(sched);
    78 	CTestUloggerClientApi* server = NULL;
    79 	// Create the CTestServer derived server
    80 	TRAPD(err,server = CTestUloggerClientApi::NewL());
    81 	if(!err)
    82 		{
    83 		// Sync with the client and enter the active scheduler
    84 		RProcess::Rendezvous(KErrNone);
    85 		sched->Start();
    86 		}
    87 	delete server;
    88 	delete sched;
    89 	}
    90 
    91 
    92 
    93 GLDEF_C TInt E32Main()
    94 /**
    95  * @return - Standard Epoc error code on process exit
    96  * Secure variant only
    97  * Process entry point. Called by client using RProcess API
    98  */
    99 	{
   100 	__UHEAP_MARK;
   101 	CTrapCleanup* cleanup = CTrapCleanup::New();
   102 	if(cleanup == NULL)
   103 		{
   104 		return KErrNoMemory;
   105 		}
   106 	TRAPD(err,MainL());
   107 	delete cleanup;
   108 	__UHEAP_MARKEND;
   109 	return err;
   110     }
   111 
   112 
   113 CTestStep* CTestUloggerClientApi::CreateTestStep(const TDesC& aStepName)
   114 /**
   115  * @return - A CTestStep derived instance
   116  * Secure and non-secure variants
   117  * Implementation of CTestServer pure virtual
   118  */
   119 	{
   120 	CTestStep* testStep = NULL;
   121 	
   122               if(aStepName == KTestConnectStep)
   123                             testStep = new CTestConnectStep();
   124                             
   125               else if(aStepName == KTestStartStep)
   126                             testStep = new CTestStartStep();
   127                             
   128               else if(aStepName == KTestStopStep)
   129                             testStep = new CTestStopStep();
   130                             
   131               else if(aStepName == KTestSetPrimaryFltStep)
   132                             testStep = new CTestSetPrimaryFltStep();                            
   133                             
   134               else if(aStepName == KTestGetPrimaryFiltersLStep)
   135                             testStep = new CTestGetPrimaryFiltersLStep();
   136                             
   137               else if(aStepName == KTestGetSecondaryFiltersLStep)
   138                             testStep = new CTestGetSecondaryFiltersLStep();
   139                             
   140               else if(aStepName == KTestGetTraceBufferSizeStep)
   141                             testStep = new CTestGetTraceBufferSizeStep();
   142                             
   143               else if(aStepName == KTestRemovePrimaryFltStep)
   144                             testStep = new CTestRemovePrimaryFltStep();
   145                             
   146               else if(aStepName == KTestResizeTraceBufferSizeStep)
   147                             testStep = new CTestResizeTraceBufferSizeStep();
   148                             
   149               else if(aStepName == KTestSetDataNotificationSizeStep)
   150                             testStep = new CTestSetDataNotificationSizeStep();
   151                             
   152               else if(aStepName == KTestSetSecondaryFilterAllStep)
   153                             testStep = new CTestSetSecondaryFilterAllStep();
   154                             
   155               else if(aStepName == KTestSetSecondaryFltStep)
   156                             testStep = new CTestSetSecondaryFltStep();
   157                             
   158               else if(aStepName == KTestVersionStep)
   159                             testStep = new CTestVersionStep();
   160               
   161               else if(aStepName == KTestDeactivateOutputPluginStep)
   162                             testStep = new CTestDeactivateOutputPluginStep();
   163               
   164               else if(aStepName == KTestRULoggerAPIStep)
   165                   testStep = new CTestRULoggerAPIStep();
   166                             
   167 	return testStep;
   168 	}