os/ossrv/compressionlibs/ziplib/test/tef/ulibz/src/ulibzserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Name        : ulibzserver.cpp
    15 // 
    16 //
    17 
    18  
    19 
    20 #include <c32comm.h>
    21 
    22 #if defined (__WINS__)
    23 #define PDD_NAME		_L("ECDRV")
    24 #else
    25 #define PDD_NAME		_L("EUART1")
    26 #define PDD2_NAME		_L("EUART2")
    27 #define PDD3_NAME		_L("EUART3")
    28 #define PDD4_NAME		_L("EUART4")
    29 #endif
    30 
    31 #define LDD_NAME		_L("ECOMM")
    32 
    33 /**
    34  * @file
    35  *
    36  * Pipe test server implementation
    37  */
    38 #include "ulibzserver.h"
    39 #include "ulibz.h"
    40 
    41 
    42 _LIT(KServerName, "ulibz");
    43 
    44 
    45 ClibzTestServer* ClibzTestServer::NewL()
    46 	{
    47 	ClibzTestServer *server = new(ELeave) ClibzTestServer();
    48 	CleanupStack::PushL(server);
    49 	server->ConstructL(KServerName);
    50 	CleanupStack::Pop(server);
    51 	return server;
    52 	}
    53 
    54 static void InitCommsL()
    55     {
    56     TInt ret = User::LoadPhysicalDevice(PDD_NAME);
    57     User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    58 
    59 #ifndef __WINS__
    60     ret = User::LoadPhysicalDevice(PDD2_NAME);
    61     ret = User::LoadPhysicalDevice(PDD3_NAME);
    62     ret = User::LoadPhysicalDevice(PDD4_NAME);
    63 #endif
    64 
    65     ret = User::LoadLogicalDevice(LDD_NAME);
    66     User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    67     ret = StartC32();
    68     User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
    69     }
    70 
    71 LOCAL_C void MainL()
    72 	{
    73 	// Leave the hooks in for platform security
    74 #if (defined __DATA_CAGING__)
    75 	RProcess().DataCaging(RProcess::EDataCagingOn);
    76 	RProcess().SecureApi(RProcess::ESecureApiOn);
    77 #endif
    78 	//InitCommsL();
    79 	
    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());
    86 	if(!err)
    87 		{
    88 		// Sync with the client and enter the active scheduler
    89 		RProcess::Rendezvous(KErrNone);
    90 		sched->Start();
    91 		}
    92 	delete server;
    93 	delete sched;
    94 	}
    95 
    96 /**
    97  * Server entry point
    98  * @return Standard Epoc error code on exit
    99  */
   100 TInt main()
   101 	{
   102 	__UHEAP_MARK;
   103 	CTrapCleanup* cleanup = CTrapCleanup::New();
   104 	if(cleanup == NULL) 
   105 		{
   106 		return KErrNoMemory;  
   107 		}
   108 	TRAP_IGNORE(MainL());
   109 	delete cleanup;
   110 	__UHEAP_MARKEND;
   111 	
   112 	return KErrNone;
   113 	}
   114 
   115 CTestStep* ClibzTestServer::CreateTestStep(const TDesC& aStepName)
   116 	{
   117 	CTestStep* testStep = NULL;
   118 
   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
   121 	// install steps
   122 
   123 	//steps for captest.
   124 	
   125 	 if(aStepName == KLibzcomp_decomp)
   126 		{
   127 		testStep = new CTestlibz(aStepName);
   128 		}
   129 		
   130 		if(aStepName == KLibzdefl_Infl)
   131 		{
   132 		testStep = new CTestlibz(aStepName);
   133 		}
   134 		
   135 		if(aStepName == KLibzgzio)
   136 		{
   137 		testStep = new CTestlibz(aStepName);
   138 		}
   139 		if(aStepName == KLibzversion)
   140 		{
   141 		testStep = new CTestlibz(aStepName);
   142 		}
   143 
   144 	return testStep;
   145 	}
   146 
   147