os/ossrv/genericopenlibs/posixrealtimeextensions/test/testsharedmemory/src/tsharedmemoryserver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Name        : tsharedmemoryserver.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <c32comm.h>
sl@0
    19
sl@0
    20
#if defined (__WINS__)
sl@0
    21
#define PDD_NAME		_L("ECDRV")
sl@0
    22
#else
sl@0
    23
#define PDD_NAME		_L("EUART1")
sl@0
    24
#define PDD2_NAME		_L("EUART2")
sl@0
    25
#define PDD3_NAME		_L("EUART3")
sl@0
    26
#define PDD4_NAME		_L("EUART4")
sl@0
    27
#endif
sl@0
    28
sl@0
    29
#define LDD_NAME		_L("ECOMM")
sl@0
    30
sl@0
    31
/**
sl@0
    32
 * @file
sl@0
    33
 *
sl@0
    34
 * Pipe test server implementation
sl@0
    35
 */
sl@0
    36
#include "tsharedmemoryserver.h"
sl@0
    37
#include "tsharedmemory.h"
sl@0
    38
sl@0
    39
sl@0
    40
_LIT(KServerName, "tsharedmemory");
sl@0
    41
sl@0
    42
CSharedmemoryTestServer* CSharedmemoryTestServer::NewL()
sl@0
    43
	{
sl@0
    44
	CSharedmemoryTestServer *server = new(ELeave) CSharedmemoryTestServer();
sl@0
    45
	CleanupStack::PushL(server);
sl@0
    46
	server->ConstructL(KServerName);
sl@0
    47
	CleanupStack::Pop(server);
sl@0
    48
	return server;
sl@0
    49
	}
sl@0
    50
sl@0
    51
static void InitCommsL()
sl@0
    52
    {
sl@0
    53
    TInt ret = User::LoadPhysicalDevice(PDD_NAME);
sl@0
    54
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
sl@0
    55
sl@0
    56
#ifndef __WINS__
sl@0
    57
    ret = User::LoadPhysicalDevice(PDD2_NAME);
sl@0
    58
    ret = User::LoadPhysicalDevice(PDD3_NAME);
sl@0
    59
    ret = User::LoadPhysicalDevice(PDD4_NAME);
sl@0
    60
#endif
sl@0
    61
sl@0
    62
    ret = User::LoadLogicalDevice(LDD_NAME);
sl@0
    63
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
sl@0
    64
    ret = StartC32();
sl@0
    65
    User::LeaveIfError(ret == KErrAlreadyExists?KErrNone:ret);
sl@0
    66
    }
sl@0
    67
sl@0
    68
LOCAL_C void MainL()
sl@0
    69
	{
sl@0
    70
	// Leave the hooks in for platform security
sl@0
    71
#if (defined __DATA_CAGING__)
sl@0
    72
	RProcess().DataCaging(RProcess::EDataCagingOn);
sl@0
    73
	RProcess().SecureApi(RProcess::ESecureApiOn);
sl@0
    74
#endif
sl@0
    75
	//InitCommsL();
sl@0
    76
	
sl@0
    77
	CActiveScheduler* sched=NULL;
sl@0
    78
	sched=new(ELeave) CActiveScheduler;
sl@0
    79
	CActiveScheduler::Install(sched);
sl@0
    80
	CSharedmemoryTestServer* server = NULL;
sl@0
    81
	// Create the CTestServer derived server
sl@0
    82
	TRAPD(err, server = CSharedmemoryTestServer::NewL());
sl@0
    83
	if(!err)
sl@0
    84
		{
sl@0
    85
		// Sync with the client and enter the active scheduler
sl@0
    86
		RProcess::Rendezvous(KErrNone);
sl@0
    87
		sched->Start();
sl@0
    88
		}
sl@0
    89
	delete server;
sl@0
    90
	delete sched;
sl@0
    91
	}
sl@0
    92
sl@0
    93
/**
sl@0
    94
 * Server entry point
sl@0
    95
 * @return Standard Epoc error code on exit
sl@0
    96
 */
sl@0
    97
TInt main()
sl@0
    98
	{
sl@0
    99
	__UHEAP_MARK;
sl@0
   100
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   101
	if(cleanup == NULL) 
sl@0
   102
		{
sl@0
   103
		return KErrNoMemory;  
sl@0
   104
		}
sl@0
   105
	TRAP_IGNORE(MainL());
sl@0
   106
	delete cleanup;
sl@0
   107
	__UHEAP_MARKEND;
sl@0
   108
	
sl@0
   109
	return KErrNone;
sl@0
   110
	}
sl@0
   111
sl@0
   112
CTestStep* CSharedmemoryTestServer::CreateTestStep(const TDesC& aStepName)
sl@0
   113
	{
sl@0
   114
	CTestStep* testStep = NULL;
sl@0
   115
sl@0
   116
	if(aStepName == KTestsharedmemory1)
sl@0
   117
		{
sl@0
   118
			testStep = new CTestsharedmemory(aStepName);
sl@0
   119
		}
sl@0
   120
	if(aStepName == KTestsharedmemory2)
sl@0
   121
		{
sl@0
   122
			testStep = new CTestsharedmemory(aStepName);
sl@0
   123
		}
sl@0
   124
	if(aStepName == KTestsharedmemory3)
sl@0
   125
		{
sl@0
   126
			testStep = new CTestsharedmemory(aStepName);
sl@0
   127
		}
sl@0
   128
	if(aStepName == KTestsharedmemory4)
sl@0
   129
		{
sl@0
   130
			testStep = new CTestsharedmemory(aStepName);
sl@0
   131
		}
sl@0
   132
	if(aStepName == KTestsharedmemory5)
sl@0
   133
		{
sl@0
   134
			testStep = new CTestsharedmemory(aStepName);
sl@0
   135
		}
sl@0
   136
	if(aStepName == KTestsharedmemory6)
sl@0
   137
		{
sl@0
   138
			testStep = new CTestsharedmemory(aStepName);
sl@0
   139
		}
sl@0
   140
	if(aStepName == KTestsharedmemory7)
sl@0
   141
		{
sl@0
   142
			testStep = new CTestsharedmemory(aStepName);
sl@0
   143
		}
sl@0
   144
	if(aStepName == KTestsharedmemory8)
sl@0
   145
		{
sl@0
   146
			testStep = new CTestsharedmemory(aStepName);
sl@0
   147
		}
sl@0
   148
	if(aStepName == KTestsharedmemory9)
sl@0
   149
		{
sl@0
   150
			testStep = new CTestsharedmemory(aStepName);
sl@0
   151
		}
sl@0
   152
	if(aStepName == KTestsharedmemory10)
sl@0
   153
		{
sl@0
   154
			testStep = new CTestsharedmemory(aStepName);
sl@0
   155
		}
sl@0
   156
	if(aStepName == KTestsharedmemory11)
sl@0
   157
		{
sl@0
   158
			testStep = new CTestsharedmemory(aStepName);
sl@0
   159
		}
sl@0
   160
	if(aStepName == KTestsharedmemory12)
sl@0
   161
		{
sl@0
   162
			testStep = new CTestsharedmemory(aStepName);
sl@0
   163
		}
sl@0
   164
	if(aStepName == KTestsharedmemory13)
sl@0
   165
		{
sl@0
   166
			testStep = new CTestsharedmemory(aStepName);
sl@0
   167
		}
sl@0
   168
	if(aStepName == KTestsharedmemory14)
sl@0
   169
		{
sl@0
   170
			testStep = new CTestsharedmemory(aStepName);
sl@0
   171
		}
sl@0
   172
	if(aStepName == KTestsharedmemory15)
sl@0
   173
		{
sl@0
   174
			testStep = new CTestsharedmemory(aStepName);
sl@0
   175
		}
sl@0
   176
	if(aStepName == KTestsharedmemory16)
sl@0
   177
		{
sl@0
   178
			testStep = new CTestsharedmemory(aStepName);
sl@0
   179
		}
sl@0
   180
	if(aStepName == KTestsharedmemory17)
sl@0
   181
		{
sl@0
   182
			testStep = new CTestsharedmemory(aStepName);
sl@0
   183
		}
sl@0
   184
	if(aStepName == KTestsharedmemory18)
sl@0
   185
		{
sl@0
   186
			testStep = new CTestsharedmemory(aStepName);
sl@0
   187
		}
sl@0
   188
	if(aStepName == KTestsharedmemory19)
sl@0
   189
		{
sl@0
   190
			testStep = new CTestsharedmemory(aStepName);
sl@0
   191
		}
sl@0
   192
	if(aStepName == KTestsharedmemory20)
sl@0
   193
		{
sl@0
   194
			testStep = new CTestsharedmemory(aStepName);
sl@0
   195
		}
sl@0
   196
	if(aStepName == KTestsharedmemory21)
sl@0
   197
		{
sl@0
   198
			testStep = new CTestsharedmemory(aStepName);
sl@0
   199
		}
sl@0
   200
	if(aStepName == KTestsharedmemory22)
sl@0
   201
		{
sl@0
   202
			testStep = new CTestsharedmemory(aStepName);
sl@0
   203
		}
sl@0
   204
	if(aStepName == KTestsharedmemory23)
sl@0
   205
		{
sl@0
   206
			testStep = new CTestsharedmemory(aStepName);
sl@0
   207
		}
sl@0
   208
	if(aStepName == KTestsharedmemory24)
sl@0
   209
		{
sl@0
   210
			testStep = new CTestsharedmemory(aStepName);
sl@0
   211
		}
sl@0
   212
	if(aStepName == KTestsharedmemory25)
sl@0
   213
		{
sl@0
   214
			testStep = new CTestsharedmemory(aStepName);
sl@0
   215
		}
sl@0
   216
	if(aStepName == KTestsharedmemory26)
sl@0
   217
		{
sl@0
   218
			testStep = new CTestsharedmemory(aStepName);
sl@0
   219
		}
sl@0
   220
	if(aStepName == KTestsharedmemory27)
sl@0
   221
		{
sl@0
   222
			testStep = new CTestsharedmemory(aStepName);
sl@0
   223
		}
sl@0
   224
	if(aStepName == KTestsharedmemory28)
sl@0
   225
		{
sl@0
   226
			testStep = new CTestsharedmemory(aStepName);
sl@0
   227
		}
sl@0
   228
	if(aStepName == KTestsharedmemory29)
sl@0
   229
		{
sl@0
   230
			testStep = new CTestsharedmemory(aStepName);
sl@0
   231
		}
sl@0
   232
	if(aStepName == KTestsharedmemory30)
sl@0
   233
		{
sl@0
   234
			testStep = new CTestsharedmemory(aStepName);
sl@0
   235
		}
sl@0
   236
	return testStep;
sl@0
   237
	 }
sl@0
   238