First public contribution.
1 // Copyright (c) 1994-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.
14 // Window server event queue handling
26 GLREF_D CDebugLogBase *wsDebugLog;
29 #define __CHECK_QUEUE() CheckQueue()
30 #define __ZAP_EVENTS(pointer,len) ZapEvents(pointer,len)
31 #define __ZAP_EVENT(pointer) ZapEvent(pointer)
33 #define __CHECK_QUEUE()
34 #define __ZAP_EVENTS(pointer,len)
35 #define __ZAP_EVENT(pointer)
38 const TInt ECopyBufSize=4;
40 TDblQue<CEventQueue> CEventQueue::iQueueList(_FOFF(CEventQueue,iLink));
41 TWsEvent *CEventQueue::iGlobalEventQueue=NULL;
42 TInt CEventQueue::iGlobalEventQueueSize=0;
43 TInt CEventQueue::iNumConnections=0;
44 RMutex CEventQueue::iMutex;
45 TWsEvent CEventQueue::iNullEvent;
49 CEventBase::~CEventBase()
51 if (!iEventMsg.IsNull() && CWsTop::ShuttingDown())
53 iEventMsg.Complete(KErrServerTerminated);
57 CEventBase::CEventBase(CWsClient *aOwner) : iWsOwner(aOwner)
61 void CEventBase::SignalEvent(TInt aCode)
64 wsDebugLog->SignalEvent(iWsOwner->ConnectionHandle());
65 iEventMsg.Complete(aCode);
66 iEventSignalledState|=EEventFlagSignalled;
69 inline TBool CEventBase::IsEventCancelled()
71 return (iEventSignalledState & EEventFlagCancelled);
74 void CEventBase::CancelRead()
76 // If there is an outstanding read cancel it.
79 if (!iEventMsg.IsNull())
81 iEventMsg.Complete(KErrCancel);
83 iEventSignalledState|=EEventFlagCancelled;
86 void CEventBase::GetData(TAny *aData, TInt aLen)
88 if (!(iEventSignalledState&EEventFlagSignalled))
90 iWsOwner->PPanic(EWservPanicUnsignalledEventData);
92 iEventSignalledState&=~EEventFlagSignalled;
93 CWsClient::ReplyBuf(aData,aLen);
96 void CEventBase::EventReadyCheck()
98 // Queue a read of an event notification
101 if ((iEventSignalledState&EEventFlagSignalled && !(iEventSignalledState&EEventFlagCancelled)) || !iEventMsg.IsNull())
103 iWsOwner->PPanic(EWservPanicReadOutstanding);
107 void CEventBase::EventReady(const RMessagePtr2& aEventMsg)
113 // CEventQueue - Queue organisation functions
116 void CEventQueue::CheckQueue()
118 TDblQueIter<CEventQueue> iter(iQueueList);
121 while((qptr=iter++)!=NULL)
123 WS_ASSERT_DEBUG(qptr->iQueueSize>=0 && qptr->iQueueSize<=iGlobalEventQueueSize, EWsPanicCheckEventQueue);
124 WS_ASSERT_DEBUG(qptr->iQueueSize==0 || qptr->iHead<qptr->iQueueSize, EWsPanicCheckEventQueue);
125 WS_ASSERT_DEBUG(qptr->iCount<=qptr->iQueueSize, EWsPanicCheckEventQueue);
126 WS_ASSERT_DEBUG(qptr->iEventPtr>=iGlobalEventQueue && qptr->iEventPtr<=(iGlobalEventQueue+iGlobalEventQueueSize), EWsPanicCheckEventQueue);
128 for(TInt index=0;index<iCount;index++)
130 TWsEvent *ev=EventPtr(index);
131 WS_ASSERT_DEBUG(ev->Type()!=EEventMarkInvalid, EWsPanicCheckEventQueue);
135 void CEventQueue::ZapEvent(TWsEvent *aTarget)
137 aTarget->SetType(EEventMarkInvalid);
138 aTarget->SetHandle(555);
141 void CEventQueue::ZapEvents(TWsEvent *aTarget, TInt aLen)
143 for(TInt index=0;index<aLen;index++)
144 ZapEvent(aTarget+index);
149 void CEventQueue::EventCopy(TWsEvent *aTarget, TWsEvent *aSource, TInt aNumEvents)
151 WS_ASSERT_DEBUG(aTarget>=iGlobalEventQueue, EWsPanicEventQueueCopy);
152 WS_ASSERT_DEBUG((aTarget+aNumEvents)<=(iGlobalEventQueue+iGlobalEventQueueSize), EWsPanicEventQueueCopy);
153 Mem::Copy(aTarget,aSource,aNumEvents*sizeof(TWsEvent));
156 TInt CEventQueue::RequiredQueueSize(TInt aNumConnections)
158 return(aNumConnections*EMinQueueSize+EMaxQueueSize+EExtraQueueSize);
162 Adjust the Global Queue Size.
163 @param aNewSize the size for event queue.
165 void CEventQueue::AdjustQueueSizeL(TInt aNewSize)
167 TWsEvent* oldQ=iGlobalEventQueue;
168 if (aNewSize < iGlobalEventQueueSize)
170 // Re-alloc wont move the cell down to a lower address, this means once this cell is
171 // high up in memory it may never move down again, thus wasting loads of global heap space.
172 const CEventQueue* last=iQueueList.Last();
173 if ((last->iEventPtr + last->iQueueSize) >= (iGlobalEventQueue + aNewSize))
177 TInt allocSize = aNewSize * sizeof(TWsEvent);
178 iGlobalEventQueue=static_cast<TWsEvent*>(User::AllocL(allocSize));
179 Mem::Copy(iGlobalEventQueue,oldQ,allocSize);
184 iGlobalEventQueue = static_cast<TWsEvent*>(User::ReAllocL(iGlobalEventQueue, aNewSize * sizeof(TWsEvent)));
186 __ZAP_EVENTS(iGlobalEventQueue + iGlobalEventQueueSize, aNewSize - iGlobalEventQueueSize);
187 iGlobalEventQueueSize = aNewSize;
188 // coverity[use_after_free]
189 TInt diff=(reinterpret_cast<TInt8*>(iGlobalEventQueue)-reinterpret_cast<TInt8*>(oldQ));
192 TDblQueIter<CEventQueue> iter(iQueueList);
194 while((qptr=iter++)!=NULL)
196 qptr->iEventPtr=reinterpret_cast<TWsEvent*>(reinterpret_cast<TInt8*>(qptr->iEventPtr)+diff);
201 void CEventQueue::AddQueueL()
204 if ((iNumConnections%EQueueGranularity)==0)
206 const TInt newSize = RequiredQueueSize(iNumConnections + EQueueGranularity);
207 TRAPD(err,AdjustQueueSizeL(newSize));
216 if (iQueueList.IsEmpty())
217 iEventPtr=iGlobalEventQueue;
220 CEventQueue *qptr=iQueueList.Last();
221 iEventPtr=qptr->iEventPtr+qptr->iQueueSize;
223 iQueueList.AddLast(*this);
225 //Initialize the queue size to at least EMinQueueSize
226 //Check the queue by doing standard queue compression.
227 TBool isExpanded = ETrue;
228 do {isExpanded = Expand(EEventPriorityLow);} while ((iQueueSize < EMinQueueSize) && isExpanded);
229 while (iQueueSize < EMinQueueSize)
231 //Cannot get enough spaces by doing standard queue compression,
232 //try to grow the global queue.
233 TInt sizeRequired = EMinQueueSize - iQueueSize;
234 const TInt newSize = iGlobalEventQueueSize + sizeRequired;
235 TRAPD(err, AdjustQueueSizeL(newSize));
238 //Cannot get enough spaces by growing global queue.
239 //try to purge the oldest events from inactive clients.
240 TInt numEventCleared = PurgeInactiveEvents(sizeRequired);
241 if (numEventCleared == 0)
248 while (doExpand(ECompressNoPurge)) {};
254 void CEventQueue::RemoveQueue()
257 if (iEventPtr) // If this is still NULL this class hasn't been linked into the Q list
259 __ZAP_EVENTS(iEventPtr, iQueueSize);
261 if (--iNumConnections==0)
263 User::Free(iGlobalEventQueue);
264 iGlobalEventQueue=NULL;
265 iGlobalEventQueueSize=0;
267 else if ((iNumConnections%EQueueGranularity)==0)
269 TDblQueIter<CEventQueue> iter(iQueueList);
270 CEventQueue* qptr=iter++;
271 qptr->Compress(ECompressNoPurge);
272 while((qptr=iter++)!=NULL)
276 const TInt newSize = RequiredQueueSize(iNumConnections);
277 TRAP_IGNORE(AdjustQueueSizeL(newSize));
278 // Can easily leave as we need to allocate the new smaller queue before freeing
279 // the old queue. But if it does it doesn't matter as we'll simply be left with
280 // a larger than necessary buffer until the next realloc
288 void CEventQueue::IncreaseQueueSize(TInt aNumSpaces)
290 if ((iQueueSize+aNumSpaces)>EMaxQueueSize)
291 aNumSpaces=EMaxQueueSize-iQueueSize;
292 EventCopy(iEventPtr+iHead+aNumSpaces, iEventPtr+iHead, iQueueSize-iHead);
293 __ZAP_EVENTS(iEventPtr+iHead, aNumSpaces);
294 iQueueSize+=aNumSpaces;
295 iHead=(iHead+aNumSpaces)%iQueueSize;
298 TBool CEventQueue::Expand(TWservEventPriorities aPriority)
300 if (iQueueSize==EMaxQueueSize)
302 if (aPriority==EEventPriorityHigh)
305 if (iCount<iQueueSize)
306 return(ETrue); // Success!
309 else if (doExpand(ECompressNoPurge) ||
310 doExpand(ECompressPurge1) ||
311 (aPriority==EEventPriorityHigh && doExpand(ECompressPurge2)))
313 return(EFalse); // Failure
316 TBool CEventQueue::doExpand(TCompressMode aCompressMode)
318 TDblQueIter<CEventQueue> iter(iQueueList);
320 CEventQueue* qptr=NULL;
323 // while loop from last queue till current queue, moving all queues up
324 // to get all the space from between them
325 while((qptr=iter)!=this)
327 spare=qptr->SqueezeUp();
329 qptr->Compress(aCompressMode);
333 // current queue, if we have space then expand the same and return
334 spare=FollowingGap();
337 IncreaseQueueSize(spare);
342 // while loop from current queue till first queue, looking for a gap
343 // between queues and using the first one it finds
346 while((qptr=iter)!=NULL)
348 expanded=qptr->SqueezeUp();
351 return MoveDownAndExpand(iter, expanded);
354 qptr->Compress(aCompressMode);
358 // Even by doing all the above if we did not find space then check if first
359 // queue has some space before it. If so then make use of it and movedown all the
360 // queue till the current queue and then use the space for expansion
363 if (qptr->iEventPtr>iGlobalEventQueue)
365 return MoveDownAndExpand(iter, qptr->iEventPtr-iGlobalEventQueue);
369 return(EFalse); // Failed to expand enough room
372 // This function moves the queue down by given amount and repeats this until
373 // the current queue and then expand the same
374 TBool CEventQueue::MoveDownAndExpand(TDblQueIter<CEventQueue> &aIter, TInt aExpand)
376 CEventQueue* qptr=NULL;
380 qptr->MoveDown(aExpand);
383 IncreaseQueueSize(aExpand);
391 void CEventQueue::MoveDown(TInt aMove)
397 EventCopy(iEventPtr-aMove,iEventPtr,iQueueSize);
401 /*void CEventQueue::LogUpDownEvents(TChar aChar)
412 for (index=0;index<iCount;index++)
414 event=EventPtr(index);
415 if (event->Type()==EEventPointer)
417 if (event->Pointer()->iType==TPointerEvent::EButton1Down
418 || event->Pointer()->iType==TPointerEvent::EButton1Up)
421 if (event->Pointer()->iType==TPointerEvent::EButton1Down)
425 buf.AppendNum(index);
430 wsDebugLog->MiscMessage(ELogImportant,buf);
433 void CEventQueue::Purge()
435 // Purgable events are:
436 // Pointer Up/Down pairs
437 // Pointer moves & drags
440 // Key Ups if not foreground connection
441 // Focus lost/gained pairs
443 // Events that must no be purged
444 // Key ups for foreground connections queue
445 // Lone pointer ups, must be delivered to match preceeding pointer down
446 // Lone focus lost/gained messages
454 event=EventPtr(--index);
455 switch(event->Type())
459 case EEventMarkInvalid:
461 WS_PANIC_DEBUG(EWsPanicCheckEventQueue);
465 case EEventPointerEnter:
466 case EEventPointerExit:
468 breakLoopAndRemoveEvent:
472 if (iQueueList.First()!=this)
473 goto breakLoopAndRemoveEvent;
476 if (iQueueList.First()!=this)
477 goto breakLoopAndRemoveEvent;
478 for (index2=index+1;index2<iCount;index2++)
480 event2=EventPtr(index2);
481 if (event2->Type()==EEventKeyUp && event2->Key()->iScanCode==event->Key()->iScanCode)
484 goto breakLoopAndRemoveEvent;
488 case EEventModifiersChanged:
489 for (index2=index;index2>0;)
491 event2=EventPtr(--index2);
492 if (event2->Type()==EEventModifiersChanged)
494 event->ModifiersChanged()->iChangedModifiers|=event2->ModifiersChanged()->iChangedModifiers;
496 goto breakLoopAndRemoveEvent;
500 case EEventPointerBufferReady:
501 CWsPointerBuffer::DiscardPointerMoveBuffer(event->Handle());
502 goto breakLoopAndRemoveEvent;
503 case EEventFocusLost:
504 case EEventFocusGained:
505 if ((index+1)<iCount)
507 event2=EventPtr(index+1);
508 if (event2->Type()==EEventFocusLost || event2->Type()==EEventFocusGained)
511 goto breakLoopAndRemoveEvent;
516 if ((index+1)<iCount && EventPtr(index+1)->Type()==EEventSwitchOn)
517 goto breakLoopAndRemoveEvent;
521 TPointerEvent::TType upType;
522 switch(event->Pointer()->iType)
524 case TPointerEvent::EDrag:
525 case TPointerEvent::EMove:
526 case TPointerEvent::EButtonRepeat:
527 case TPointerEvent::ESwitchOn:
528 goto breakLoopAndRemoveEvent;
529 case TPointerEvent::EButton1Down:
530 upType=TPointerEvent::EButton1Up;
532 case TPointerEvent::EButton2Down:
533 upType=TPointerEvent::EButton2Up;
535 case TPointerEvent::EButton3Down:
536 upType=TPointerEvent::EButton3Up;
537 purgeDownUp: for (index2=index+1;index2<iCount;index2++)
539 event2=EventPtr(index2);
540 if (event2->Type()==EEventPointer && event2->Handle()==event->Handle() && event2->Pointer()->iType==upType)
543 goto breakLoopAndRemoveEvent;
546 WsPointer::UnmatchedDownPurged(upType, event->Handle());
547 goto breakLoopAndRemoveEvent;
548 case TPointerEvent::EButton1Up:
549 case TPointerEvent::EButton2Up:
550 case TPointerEvent::EButton3Up:
559 void CEventQueue::PurgePointerEvents()
567 event=EventPtr(--index);
568 switch(event->Type())
570 case EEventPointerBufferReady:
571 CWsPointerBuffer::DiscardPointerMoveBuffer(event->Handle());
576 TPointerEvent::TType upType;
577 switch(event->Pointer()->iType)
579 case TPointerEvent::EDrag:
580 case TPointerEvent::EMove:
581 case TPointerEvent::EButtonRepeat:
582 case TPointerEvent::ESwitchOn:
585 case TPointerEvent::EButton1Down:
586 upType=TPointerEvent::EButton1Up;
588 case TPointerEvent::EButton2Down:
589 upType=TPointerEvent::EButton2Up;
591 case TPointerEvent::EButton3Down:
592 upType=TPointerEvent::EButton3Up;
593 purgeDownUp2: for (index2=index+1;index2<iCount;index2++)
595 event2=EventPtr(index2);
596 if (event2->Type()==EEventPointer && event2->Handle()==event->Handle() && event2->Pointer()->iType==upType)
602 WsPointer::UnmatchedDownPurged(upType, event->Handle());
603 purgedUp: RemoveEvent(index);
605 case TPointerEvent::EButton1Up:
606 case TPointerEvent::EButton2Up:
607 case TPointerEvent::EButton3Up:
617 Purge requested number of oldest events from inactive event queue.
618 @param aSizeRequired the total events required to be cleared.
619 @return The number of events cleared.
621 TInt CEventQueue::PurgeInactiveEvents(const TInt& aSizeRequired)
623 TInt numEventsCleared = 0;
627 TDblQueIter<CEventQueue> iter(iQueueList);
629 while ((qptr = iter++) != NULL && (aSizeRequired > numEventsCleared))
631 if ((qptr->IsEventCancelled() || (qptr->iEventMsg.IsNull() && !qptr->iEventSignalledState)) &&
632 (qptr->iQueueSize > EMinQueueSize))
634 // we have a client that is not listening with a size larger than min queue size.
635 // so lets remove it's oldest event until the number of removed events meet the requirement.
636 qptr->RemoveEvent(0);
641 } while ((aSizeRequired > numEventsCleared) && isRemoved);
642 return numEventsCleared;
645 void CEventQueue::Compress(TCompressMode aCompressMode)
648 // The different purge modes are
650 // ECompressNoPurge, // Don't purge anything
651 // ECompressPurge1, // Don't purge foreground queue
652 // ECompressPurge2, // Purge all queues
654 if (aCompressMode==ECompressPurge2 ||
655 (this!=iQueueList.First() && aCompressMode==ECompressPurge1))
657 TInt compress=iQueueSize-(iCount>EMinQueueSize?iCount:EMinQueueSize);
660 compress=(compress+1)/2; // Compress half the free space in the queue
661 TWsEvent *head=EventPtr(0);
662 TWsEvent *tail=EventPtr(iCount);
665 EventCopy(iEventPtr+compress,iEventPtr,tail-iEventPtr);
670 EventCopy(iEventPtr+compress,head,iCount);
674 iQueueSize-=compress;
678 void CEventQueue::MoveUp(TInt aNumEvents)
684 EventCopy(iEventPtr+aNumEvents,iEventPtr,iQueueSize);
685 iEventPtr+=aNumEvents;
688 TInt CEventQueue::FollowingGap() const
690 TDblQueIter<CEventQueue> iter(iQueueList);
692 iter.Set(*(CEventQueue *)this);
695 if ((qptr=iter)!=NULL)
698 end=iGlobalEventQueue+iGlobalEventQueueSize;
699 return(end-(iEventPtr+iQueueSize));
702 TInt CEventQueue::SqueezeUp()
704 TInt gap=FollowingGap();
709 void CEventQueue::SqueezeDown()
711 TDblQueIter<CEventQueue> iter(iQueueList);
714 CEventQueue *qptr=iter;
717 Compress(ECompressNoPurge);
718 TInt gap=qptr->FollowingGap();
723 void CEventQueue::MoveToFront()
725 if (this==iQueueList.First())
730 TDblQueIter<CEventQueue> iter(iQueueList);
732 while((qptr=iter--)!=NULL)
735 qptr->Compress(ECompressNoPurge);
736 gap=qptr->SqueezeUp();
739 EventCopy(iGlobalEventQueue,iEventPtr,iQueueSize);
742 EventCopy(iGlobalEventQueue,iEventPtr,gap);
744 TWsEvent copyBuf[ECopyBufSize]; // temp buffer, can copy upto ECopyBufSize events at a time
745 TInt eventsToGo=iQueueSize-gap;
749 TInt copy=Min(eventsToGo,ECopyBufSize);
750 Mem::Copy(©Buf[0],iEventPtr,copy*sizeof(TWsEvent));
753 while((qptr=iter--)!=NULL)
755 EventCopy(iGlobalEventQueue+iQueueSize,©Buf[0],copy);
759 } while(eventsToGo>0);
761 iEventPtr=iGlobalEventQueue;
763 iQueueList.AddFirst(*this);
770 CEventQueue::CEventQueue(CWsClient *aOwner) : CEventBase(aOwner)
772 __DECLARE_NAME(_S("CEventQueue"));
775 CEventQueue::~CEventQueue()
780 void CEventQueue::InitStaticsL()
782 User::LeaveIfError(iMutex.CreateLocal());
785 void CEventQueue::DeleteStaticsL()
790 void CEventQueue::ConstructL()
793 Mem::FillZ(&iNullEvent,sizeof(iNullEvent));
796 TWsEvent *CEventQueue::EventPtr(TInt index)
798 return(iEventPtr+((iHead+index)%iQueueSize));
801 TBool CEventQueue::QueueEvent(const TWsEvent &event)
803 TWservEventPriorities priority=EEventPriorityLow;
804 #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP
805 if (event.Type()==EEventPassword || event.Type()==EEventSwitchOff ||
806 event.Type()==EEventKeySwitchOff || event.Type()==EEventRestartSystem)
808 if (event.Type()==EEventPassword || event.Type()==EEventSwitchOff || event.Type()==EEventKeySwitchOff)
811 priority=EEventPriorityHigh;
813 return(QueueEvent(event,priority));
816 TBool CEventQueue::CheckRoom()
818 // If the queue is full and room is created return ETrue
823 if (iCount==iQueueSize && Expand(EEventPriorityHigh))
829 TBool CEventQueue::QueueEvent(const TWsEvent &event, TWservEventPriorities aPriority)
831 // Queue an event, returns ETrue if queued or delivered, EFalse if the queue was full.
834 WS_TRACE_SERVER_QUEUEEVENT();
837 if (iCount==iQueueSize && !Expand(aPriority))
841 if (!iEventMsg.IsNull())
845 *EventPtr(iCount++)=event;
851 TBool CEventQueue::QueueEvent(TUint32 aTarget, TInt aEvent)
854 event.SetType(aEvent);
855 event.SetHandle(aTarget);
857 return(QueueEvent(event));
860 void CEventQueue::UpdateLastEvent(const TWsEvent &event)
862 WS_ASSERT_DEBUG(iCount>0, EWsPanicQueueUpdateCount);
863 Mem::Copy(EventPtr(iCount-1)->EventData(),event.EventData(),TWsEvent::EWsEventDataSize);
867 void CEventQueue::GetData()
869 // If there is an outstanding event in the queue, reply with it's data and remove it from the Q
874 WS_ASSERT_DEBUG((iEventPtr+iHead)->Type()!=EEventMarkInvalid, EWsPanicCheckEventQueue);
875 CEventBase::GetData(iEventPtr+iHead,sizeof(*iEventPtr));
876 __ZAP_EVENT(iEventPtr+iHead);
877 iHead=(iHead+1)%iQueueSize;
881 CEventBase::GetData(&iNullEvent,sizeof(iNullEvent));
884 void CEventQueue::EventReady(const RMessagePtr2& aEventMsg)
886 // Queue a read of an event notification
897 void CEventQueue::RemoveEvent(TInt index)
899 // Remove event 'index' in the queue, this event MUST exist in the queue
902 WS_ASSERT_DEBUG(index < iCount, EWsPanicCheckEventQueue);
904 for(;index<iCount;index++)
905 *EventPtr(index)= *EventPtr(index+1);
906 __ZAP_EVENT(EventPtr(iCount));
909 const TWsEvent *CEventQueue::PeekLastEvent()
911 // Return a read only pointer to the last event in the queue (or NULL if no event)
916 return(EventPtr(iCount-1));
919 void CEventQueue::Wait()
924 void CEventQueue::Signal()
929 void CEventQueue::WalkEventQueue(EventQueueWalk aFunc, TAny *aFuncParam)
933 for (TInt index=0;index<iCount;index++)
935 TWsEvent *event=EventPtr(index);
936 switch((aFunc)(aFuncParam,event))
938 case EEventQueueWalkDeleteEvent:
939 RemoveEvent(index--);
940 case EEventQueueWalkOk:
942 case EEventQueueWalkRestart: