os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/te_uloggerclientsuiteserver.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
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.
23 @file Te_uloggerclientSuiteServer.cpp
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"
44 _LIT(KServerName,"UloggerClientAPIServer");
45 CTestUloggerClientApi* CTestUloggerClientApi::NewL()
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.
53 CTestUloggerClientApi * server = new (ELeave) CTestUloggerClientApi();
54 CleanupStack::PushL(server);
56 server->ConstructL(KServerName);
57 CleanupStack::Pop(server);
62 // Secure variants much simpler
63 // For EKA2, just an E32Main and a MainL()
67 * Much simpler, uses the new Rendezvous() call to sync with the client
70 // Leave the hooks in for platform security
71 #if (defined __DATA_CAGING__)
72 RProcess().DataCaging(RProcess::EDataCagingOn);
73 RProcess().DataCaging(RProcess::ESecureApiOn);
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());
83 // Sync with the client and enter the active scheduler
84 RProcess::Rendezvous(KErrNone);
93 GLDEF_C TInt E32Main()
95 * @return - Standard Epoc error code on process exit
97 * Process entry point. Called by client using RProcess API
101 CTrapCleanup* cleanup = CTrapCleanup::New();
113 CTestStep* CTestUloggerClientApi::CreateTestStep(const TDesC& aStepName)
115 * @return - A CTestStep derived instance
116 * Secure and non-secure variants
117 * Implementation of CTestServer pure virtual
120 CTestStep* testStep = NULL;
122 if(aStepName == KTestConnectStep)
123 testStep = new CTestConnectStep();
125 else if(aStepName == KTestStartStep)
126 testStep = new CTestStartStep();
128 else if(aStepName == KTestStopStep)
129 testStep = new CTestStopStep();
131 else if(aStepName == KTestSetPrimaryFltStep)
132 testStep = new CTestSetPrimaryFltStep();
134 else if(aStepName == KTestGetPrimaryFiltersLStep)
135 testStep = new CTestGetPrimaryFiltersLStep();
137 else if(aStepName == KTestGetSecondaryFiltersLStep)
138 testStep = new CTestGetSecondaryFiltersLStep();
140 else if(aStepName == KTestGetTraceBufferSizeStep)
141 testStep = new CTestGetTraceBufferSizeStep();
143 else if(aStepName == KTestRemovePrimaryFltStep)
144 testStep = new CTestRemovePrimaryFltStep();
146 else if(aStepName == KTestResizeTraceBufferSizeStep)
147 testStep = new CTestResizeTraceBufferSizeStep();
149 else if(aStepName == KTestSetDataNotificationSizeStep)
150 testStep = new CTestSetDataNotificationSizeStep();
152 else if(aStepName == KTestSetSecondaryFilterAllStep)
153 testStep = new CTestSetSecondaryFilterAllStep();
155 else if(aStepName == KTestSetSecondaryFltStep)
156 testStep = new CTestSetSecondaryFltStep();
158 else if(aStepName == KTestVersionStep)
159 testStep = new CTestVersionStep();
161 else if(aStepName == KTestDeactivateOutputPluginStep)
162 testStep = new CTestDeactivateOutputPluginStep();
164 else if(aStepName == KTestRULoggerAPIStep)
165 testStep = new CTestRULoggerAPIStep();