First public contribution.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Window server redraw queue handling
21 #include "windowgroup.h"
22 #include "walkwindowtree.h"
27 const TInt KGranularity = 10;
29 void TWsRedrawEvent::SetHandle(TUint aHandle)
34 void TWsRedrawEvent::SetRect(TRect aRect)
39 TWsRedrawEvent CRedrawQueue::iNullRedrawEvent;
41 CRedrawQueue::CRedrawQueue(CWsClient *aOwner) : CEventBase(aOwner)
43 __DECLARE_NAME(_S("CRedrawQueue"));
46 void CRedrawQueue::ConstructL()
48 iRedrawTrigger=EFalse;
49 iRedraws=new(ELeave) CArrayFixSeg<TRedraw>(KGranularity);
50 iKeyPriority=new(ELeave) TKeyArrayFix(_FOFF(TRedraw,iPriority),ECmpTUint32);
51 iKeyWindow=new(ELeave) TKeyArrayFix(_FOFF(TRedraw,iRedraw),ECmpTUint32);
52 Mem::FillZ(&iNullRedrawEvent,sizeof(iNullRedrawEvent));
55 CRedrawQueue::~CRedrawQueue()
62 void CRedrawQueue::ReCalcOrder()
64 const TInt redrawsCount=iRedraws->Count();
65 for(TInt index=0;index<redrawsCount;index++)
67 TRedraw *redraw=&iRedraws->At(index);
68 redraw->iPriority=static_cast<CWsClientWindow*>(redraw->iRedraw->WsWin())->RedrawPriority();
70 iRedraws->Sort(*iKeyPriority);
73 void CRedrawQueue::AddInvalid(CWsWindowRedraw *aRedrawWin)
75 // Add a window to the update list.
81 redraw.iRedraw=aRedrawWin;
82 if (iRedraws->Find(redraw,*iKeyWindow,index)!=0)
84 redraw.iPriority=static_cast<CWsClientWindow*>(aRedrawWin->WsWin())->RedrawPriority();
85 TRAPD(err,iRedraws->InsertIsqAllowDuplicatesL(redraw,*iKeyPriority));
88 WS_ASSERT_DEBUG(err==KErrNoMemory,EWsPanicRedrawQueueError);
95 void CRedrawQueue::DeleteFromQueue(TInt aIndex)
97 iRedraws->Delete(aIndex,1);
99 //We are certain we will need iRedraws again, so it would be silly to compress away the last KGranularity slots.
100 const TInt count = iRedraws->Count();
101 if((count >= KGranularity) && (count % KGranularity == 0))
103 iRedraws->Compress();
107 void CRedrawQueue::RemoveInvalid(CWsWindowRedraw *aRedrawWin)
109 // remove the window from the invalid window list.
110 // harmless to call if the window is not in the list.
116 redraw.iRedraw=aRedrawWin;
118 if ((iRedraws->Find(redraw,*iKeyWindow,index))==KErrNone)
119 DeleteFromQueue(index);
122 TBool CRedrawQueue::TriggerRedraw()
124 // Trigger any pending redraw messages in the queue
125 // Returns ETrue if a redraw was sent, EFalse if not.
131 iRedrawTrigger=EFalse;
132 if (!iEventMsg.IsNull() && (iRedraws->Count()>0 || iAllocError))
141 void CRedrawQueue::EventReady(const RMessagePtr2& aEventMsg)
143 // Queue a read of an event from the queue
146 CEventBase::EventReady(aEventMsg);
147 iRedrawTrigger=ETrue;
151 TBool CRedrawQueue::FindOutstandingRedrawEvent(CWsWindowRedraw& aRedraw, TWsRedrawEvent& aEvent)
154 if (aRedraw.GetRedrawRect(rect))
156 aEvent.SetRect(rect);
157 aEvent.SetHandle(aRedraw.WsWin()->ClientHandle());
158 CEventBase::GetData(&aEvent,sizeof(aEvent));
164 TBool CRedrawQueue::FindWindowNeedingRedrawEvent(TWsRedrawEvent& aEvent)
167 CWsWindowRedraw* previousRedraw = NULL;
169 // search all screens
170 TInt invalidWindows = 0;
171 for (TInt screenNo = 0; screenNo < CWsTop::NumberOfScreens(); ++screenNo)
173 const CScreen* screen = CWsTop::Screen(screenNo);
174 WS_ASSERT_ALWAYS(screen, EWsPanicNoScreen);
175 CWsRootWindow* rootWindow = screen->RootWindow();
176 for (CWsWindowGroup *groupWin = rootWindow->Child(); groupWin; groupWin = groupWin->NextSibling())
178 if (groupWin->WsOwner() == iWsOwner)
180 CWsWindowRedraw* redrawWin = NULL;
181 // use a window tree walk that can be resumed to find windows with an invalid region
182 TResumableWalkWindowTreeFindInvalid wwt(&redrawWin);
183 groupWin->WalkWindowTree(wwt, EWalkChildren, EFalse);
184 while (redrawWin != NULL)
186 WS_ASSERT_DEBUG(redrawWin != previousRedraw, EWsPanicRedrawQueueError);
187 // (the window may not actually need the client to redraw it, e.g. a CWsBlankWindow can redraw itself)
188 if (FindOutstandingRedrawEvent(*redrawWin, aEvent))
193 { // continue the Tree Walk
195 previousRedraw = redrawWin;
197 if (redrawWin->NeedsRedraw())
198 { // needs to be redrawn later?
202 groupWin->WalkWindowTree(wwt, EWalkChildren, ETrue);
209 if (invalidWindows == 0)
210 { // error recovery is complete
216 void CRedrawQueue::GetData()
218 // If there is an outstanding redraw event in the queue, reply with it's data
221 CWsWindowRedraw *redraw;
222 TWsRedrawEvent event;
224 while (iRedraws->Count()>0)
226 redraw=(*iRedraws)[0].iRedraw;
227 if (FindOutstandingRedrawEvent(*redraw,event))
232 if (redraw!=(*iRedraws)[0].iRedraw)
233 { //In low memory conditions calls to FindOutstandingRedrawEvent can cause extra entries to be added to the array
235 redrawFind.iRedraw=redraw;
236 iRedraws->Find(redrawFind,*iKeyWindow,toDelete);
238 DeleteFromQueue(toDelete);
241 if (iAllocError && FindWindowNeedingRedrawEvent(event))
246 CEventBase::GetData(&iNullRedrawEvent,sizeof(iNullRedrawEvent));
249 TUint CRedrawQueue::RedrawPriority(CWsWindowRedraw *aRedrawWin)
254 redraw.iRedraw=aRedrawWin;
256 if ((iRedraws->Find(redraw,*iKeyWindow,index))==KErrNone)
258 priority=iRedraws->At(index).iPriority;