First public contribution.
1 // Copyright (c) 2007-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 // Name : ulibzserver.cpp
22 #if defined (__WINS__)
23 #define PDD_NAME _L("ECDRV")
25 #define PDD_NAME _L("EUART1")
26 #define PDD2_NAME _L("EUART2")
27 #define PDD3_NAME _L("EUART3")
28 #define PDD4_NAME _L("EUART4")
31 #define LDD_NAME _L("ECOMM")
36 * Pipe test server implementation
38 #include "ulibzserver.h"
42 _LIT(KServerName, "ulibz");
45 ClibzTestServer* ClibzTestServer::NewL()
47 ClibzTestServer *server = new(ELeave) ClibzTestServer();
48 CleanupStack::PushL(server);
49 server->ConstructL(KServerName);
50 CleanupStack::Pop(server);
54 static void InitCommsL()
56 TInt ret = User::LoadPhysicalDevice(PDD_NAME);
57 User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
60 ret = User::LoadPhysicalDevice(PDD2_NAME);
61 ret = User::LoadPhysicalDevice(PDD3_NAME);
62 ret = User::LoadPhysicalDevice(PDD4_NAME);
65 ret = User::LoadLogicalDevice(LDD_NAME);
66 User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
68 User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
73 // Leave the hooks in for platform security
74 #if (defined __DATA_CAGING__)
75 RProcess().DataCaging(RProcess::EDataCagingOn);
76 RProcess().SecureApi(RProcess::ESecureApiOn);
80 CActiveScheduler* sched=NULL;
81 sched=new(ELeave) CActiveScheduler;
82 CActiveScheduler::Install(sched);
83 ClibzTestServer* server = NULL;
84 // Create the CTestServer derived server
85 TRAPD(err, server = ClibzTestServer::NewL());
88 // Sync with the client and enter the active scheduler
89 RProcess::Rendezvous(KErrNone);
98 * @return Standard Epoc error code on exit
103 CTrapCleanup* cleanup = CTrapCleanup::New();
108 TRAP_IGNORE(MainL());
115 CTestStep* ClibzTestServer::CreateTestStep(const TDesC& aStepName)
117 CTestStep* testStep = NULL;
119 // This server creates just one step but create as many as you want
120 // They are created "just in time" when the worker thread is created
125 if(aStepName == KLibzcomp_decomp)
127 testStep = new CTestlibz(aStepName);
130 if(aStepName == KLibzdefl_Infl)
132 testStep = new CTestlibz(aStepName);
135 if(aStepName == KLibzgzio)
137 testStep = new CTestlibz(aStepName);
139 if(aStepName == KLibzversion)
141 testStep = new CTestlibz(aStepName);