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