os/graphics/graphicshwdrivers/surfacemgr/test/inc/tsmgmultprocessshared.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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
// surface manager API
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SHARED_H__
sl@0
    19
#define __SHARED_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <e32cmn.h>
sl@0
    23
#include <graphics/surface.h>
sl@0
    24
#include <graphics/surfacemanager.h>
sl@0
    25
#include <test/tgraphicsharness.h>
sl@0
    26
sl@0
    27
struct TLeaveInfo
sl@0
    28
	{
sl@0
    29
	RSurfaceManager iSurfaceManager;
sl@0
    30
	TSurfaceId iSurfaceId;
sl@0
    31
	};
sl@0
    32
sl@0
    33
static void CloseSurfaceWhenLeave(TAny* aInfo)
sl@0
    34
	{
sl@0
    35
	TInt err = ((TLeaveInfo*)aInfo)->iSurfaceManager.CloseSurface(((TLeaveInfo*)aInfo)->iSurfaceId);
sl@0
    36
	if (err != KErrNone)
sl@0
    37
		RDebug::Print(_L("Error closing surface = %d\n"),err);	
sl@0
    38
	};
sl@0
    39
 
sl@0
    40
sl@0
    41
/**
sl@0
    42
Enum for the slots for inter-process communication
sl@0
    43
*/
sl@0
    44
enum TIPCSlot
sl@0
    45
	{
sl@0
    46
	EMultiProcessFirstSlot = 0,
sl@0
    47
	EMultiProcessSecondSlot,
sl@0
    48
	EMultiProcessThirdSlot,
sl@0
    49
	EMultiProcessFourthSlot,
sl@0
    50
	};
sl@0
    51
sl@0
    52
/**
sl@0
    53
Enums for passing between the test process and the second process used in testing,
sl@0
    54
used to define which test should be run on the side of the second process.
sl@0
    55
*/
sl@0
    56
enum TMultiProcessTestCase
sl@0
    57
	{
sl@0
    58
	// Second process opcodes
sl@0
    59
	ETestOpenReceivedSurface,
sl@0
    60
	ETestInfoReceivedSurface,
sl@0
    61
	ETestOpenSurfaceInvalidParams,
sl@0
    62
	ECreateWaitKill,
sl@0
    63
	EOpenClose,
sl@0
    64
	EMapSurfaceInfoCantAccess,
sl@0
    65
	EOpenWaitMap,
sl@0
    66
	EReadFromBuffer,
sl@0
    67
	ECheckHandle,
sl@0
    68
	ESyncOperation,
sl@0
    69
	ETestChannelMultiProcess1,
sl@0
    70
	ETestChannelMultiProcess2,
sl@0
    71
	EGetSurfaceHint,
sl@0
    72
	ESetSurfaceHint,
sl@0
    73
	EAddSurfaceHint,
sl@0
    74
	ECheckOutofMemory,
sl@0
    75
	// Third process opcodes
sl@0
    76
	ECloseSurface = 0x00010000,
sl@0
    77
	EOpenWaitCloseOpen,
sl@0
    78
	EOpenSurface,
sl@0
    79
	ESurfaceInfo
sl@0
    80
	};
sl@0
    81
sl@0
    82
/**
sl@0
    83
Enums for panics between my testing process and my second process
sl@0
    84
*/
sl@0
    85
enum TCrossProcessPanics
sl@0
    86
	{
sl@0
    87
	EInvalidTestCase,
sl@0
    88
	};
sl@0
    89
sl@0
    90
/**
sl@0
    91
Enums for the test results
sl@0
    92
*/
sl@0
    93
enum TTestResult
sl@0
    94
	{
sl@0
    95
	EFirstTestPassed = 0x00000001,
sl@0
    96
	ESecondTestPassed = 0x00000002,
sl@0
    97
	EThirdTestPassed = 0x00000004,
sl@0
    98
	EFourthTestPassed = 0x00000008,
sl@0
    99
	EFifthTestPassed = 0x00000010,
sl@0
   100
	ESixthTestPassed = 0x00000020,
sl@0
   101
	ESeventhTestPassed = 0x00000040,
sl@0
   102
	EEighthTestPassed = 0x00000080,
sl@0
   103
	ENinthTestPassed = 0x00000100,
sl@0
   104
	ETenthTestPassed = 0x00000200,
sl@0
   105
	};
sl@0
   106
sl@0
   107
_LIT(KMultiProcessSemaphore, "Multi Process Semaphore");
sl@0
   108
_LIT(KMultiProcessSemaphore2, "Multi Process Semaphore 2");
sl@0
   109
_LIT(KMultiProcessSemaphore3, "Multi Process Semaphore 3");
sl@0
   110
_LIT(KMultiProcessSemaphore4, "Multi Process Semaphore 4");
sl@0
   111
_LIT(KSharedChunkName, "Surfaces test shared chunk");
sl@0
   112
sl@0
   113
sl@0
   114
const TInt KSharedChunkSize = ((4 * sizeof(TUint32)) + (2 * sizeof(TInt)));
sl@0
   115
	
sl@0
   116
/**
sl@0
   117
Wraps a shared chunk for communication between the processes
sl@0
   118
*/
sl@0
   119
class CChunkWrapper : public CBase
sl@0
   120
	{
sl@0
   121
public:
sl@0
   122
	~CChunkWrapper();
sl@0
   123
	static CChunkWrapper* CreateL(const TDesC& aName, TInt aSize, TInt aMaxSize);
sl@0
   124
	void CreateConstructL(const TDesC& aName, TInt aSize, TInt aMaxSize);
sl@0
   125
	static CChunkWrapper* OpenL(const TDesC& aName, TBool aIsReadOnly);
sl@0
   126
	void OpenConstructL(const TDesC& aName, TBool aIsReadOnly);
sl@0
   127
	void SetSecondProcessResults(TInt aResult);
sl@0
   128
	TInt GetSecondProcessResults();
sl@0
   129
	void SetThirdProcessResults(TInt aResult);
sl@0
   130
	TInt GetThirdProcessResults();
sl@0
   131
	void SetId(const TSurfaceId& aId);
sl@0
   132
	TSurfaceId GetId();
sl@0
   133
	void CloseD();
sl@0
   134
private:	
sl@0
   135
	CChunkWrapper();
sl@0
   136
private:
sl@0
   137
	RChunk iChunk;
sl@0
   138
	};
sl@0
   139
sl@0
   140
sl@0
   141
class CTestDriver : public CBase
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	CTestDriver();
sl@0
   145
	virtual ~CTestDriver();
sl@0
   146
	void ConstructL();
sl@0
   147
protected:
sl@0
   148
	RSurfaceManager iSurfaceManager;
sl@0
   149
	CChunkWrapper* iChunkWrapper;
sl@0
   150
	TInt iTestResult;
sl@0
   151
	};
sl@0
   152
sl@0
   153
#endif