os/graphics/windowing/windowserver/nga/SERVER/openwfc/redrawmsgwindow.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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
// CWsRedrawMsgWindow and associated classes definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __REDRAWMSGWINDOW_H__
sl@0
    19
#define __REDRAWMSGWINDOW_H__
sl@0
    20
sl@0
    21
#include "wnredraw.h"
sl@0
    22
#include "redrawmsgwindow.h"
sl@0
    23
sl@0
    24
class CWsFbsFont;
sl@0
    25
class CWsDrawableSource;
sl@0
    26
sl@0
    27
// This class is intended to be used in cases, where it's needed to track how many times a CFbsBitmap
sl@0
    28
// is referenced, e.g. in redraws, where already drawn bitmaps need to be re-drawn in different position.
sl@0
    29
class CFbsBitmapRef : public CFbsBitmap
sl@0
    30
    {
sl@0
    31
public:
sl@0
    32
    CFbsBitmapRef();
sl@0
    33
    ~CFbsBitmapRef();
sl@0
    34
    inline TInt RefCount() const;
sl@0
    35
    inline void IncRefCount();
sl@0
    36
    inline void DecRefCount();
sl@0
    37
private:
sl@0
    38
    TInt iRefCount;
sl@0
    39
    };
sl@0
    40
sl@0
    41
class CWsRedrawMsgWindow : public CWsWindowRedraw
sl@0
    42
	{
sl@0
    43
	class CRedrawSegment;
sl@0
    44
	enum TFlags
sl@0
    45
		{
sl@0
    46
		EBackgroundClear=0x0001,		//Clear background when starting redraw
sl@0
    47
		EBeginEndRedraw=0x0002,			//This window is currently in the middle of a redraw, that is between client calls to BeginRedraw and EndRedraw.
sl@0
    48
		EPendingScheduledDraw=0x0004,   //We have scheduled a redraw but it hasn't happened yet
sl@0
    49
		EStoringEntireWindow=0x0008,    //If store commands for the entire window or only the viewport
sl@0
    50
		ECurrentRedrawFailedStorage=0x0010,		//The current redraw failed to store a command (is reset for each redraw). Is used to make sure we only request a redraw from the client once per failing redraw
sl@0
    51
		EPreviousRedrawFailedStorage=0x0020,	//The previous redraw failed to store a command. Is used to avoid infinite loops -- if two consecutive redraws fail (i.e. current and previous) then there is no use requesting yet another redraw from the client
sl@0
    52
		};
sl@0
    53
	enum TScope
sl@0
    54
		{
sl@0
    55
		EStoreEntireWindow,             //We try to obtain draw commands for the entire window
sl@0
    56
		EStoreViewport                  //We only try to obtain commands for the on screen viewport
sl@0
    57
		};
sl@0
    58
public:
sl@0
    59
	enum TRedrawSegmentType
sl@0
    60
		{
sl@0
    61
		ESegmentTypePendingRedraw,      // A redraw segment still being received
sl@0
    62
		ESegmentTypeRedraw              // A segment received between a begin and end redraw
sl@0
    63
		};
sl@0
    64
public:
sl@0
    65
	static void StaticInitL();
sl@0
    66
	CWsRedrawMsgWindow(CWsWindow *aWin);
sl@0
    67
	~CWsRedrawMsgWindow();
sl@0
    68
	void AddFbsBitmapsL(TInt aHandle, TInt aMaskHandle);
sl@0
    69
	void AddFbsBitmapRefL(TInt aHandle);
sl@0
    70
	void AddWsBitmapsL(TInt aHandle, TInt aMaskHandle);
sl@0
    71
	void AddWsFontL(TInt aHandle);
sl@0
    72
	void AddWsDrawableSourceL(TInt aHandle);
sl@0
    73
	void SetScope(TScope aStore);
sl@0
    74
	void CleanupBitmapRefArray(const RArray<TInt>& aHandleArray);
sl@0
    75
	
sl@0
    76
public:	//from CWsWindowRedraw		
sl@0
    77
	void ConstructL();
sl@0
    78
	TBool CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd);
sl@0
    79
	void ClipInvalidRegion(const TRect &aRect);
sl@0
    80
	TBool NeedsRedraw() const;
sl@0
    81
	TBool GetRedrawRect(TRect &aRect) const;
sl@0
    82
	const TRegion& BaseDrawRegion() const;
sl@0
    83
	const TRegion& InvalidArea() const;
sl@0
    84
	void ClearRedrawStore(TBool aClearPendingRedraw=EFalse);
sl@0
    85
	TBool DrawCommand(CWsGc* aGc,const TAny *aCmdData);
sl@0
    86
	void GcAttributeChange(CWsGc* aGc,const TAny *aCmdData);
sl@0
    87
	void GcDeactivate(CWsGc* aGc);
sl@0
    88
	void ClientExposing();
sl@0
    89
	void DrawWindow();
sl@0
    90
	void PrepareForResizeL(const TSize &aSize, TSize &aOldSize);
sl@0
    91
	void Moved();
sl@0
    92
	TBool Contains(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
    93
	TBool ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel aLevel);
sl@0
    94
	void VisibleRegionChange();
sl@0
    95
	TBool ReadyToDraw() const;
sl@0
    96
	TInt SizeInBytes() const;
sl@0
    97
	TBool RedrawingInProgress() const;
sl@0
    98
	void WindowClosing();
sl@0
    99
	TBool IsRedrawStoreEmpty() const;
sl@0
   100
	TBool IsBackgroundClearEnabled() const;
sl@0
   101
	CFbsBitmap* BitmapFromHandle(TInt aHandle) const;
sl@0
   102
sl@0
   103
private: //from CWsWindowRedraw	
sl@0
   104
	void Invalidate(const TRect * aRect = 0);
sl@0
   105
	TRgb BackColor() const;
sl@0
   106
	void Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect);
sl@0
   107
	
sl@0
   108
private:
sl@0
   109
	void RemoveFromRedrawQueueIfEmpty();
sl@0
   110
	const TRegion * ReadRegion(const TInt aRegionNum);
sl@0
   111
	void BeginRedraw(const TRect* aRect);
sl@0
   112
	void DoBeginRedrawL(const TRect* aRect);
sl@0
   113
	void SubtractRectFromSegmentArray(const TRect& aRect);
sl@0
   114
	void EndRedraw();
sl@0
   115
	void ValidateRect(const TRect *aRect);
sl@0
   116
	void StoreDrawCommandL(CWsGc* aGc,const TAny *aCmdData);
sl@0
   117
	void AppendCommandL(const TAny* aCmdData, const TUint16 aOpcodeFlags = 0);
sl@0
   118
	void StoreAllGcAttributesL(CWsGc* aGc);
sl@0
   119
	void DrawCommandsL();
sl@0
   120
	void DiscardStoredCommands();
sl@0
   121
	TBool DiscardSegmentsOutsideViewport();
sl@0
   122
	inline TBool NoBuffer() const;
sl@0
   123
	void DiscardStoredCommandsIfError(TInt aError);
sl@0
   124
	inline TBool IsFbsBitmapOperation(TInt aOpCode) const;
sl@0
   125
	inline TBool IsWsBitmapOperation(TInt aOpCode) const;
sl@0
   126
	inline TBool IsRemoteReadRequired(TInt aOpCode) const;
sl@0
   127
	inline TBool IsWsFontOperation(TInt aOpCode) const;
sl@0
   128
	inline TBool IsDrawWsGraphicOperation(TInt aOpCode) const;
sl@0
   129
	inline TBool IsWsDrawableSourceOperation(TInt aOpCode) const;
sl@0
   130
	void ReplaceAndAppendCommandL(TInt aOpcode,const TAny* aCmdData);
sl@0
   131
	// CRedrawSegment related methods
sl@0
   132
	inline TInt CurrentCommandBufferWritePos() const;
sl@0
   133
	inline CBufSeg* CurrentDrawCommandBuffer() const;
sl@0
   134
	void ExpandCommandBufferL(TInt aLength);
sl@0
   135
	void CommandBufferWrite(const TDesC8& aDes, TInt aLength);
sl@0
   136
	void CommandBufferWrite(const TAny* aPtr,TInt aLength);
sl@0
   137
	void CreateNewSegmentL(const TRect& aRect, TRedrawSegmentType aRegionType);
sl@0
   138
	inline TBool InRedraw() const;
sl@0
   139
	void PromotePendingSegment();
sl@0
   140
	void Lock();
sl@0
   141
	void Unlock();
sl@0
   142
	void ReleaseRedrawSegments();
sl@0
   143
private:
sl@0
   144
	static TBool iAtomic;
sl@0
   145
	RPointerArray<CFbsBitmapRef> iFbsBitmapRefArray;
sl@0
   146
private:
sl@0
   147
	class CRedrawSegment : public CBase
sl@0
   148
		{
sl@0
   149
	public:
sl@0
   150
		static CRedrawSegment* NewLC(const TRect& aRect, TRedrawSegmentType aNewRegionType, CWsRedrawMsgWindow& aRedraw);
sl@0
   151
		~CRedrawSegment();
sl@0
   152
		void AddWsBitmapL(DWsBitmap* bitmap);
sl@0
   153
		void AddWsDrawableSourceL(CWsDrawableSource* aDrawableSource);
sl@0
   154
		void AddDrawerL(TGraphicDrawerId aDrawerId);
sl@0
   155
		TBool ContainsDrawers(const TArray<TGraphicDrawerId>& aDrawers,const TRegion& aRegion) const;
sl@0
   156
		TInt SizeInBytes() const;
sl@0
   157
		TBool AppendNonDuplicateBitmapHandleL(TInt aHandle);
sl@0
   158
	private:
sl@0
   159
		CRedrawSegment(CWsRedrawMsgWindow& aRedraw);
sl@0
   160
		void ConstructL(const TRect& aRect, TRedrawSegmentType aNewRegionType);
sl@0
   161
		void ReleaseFontsBitmapsDrawableSources();
sl@0
   162
	public:
sl@0
   163
		TRedrawSegmentType iRedrawSegmentType;
sl@0
   164
		CBufSeg* iDrawCommands;
sl@0
   165
		TInt iCurrentCommandBufferWritePos;
sl@0
   166
		RWsRegion iRegion;
sl@0
   167
		RPointerArray<DWsBitmap> iWsBitmapArray;
sl@0
   168
		RPointerArray<CWsFbsFont> iWsFontArray;
sl@0
   169
		RArray<TGraphicDrawerId> iDrawerArray;
sl@0
   170
		RPointerArray<CWsDrawableSource> iWsDrawableSourceArray;
sl@0
   171
		TTime iCreationTime;
sl@0
   172
	private:
sl@0
   173
	    CWsRedrawMsgWindow& iRedraw;
sl@0
   174
	    RArray<TInt> iBitmapHandleArray;
sl@0
   175
		};
sl@0
   176
	RWsRegion iInvalid; // Region we haven't been sent a begin redraw for.
sl@0
   177
	TRect iRedrawRect;
sl@0
   178
	TRgb iBackColor;
sl@0
   179
	TInt iFlags;
sl@0
   180
	// Regions currently in use for drawing this window:
sl@0
   181
	RPointerArray<CRedrawSegment> iRedrawSegments;
sl@0
   182
	// The segment we are currently storing to.  This is allowed to be null!
sl@0
   183
	CRedrawSegment * iCurrentSegment;
sl@0
   184
	// The last GC we drew with so we can detect changes
sl@0
   185
	CWsGc* iLastDrawGc;
sl@0
   186
	// During a scheduled draw, this is the area being drawn to (see comments on ReadRegion)
sl@0
   187
	RWsRegion iLocalRedrawRegion;
sl@0
   188
	TInt iMemoryLock;
sl@0
   189
	TBool iOSBStatus;
sl@0
   190
	};
sl@0
   191
sl@0
   192
inline TBool CWsRedrawMsgWindow::IsRemoteReadRequired(TInt aOpCode) const
sl@0
   193
	{
sl@0
   194
	return (aOpCode==EWsGcOpDrawTextPtr || aOpCode==EWsGcOpDrawTextVerticalPtr || 
sl@0
   195
		aOpCode==EWsGcOpDrawBoxTextPtr || aOpCode==EWsGcOpDrawBoxTextVerticalPtr);
sl@0
   196
	}
sl@0
   197
sl@0
   198
inline TInt CWsRedrawMsgWindow::CurrentCommandBufferWritePos() const
sl@0
   199
	{
sl@0
   200
	WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
sl@0
   201
	return iCurrentSegment->iCurrentCommandBufferWritePos;
sl@0
   202
	}
sl@0
   203
sl@0
   204
inline CBufSeg* CWsRedrawMsgWindow::CurrentDrawCommandBuffer() const
sl@0
   205
	{
sl@0
   206
	WS_ASSERT_DEBUG(iCurrentSegment, EWsPanicDrawCommandsInvalidState);
sl@0
   207
	return iCurrentSegment->iDrawCommands;
sl@0
   208
	}
sl@0
   209
sl@0
   210
inline TBool CWsRedrawMsgWindow::InRedraw() const
sl@0
   211
	{
sl@0
   212
	return iFlags&EBeginEndRedraw;
sl@0
   213
	}
sl@0
   214
	
sl@0
   215
inline TInt CFbsBitmapRef::RefCount() const
sl@0
   216
    {
sl@0
   217
    return iRefCount;
sl@0
   218
    }
sl@0
   219
sl@0
   220
inline void CFbsBitmapRef::IncRefCount()
sl@0
   221
    {
sl@0
   222
    ++iRefCount;
sl@0
   223
    }
sl@0
   224
sl@0
   225
inline void CFbsBitmapRef::DecRefCount()
sl@0
   226
    {
sl@0
   227
    WS_ASSERT_DEBUG(iRefCount>0,EWsPanicCounterValue);
sl@0
   228
    --iRefCount;
sl@0
   229
    }
sl@0
   230
	
sl@0
   231
#endif