First public contribution.
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 // Secure EKA2 versions will be a simpler xxxServer.exe running in its own process.
15 // Non-secure versions will be xxxServer.Dll and require a thread to be started
16 // in the process of the client. The client initialises the server by calling the
17 // one and only ordinal.
23 @internalComponent - Internal Symbian test code
25 #include "TEmimeTestServer.h"
26 #include "T_MimeStep.h"
27 #include "T_MstrStep.h"
29 #include <ecom/ecom.h>
32 _LIT(KServerName,"TEmimeTestServer");
33 CTEmimeTestServer* CTEmimeTestServer::NewL()
35 @return - Instance of the test server
36 Same code for Secure and non-secure variants
37 Called inside the MainL() function to create and start the
38 CTestServer derived server.
41 CTEmimeTestServer * server = new (ELeave) CTEmimeTestServer();
42 CleanupStack::PushL(server);
43 // CServer base class call
44 server->StartL(KServerName);
45 CleanupStack::Pop(server);
53 Much simpler, uses the new Rendezvous() call to sync with the client */
56 #if (defined __DATA_CAGING__)
57 RProcess().DataCaging(RProcess::EDataCagingOn);
58 RProcess().SecureApi(RProcess::ESecureApiOn);
60 CActiveScheduler* sched=NULL;
61 sched=new(ELeave) CActiveScheduler;
62 CActiveScheduler::Install(sched);
63 CTEmimeTestServer* server = NULL;
64 // Create the CTestServer derived server
65 TRAPD(err,server = CTEmimeTestServer::NewL());
68 // Sync with the client and enter the active scheduler
69 RProcess::Rendezvous(KErrNone);
76 GLDEF_C TInt E32Main()
79 @return - Standard Epoc error code on process exit
81 Process entry point. Called by client using RProcess API
85 CTrapCleanup* cleanup = CTrapCleanup::New();
92 REComSession::FinalClose();
99 // __EDIT_ME__ - Use your own server class name
100 CTestStep* CTEmimeTestServer::CreateTestStep(const TDesC& aStepName)
103 @return - A CTestStep derived instance
104 Secure and non-secure variants
105 Implementation of CTestServer pure virtual
108 CTestStep* testStep = NULL;
109 // __EDIT_ME__ - Create your own test steps here
110 // This server creates just one step but create as many as you want
111 // They are created "just in time" when the worker thread is created
112 if(aStepName == KT_MimeStep)
113 testStep = new CT_MimeStep();
114 else if(aStepName == KT_MstrStep)
115 testStep = new CT_MstrStep();
116 else if(aStepName == KT_Maps)
117 testStep = new CT_Maps();