Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 @internalComponent - Internal Symbian test code
25 #include "trecogserver.h"
26 #include "trecogstep.h"
28 CRecogServer* CRecogServer::NewL()
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.
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);
45 // __EDIT_ME__ - Use your own server class name
46 CTestStep* CRecogServer::CreateTestStep(const TDesC& aStepName)
48 @return - A CTestStep derived instance
49 Secure and non-secure variants
50 Implementation of CTestServer pure virtual
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
59 if(aStepName == KRecogStep)
61 testStep = new CRecogStep();
68 // Just an E32Main and a MainL()
71 Much simpler, uses the new Rendezvous() call to sync with the client
74 // Leave the hooks in for platform security
75 #if (defined __DATA_CAGING__)
76 RProcess().DataCaging(RProcess::EDataCagingOn);
77 RProcess().SecureApi(RProcess::ESecureApiOn);
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());;
88 // Sync with the client and enter the active scheduler
89 RProcess::Rendezvous(KErrNone);
96 // Only a DLL on emulator for typhoon and earlier
97 GLDEF_C TInt E32Main()
99 @return - Standard Epoc error code on exit
102 CTrapCleanup* cleanup = CTrapCleanup::New();
108 // This if statement is here just to shut up RVCT, which would otherwise warn
109 // that err was set but never used
118 // Create a thread in the calling process
119 // Emulator typhoon and earlier