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