Update contrib.
1 // Copyright (c) 1994-2010 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.
27 #include "windowgroup.h"
30 #include "../CLIENT/w32comm.h"
33 #include <u32hal.h> // EHalGroupEmulator
35 #include <e32hashtab.h> // for RHashMap
36 #include "registeredsurfacemap.h"
37 #include <graphics/wselement.h>
39 #include "windowelementset.h"
40 #include "drawresource.h"
42 extern CDebugLogBase* wsDebugLog;
43 _LIT(KWSERVSessionPanicCategory,"WSERV");
45 GLREF_D TPtr nullDescriptor;
47 TWsCmdHeaderBase CWsClient::iCurrentCommand;
48 TBuf8<EClientBufferMaxSize> CWsClient::iCmdBuf;
49 TInt CWsClient::iReply;
50 TInt CWsClient::iReplyOffset;
51 CWsClient* CWsClient::iCurrentClient;
52 CWsObject* CWsClient::iDestObj;
53 const TUint8* CWsClient::iNextCmd;
55 TUint CWsClient::iConnectionId = CDebugLogBase::EDummyConnectionId+1;
56 CArrayFixFlat<CWsClient::TWsCursorArrayItem>* CWsClient::iSystemPointerCursors = NULL;
57 TInt CWsClient::iDefaultSystemPointerCursorIndex = 0; //Negative when there isn't one
58 CWsPointerCursor* CWsClient::iDefaultSystemPointerCursor;
59 CWsClient* CWsClient::iSystemPointerCursorListOwner = NULL;
60 CArrayFixFlat<CWsClient::TWsCursorArrayItem>* CWsClient::iTextCursorArray = NULL;
62 TKeyArrayFix CWsClient::iCursorKey(_FOFF(CWsClient::TWsCursorArrayItem,iIndex), ECmpTInt);
65 Used for enforcing the redraw calling convention in emulator builds.
66 When enabled this will panic any client calling a CWindowGc draw operation outside a
67 RWindow::BeginRedraw() / RWindow::EndRedraw() pair (known as non-redraw drawing).
69 Enable by adding "debug_wserv_exe_EnforceRedrawCallingConvention X" to epoc.ini
70 where X is either 0 (zero) for "off" or 1 (one) for "on".
72 Then enable globally in WServ AutoFlush by defining __AUTO_FLUSH in ../client/client.h
73 or locally by calling RWsSession::SetAutoFlush(ETrue) for a specific client programatically,
74 or locally pressing Ctrl-Alt-Shift-F in the emulator.
76 TBool CWsClient::iDebug_EnforceRedrawCallingConvention = EFalse;
78 // Security policy stings
79 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_WriteDeviceData,ECapabilityWriteDeviceData);
80 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_SwEvent,ECapabilitySwEvent);
81 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_PowerMgmt,ECapabilityPowerMgmt);
87 CWsClient::CWsClient(RThread aClient) : iClient(aClient), iGraphicMessageQueue(this), iInternalFlags(ERemoveKeyCode|EFinishedProcessingCommands)
89 iScreen = CWsTop::Screen();
92 CWsClient::~CWsClient()
94 CWsTop::WindowServer()->RemoveAllGraphicDrawers(*this); // deindexes all graphic drawers owned by this client
96 delete iTempCustomTextCursor.iCursor;
97 FreeSystemPointerCursorList();
98 CWsTop::ClientDestroyed(this);
101 _LIT(ClientDestuct,"Client %d destructing");
102 wsDebugLog->MiscMessage(CDebugLogBase::ELogIntermediate,ClientDestuct, iConnectionHandle);
105 iInternalFlags |= EClientIsClosing;
109 delete iPriorityKeyEvent;
110 CWsTop::ClearSurfaceMap(this);
112 CWsTop::SessionExited(this);
116 void CWsClient::CompleteInitializationL()
118 iObjectIndex = new(ELeave) CWsObjectIx();
119 iObjectIndex->ConstructL();
121 iEventQueue = new(ELeave) CEventQueue(this);
122 iEventQueue->ConstructL();
124 iRedrawQueue = new(ELeave) CRedrawQueue(this);
125 iRedrawQueue->ConstructL();
127 iPriorityKeyEvent = new(ELeave) CPriorityKey(this);
129 CWsCliObj::NewL(this);
131 iComputeMode = RWsSession::EPriorityControlComputeOff;
133 CWsTop::NewSession(this);
136 TBool halValue = EFalse;
137 if (UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalIntProperty,
138 (TAny*)"debug_wserv_exe_EnforceRedrawCallingConvention", &halValue) == KErrNone)
140 iDebug_EnforceRedrawCallingConvention = halValue;
144 iInternalFlags |= EIsInitialised;
147 TBool CWsClient::DebugEnforceRedrawCallingConvention()
149 return iDebug_EnforceRedrawCallingConvention;
152 void CWsClient::StartInitializationL(TUint aConnectionHandle)
155 wsDebugLog->NewClient(aConnectionHandle);
158 PPanic(EWservPanicReInitialise);
161 iConnectionHandle = aConnectionHandle;
162 CompleteInitializationL();
167 // Convert a handle to object checking it is of the correct type.
169 void CWsClient::HandleToWindow(TInt aHandle,CWsWindowBase** pWin)
171 if ((*pWin=(CWsWindowBase* )HandleToObjUntyped(aHandle))==NULL ||
172 ((*pWin)->Type()!=WS_HANDLE_WINDOW && (*pWin)->Type()!=WS_HANDLE_GROUP_WINDOW))
173 PPanic(EWservPanicWindow);
177 // Convert a handle to object checking it is of the correct type.
179 void CWsClient::HandleToClientWindow(TInt aHandle,CWsClientWindow** pWin)
181 if ((*pWin=(CWsClientWindow*)HandleToObj(aHandle, WS_HANDLE_WINDOW))==NULL)
182 PPanic(EWservPanicWindow);
185 void CWsClient::CreateNewPointerCursorL(const TWsClCmdCreatePointerCursor &aCmd)
187 CWsPointerCursor* pc=new(ELeave) CWsPointerCursor(this);
188 CleanupStack::PushL(pc);
189 pc->ConstructL(aCmd);
193 // Create a new custom text cursor
194 void CWsClient::StartSetCustomTextCursorL(const TWsClCmdCustomTextCursorData& aCmd)
196 if (!iTextCursorArray)
198 const TInt textCursorArrayGranularity = 4;
199 iTextCursorArray = new(ELeave) CArrayFixFlat<TWsCursorArrayItem>(textCursorArrayGranularity);
202 TInt arrayIndex = KErrNotFound;
203 if (FindCursorArrayItem(iTextCursorArray, aCmd.identifier, arrayIndex))
204 User::Leave(KErrAlreadyExists);
206 delete iTempCustomTextCursor.iCursor;
207 iTempCustomTextCursor.iCursor = NULL;
208 iTempCustomTextCursor.iCursor = new(ELeave) CWsCustomTextCursor(this, aCmd.alignment);
210 static_cast<CWsCustomTextCursor*>(iTempCustomTextCursor.iCursor)->ConstructL(aCmd.flags);
211 iTempCustomTextCursor.iIndex = aCmd.identifier;
214 // Add new custom text cursor to global list
215 void CWsClient::CompleteSetCustomTextCursorL(TInt aError)
219 delete iTempCustomTextCursor.iCursor;
220 iTempCustomTextCursor.iCursor = NULL;
224 TWsCursorArrayItem entry = iTempCustomTextCursor;
225 iTempCustomTextCursor.iCursor = NULL;
226 CleanupStack::PushL(entry.iCursor);
229 if (FindCursorArrayItem(iTextCursorArray, entry.iIndex, arrayIndex))
230 User::Leave(KErrAlreadyExists);
232 iTextCursorArray->InsertIsqL(entry, iCursorKey);
234 CleanupStack::Pop(entry.iCursor);
237 CWsCustomTextCursor* CWsClient::FindCustomTextCursor(TInt aIdentifier)
240 if (!FindCursorArrayItem(iTextCursorArray, aIdentifier, arrayIndex))
243 return TextCursor(arrayIndex);
246 void CWsClient::CreateNewSpriteL(const TWsClCmdCreateSprite &aCmd)
248 CWsSprite* sprite = new(ELeave) CWsSprite(this);
249 CleanupStack::PushL(sprite);
250 sprite->ConstructL(aCmd);
254 void CWsClient::CreateNewBitmapL(const TWsClCmdCreateBitmap &aCmd)
256 DWsBitmap* bitmap = new(ELeave) DWsBitmap(this);
257 CleanupStack::PushL(bitmap);
258 bitmap->ConstructL(aCmd);
262 /** Creates a new window.
264 If the parent is a window group then a new CWsTopClientWindow instance is created. If the parent is
265 a window then a new CWsClientWindow instance is created.
267 @param aCmd The command received from the client
271 void CWsClient::CreateNewWindowL(const TWsClCmdCreateWindow &aCmd)
273 CWsWindowBase* parent;
274 HandleToWindow(aCmd.parent,&parent);
275 CWsClientWindow* win = NULL;
276 TBool deviceIsInvalid = EFalse;
277 CScreen* screen = parent->Screen();
278 if (parent->WinType()==EWinTypeGroup)
280 __ASSERT_DEBUG(!((CWsWindowGroup*)parent)->ScreenDeviceDeleted(),PPanic(EWservPanicGroupWinScreenDeviceDeleted));
281 win=new(ELeave) CWsTopClientWindow(this, screen);
282 deviceIsInvalid=!((CWsWindowGroup*)parent)->ScreenDeviceValid();
285 win=new(ELeave) CWsClientWindow(this, screen);
287 CleanupStack::PushL(win);
288 win->ConstructL(aCmd,parent,deviceIsInvalid);
289 CleanupStack::Pop(win);
292 void CWsClient::CreateNewWindowGroupL(const TWsClCmdCreateWindowGroup &aCmd)
294 CWsWindowGroup::NewL(this, NULL, aCmd); //screen is initialised inside the constructL
297 void CWsClient::CreateNewAnimDllL(const TWsClCmdUnion &aParams)
299 CWsAnimDll* animDll = new(ELeave) CWsAnimDll(this);
300 CleanupStack::PushL(animDll);
301 animDll->LoadL(BufferTPtr((TText*)(aParams.LoadAnimDll+1),aParams.LoadAnimDll->length));
305 void CWsClient::CreateNewScreenDeviceL(TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer)
307 DWsScreenDevice* screenDevice = new(ELeave) DWsScreenDevice(this, aDefaultScreenNumber,aClientScreenDevicePointer);
308 CleanupStack::PushL(screenDevice);
309 screenDevice->ConstructL();
310 CleanupStack::Pop(screenDevice);
311 if (iPrimaryScreenDevice==NULL)
313 iPrimaryScreenDevice=screenDevice;
314 // When client create screen device, change default screen to the one specified.
315 // Client should do this immediately after establishing session
316 iScreen = iPrimaryScreenDevice->Screen();
317 InitialiseScreenDevices();
321 void CWsClient::InitialiseScreenDevices()
323 const TWsObject* ptr = iObjectIndex->FirstObject();
324 const TWsObject* end = ptr+iObjectIndex->Length();
325 WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
328 if (ptr->iObject && ptr->iObject->Type()==WS_HANDLE_GROUP_WINDOW)
330 CWsWindowGroup* gw = static_cast<CWsWindowGroup*>(ptr->iObject);
332 gw->SetScreenDevice(iPrimaryScreenDevice);
337 void CWsClient::CreateNewClickHandlerL(const TUid& aUid)
339 CClick* click = new(ELeave) CClick(this);
340 CleanupStack::PushL(click);
341 click->ConstructL(aUid);
342 CleanupStack::Pop(click);
345 void CWsClient::RequestComplete(TRequestStatus* &aStatus, TInt aErr)
347 Client().RequestComplete(aStatus,aErr);
350 void CWsClient::PanicCurrentClient(TClientPanic aPanic)
352 iCurrentClient->PPanic(aPanic);
355 void CWsClient::PPanic(TClientPanic aPanic) const
356 //This function is allowed to leave with out the 'L' convention for special reasons
358 SessionPanic(aPanic);
359 User::Leave(EPanicLeave);
362 void CWsClient::SessionPanic(TClientPanic aReason) const
365 wsDebugLog->Panic(iConnectionHandle, aReason);
367 if (!(iInternalFlags&EPanicClientAsSoonAsPossible)) // keep the first error code
369 iInternalFlags |= EPanicClientAsSoonAsPossible;
370 iPanicReason = aReason;
374 void CWsClient::SessionTerminate()
377 wsDebugLog->Panic(iConnectionHandle, 0);
379 const RThread thread=Client();
381 if (thread.Process(process)==KErrNone)
383 process.Terminate(0);
389 Returns the remaining space in the descriptor
391 TInt CWsClient::ReplyBufSpace()
393 const TInt retVal = iCurrentClient->ClientMessage().GetDesLength(KReplyBufferMessageSlot);
395 if (iReplyOffset>=0 && retVal>=iReplyOffset)
396 return retVal-iReplyOffset;
398 return (retVal<0 ? retVal : KErrBadDescriptor);
401 void CWsClient::ReplyBuf(const TDesC16 &aDes) // static
403 WS_ASSERT_DEBUG(!iCurrentClient->ClientMessage().IsNull(), EWsPanicInvalidMessageHandle);
405 if(iCurrentClient->ClientMessage().Write(KReplyBufferMessageSlot,aDes,iReplyOffset) != KErrNone)
406 PanicCurrentClient(EWservPanicDescriptor);
408 iReplyOffset += aDes.Length();
410 wsDebugLog->ReplyBuf(aDes);
413 void CWsClient::ReplyBuf(const TDesC8 &aDes) // static
415 WS_ASSERT_DEBUG(!iCurrentClient->ClientMessage().IsNull(), EWsPanicInvalidMessageHandle);
417 if(iCurrentClient->ClientMessage().Write(KReplyBufferMessageSlot, aDes, iReplyOffset) != KErrNone)
418 PanicCurrentClient(EWservPanicDescriptor);
420 iReplyOffset += aDes.Length();
422 wsDebugLog->ReplyBuf(aDes);
425 void CWsClient::ReplyBuf(const TAny* aSource, TInt aLength) // static
427 // Send a buffer to the client process.
430 TPtrC8 src(reinterpret_cast<const TUint8*>(aSource),aLength);
434 void CWsClient::ReplySize(const TSize &aSize) // static
436 ReplyBuf(&aSize, sizeof(aSize));
439 void CWsClient::ReplyPoint(const TPoint &aPoint) // static
441 ReplyBuf(&aPoint, sizeof(aPoint));
444 void CWsClient::ReplyRect(const TRect &aRect) // static
446 ReplyBuf(&aRect, sizeof(aRect));
449 void CWsClient::SetReply(TInt reply)
453 wsDebugLog->Reply(reply);
456 const TUint8* CWsClient::EndOfCommandBuffer()
458 return(iCmdBuf.Ptr()+iCmdBuf.Size());
461 const TPtrC CWsClient::BufferTPtr(TText *aStart,TInt aLen)
464 if (!BufferTPtrGc(aStart,aLen,ptr))
465 PanicCurrentClient(EWservPanicBufferPtr);
469 TBool CWsClient::BufferTPtrGc(TText* aStart,TInt aLen, TPtrC& aPtr)
471 if (iCurrentCommand.iOpcode>0)
473 if ((REINTERPRET_CAST(TUint8*,aStart)<iCmdBuf.Ptr()
474 || REINTERPRET_CAST(TUint8*,aStart+aLen)>(iCmdBuf.Ptr()+iCmdBuf.Size())))
479 if (aLen>=iCurrentCommand.iCmdLength)
482 aPtr.Set(aStart,aLen);
486 const TPtrC8 CWsClient::BufferTPtr8(TUint8* aStart,TInt aLen)
488 if (iCurrentCommand.iOpcode>0 && (REINTERPRET_CAST(TUint8*,aStart)<iCmdBuf.Ptr()
489 || REINTERPRET_CAST(TUint8*,aStart+aLen)>(iCmdBuf.Ptr()+iCmdBuf.Size())))
490 PanicCurrentClient(EWservPanicBufferPtr);
492 return(TPtrC8(aStart,aLen));
496 Process a command buffer
501 void CWsClient::DispatchCommandsInBufL() // (step #4)
505 wsDebugLog->CommandBuf(iConnectionHandle);
506 RThread client = Client();
507 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything, client.FullName());
509 const TUint8* endCmd=iCmdBuf.Ptr()+iCmdBuf.Length();
512 const TWsCmdHeader* pCmd=
513 reinterpret_cast<const TWsCmdHeader*>(iNextCmd);
514 TUint opcode = pCmd->iBase.iOpcode;
515 TInt headerLen = sizeof(pCmd->iBase);
516 iCurrentCommand = pCmd->iBase;
518 // For performance reasons the handle is only included
519 // if it is different from the previous command. The EWsOpcodeHandle
520 // flag indicates whether a new handle has been included in the
521 // current command. If not we use the same handle as the previous
523 if (opcode&EWsOpcodeHandle)
525 // Find the WServ object associated with this op code
526 opcode &= ~EWsOpcodeHandle;
527 iCurrentCommand.iOpcode = reinterpret_cast<TUint16&>(opcode);
528 iDestObj=HandleToObjUntyped(pCmd->iDestHandle);
529 headerLen = sizeof(*pCmd);
532 iNextCmd += headerLen;
533 const TAny* cmdParams = iNextCmd;
534 iNextCmd += pCmd->iBase.iCmdLength;
535 if (!iDestObj || iNextCmd>endCmd) // Invalid handle or Corrupt buffer
537 SessionPanic(iDestObj==NULL ? EWservPanicHandle : EWservPanicBuffer);
538 iInternalFlags|=EFinishedProcessingCommands;
542 if (iNextCmd==endCmd)
543 iInternalFlags|=EFinishedProcessingCommands;
546 wsDebugLog->Command(iDestObj->Type(), opcode, cmdParams, iDestObj->LogHandle());
548 // Dispatch the command to the WServ object that will process it
549 iDestObj->CommandL(opcode, cmdParams); // (call #5)
551 while(iNextCmd<endCmd);
555 void CWsClient::DoServiceCommandBuf() // (step #3.1)
558 iInternalFlags&=~EFinishedProcessingCommands;
559 TRAPD(err, DispatchCommandsInBufL()); // (call #4)
562 if (err!=KErrNone && !(iInternalFlags&(EFinishedProcessingCommands|EPanicClientAsSoonAsPossible)))
563 SessionPanic(EWservPanicFunctionLeave);
569 if (iInternalFlags&(EFinishedProcessingCommands|EPanicClientAsSoonAsPossible))
570 CompleteMessage(iClientMessage,iReply); // (finish)
574 User::Heap().Check();
578 void CWsClient::ExecuteAsyncClientCommandL(TInt aOpcode, const RMessage2& aMessage) // (step #3.2)
582 case EWsClOpEventReady:
583 EventReady(aMessage);
585 case EWsClOpPriorityKeyReady:
586 PriorityKeyEventReady(aMessage);
588 case EWsClOpRedrawReady:
589 RedrawEventReady(aMessage);
591 case EWsClOpGraphicMessageReady:
592 iGraphicMessageQueue.EventReady(aMessage);
596 PPanic(EWservPanicOpcode);
604 void CWsClient::ExecuteCommandL(TInt aOpcode, const TAny* aCmdData) // (step #6)
610 case EWsClOpCreateWindowGroup:
611 CreateNewWindowGroupL(*pData.CreateWindowGroup);
613 case EWsClOpCreateWindow:
614 CreateNewWindowL(*pData.CreateWindow);
616 case EWsClOpCreateGc:
619 case EWsClOpCreateAnimDll:
620 if (!CheckBuffer(pData.LoadAnimDll->length, KMaxFileName))
621 PanicCurrentClient(EWservPanicBufferPtr);
622 CreateNewAnimDllL(pData);
624 case EWsClOpCreateGraphic:
625 CWsGraphicDrawerObject::NewL(this,pData);
627 case EWsClOpCreateScreenDevice:
629 const TInt screenNumber = pData.CreateScreenDevice->screenNumber;
630 const TUint clientScreenDevicePointer = pData.CreateScreenDevice->clientScreenDevicePointer;
631 if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
633 PPanic(EWservPanicScreenNumber);
637 CreateNewScreenDeviceL(screenNumber,clientScreenDevicePointer);
641 case EWsClOpCreateSprite:
642 CreateNewSpriteL(*pData.CreateSprite);
644 case EWsClOpCreatePointerCursor:
645 CreateNewPointerCursorL(*pData.CreatePointerCursor);
647 case EWsClOpStartSetCustomTextCursor:
648 StartSetCustomTextCursorL(*pData.CustomTextCursorData);
650 case EWsClOpCompleteSetCustomTextCursor:
651 CompleteSetCustomTextCursorL(*pData.Int);
653 case EWsClOpCreateBitmap:
654 CreateNewBitmapL(*pData.CreateBitmap);
656 case EWsClOpCreateDirectScreenAccess:
657 CWsDirectScreenAccess::NewL(this,EFalse);
659 case EWsClOpCreateDirectScreenAccessRegionTrackingOnly:
660 CWsDirectScreenAccess::NewL(this,ETrue); //creates a DSA object that will not draw to the screen, but will use just the region tracking functionality
662 case EWsClOpCreateClick:
663 CreateNewClickHandlerL(*pData.Uid);
665 case EWsClOpSetHotKey:
667 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetHotKey API")))
669 User::Leave(KErrPermissionDenied);
671 TWindowServerEvent::SetHotKeyL(*pData.SetHotKey);
674 case EWsClOpClearHotKeys:
676 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::ClearHotKeys API")))
678 User::Leave(KErrPermissionDenied);
680 TWindowServerEvent::ClearHotKeysL(*pData.UInt);
683 case EWsClOpRestoreDefaultHotKey:
684 TWindowServerEvent::ResetDefaultHotKeyL(*pData.UInt);
686 case EWsClOpSetShadowVector:
687 PPanic(EWservPanicOpcode); //this op code is deprecated, should never be generated by the client
689 case EWsClOpShadowVector:
690 PPanic(EWservPanicOpcode); //this op code is deprecated, should never be generated by the client
692 case EWsClOpSetKeyboardRepeatRate:
694 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetKeyboardRepeatRate API")))
696 User::Leave(KErrPermissionDenied);
698 if ((pData.SetKeyboardRepeatRate->initial.Int()<0) || (pData.SetKeyboardRepeatRate->time.Int()<0))
700 User::Leave(KErrArgument);
702 CKeyboardRepeat::SetRepeatTime(pData.SetKeyboardRepeatRate->initial,pData.SetKeyboardRepeatRate->time);
705 case EWsClOpGetKeyboardRepeatRate:
707 SKeyRepeatSettings settings;
708 CKeyboardRepeat::GetRepeatTime(settings.iInitialTime,settings.iTime);
709 ReplyBuf(&settings,sizeof(settings));
712 case EWsClOpSetDoubleClick:
714 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetDoubleClick API")))
716 User::Leave(KErrPermissionDenied);
718 TWsPointer::SetDoubleClick(pData.SetDoubleClick->interval,pData.SetDoubleClick->distance);
721 case EWsClOpGetDoubleClickSettings:
723 SDoubleClickSettings settings;
724 TWsPointer::GetDoubleClickSettings(settings.iInterval,settings.iDistance);
725 ReplyBuf(&settings,sizeof(settings));
728 case EWsClOpEventReady:
729 // No need to do anything
731 case EWsClOpGetEvent:
732 HandleClientRequestForEventData();
733 // Check flag if the group message queue is overflow and has pended messages
734 if (iInternalFlags & EWgMsgQueueOverflow)
736 iInternalFlags &= ~EWgMsgQueueOverflow;
737 CWsWindowGroup::ReleasePendedMessagesToAllGroups(this);
740 case EWsClOpPurgePointerEvents:
741 PurgePointerEvents();
743 case EWsClOpEventReadyCancel:
744 CancelClientRequestForEventData();
746 case EWsClOpRedrawReady:
747 iInternalFlags&=~EIsPerformingRedrawEvent;
749 case EWsClOpRedrawReadyCancel:
750 CancelClientRequestForRedrawEvent();
752 case EWsClOpGetRedraw:
753 HandleClientRequestForRedrawData();
755 case EWsClOpPriorityKeyReady:
756 // No need to do anything
758 case EWsClOpPriorityKeyReadyCancel:
759 CancelClientRequestForPriorityKeyEvent();
761 case EWsClOpGetPriorityKey:
762 HandleClientRequestForPriorityKeyData();
764 case EWsClOpNumWindowGroups:
765 SetReply(CWsWindowGroup::NumWindowGroups(EFalse,* pData.Int));
767 case EWsClOpNumWindowGroupsAllPriorities:
768 SetReply(CWsWindowGroup::NumWindowGroups(ETrue, 0));
770 case EWsClOpNumWindowGroupsOnScreen:
772 const TInt screenNumber=pData.NumWinGroups->screenNumber;
773 if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
774 PPanic(EWservPanicScreenNumber);
776 SetReply(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(screenNumber)->RootWindow()->Child(),(pData.NumWinGroups->priority==EAllPriorities),pData.NumWinGroups->priority));
779 case EWsClOpWindowGroupList:
781 const TInt screenNumber=pData.WindowGroupList->screenNumber;
782 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
783 PPanic(EWservPanicScreenNumber);
785 SetReply(CWsWindowGroup::SendWindowGroupListL(screenNumber,(pData.WindowGroupList->priority==EAllPriorities), pData.WindowGroupList->priority, pData.WindowGroupList->count));
788 case EWsClOpWindowGroupListAllPriorities:
790 const TInt screenNumber=pData.WindowGroupList->screenNumber;
791 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
792 PPanic(EWservPanicScreenNumber);
794 SetReply(CWsWindowGroup::SendWindowGroupListL(screenNumber,ETrue, 0, pData.WindowGroupList->count));
797 case EWsClOpWindowGroupListAndChain:
798 SetReply(CWsWindowGroup::SendWindowGroupListAndChainL(EFalse, pData.WindowGroupList->priority, pData.WindowGroupList->count));
800 case EWsClOpWindowGroupListAndChainAllPriorities:
801 SetReply(CWsWindowGroup::SendWindowGroupListAndChainL(ETrue, 0, pData.WindowGroupList->count));
803 case EWsClOpGetDefaultOwningWindow:
805 const TInt screenNumber = *pData.Int;
806 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
807 PPanic(EWservPanicScreenNumber);
810 CScreen* screen = (screenNumber ==KDummyScreenNumber) ? iScreen : CWsTop::Screen(screenNumber);
811 SetReply(screen->DefaultOwningWindowGroup() ? screen->DefaultOwningWindowGroup()->Identifier():0);
815 case EWsClOpGetFocusWindowGroup:
817 const TInt screenNumber = *pData.Int;
818 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
819 PPanic(EWservPanicScreenNumber);
821 CWsWindowGroup::GetFocusWindowGroupL(screenNumber);
824 case EWsClOpSetWindowGroupOrdinalPosition:
825 CWsWindowGroup::WindowGroupFromIdentifierL(pData.SetWindowGroupOrdinalPosition->identifier)->SetOrdinalPosition(pData.SetWindowGroupOrdinalPosition->position);
827 case EWsClOpGetWindowGroupHandle:
828 SetReply(CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->ClientHandle());
830 case EWsClOpGetWindowGroupOrdinalPriority:
831 SetReply(CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->OrdinalPriority());
833 case EWsClOpGetWindowGroupClientThreadId:
835 TThreadId id=CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->WsOwner()->Client().Id();
836 ReplyBuf(&id,sizeof(id));
839 case EWsClOpSendEventToWindowGroup:
841 CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifierL(pData.SendEventToWindowGroup->parameter);
842 TWsEvent event=pData.SendEventToWindowGroup->event;
843 event.SetHandle(group->ClientHandle());
844 // Events in enum TEventCode is protected by capabilities
845 if (group->WsOwner()!=this && event.Type()>=EEventNull && event.Type()<EEventUser)
847 if (event.Type()<EEventPowerMgmt || event.Type()>=EEventReserved)
849 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToWindowGroup API")))
850 User::Leave(KErrPermissionDenied);
854 if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToWindowGroup API")))
855 User::Leave(KErrPermissionDenied);
858 if (event.Type()==EEventKey && event.Key()->iRepeats!=0)
859 CKeyboardRepeat::CancelRepeat(NULL); //Otherwise we will trip an invarient
860 if (!group->EventQueue()->QueueEvent(event))
861 User::Leave(KErrNoMemory);
864 case EWsClOpSendEventToAllWindowGroup:
865 case EWsClOpSendEventToAllWindowGroupPriority:
866 case EWsClOpSendEventToOneWindowGroupPerClient:
868 TWsEvent event=pData.SendEventToWindowGroup->event;
870 User::Leave(KErrArgument);
871 if(event.Type()<EEventUser)
873 if (event.Type()<EEventPowerMgmt || event.Type()>=EEventReserved)
875 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToAllWindowGroup API")))
876 User::Leave(KErrPermissionDenied);
880 if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToAllWindowGroup API")))
881 User::Leave(KErrPermissionDenied);
884 if (!CWsWindowGroup::SendEventToAllGroups(aOpcode!=EWsClOpSendEventToAllWindowGroupPriority
885 ,aOpcode==EWsClOpSendEventToOneWindowGroupPerClient,*pData.SendEventToWindowGroup))
886 User::Leave(KErrNoMemory);
889 case EWsClOpSendMessageToWindowGroup:
891 CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifierL(pData.SendMessageToWindowGroup->identifierOrPriority);
892 if (group->WsOwner()!=this)
894 if (!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendMessageToWindowGroup API")))
896 User::Leave(KErrPermissionDenied);
899 group->QueueMessageL(pData.SendMessageToWindowGroup->uid, pData.SendMessageToWindowGroup->dataLength,* this);
902 case EWsClOpSendMessageToAllWindowGroups:
903 case EWsClOpSendMessageToAllWindowGroupsPriority:
905 if ((pData.SendMessageToWindowGroup->dataLength<0) || (pData.SendMessageToWindowGroup->dataLength>=(KMaxTInt/2)))
907 User::Leave(KErrArgument);
909 CWsWindowGroup::SendMessageToAllGroupsL(*this,aOpcode==EWsClOpSendMessageToAllWindowGroups,*pData.SendMessageToWindowGroup);
912 case EWsClOpFetchMessage:
913 CWsWindowGroup::WindowGroupFromIdentifierL(pData.FetchMessage->windowGroupIdentifier)->FetchMessageL();
915 case EWsClOpGetWindowGroupNameFromIdentifier:
916 ReplyGroupName(CWsWindowGroup::WindowGroupFromIdentifierL(pData.GetWindowGroupNameFromIdentifier->identifier)->GroupName(),pData.GetWindowGroupNameFromIdentifier->maxLength);
918 case EWsClOpFindWindowGroupIdentifier:
920 if (pData.FindWindowGroupIdentifier->length<0)
921 User::Leave(KErrArgument);
922 TPtrC ptr(BufferTPtr((TText*)(pData.FindWindowGroupIdentifier+1),pData.FindWindowGroupIdentifier->length));
923 SetReply(CWsWindowGroup::FindWindowGroupL(this, pData.FindWindowGroupIdentifier->identifier,
924 pData.FindWindowGroupIdentifier->offset,&ptr,NULL)->Identifier());
927 case EWsClOpFindWindowGroupIdentifierThread:
928 SetReply(CWsWindowGroup::FindWindowGroupL(this, pData.FindWindowGroupIdentifierThread->identifier,0,NULL,
929 &pData.FindWindowGroupIdentifierThread->threadId)->Identifier());
931 case EWsClOpSetBackgroundColor:
932 for(TInt i=0;i<CWsTop::NumberOfScreens();i++)
934 CWsTop::Screen(i)->RootWindow()->SetColor(*pData.rgb);
937 case EWsClOpGetBackgroundColor:
938 SetReply(iScreen->RootWindow()->BackColor().Internal());
940 case EWsClOpClaimSystemPointerCursorList:
942 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::ClaimSystemPointerCursorList API")))
944 User::Leave(KErrPermissionDenied);
946 ClaimSystemPointerCursorListL();
949 case EWsClOpFreeSystemPointerCursorList:
950 FreeSystemPointerCursorList();
952 case EWsClOpSetSystemPointerCursor:
954 CWsObject* pointercursor = NULL;
955 if ((pointercursor=HandleToObj(pData.SetSystemPointerCursor->handle, WS_HANDLE_POINTER_CURSOR))==NULL)
956 PPanic(EWservPanicSprite);
958 SetSystemPointerCursorL(pData.SetSystemPointerCursor->number, (CWsPointerCursor* )pointercursor);
961 case EWsClOpClearSystemPointerCursor:
962 ClearSystemPointerCursor(*pData.Int);
964 case EWsClOpSetPointerCursorArea:
966 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorArea API")))
968 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
969 PPanic(EWservPanicScreenModeNumber);
970 iScreen->SetPointerCursorArea(pData.SetPointerCursorArea->mode,pData.SetPointerCursorArea->area);
974 case EWsClOpPointerCursorArea:
975 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
976 PPanic(EWservPanicScreenModeNumber);
978 ReplyRect(iScreen->GetPointerCursorArea(*pData.Int));
980 case EWsClOpSetPointerCursorMode:
982 CWsWindowGroup* focusWinGp=CWsTop::FocusWindowGroup();
983 if (focusWinGp && focusWinGp->WsOwner()==this)
985 TWsPointer::SetPointerCursorMode(*pData.Mode);
986 TWsPointer::UpdatePointerCursor();
990 case EWsClOpSetClientCursorMode :
992 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorModeIfFocused API")))
994 User::Leave(KErrPermissionDenied);
996 TWsPointer::SetPointerCursorMode(*pData.Mode);
997 TWsPointer::UpdatePointerCursor();
1000 case EWsClOpPointerCursorMode:
1001 SetReply(TWsPointer::PointerCursorMode());
1003 case EWsClOpSetDefaultSystemPointerCursor:
1004 SetDefaultSystemPointerCursor(*pData.Int);
1006 case EWsClOpClearDefaultSystemPointerCursor:
1007 SetDefaultSystemPointerCursor(ENoDefaultSystemPointerCursor);
1009 case EWsClOpSetPointerCursorPosition:
1011 CWsWindowGroup* focusWinGp=CWsTop::FocusWindowGroup();
1012 if ((!focusWinGp || focusWinGp->WsOwner()!=this)&&
1013 (!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorPosition API"))))
1015 User::Leave(KErrPermissionDenied);
1017 TWsPointer::SetPointerCursorPos(*pData.Point);
1020 case EWsClOpPointerCursorPosition:
1021 ReplyPoint(TWsPointer::PointerCursorPos());
1023 case EWsClOpSetModifierState:
1025 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetModifierState API")))
1027 User::Leave(KErrPermissionDenied);
1029 TWindowServerEvent::SetModifierState(pData.SetModifierState->modifier,pData.SetModifierState->state);
1032 case EWsClOpGetModifierState:
1033 SetReply(TWindowServerEvent::GetModifierState());
1035 case EWsClOpHeapCount:
1036 SetReply(CWsMemoryManager::Static()->Count());
1038 case EWsClOpDebugInfo:
1039 DebugInfoL(pData.DebugInfo->iFunction,pData.DebugInfo->iParam,EFalse);
1041 case EWsClOpDebugInfoReplyBuf:
1042 DebugInfoL(pData.DebugInfo->iFunction,pData.DebugInfo->iParam,ETrue);
1044 case EWsClOpResourceCount:
1045 SetReply(iObjectIndex->Count());
1047 case EWsClOpHeapSetFail:
1049 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::HeapSetFail API")))
1051 PPanic(EWservPanicPermissionDenied);
1053 #if !defined(_DEBUG)
1054 if (pData.HeapSetFail->type!=RHeap::ENone)
1055 TWindowServerEvent::NotifyOom();
1057 // if there is a memory manager and we are making the allocator fail next or
1058 // deteministic we want to make sure we test both when the memory manager
1059 // succeeds and fails in allocating after freeing up memory. we do that by
1060 // remapping the rate and explicitly telling the memory manager to fail:
1061 // requested rate | fail on retry, actual rate
1065 CWsMemoryManager* memoryManager = NULL;
1066 TInt rate = pData.HeapSetFail->value;
1067 TBool memoryManagerRetryFail = EFalse;
1068 if((pData.HeapSetFail->type == RAllocator::EFailNext || pData.HeapSetFail->type == RAllocator::EDeterministic))
1070 memoryManager = CWsMemoryManager::Static();
1073 memoryManagerRetryFail = (rate % 2 == 1);
1074 rate = rate / 2 + (memoryManagerRetryFail ? 1 : 0);
1078 switch (pData.HeapSetFail->type)
1079 { //This log message means you can safely ignore the allocation failures in between
1080 //see CWindowServer::ReleaseMemory()
1081 case RAllocator::ENone:
1082 RDebug::Printf("WSERV Heap: __DbgSetAllocFail() <<<ENone");
1084 case RAllocator::EReset:
1085 RDebug::Printf("WSERV Heap: __DbgSetAllocFail() <<<EReset");
1088 if (memoryManagerRetryFail)
1089 RDebug::Printf("WSERV Heap: Memory Manager set to fail on retry");
1090 RDebug::Printf("WSERV Heap: __DbgSetAllocFail(EUser,%i,%i)>>>", pData.HeapSetFail->type, rate);
1094 if (memoryManager && memoryManagerRetryFail)
1095 memoryManager->SetFailNextRetry();
1097 if (pData.HeapSetFail->burst >= 0)
1098 User::__DbgSetBurstAllocFail(RHeap::EUser, pData.HeapSetFail->type, rate, pData.HeapSetFail->burst);
1100 User::__DbgSetAllocFail(RHeap::EUser, pData.HeapSetFail->type, rate);
1103 case EWsClOpRawEvent:
1105 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SimulateRawEvent API")))
1107 PPanic(EWservPanicPermissionDenied);
1109 TRawEvent event(*pData.RawEvent);
1110 if (TWsPointer::PreProcessDriverEvent(event))
1111 TWindowServerEvent::ProcessRawEvent(event);
1114 case EWsClOpKeyEvent:
1116 if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SimulateKeyEvent API")))
1118 PPanic(EWservPanicPermissionDenied);
1120 TWindowServerEvent::ProcessKeyEvent(*pData.KeyEvent,0);
1123 case EWsClOpLogMessage:
1126 if (CheckBuffer(*pData.Int, KLogMessageLength))
1127 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,BufferTPtr((TText* )(pData.Int+1),*pData.Int),0);
1130 case EWsClOpPasswordEntered:
1131 CWsPassword::PasswordEntered(this);
1133 case EWsClOpComputeMode:
1134 SetComputeMode(*pData.ComputeMode);
1136 case EWsClOpSendOffEventsToShell:
1138 if(!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::RequestOffEvents API")))
1140 User::Leave(KErrPermissionDenied);
1142 SetReply(CWsTop::SetSendOffEventsToShell(this,*pData.OffEventsToShell));
1145 case EWsClOpGetDefModeMaxNumColors:
1147 SDefModeMaxNumColors colors;
1148 const TInt screenNumber = *pData.Int;
1149 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
1150 PPanic(EWservPanicScreenNumber);
1153 CScreen* screen = (screenNumber==KDummyScreenNumber)?iScreen:CWsTop::Screen(screenNumber);
1154 screen->MaxNumColors(colors.iColors,colors.iGrays);
1155 colors.iDisplayMode=screen->FirstDefaultDisplayMode();
1157 ReplyBuf(&colors,sizeof(colors));
1160 case EWsClOpGetColorModeList:
1162 const TInt screenNumber = *pData.Int;
1163 if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
1164 PPanic(EWservPanicScreenNumber);
1166 SetReply((screenNumber==KDummyScreenNumber) ? iScreen->ColorModesFlag() : CWsTop::Screen(screenNumber)->ColorModesFlag());
1169 case EWsClOpSetDefaultFadingParams:
1171 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetDefaultFadingParameters API")))
1173 iScreen->SetFadingParams(WservEncoding::ExtractFirst8BitValue(*pData.UInt),WservEncoding::ExtractSecond8BitValue(*pData.UInt));
1177 case EWsClOpPrepareForSwitchOff:
1179 if(KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::PrepareForSwitchOff API")))
1184 case EWsClOpSetFaded:
1186 // Deprecated - retained for BC with applications that retrieve the fade count
1187 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetSystemFaded API")))
1188 User::Leave(KErrPermissionDenied);
1192 if (pData.SetSystemFaded->UseDefaultMap())
1193 iScreen->GetFadingParams(blackMap,whiteMap);
1195 pData.SetSystemFaded->GetFadingParams(blackMap,whiteMap);
1197 iScreen->RootWindow()->SetSystemFaded(pData.SetSystemFaded->Faded(),blackMap,whiteMap);
1200 case EWsClOpLogCommand:
1201 CWsTop::LogCommand(*pData.LogCommand);
1203 #if defined(__WINS__)
1204 case EWsClOpRemoveKeyCode:
1205 iInternalFlags&=~ERemoveKeyCode;
1207 iInternalFlags|=ERemoveKeyCode;
1209 case EWsClOpSimulateXyInput:
1210 TWsPointer::SetXyInputType(static_cast<TXYInputType>(*pData.XyInput));
1213 case EWsClOpNoFlickerFree:
1214 PPanic(EWservPanicOpcode); //not supported anymore
1216 case EWsClOpSetFocusScreen:
1218 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetFocusScreen API")))
1220 User::Leave(KErrPermissionDenied);
1222 TInt focusScreen=*pData.Int;
1223 if (focusScreen>=0 && focusScreen<CWsTop::NumberOfScreens())
1224 SetReply(CWsTop::SetCurrentFocusScreen(focusScreen));
1226 SessionPanic(EWservPanicScreenNumber);
1229 case EWsClOpGetFocusScreen:
1230 SetReply(CWsTop::CurrentFocusScreen()->ScreenNumber());
1232 case EWsClOpGetNumberOfScreens:
1233 SetReply(CWsTop::NumberOfScreens());
1235 case EWsClOpClearAllRedrawStores:
1236 CWsTop::ClearAllRedrawStores();
1238 case EWsClOpGetGraphicMessage:
1239 iGraphicMessageQueue.GetGraphicMessage();
1241 case EWsClOpGraphicMessageCancel:
1242 iGraphicMessageQueue.CancelRead();
1244 case EWsClOpGraphicAbortMessage:
1245 iGraphicMessageQueue.AbortMessage(*pData.Int);
1247 case EWsClOpGraphicFetchHeaderMessage:
1248 SetReply(iGraphicMessageQueue.TopClientHandle());
1250 case EWsClOpRegisterSurface:
1251 SetReply(RegisterSurface(pData));
1253 case EWsClOpUnregisterSurface:
1254 UnregisterSurface(pData);
1256 case EWsClOpSetCloseProximityThresholds:
1257 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),
1258 __PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetCloseProximityThresholds")))
1260 User::Leave(KErrPermissionDenied);
1262 SetReply(TWsPointer::SetCloseProximityThresholds(pData.ZThresholdPair->enterThreshold,
1263 pData.ZThresholdPair->exitThreshold));
1265 case EWsClOpSetHighPressureThresholds:
1266 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),
1267 __PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetHighPressureThresholds")))
1269 User::Leave(KErrPermissionDenied);
1271 SetReply(TWsPointer::SetHighPressureThresholds(pData.ZThresholdPair->enterThreshold,
1272 pData.ZThresholdPair->exitThreshold));
1274 case EWsClOpGetEnterCloseProximityThreshold:
1275 SetReply(TWsPointer::GetEnterCloseProximityThreshold());
1277 case EWsClOpGetExitCloseProximityThreshold:
1278 SetReply(TWsPointer::GetExitCloseProximityThreshold());
1280 case EWsClOpGetEnterHighPressureThreshold:
1281 SetReply(TWsPointer::GetEnterHighPressureThreshold());
1283 case EWsClOpGetExitHighPressureThreshold:
1284 SetReply(TWsPointer::GetExitHighPressureThreshold());
1286 case EWsClOpCreateDrawableSource:
1287 CreateDrawableSourceL(*pData.CreateDrawableSource);
1289 case EWsClOpIndicateAppOrientation:
1290 IndicateAppOrientation(*pData.Orientation);
1292 case EWsClOpUnregisterAllTFXEffect:
1293 RDebug::Printf("[Bug 3344] OpCode EWsClOpUnregisterAllTFXEffect not supported.");
1296 PPanic(EWservPanicOpcode);
1300 /** Debug information accessor.
1304 void CWsClient::DebugInfoL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
1306 if (aFunction & EWsDebugClassMask)
1307 SetReply(DebugInfoClassifiedL(aFunction,aParam,aHasReplyBuf));
1309 DebugInfoUnclassifiedL(aFunction,aParam,aHasReplyBuf);
1312 /** A wide variety of generally unconnected debug enquiries.
1316 void CWsClient::DebugInfoUnclassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
1320 case EWsDebugInfoHeap:
1323 TWsDebugHeapInfo heapInfo;
1324 RHeap& heap=User::Heap();
1325 heapInfo.iCount=heap.AllocSize(heapInfo.iTotal);
1326 heapInfo.iAvailable=heap.Available(heapInfo.iLargestAvailable);
1327 ReplyBuf(&heapInfo,sizeof(heapInfo));
1329 SetReply(KErrArgument);
1331 case EWsDebugSetCheckHeapOnDisconnectClient:
1332 if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::DebugInfo API")))
1334 User::Leave(KErrPermissionDenied);
1336 CWsTop::SetCheckHeapOnDisconnectClient(this);
1338 case EWsDebugSetCheckHeapOnDisconnectMode:
1339 if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::DebugInfo API")))
1341 User::Leave(KErrPermissionDenied);
1343 CWsTop::SetCheckHeapOnDisconnectMode(STATIC_CAST(TWsCheckHeapOnDisconnectMode,aParam));
1345 case EWsDebugFetchCheckHeapResult:
1346 SetReply(CWsTop::FetchCheckHeapResult());
1348 case EWsDebugSetEventQueueTest:
1349 CWsWindowGroup::SetEventQueueTestState(aParam);
1352 SetReply(KErrNotSupported);
1357 /** Selects a debug function based on the class of debug query.
1361 TInt CWsClient::DebugInfoClassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
1362 {//Duplicating the meanings of Classified... this would be a good place for a security check
1363 //first part of param is always screen number
1364 TInt buffSpace=aHasReplyBuf?ReplyBufSpace():0;
1368 const TInt screenNumber = (aParam&EWsDebugArgScreenMask)>>EWsDebugArgScreenShift;
1369 const TInt functionClass = (aFunction&EWsDebugClassMask);
1370 CScreen* screen = NULL;
1371 if (functionClass<EWsDebugClassNonScreen)
1373 if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
1374 return (KErrArgument);
1376 screen = CWsTop::Screen(screenNumber);
1378 WS_ASSERT_DEBUG(screen, EWsPanicNoScreen);
1379 switch (aFunction&EWsDebugClassMask)
1381 case EWsDebugClassScreenUiElement:
1382 return DebugInfoScreenUiL(aFunction,aParam,buffSpace,*screen);
1383 case EWsDebugClassScreenElementSet:
1384 return DebugInfoScreenElementSetL(aFunction, aParam, buffSpace, *screen);
1385 case EWsDebugClassElementSetWindow:
1386 return DebugInfoElementSetWindowL(aFunction, aParam, buffSpace, *screen);
1387 case EWsDebugClassElementSetElement:
1388 return DebugInfoElementSetElementL(aFunction, aParam, buffSpace, *screen);
1390 case EWsDebugClassClientWindow:
1392 return (KErrNotSupported);
1396 /** Returns debug info about the UIElement entries for a screen.
1397 * This describes the general state or size of the element set.
1398 * It is indexed via screen num, and optionally element index.
1399 * Element index MUST BE 0 when not required.
1400 * @return size of buffer required or error code.
1402 TInt CWsClient::DebugInfoScreenUiL(TInt aFunction, TInt /* aParam */, TInt aReplyBufSize, CScreen& aScreen) const
1406 case EWsDebugGetFastpathMode:
1408 // obsolete through preq2669
1409 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1410 return KErrNotSupported;
1413 case EWsDebugSetFastpathMode:
1415 // obsolete through preq2669
1416 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1417 return KErrNotSupported;
1420 case EWsDebugGetUIElementInfoList:
1422 // obsolete through preq2669
1423 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1424 return KErrNotSupported;
1427 case EWsDebugGetUIElementBase:
1429 // obsolete through preq2669
1430 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1431 return KErrNotSupported;
1434 case EWsDebugGetUIElementIds:
1436 // obsolete through preq2669
1437 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1438 return KErrNotSupported;
1441 case EWsDebugGetSceneElementIdOrder:
1443 // obsolete through preq2669
1444 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1445 return KErrNotSupported;
1447 case EWsDebugSetFastpathTestMode:
1449 // obsolete through preq2669
1450 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1451 return KErrNotSupported;
1454 case EWsDebugSetFastpathOomMode:
1456 // obsolete through preq2669
1457 WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
1458 return KErrNotSupported;
1460 case EWsDebugGetUIElementConfig:
1462 return DebugReturnConfig(aReplyBufSize,&aScreen.UiElement(),0);
1466 return (KErrNotSupported);
1470 /** Returns debug info about the CWindowElementSet entry for a screen.
1471 * This describes the general state or size of the element set
1472 * It is indexed via screen num.
1473 * @return size of buffer required or error code.
1475 TInt CWsClient::DebugInfoScreenElementSetL(TInt aFunction, TInt /*aParam*/, TInt aReplyBufSize, const CScreen& aScreen) const
1477 const CWindowElementSet& elementSet = aScreen.WindowElements();
1480 case EWsDebugSerialSurfacesUpdated:
1483 case EWsDebugSurfaceWindowList:
1485 TInt outSize = elementSet.Count() * sizeof(TWsDebugWindowId);
1486 if (outSize<=aReplyBufSize)
1487 {//can stream, so I shall!
1488 for (TInt index = 0; index < elementSet.Count(); index++)
1490 const CWsClientWindow& win = *elementSet.DebugWindowAt(index);
1491 TWsDebugWindowId id=
1493 win.ClientHandle(), 0
1495 if (win.WsOwner()!=this)
1496 id.iOtherGroupId=win.WinGroup()->Identifier();
1497 ReplyBuf(&id, sizeof(id));
1503 return (KErrNotSupported);
1508 /** Returns debug info about a CWindowElement entry.
1509 * This describes the window or the background element(s)
1510 * It is indexed via screen num, and index in elementset.
1511 * @return size of buffer required or error code.
1513 TInt CWsClient::DebugInfoElementSetWindowL(TInt aFunction, TInt aParam,
1514 TInt aReplyBufSize, const CScreen& aScreen) const
1516 const CWindowElementSet& elementSet = aScreen.WindowElements();
1517 TUint winIndex = (aParam & EWsDebugArgWindowMask) >> EWsDebugArgWindowShift;
1518 const TAttributes* winElement = elementSet.DebugBackgroundAt(winIndex);
1519 if (winElement == NULL)
1521 return KErrArgument;
1524 MWsElement* backElement = winElement->iElement;
1525 TInt placedCount = elementSet.DebugPlacedCountAt(winIndex);
1528 case EWsDebugElementIdList:
1530 TInt retVal = (placedCount + 1) * sizeof(MWsElement*);
1531 if (retVal<aReplyBufSize)
1533 ReplyBuf(&backElement, sizeof(MWsElement*));
1534 for (TInt index=0; index<placedCount; index++)
1535 ReplyBuf(&elementSet.DebugPlacedAt(winIndex, index)->iElement, sizeof(MWsElement*));
1539 case EWsDebugBackgroundConfig:
1540 if (backElement == NULL)
1541 return KErrNotFound;
1543 return DebugReturnConfig(aReplyBufSize, backElement,
1544 winElement->DebugFlags());
1545 case EWsDebugBackgroundBase:
1546 if (backElement == NULL)
1547 return KErrNotFound;
1549 return DebugReturnBase(aReplyBufSize, backElement);
1550 case EWsDebugBackgroundFlags:
1551 return DebugReturnFlags(aReplyBufSize, backElement,
1552 winElement->DebugFlags());
1554 return KErrNotSupported;
1555 //This method can also be extended to return region and state information from the associated window
1559 /** Returns debug info about a placed element.
1560 * It is indexed via screen num, index in elementset, and index in placed element array.
1561 * @return size of buffer required or error code.
1563 TInt CWsClient::DebugInfoElementSetElementL(TInt aFunction, TInt aParam,
1564 TInt aReplyBufSize, const CScreen& aScreen) const
1566 const CWindowElementSet& elementSet = aScreen.WindowElements();
1567 TUint winIndex = (aParam & EWsDebugArgWindowMask) >> EWsDebugArgWindowShift;
1568 TUint placeIndex = (aParam & EWsDebugArgElementMask) >> EWsDebugArgElementShift;
1569 const TAttributes* placedElement = elementSet.DebugPlacedAt(winIndex, placeIndex);
1570 if (placedElement == NULL)
1572 return KErrArgument;
1575 MWsElement* element = placedElement->iElement;
1576 if (element == NULL)
1578 return KErrNotFound;
1583 case EWsDebugPlacedConfig:
1584 return DebugReturnConfig(aReplyBufSize, element,
1585 placedElement->DebugFlags());
1586 case EWsDebugPlacedBase:
1587 return DebugReturnBase(aReplyBufSize, element);
1588 case EWsDebugPlacedFlags:
1589 return DebugReturnFlags(aReplyBufSize, element,
1590 placedElement->DebugFlags());
1592 return KErrNotSupported;
1596 /** Returns a filled in TSurfaceConfiguration from an MWsElement.
1597 * Data is usually copied if the buffer is big enough
1598 * @return the size of buffer required, or zero if the buffer is acceptable
1600 TInt CWsClient::DebugReturnConfig(TInt aReplyBufSize, MWsElement* aElement, TInt /*aFlags*/) const
1602 if (aElement == NULL)
1604 return KErrNotReady;
1607 TSurfaceConfiguration config(aReplyBufSize);
1608 TInt retVal=config.Size();
1611 retVal = CWindowElementSet::GetConfiguration(config, *aElement);
1612 if (retVal==KErrNone)
1614 ReplyBuf(&config, config.Size()); //return code is 0 = "just right"
1620 /** Returns the base region of the element.
1621 * This region is element relative. There are a number of ways that this does not match the input region:
1622 * First, if no region is specified then the extent rectangle is returned
1623 * Any region returned has all negative ordinate values clipped.
1624 * Positive values may exceed the extent, but negative values are never returned.
1625 * Internally, a region which is only negative is "remembered illegally", but an empty region is returned.
1627 TInt CWsClient::DebugReturnBase(TInt /*aReplyBufSize*/, const MWsElement* /*aElement*/)const
1629 return KErrNotSupported;
1632 /** Returns the flags associated with the given element.
1633 * 2 words are inserted.
1634 * One represents the MWsElement flags, the other represents CWindowElement or UIElement flags
1635 * @return length of two words
1637 TInt CWsClient::DebugReturnFlags(TInt aReplyBufSize, const MWsElement* /*aElement*/, TInt aFlags)const
1639 const TInt KArraySize=2;
1640 if (aReplyBufSize>KArraySize*sizeof(TInt))
1642 // First field is for flags from scene element if any
1643 TInt returns[KArraySize]=
1647 ReplyBuf(returns,KArraySize*sizeof(TInt));
1649 return KArraySize*sizeof(TInt);
1652 /** Packages a region for return ans an array of rectangles.
1653 * If the buffer is big enough the data is transferred
1654 * @return the buffer size required, or an error code if an empty or null pointer is passed in
1656 TInt CWsClient::DebugReturnRegion(TInt aReplyBufSize, const TRegion* aRegion, TInt aErrCodeIfEmpty)const
1659 return KErrNotReady;
1661 const TInt returnSize=aRegion->Count()*sizeof(TRect);
1663 return aErrCodeIfEmpty;
1665 if (returnSize<=aReplyBufSize)
1666 ReplyBuf(aRegion->RectangleList(),returnSize);
1671 void CWsClient::ReplyGroupName(HBufC* aName, TInt aMaxLength) // static
1675 if (aName->Length()>aMaxLength)
1677 ReplyBuf(aName->Left(aMaxLength));
1678 SetReply(KErrOverflow);
1684 ReplyBuf(KNullDesC);
1687 void CWsClient::TriggerRedraw()
1689 RedrawQueue()->TriggerRedraw();
1692 void CWsClient::UpdateWindowOrdinalPrioritys()
1694 for(CWsWindowGroup* win=iScreen->RootWindow()->Child();win;win=win->NextSibling())
1696 if (win->WsOwner()==this)
1697 win->UpdateOrdinalPriority(ETrue);
1701 void CWsClient::DeleteSystemPointerListEntry(TInt aIndex)
1703 PointerCursor (aIndex)->Close();
1704 iSystemPointerCursors->Delete(aIndex);
1707 CWsPointerCursor* CWsClient::SystemPointerCursor(TInt aIndex)
1710 if (iSystemPointerCursors)
1712 if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
1713 return PointerCursor(arrayIndex);
1715 // Cursor not defined so try for default cursor
1716 if (FindCursorArrayItem(iSystemPointerCursors, 0, arrayIndex))
1717 return PointerCursor(arrayIndex);
1720 // If that fails simply return NULL for no cursor
1724 void CWsClient::SetSystemPointerCursorL(TInt aIndex, CWsPointerCursor* aCursor)
1726 if (iSystemPointerCursorListOwner!=this)
1727 PPanic(EWservPanicNotSystemPointerCursorListOwner);
1729 TInt arrayIndex = KErrNotFound;
1730 if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
1732 PointerCursor(arrayIndex)->Close();
1733 PointerCursor(arrayIndex) = aCursor;
1737 TWsCursorArrayItem entry;
1738 entry.iIndex=aIndex;
1739 entry.iCursor=aCursor;
1740 iSystemPointerCursors->InsertIsqL(entry, iCursorKey);
1744 if (aIndex==iDefaultSystemPointerCursorIndex)
1745 iDefaultSystemPointerCursor=aCursor;
1746 TWsPointer::UpdatePointerCursor();
1749 void CWsClient::ClearSystemPointerCursor(TInt aIndex)
1751 if (iSystemPointerCursorListOwner!=this)
1752 PPanic(EWservPanicNotSystemPointerCursorListOwner);
1755 if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
1757 DeleteSystemPointerListEntry(arrayIndex);
1758 if (aIndex==iDefaultSystemPointerCursorIndex)
1759 iDefaultSystemPointerCursor=NULL;
1763 void CWsClient::ClaimSystemPointerCursorListL()
1765 if (iSystemPointerCursorListOwner)
1766 User::Leave(KErrInUse);
1768 const TInt systemPointerCursorGranularity = 4;
1769 iSystemPointerCursors = new(ELeave) CArrayFixFlat<TWsCursorArrayItem> (systemPointerCursorGranularity);
1770 iSystemPointerCursorListOwner=this;
1773 void CWsClient::FreeSystemPointerCursorList()
1775 if(iSystemPointerCursorListOwner == this)
1777 iSystemPointerCursorListOwner = NULL;
1779 while(iSystemPointerCursors->Count()>0)
1780 DeleteSystemPointerListEntry(0);
1782 iDefaultSystemPointerCursor = NULL;
1783 iDefaultSystemPointerCursorIndex = 0;
1785 delete iSystemPointerCursors;
1786 iSystemPointerCursors = NULL;
1790 void CWsClient::SetDefaultSystemPointerCursor(TInt aIndex)
1793 if (iSystemPointerCursorListOwner != this)
1794 PPanic(EWservPanicNotSystemPointerCursorListOwner);
1796 iDefaultSystemPointerCursorIndex = aIndex;
1797 iDefaultSystemPointerCursor = NULL;
1799 if (aIndex != ENoDefaultSystemPointerCursor &&
1800 FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
1801 iDefaultSystemPointerCursor = PointerCursor (arrayIndex);
1803 iDefaultSystemPointerCursor = NULL;
1805 TWsPointer::UpdatePointerCursor();
1808 TBool CWsClient::FindCursorArrayItem(CArrayFixFlat<TWsCursorArrayItem>* aCursorArray,
1809 TInt aIndex,TInt& aPosition)
1812 return EFalse; // No hit if the array isn't even allocated
1814 TWsCursorArrayItem entry;
1815 entry.iIndex = aIndex;
1816 return aCursorArray->FindIsq(entry, iCursorKey, aPosition)==KErrNone;
1819 void CWsClient::SetClientPriority()
1821 if (iComputeMode!=RWsSession::EPriorityControlDisabled)
1823 Client().SetProcessPriority(
1824 iComputeMode==RWsSession::EPriorityControlComputeOn
1825 || CWsTop::FocusWindowGroupOwner()!=this
1826 ? EPriorityBackground
1827 : EPriorityForeground);
1831 void CWsClient::SetComputeMode(RWsSession::TComputeMode aComputeMode)
1833 if (aComputeMode!=RWsSession::EPriorityControlDisabled
1834 && aComputeMode !=RWsSession::EPriorityControlComputeOn
1835 && aComputeMode !=RWsSession::EPriorityControlComputeOff)
1836 PPanic(EWservPanicSetComputeMode);
1837 iComputeMode=aComputeMode;
1838 SetClientPriority();
1841 void CWsClient::CompleteMessage(const RMessage2& aMessage,TInt aReason)
1843 WS_ASSERT_DEBUG(!aMessage.IsNull(),EWsPanicPanicFlagError);
1844 if (iInternalFlags&EPanicClientAsSoonAsPossible)
1846 aMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
1847 iInternalFlags&=~EPanicClientAsSoonAsPossible;
1851 if(!iResponseHandle)
1852 aMessage.Complete(aReason);
1855 aMessage.Complete(*iResponseHandle);
1856 iResponseHandle=NULL;
1861 void CWsClient::ServiceError(const RMessage2& /*aMessage*/,TInt aError)
1863 CompleteMessage(iClientMessage,aError); // (finish)
1866 void CWsClient::ServiceL(const RMessage2 &aMessage) // (step ##1)
1868 // Handle messages for the window server server.
1871 iClientMessage=aMessage; // from now on use always the message stored in the session
1872 if (iInternalFlags&EPanicClientAsSoonAsPossible)
1874 iClientMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
1878 iPanicReason=KErrNone;
1880 TBool completeRequest=ETrue;
1881 DoServiceL(iClientMessage, completeRequest); // (call #2)
1882 if (completeRequest)
1883 CompleteMessage(iClientMessage,iReply); // (finish)
1887 void CWsClient::SetResponseHandle(RHandleBase* aHandle)
1889 iResponseHandle = aHandle;
1892 void CWsClient::DoServiceL(const RMessage2& aMessage, TBool& aCompleteRequest) // (step #2)
1894 if (aMessage.IsNull())
1895 PPanic(EWservPanicNullMessageFromClient);
1897 WS_ASSERT_DEBUG(iInternalFlags&EFinishedProcessingCommands,EWsPanicCommandBufferStillBeingProcessed);
1899 const TInt function = aMessage.Function();
1902 case EWservMessInit:
1903 StartInitializationL(iConnectionId++);
1905 case EWservMessSyncMsgBuf:
1906 case EWservMessCommandBuffer: // Process command buffer containing draw ops
1908 if (!IsInitialised())
1909 PPanic(EWservPanicUninitialisedClient);
1911 const TInt err = aMessage.Read(KBufferMessageSlot, iCmdBuf);
1916 iNextCmd=iCmdBuf.Ptr();
1917 DoServiceCommandBuf(); // (call #3.1)
1919 else if (err!=KErrDied)
1920 PPanic(EWservPanicDescriptor);
1922 if(function == EWservMessCommandBuffer && CWsTop::FinishEveryFlush())
1923 Screen()->DoRedrawNow();
1925 aCompleteRequest=EFalse;
1928 case EWservMessShutdown:
1930 if(!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for EWservMessShutdown message ")))
1931 PPanic(EWservPanicPermissionDenied);
1933 if (aMessage.Int0() == EWservShutdownCheck)
1936 PPanic(EWservPanicHandle);
1939 case EWservMessFinish:
1940 Screen()->DoRedrawNow();
1943 if (function&EWservMessAsynchronousService)
1945 TRAPD(err, ExecuteAsyncClientCommandL((function&~EWservMessAsynchronousService), aMessage)); // (call #3.2)
1946 aCompleteRequest = (err!=KErrNone);
1947 WS_ASSERT_DEBUG((!(iInternalFlags&EPanicClientAsSoonAsPossible))==(!aCompleteRequest), EWsPanicPanicFlagError);
1949 else if (function&EWservMessAnimDllAsyncCommand)
1951 CWsAnimDll* const animDll = static_cast<CWsAnimDll*>(HandleToObj(aMessage.Int0(), WS_HANDLE_ANIM_DLL));
1954 SessionPanic(EWservPanicHandle);
1958 // it looks wrong to call CommandReply here (not AsyncCommandReply, or something, which doesn't exist), but basically, we can't add a virtual AsyncCommandReplyL to CAnim to correspond to RAnim::AsyncCommandReply as that would break binary and source compatibility for Anim plug-ins; instead asynchronous commands are done by the plug-in having to complete the RMessagePtr2 returned by iFunctions->Message() (or a copy of of that object) for asynchronous commands only
1959 TRAPD(err, animDll->AnimObjectL(aMessage.Int1())->CommandReply(function&~EWservMessAnimDllAsyncCommand,NULL));
1960 aCompleteRequest=(err!=KErrNone);
1961 WS_ASSERT_DEBUG((!(iInternalFlags&EPanicClientAsSoonAsPossible))==(!aCompleteRequest), EWsPanicPanicFlagError);
1964 SetReply(KErrNotSupported);
1967 void CWsClient::RemoteRead(TDes16& aDes, TInt aOffset)
1969 if (iClientMessage.Read(KRemoteBufferMessageSlot,aDes,aOffset)!=KErrNone)
1970 SessionPanic(EWservPanicDescriptor);
1973 void CWsClient::RemoteRead(TDes8& aDes, TInt aOffset)
1975 if (iClientMessage.Read(KRemoteBufferMessageSlot,aDes,aOffset)!=KErrNone)
1976 SessionPanic(EWservPanicDescriptor);
1979 void CWsClient::RemoteReadL(TDes16& aDes, TInt aOffset)
1981 iClientMessage.ReadL(KRemoteBufferMessageSlot,aDes,aOffset);
1984 void CWsClient::RemoteReadL(TDes8& aDes, TInt aOffset)
1986 iClientMessage.ReadL(KRemoteBufferMessageSlot,aDes,aOffset);
1989 void CWsClient::InitStaticsL()
1993 void CWsClient::DeleteStatics()
1995 if (iTextCursorArray)
1997 const TInt count = iTextCursorArray->Count();
1998 for (TInt index=0;index<count;index++)
1999 delete iTextCursorArray->At(index).iCursor;
2001 delete iTextCursorArray;
2002 iTextCursorArray = NULL;
2005 // coverity[extend_simple_error]
2008 /* CWsClient implementing MWsClient */
2010 TBool CWsClient::HasCapability(TCapability aCapability) const
2012 return iClient.HasCapability(aCapability);
2015 TSecureId CWsClient::SecureId() const
2017 return iClient.SecureId();
2020 TVendorId CWsClient::VendorId() const
2022 return iClient.VendorId();
2026 Makes a new copy of the aData. so it could be deleted after this call.
2028 TInt CWsClient::SendMessage(const CWsGraphicDrawer* aOnBehalfOf,const TDesC8& aData)
2030 CWsGraphicMessageQueue::CMessage* msg = CWsGraphicMessageQueue::CMessage::New(aData);
2032 return SendMessage(aOnBehalfOf, *msg);
2037 /** adds a message to the message queue
2038 @return a postive number to uniquely identify the message
2040 TInt CWsClient::SendMessage(const CWsGraphicDrawer* aOnBehalfOf,CWsMessageData& aData)
2042 WS_ASSERT_DEBUG(aData.Data().Size(), EWsPanicWsGraphic);
2043 const CWsGraphicDrawerObject* obj = DrawerObject(aOnBehalfOf);
2044 WS_ASSERT_DEBUG(obj, EWsPanicWsGraphic);
2047 // assign message id
2048 if(iMessageIdSeq == KMaxTInt) // Wrap if iMessageIdSeq has reached KMaxTInt
2052 // correct other handles
2053 aData.iClientHandle = (obj->ClientHandle() | (EWsGraphMessageTypeUser & 0x03));
2054 aData.iDrawer = obj->Drawer();
2055 aData.iId = iMessageIdSeq;
2056 iGraphicMessageQueue.Queue(&aData);
2057 return iMessageIdSeq;
2064 CWsGraphicDrawerObject* CWsClient::DrawerObject(const CWsGraphicDrawer* aDrawer)
2066 const TInt count = ObjectIndex()->Length();
2067 for(TInt i=0; i<count; i++)
2069 CWsObject* obj = const_cast<CWsObject*>(ObjectIndex()->At(i));
2070 if(obj && (WS_HANDLE_GRAPHIC_DRAWER == obj->Type()))
2072 CWsGraphicDrawerObject* candidate = static_cast<CWsGraphicDrawerObject*>(obj);
2073 if(candidate->Drawer() == aDrawer)
2081 const CWsGraphicDrawerObject* CWsClient::DrawerObject(const CWsGraphicDrawer* aDrawer) const
2083 CWsObjectIx* objectIndex = const_cast<CWsClient*>(this)->ObjectIndex();
2084 const TInt count = objectIndex->Length();
2085 for(TInt i=0; i<count; i++)
2087 CWsObject* obj = const_cast<CWsObject*>(objectIndex->At(i));
2088 if(obj && (WS_HANDLE_GRAPHIC_DRAWER == obj->Type()))
2090 const CWsGraphicDrawerObject* candidate = static_cast<CWsGraphicDrawerObject*>(obj);
2091 if(candidate->Drawer() == aDrawer)
2099 TInt CWsClient::RegisterSurface(const TWsClCmdUnion& pData)
2101 TInt screenNumber = pData.SurfaceRegister->screenNumber;
2102 if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
2104 PPanic(EWservPanicScreenNumber);
2106 if (pData.SurfaceRegister->surfaceId.Type() == TSurfaceId::EScreenSurface
2107 || pData.SurfaceRegister->surfaceId.IsNull())
2109 PPanic(EWservPanicInvalidSurface);
2112 CRegisteredSurfaceMap* surfaceMap = CWsTop::Screen(screenNumber)->SurfaceMap();
2113 const TSurfaceId& surfaceId = pData.SurfaceRegister->surfaceId;
2114 TInt err = surfaceMap->Add(*this,surfaceId);
2124 PPanic(EWservPanicInvalidSurface);
2129 void CWsClient::UnregisterSurface(const TWsClCmdUnion& pData)
2131 TInt screenNumber = pData.SurfaceRegister->screenNumber;
2132 if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
2134 PPanic(EWservPanicScreenNumber);
2136 TInt err = CWsTop::Screen(screenNumber)->SurfaceMap()->Remove(*this,pData.SurfaceRegister->surfaceId);
2137 WS_ASSERT_DEBUG((err==KErrNone||err==KErrNotFound), EWsPanicSurfaceMapError);
2140 void CWsClient::CreateDrawableSourceL(const TWsClCmdCreateDrawableSource& aDrawableSourceData)
2142 CWsDrawableSource* drawableSource = new(ELeave) CWsDrawableSource(this);
2143 CleanupStack::PushL(drawableSource);
2144 drawableSource->ConstructL(aDrawableSourceData);
2145 CleanupStack::Pop();
2148 void CWsClient::IndicateAppOrientation(TRenderOrientation aOrientation)
2150 iIndicatedAppOrientation = aOrientation;
2151 CWsTop::CheckRenderOrientation();
2154 TInt CWsClient::GetIndicatedAppOrientation()
2156 return iIndicatedAppOrientation;
2163 CWsCliObj* CWsCliObj::NewL(CWsClient* aOwner)
2165 CWsCliObj* self = new(ELeave) CWsCliObj(aOwner);
2166 CleanupStack::PushL(self);
2168 CleanupStack::Pop(self);
2172 CWsCliObj::CWsCliObj(CWsClient *aOwner) :
2173 CWsObject(aOwner, WS_HANDLE_CLIENT)
2177 void CWsCliObj::ConstructL()
2182 void CWsCliObj::CommandL(TInt aOpcode, const TAny* aCmdData) // (step #5)
2184 iWsOwner->ExecuteCommandL(aOpcode,aCmdData); // (call #6)
2187 CWsObject* CWsClient::HandleToObjUntyped(TInt aHandle)
2189 return iObjectIndex->HandleToObject(aHandle);
2192 const CWsObject* CWsClient::HandleToObjUntyped(TInt aHandle) const
2194 return const_cast<CWsClient*>(this)->HandleToObjUntyped(aHandle);
2197 CWsObject* CWsClient::HandleToObj(TInt aHandle, WH_HANDLES aType)
2199 CWsObject* object = HandleToObjUntyped(aHandle);
2200 return (object && object->Type() == aType) ? object : NULL;
2204 const CWsObject* CWsClient::HandleToObj(TInt aHandle, WH_HANDLES aType) const
2206 return const_cast<CWsClient*>(this)->HandleToObj(aHandle, aType);
2209 void CWsClient::SetRetryFlag(TEventCode aEventCode)
2214 case EEventDisplayChanged:
2216 iInternalFlags |= ERetryDisplayEvent;
2222 TBool CWsClient::RetryEvent(TEventCode aEventCode)
2226 case EEventDisplayChanged:
2228 return (iInternalFlags & ERetryDisplayEvent);
2234 void CWsClient::RemoveRetryFlag(TEventCode aEventCode)
2238 case EEventDisplayChanged:
2240 iInternalFlags &= ~ERetryDisplayEvent;