First public contribution.
2 * Copyright (c) 2010 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 "TETextServer.h"
22 #include "T_RICHOOM.h"
36 #include "T_PARSE_for_TEF.h"
44 #include "TEtextDefect.h"
46 _LIT(KServerName, "TETextServer");
48 CTETextServer *CTETextServer::NewL()
50 @return - Instance of the test server
51 Same code for Secure and non-secure variants
52 Called inside the MainL() function to create and start the
53 CTestServer derived server.
56 CTETextServer * server = new (ELeave) CTETextServer();
57 CleanupStack::PushL(server);
58 // CServer base class call
59 server->StartL(KServerName);
60 CleanupStack::Pop(server);
68 // Much simpler, uses the new Rendezvous() call to sync with the client
71 #if (defined __DATA_CAGING__)
72 RProcess().DataCaging(RProcess::EDataCagingOn);
73 RProcess().SecureApi(RProcess::ESecureApiOn);
75 CActiveScheduler* sched=NULL;
76 sched=new(ELeave) CActiveScheduler;
77 CActiveScheduler::Install(sched);
78 CTETextServer *server = NULL;
79 // Create the CTestServer derived server
80 TRAPD(err,server = CTETextServer::NewL());
83 // Sync with the client and enter the active scheduler
84 RProcess::Rendezvous(KErrNone);
91 /** @return - Standard Epoc error code on process exit
93 Process entry point. Called by client using RProcess API
95 GLDEF_C TInt E32Main()
98 CTrapCleanup* cleanup = CTrapCleanup::New();
104 // This if statement is here just to shut up RVCT, which would otherwise warn
105 // that err was set but never used
115 CTestStep *CTETextServer::CreateTestStep(const TDesC& aStepName)
117 @return - A CTestStep derived instance
118 Secure and non-secure variants
119 Implementation of CTestServer pure virtual
122 if (aStepName == KTestStep_T_FIELD1)
123 return new CT_FIELD1();
124 else if (aStepName == KTestStep_T_ROMAN)
125 return new CT_ROMAN();
126 else if (aStepName == KTestStep_T_STREAM)
127 return new CT_STREAM();
128 else if (aStepName == KTestStep_T_RICHOOM)
129 return new CT_RICHOOM();
130 else if (aStepName == KTestStep_T_TRTCOPY)
131 return new CT_TRTCOPY();
132 else if (aStepName == KTestStep_T_TRTCUSTM)
133 return new CT_TRTCUSTM();
134 else if (aStepName == KTestStep_T_TTIMES1)
135 return new CT_TTIMES1();
136 else if (aStepName == KTestStep_T_CONVRT)
137 return new CT_CONVRT();
138 else if (aStepName == KTestStep_T_CONVS)
139 return new CT_CONVS();
140 else if (aStepName == KTestStep_T_CONVS1)
141 return new CT_CONVS1();
142 else if (aStepName == KTestStep_T_CPLAIN)
143 return new CT_CPLAIN();
144 else if (aStepName == KTestStep_T_CUTPST)
145 return new CT_CUTPST();
146 else if (aStepName == KTestStep_T_FMT)
148 else if (aStepName == KTestStep_T_FMT1)
149 return new CT_FMT1();
150 else if (aStepName == KTestStep_T_IMPORT)
151 return new CT_IMPORT();
152 else if (aStepName == KTestStep_T_INDTER)
153 return new CT_INDTER();
154 else if (aStepName == KTestStep_T_LAYDOC)
155 return new CT_LAYDOC();
156 else if (aStepName == KTestStep_T_PARSE)
157 return new CT_PARSE();
158 else if (aStepName == KTestStep_T_PICRES)
159 return new CT_PICRES();
160 else if (aStepName == KTestStep_T_RICH1A)
161 return new CT_RICH1A();
162 else if (aStepName == KTestStep_T_RTCLIP)
163 return new CT_RTCLIP();
164 else if (aStepName == KTestStep_T_SCANDC)
165 return new CT_SCANDC();
166 else if (aStepName == KTestStep_T_STYLE)
167 return new CT_STYLE();
168 else if (aStepName == KTestStep_T_TIMES)
169 return new CT_TIMES();
170 else if (aStepName == KTestStep_T_TRAN)
171 return new CT_TRAN();
172 else if (aStepName == KTestStep_TEtextDefect)
173 return new CTEtextDefect();