os/graphics/graphicscomposition/openwfsupport/test/tstreamoperation/surfaceutility.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/**
sl@0
     2
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __SURFACE_UTILITY__
sl@0
    25
#define __SURFACE_UTILITY__
sl@0
    26
sl@0
    27
#include <e32base.h>
sl@0
    28
#include <graphics/surface.h>
sl@0
    29
#include <graphics/surfacemanager.h>
sl@0
    30
#include <graphics/surfaceupdateclient.h>
sl@0
    31
sl@0
    32
#define ENABLE_TEST_LOGGING
sl@0
    33
#define ALPHA_FIX_24BIT	0x7f //This forces a non-zero value into the X byte of 16MU color values
sl@0
    34
sl@0
    35
#if defined(ENABLE_TEST_LOGGING)
sl@0
    36
#define LOG(X)	RDebug::Printf X
sl@0
    37
#else
sl@0
    38
#define LOG(X)
sl@0
    39
#endif
sl@0
    40
sl@0
    41
class TRgb;
sl@0
    42
class CFbsBitmap;
sl@0
    43
sl@0
    44
class CSurfaceUtility : public CBase
sl@0
    45
	{
sl@0
    46
public:
sl@0
    47
	static CSurfaceUtility* NewL(CSurfaceUtility* aClone=NULL);
sl@0
    48
	virtual ~CSurfaceUtility();
sl@0
    49
	TSize SurfaceSize(const TSurfaceId& aSurface);
sl@0
    50
	TSurfaceId CreateSurfaceL(const TSize& aSize, TUidPixelFormat aPixelFormat, TInt aStride, TInt aBuffers = 1);
sl@0
    51
	TInt BytesPerPixelL(TUidPixelFormat aPixelFormat);
sl@0
    52
	void FillSurfaceL(TSurfaceId& aSurface, const TRgb& aColor);
sl@0
    53
	void FillSurfaceL(TSurfaceId& aSurface, TInt aBuffer, const TRgb& aColor);
sl@0
    54
	void DestroySurface(TSurfaceId& aSurface);
sl@0
    55
	TBool DestroyAll();
sl@0
    56
    TInt SubmitUpdate(TInt aScreenNumber, const TSurfaceId& aSurface, TInt aBufferNumber,TInt aNullRegion);
sl@0
    57
    TInt SubmitUpdate(TInt aScreenNumber, const TSurfaceId& aSurface, TInt aBufferNumber,const TRegion* aRegion = NULL);
sl@0
    58
    TInt SubmitUpdate(TInt aScreenNumber, const TSurfaceId& aSurface, const TRegion* aRegion, TInt aBufferNumber = 0);
sl@0
    59
    void NotifyWhenDisplayed(TRequestStatus& aStatusDisplayed, TTimeStamp& aTimeStamp);
sl@0
    60
    void NotifyWhenDisplayedXTimes(TInt aCount, TRequestStatus& aStatusDisplayedX);
sl@0
    61
    void NotifyWhenAvailable(TRequestStatus& aStatusAvailable);	
sl@0
    62
	//Native Stream
sl@0
    63
	void FillNativeStreamSurfaceL(TSurfaceId& aSurface, TUint8* aBufferPtr, const TRgb& aColor);
sl@0
    64
	TBool CompareSurfacesL(TSurfaceId& aSurface, TInt aBuffer, TSurfaceId& aStreamSurface, TUint8* aBufferPtr);
sl@0
    65
	RSurfaceManager& Manager()	{return iManager;}
sl@0
    66
	RSurfaceUpdateSession& Session()	{return iSurfaceUpdateSession;}
sl@0
    67
private:
sl@0
    68
	CSurfaceUtility(CSurfaceUtility* aClone);
sl@0
    69
	void ConstructL();
sl@0
    70
sl@0
    71
private:
sl@0
    72
	RSurfaceManager iManager;
sl@0
    73
	RSurfaceUpdateSession iSurfaceUpdateSession;
sl@0
    74
	//This local object wraps the array operations in a heap switch
sl@0
    75
	//The reason for providing this wrapper is to allow threads to share the surface manager surface ID list.
sl@0
    76
	//In particular, the next test can attempt to release the previous test's surfaces if it paniced. 
sl@0
    77
	//Note that the presumption is that the owning thread will be paused, 
sl@0
    78
	//so there will be no thread interlock issues with it's heap manager.
sl@0
    79
	class RHeapSurfaceArray
sl@0
    80
		{
sl@0
    81
		public:
sl@0
    82
		typedef RArray<TSurfaceId>	Array;
sl@0
    83
		RHeapSurfaceArray(RHeapSurfaceArray* aUseExternalArray=NULL);
sl@0
    84
sl@0
    85
		//Emulation of RArray entrypoints. Add more stub methods if required...
sl@0
    86
		TSurfaceId& operator[](TUint aIndex);
sl@0
    87
		void Close();
sl@0
    88
		TInt Count() const;
sl@0
    89
		inline void Reset();
sl@0
    90
		void AppendL(const TSurfaceId &anEntry);
sl@0
    91
		TInt Find(const TSurfaceId &anEntry) const;
sl@0
    92
		void Remove(TInt anIndex);
sl@0
    93
		
sl@0
    94
		private:
sl@0
    95
		static void PopHeap(void* mainheap);
sl@0
    96
		static void SwitchHeapLC(RHeap* aNewHeap);
sl@0
    97
		
sl@0
    98
		Array iLocalArray;
sl@0
    99
		Array* iUseArray;
sl@0
   100
		RHeap &iExternalHeapRef;
sl@0
   101
		}	iSurfaces;
sl@0
   102
	};
sl@0
   103
sl@0
   104
#endif // __SURFACE_UTILITY__
sl@0
   105