os/graphics/windowing/windowserver/nga/SERVER/REDRAWQ.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) 1996-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
//
sl@0
    15
sl@0
    16
// Window server redraw queue handling
sl@0
    17
//
sl@0
    18
#include <e32std.h>
sl@0
    19
#include "server.h"
sl@0
    20
#include "rootwin.h"
sl@0
    21
#include "windowgroup.h"
sl@0
    22
#include "walkwindowtree.h"
sl@0
    23
#include "EVQUEUE.H"
sl@0
    24
#include "panics.h"
sl@0
    25
#include "wstop.h"
sl@0
    26
sl@0
    27
const TInt KGranularity = 10;
sl@0
    28
sl@0
    29
void TWsRedrawEvent::SetHandle(TUint aHandle)
sl@0
    30
	{
sl@0
    31
	iHandle=aHandle;
sl@0
    32
	}
sl@0
    33
sl@0
    34
void TWsRedrawEvent::SetRect(TRect aRect)
sl@0
    35
	{
sl@0
    36
	iRect=aRect;
sl@0
    37
	}
sl@0
    38
sl@0
    39
TWsRedrawEvent CRedrawQueue::iNullRedrawEvent;
sl@0
    40
sl@0
    41
CRedrawQueue::CRedrawQueue(CWsClient *aOwner) : CEventBase(aOwner)
sl@0
    42
	{
sl@0
    43
	__DECLARE_NAME(_S("CRedrawQueue"));
sl@0
    44
	}
sl@0
    45
sl@0
    46
void CRedrawQueue::ConstructL()
sl@0
    47
	{
sl@0
    48
	iRedrawTrigger=EFalse;
sl@0
    49
	iRedraws=new(ELeave) CArrayFixSeg<TRedraw>(KGranularity);
sl@0
    50
	iKeyPriority=new(ELeave) TKeyArrayFix(_FOFF(TRedraw,iPriority),ECmpTUint32);
sl@0
    51
	iKeyWindow=new(ELeave) TKeyArrayFix(_FOFF(TRedraw,iRedraw),ECmpTUint32);
sl@0
    52
	Mem::FillZ(&iNullRedrawEvent,sizeof(iNullRedrawEvent));
sl@0
    53
	}
sl@0
    54
sl@0
    55
CRedrawQueue::~CRedrawQueue()
sl@0
    56
	{
sl@0
    57
	delete iRedraws;
sl@0
    58
	delete iKeyPriority;
sl@0
    59
	delete iKeyWindow;
sl@0
    60
	}
sl@0
    61
sl@0
    62
void CRedrawQueue::ReCalcOrder()
sl@0
    63
	{
sl@0
    64
	const TInt redrawsCount=iRedraws->Count();
sl@0
    65
	for(TInt index=0;index<redrawsCount;index++)
sl@0
    66
		{
sl@0
    67
		TRedraw *redraw=&iRedraws->At(index);
sl@0
    68
		redraw->iPriority=static_cast<CWsClientWindow*>(redraw->iRedraw->WsWin())->RedrawPriority();
sl@0
    69
		}
sl@0
    70
	iRedraws->Sort(*iKeyPriority);
sl@0
    71
	}
sl@0
    72
sl@0
    73
void CRedrawQueue::AddInvalid(CWsWindowRedraw *aRedrawWin) 
sl@0
    74
//
sl@0
    75
// Add a window to the update list.
sl@0
    76
//
sl@0
    77
	{
sl@0
    78
	TInt index;
sl@0
    79
	TRedraw redraw;
sl@0
    80
sl@0
    81
	redraw.iRedraw=aRedrawWin;
sl@0
    82
	if (iRedraws->Find(redraw,*iKeyWindow,index)!=0)
sl@0
    83
		{
sl@0
    84
		redraw.iPriority=static_cast<CWsClientWindow*>(aRedrawWin->WsWin())->RedrawPriority();
sl@0
    85
		TRAPD(err,iRedraws->InsertIsqAllowDuplicatesL(redraw,*iKeyPriority));
sl@0
    86
		if (err!=KErrNone)
sl@0
    87
			{
sl@0
    88
			WS_ASSERT_DEBUG(err==KErrNoMemory,EWsPanicRedrawQueueError);
sl@0
    89
			iAllocError=ETrue;
sl@0
    90
			}
sl@0
    91
		iRedrawTrigger=ETrue;
sl@0
    92
		}
sl@0
    93
	}
sl@0
    94
sl@0
    95
void CRedrawQueue::DeleteFromQueue(TInt aIndex)
sl@0
    96
	{
sl@0
    97
	iRedraws->Delete(aIndex,1);
sl@0
    98
sl@0
    99
	//We are certain we will need iRedraws again, so it would be silly to compress away the last KGranularity slots.
sl@0
   100
	const TInt count = iRedraws->Count();
sl@0
   101
	if((count >= KGranularity) && (count % KGranularity == 0))
sl@0
   102
		{
sl@0
   103
		iRedraws->Compress();
sl@0
   104
		}
sl@0
   105
	}
sl@0
   106
sl@0
   107
void CRedrawQueue::RemoveInvalid(CWsWindowRedraw *aRedrawWin)
sl@0
   108
//
sl@0
   109
// remove the window from the invalid window list.
sl@0
   110
// harmless to call if the window is not in the list.
sl@0
   111
//
sl@0
   112
	{
sl@0
   113
	TInt index;
sl@0
   114
	TRedraw redraw;
sl@0
   115
sl@0
   116
	redraw.iRedraw=aRedrawWin;
sl@0
   117
	redraw.iPriority=0;
sl@0
   118
	if ((iRedraws->Find(redraw,*iKeyWindow,index))==KErrNone)
sl@0
   119
		DeleteFromQueue(index);
sl@0
   120
	}
sl@0
   121
sl@0
   122
TBool CRedrawQueue::TriggerRedraw()
sl@0
   123
//
sl@0
   124
// Trigger any pending redraw messages in the queue
sl@0
   125
// Returns ETrue if a redraw was sent, EFalse if not.
sl@0
   126
//
sl@0
   127
	{
sl@0
   128
	TBool ret=EFalse;
sl@0
   129
	if (iRedrawTrigger)
sl@0
   130
		{
sl@0
   131
		iRedrawTrigger=EFalse;
sl@0
   132
		if (!iEventMsg.IsNull() && (iRedraws->Count()>0 || iAllocError))
sl@0
   133
			{
sl@0
   134
			SignalEvent();
sl@0
   135
			ret=ETrue;
sl@0
   136
			}
sl@0
   137
		}
sl@0
   138
	return(ret);
sl@0
   139
	}
sl@0
   140
sl@0
   141
void CRedrawQueue::EventReady(const RMessagePtr2& aEventMsg)
sl@0
   142
//
sl@0
   143
// Queue a read of an event from the queue
sl@0
   144
//
sl@0
   145
	{
sl@0
   146
	CEventBase::EventReady(aEventMsg);
sl@0
   147
	iRedrawTrigger=ETrue;
sl@0
   148
	TriggerRedraw();
sl@0
   149
	}
sl@0
   150
sl@0
   151
TBool CRedrawQueue::FindOutstandingRedrawEvent(CWsWindowRedraw& aRedraw, TWsRedrawEvent& aEvent)
sl@0
   152
	{
sl@0
   153
	TRect rect;
sl@0
   154
	if (aRedraw.GetRedrawRect(rect))
sl@0
   155
		{
sl@0
   156
		aEvent.SetRect(rect);
sl@0
   157
		aEvent.SetHandle(aRedraw.WsWin()->ClientHandle());
sl@0
   158
		CEventBase::GetData(&aEvent,sizeof(aEvent));
sl@0
   159
		return ETrue;
sl@0
   160
		}
sl@0
   161
	return EFalse;
sl@0
   162
	}
sl@0
   163
sl@0
   164
TBool CRedrawQueue::FindWindowNeedingRedrawEvent(TWsRedrawEvent& aEvent)
sl@0
   165
	{
sl@0
   166
#if defined(_DEBUG)
sl@0
   167
	CWsWindowRedraw* previousRedraw = NULL;
sl@0
   168
#endif
sl@0
   169
	// search all screens
sl@0
   170
	TInt invalidWindows = 0;
sl@0
   171
	for (TInt screenNo = 0; screenNo < CWsTop::NumberOfScreens(); ++screenNo)
sl@0
   172
		{
sl@0
   173
		const CScreen* screen = CWsTop::Screen(screenNo);
sl@0
   174
		WS_ASSERT_ALWAYS(screen, EWsPanicNoScreen);
sl@0
   175
		CWsRootWindow* rootWindow = screen->RootWindow();
sl@0
   176
		for (CWsWindowGroup *groupWin = rootWindow->Child(); groupWin; groupWin = groupWin->NextSibling())
sl@0
   177
			{
sl@0
   178
			if (groupWin->WsOwner() == iWsOwner)
sl@0
   179
				{
sl@0
   180
				CWsWindowRedraw* redrawWin = NULL;
sl@0
   181
				// use a window tree walk that can be resumed to find windows with an invalid region
sl@0
   182
				TResumableWalkWindowTreeFindInvalid wwt(&redrawWin);
sl@0
   183
				groupWin->WalkWindowTree(wwt, EWalkChildren, EFalse);
sl@0
   184
				while (redrawWin != NULL)
sl@0
   185
					{
sl@0
   186
					WS_ASSERT_DEBUG(redrawWin != previousRedraw, EWsPanicRedrawQueueError);
sl@0
   187
					// (the window may not actually need the client to redraw it, e.g. a CWsBlankWindow can redraw itself)
sl@0
   188
					if (FindOutstandingRedrawEvent(*redrawWin, aEvent))
sl@0
   189
						{
sl@0
   190
						return ETrue;
sl@0
   191
						}
sl@0
   192
					else
sl@0
   193
						{ // continue the Tree Walk
sl@0
   194
#if defined(_DEBUG)
sl@0
   195
						previousRedraw = redrawWin;
sl@0
   196
#endif
sl@0
   197
						if (redrawWin->NeedsRedraw())
sl@0
   198
							{ // needs to be redrawn later?
sl@0
   199
							++invalidWindows;
sl@0
   200
							}
sl@0
   201
						redrawWin = NULL;
sl@0
   202
						groupWin->WalkWindowTree(wwt, EWalkChildren, ETrue);
sl@0
   203
						}
sl@0
   204
					}
sl@0
   205
				}
sl@0
   206
			}
sl@0
   207
		}
sl@0
   208
sl@0
   209
	if (invalidWindows == 0)
sl@0
   210
		{ // error recovery is complete
sl@0
   211
		iAllocError = 0;
sl@0
   212
		}
sl@0
   213
	return EFalse;
sl@0
   214
	}
sl@0
   215
sl@0
   216
void CRedrawQueue::GetData()
sl@0
   217
//
sl@0
   218
// If there is an outstanding redraw event in the queue, reply with it's data
sl@0
   219
//
sl@0
   220
	{
sl@0
   221
	CWsWindowRedraw *redraw;
sl@0
   222
	TWsRedrawEvent event;
sl@0
   223
sl@0
   224
	while (iRedraws->Count()>0)
sl@0
   225
		{
sl@0
   226
		redraw=(*iRedraws)[0].iRedraw;
sl@0
   227
		if (FindOutstandingRedrawEvent(*redraw,event))
sl@0
   228
			{
sl@0
   229
			return;
sl@0
   230
			}
sl@0
   231
		TInt toDelete=0;
sl@0
   232
		if (redraw!=(*iRedraws)[0].iRedraw)
sl@0
   233
			{		//In low memory conditions calls to FindOutstandingRedrawEvent can cause extra entries to be added to the array
sl@0
   234
			TRedraw redrawFind;
sl@0
   235
			redrawFind.iRedraw=redraw;
sl@0
   236
			iRedraws->Find(redrawFind,*iKeyWindow,toDelete);
sl@0
   237
			}
sl@0
   238
		DeleteFromQueue(toDelete);
sl@0
   239
		}
sl@0
   240
sl@0
   241
	if (iAllocError && FindWindowNeedingRedrawEvent(event))
sl@0
   242
		{
sl@0
   243
		return;
sl@0
   244
		}
sl@0
   245
sl@0
   246
	CEventBase::GetData(&iNullRedrawEvent,sizeof(iNullRedrawEvent));
sl@0
   247
	}
sl@0
   248
sl@0
   249
TUint CRedrawQueue::RedrawPriority(CWsWindowRedraw *aRedrawWin)
sl@0
   250
	{
sl@0
   251
	TInt index;
sl@0
   252
	TRedraw redraw;
sl@0
   253
	TUint priority=0;
sl@0
   254
	redraw.iRedraw=aRedrawWin;
sl@0
   255
sl@0
   256
	if ((iRedraws->Find(redraw,*iKeyWindow,index))==KErrNone)
sl@0
   257
		{
sl@0
   258
		priority=iRedraws->At(index).iPriority;
sl@0
   259
		}
sl@0
   260
	return priority;
sl@0
   261
	}