os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/te_sysstartersuiteserver.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_sysstarterSuiteServer.cpp
27 #include "te_sysstartersuiteserver.h"
28 #include "uloggersysstarttest.h"
30 _LIT(KServerName,"uloggersysstarttest");
31 CTe_sysstartSuite* CTe_sysstartSuite::NewL()
33 * @return - Instance of the test server
34 * Same code for Secure and non-secure variants
35 * Called inside the MainL() function to create and start the
36 * CTestServer derived server.
39 CTe_sysstartSuite * server = new (ELeave) CTe_sysstartSuite();
40 CleanupStack::PushL(server);
42 server->ConstructL(KServerName);
43 CleanupStack::Pop(server);
48 // Secure variants much simpler
49 // For EKA2, just an E32Main and a MainL()
53 * Much simpler, uses the new Rendezvous() call to sync with the client
56 // Leave the hooks in for platform security
57 #if (defined __DATA_CAGING__)
58 RProcess().DataCaging(RProcess::EDataCagingOn);
59 RProcess().DataCaging(RProcess::ESecureApiOn);
61 CActiveScheduler* sched=NULL;
62 sched=new(ELeave) CActiveScheduler;
63 CActiveScheduler::Install(sched);
64 CTe_sysstartSuite* server = NULL;
65 // Create the CTestServer derived server
66 TRAPD(err,server = CTe_sysstartSuite::NewL());
69 // Sync with the client and enter the active scheduler
70 RProcess::Rendezvous(KErrNone);
79 GLDEF_C TInt E32Main()
81 * @return - Standard Epoc error code on process exit
83 * Process entry point. Called by client using RProcess API
87 CTrapCleanup* cleanup = CTrapCleanup::New();
99 CTestStep* CTe_sysstartSuite::CreateTestStep(const TDesC& aStepName)
101 * @return - A CTestStep derived instance
102 * Secure and non-secure variants
103 * Implementation of CTestServer pure virtual
106 CTestStep* testStep = NULL;
107 if(aStepName == KSysStart0Step)
108 testStep = new CSysStart0Step();