Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
18 #include "t_charconvfwserver.h"
20 #include "t_simple7.h"
21 #include "t_simple8.h"
22 #include "t_rfc1642.h"
25 #include "t_realut8.h"
26 #include "t_realuni.h"
28 #include "t_newlin7.h"
30 #include "t_partial.h"
36 c:\z:\t_TEF\t_TEF_All.script
40 _LIT(KServerName,"T_CharConvFWServer");
42 CT_CharConvFwServer *CT_CharConvFwServer::NewL()
44 @return - Instance of the test server
45 Same code for Secure and non-secure variants
46 Called inside the MainL() function to create and start the
47 CTestServer derived server.
50 CT_CharConvFwServer * server = new (ELeave) CT_CharConvFwServer();
51 CleanupStack::PushL(server);
52 // CServer base class call
53 server->StartL(KServerName);
54 CleanupStack::Pop(server);
62 // Much simpler, uses the new Rendezvous() call to sync with the client
65 #if (defined __DATA_CAGING__)
66 RProcess().DataCaging(RProcess::EDataCagingOn);
67 RProcess().SecureApi(RProcess::ESecureApiOn);
69 CActiveScheduler* sched=NULL;
70 sched=new(ELeave) CActiveScheduler;
71 CActiveScheduler::Install(sched);
72 CT_CharConvFwServer *server = NULL;
73 // Create the CTestServer derived server
74 TRAPD(err,server = CT_CharConvFwServer::NewL());
77 // Sync with the client and enter the active scheduler
78 RProcess::Rendezvous(KErrNone);
85 /** @return - Standard Epoc error code on process exit
87 Process entry point. Called by client using RProcess API
89 GLDEF_C TInt E32Main()
92 CTrapCleanup* cleanup = CTrapCleanup::New();
98 // This if statement is here just to shut up RVCT, which would otherwise warn
99 // that err was set but never used
109 CTestStep *CT_CharConvFwServer::CreateTestStep(const TDesC& aStepName)
111 @return - A CTestStep derived instance
112 Secure and non-secure variants
113 Implementation of CTestServer pure virtual
116 if(aStepName == KTestStep_T_MEMORY)
118 return new CT_MEMORY();
120 else if(aStepName == KTestStep_T_SIMPLE7)
122 return new CT_SIMPLE7();
124 else if(aStepName == KTestStep_T_SIMPLE8)
126 return new CT_SIMPLE8();
128 else if(aStepName == KTestStep_T_RFC1642)
130 return new CT_RFC1642();
132 else if(aStepName == KTestStep_T_COMP7)
134 return new CT_COMP7();
136 else if(aStepName == KTestStep_T_COMP8)
138 return new CT_COMP8();
140 else if(aStepName == KTestStep_T_REALUT8)
142 return new CT_REALUT8();
144 else if(aStepName == KTestStep_T_REALUNI)
146 return new CT_REALUNI();
148 else if(aStepName == KTestStep_T_ERROR)
150 return new CT_ERROR();
152 else if(aStepName == KTestStep_T_NEWLIN7)
154 return new CT_NEWLIN7();
156 else if(aStepName == KTestStep_T_JAVA)
158 return new CT_JAVA();
160 else if(aStepName == KTestStep_T_PARTIAL)
162 return new CT_PARTIAL();
164 else if(aStepName == KTestStep_T_IMAP)
166 return new CT_IMAP();