sl@0
|
1 |
// Copyright (c) 1994-2010 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 |
// Client handling
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "CLIENT.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "ANIM.H"
|
sl@0
|
21 |
#include "Direct.H"
|
sl@0
|
22 |
#include "EVENT.H"
|
sl@0
|
23 |
#include "KEYCLICK.H"
|
sl@0
|
24 |
#include "server.h"
|
sl@0
|
25 |
#include "gc.h"
|
sl@0
|
26 |
#include "rootwin.h"
|
sl@0
|
27 |
#include "windowgroup.h"
|
sl@0
|
28 |
#include "wstop.h"
|
sl@0
|
29 |
#include "panics.h"
|
sl@0
|
30 |
#include "../CLIENT/w32comm.h"
|
sl@0
|
31 |
#include "password.h"
|
sl@0
|
32 |
#include "pointer.h"
|
sl@0
|
33 |
#include <u32hal.h> // EHalGroupEmulator
|
sl@0
|
34 |
#include "WsMemMgr.h"
|
sl@0
|
35 |
#include <e32hashtab.h> // for RHashMap
|
sl@0
|
36 |
#include "registeredsurfacemap.h"
|
sl@0
|
37 |
#include <graphics/wselement.h>
|
sl@0
|
38 |
|
sl@0
|
39 |
#include "windowelementset.h"
|
sl@0
|
40 |
#include "drawresource.h"
|
sl@0
|
41 |
|
sl@0
|
42 |
extern CDebugLogBase* wsDebugLog;
|
sl@0
|
43 |
_LIT(KWSERVSessionPanicCategory,"WSERV");
|
sl@0
|
44 |
|
sl@0
|
45 |
GLREF_D TPtr nullDescriptor;
|
sl@0
|
46 |
|
sl@0
|
47 |
TWsCmdHeaderBase CWsClient::iCurrentCommand;
|
sl@0
|
48 |
TBuf8<EClientBufferMaxSize> CWsClient::iCmdBuf;
|
sl@0
|
49 |
TInt CWsClient::iReply;
|
sl@0
|
50 |
TInt CWsClient::iReplyOffset;
|
sl@0
|
51 |
CWsClient* CWsClient::iCurrentClient;
|
sl@0
|
52 |
CWsObject* CWsClient::iDestObj;
|
sl@0
|
53 |
const TUint8* CWsClient::iNextCmd;
|
sl@0
|
54 |
|
sl@0
|
55 |
TUint CWsClient::iConnectionId = CDebugLogBase::EDummyConnectionId+1;
|
sl@0
|
56 |
CArrayFixFlat<CWsClient::TWsCursorArrayItem>* CWsClient::iSystemPointerCursors = NULL;
|
sl@0
|
57 |
TInt CWsClient::iDefaultSystemPointerCursorIndex = 0; //Negative when there isn't one
|
sl@0
|
58 |
CWsPointerCursor* CWsClient::iDefaultSystemPointerCursor;
|
sl@0
|
59 |
CWsClient* CWsClient::iSystemPointerCursorListOwner = NULL;
|
sl@0
|
60 |
CArrayFixFlat<CWsClient::TWsCursorArrayItem>* CWsClient::iTextCursorArray = NULL;
|
sl@0
|
61 |
|
sl@0
|
62 |
TKeyArrayFix CWsClient::iCursorKey(_FOFF(CWsClient::TWsCursorArrayItem,iIndex), ECmpTInt);
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Used for enforcing the redraw calling convention in emulator builds.
|
sl@0
|
66 |
When enabled this will panic any client calling a CWindowGc draw operation outside a
|
sl@0
|
67 |
RWindow::BeginRedraw() / RWindow::EndRedraw() pair (known as non-redraw drawing).
|
sl@0
|
68 |
|
sl@0
|
69 |
Enable by adding "debug_wserv_exe_EnforceRedrawCallingConvention X" to epoc.ini
|
sl@0
|
70 |
where X is either 0 (zero) for "off" or 1 (one) for "on".
|
sl@0
|
71 |
|
sl@0
|
72 |
Then enable globally in WServ AutoFlush by defining __AUTO_FLUSH in ../client/client.h
|
sl@0
|
73 |
or locally by calling RWsSession::SetAutoFlush(ETrue) for a specific client programatically,
|
sl@0
|
74 |
or locally pressing Ctrl-Alt-Shift-F in the emulator.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
TBool CWsClient::iDebug_EnforceRedrawCallingConvention = EFalse;
|
sl@0
|
77 |
|
sl@0
|
78 |
// Security policy stings
|
sl@0
|
79 |
static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_WriteDeviceData,ECapabilityWriteDeviceData);
|
sl@0
|
80 |
static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_SwEvent,ECapabilitySwEvent);
|
sl@0
|
81 |
static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_PowerMgmt,ECapabilityPowerMgmt);
|
sl@0
|
82 |
|
sl@0
|
83 |
//
|
sl@0
|
84 |
// class CWsClient
|
sl@0
|
85 |
//
|
sl@0
|
86 |
|
sl@0
|
87 |
CWsClient::CWsClient(RThread aClient) : iClient(aClient), iGraphicMessageQueue(this), iInternalFlags(ERemoveKeyCode|EFinishedProcessingCommands)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
iScreen = CWsTop::Screen();
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
CWsClient::~CWsClient()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
CWsTop::WindowServer()->RemoveAllGraphicDrawers(*this); // deindexes all graphic drawers owned by this client
|
sl@0
|
95 |
|
sl@0
|
96 |
delete iTempCustomTextCursor.iCursor;
|
sl@0
|
97 |
FreeSystemPointerCursorList();
|
sl@0
|
98 |
CWsTop::ClientDestroyed(this);
|
sl@0
|
99 |
if (wsDebugLog)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
_LIT(ClientDestuct,"Client %d destructing");
|
sl@0
|
102 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogIntermediate,ClientDestuct, iConnectionHandle);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
iInternalFlags |= EClientIsClosing;
|
sl@0
|
106 |
delete iObjectIndex;
|
sl@0
|
107 |
delete iEventQueue;
|
sl@0
|
108 |
delete iRedrawQueue;
|
sl@0
|
109 |
delete iPriorityKeyEvent;
|
sl@0
|
110 |
CWsTop::ClearSurfaceMap(this);
|
sl@0
|
111 |
|
sl@0
|
112 |
CWsTop::SessionExited(this);
|
sl@0
|
113 |
iClient.Close();
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
void CWsClient::CompleteInitializationL()
|
sl@0
|
117 |
{
|
sl@0
|
118 |
iObjectIndex = new(ELeave) CWsObjectIx();
|
sl@0
|
119 |
iObjectIndex->ConstructL();
|
sl@0
|
120 |
|
sl@0
|
121 |
iEventQueue = new(ELeave) CEventQueue(this);
|
sl@0
|
122 |
iEventQueue->ConstructL();
|
sl@0
|
123 |
|
sl@0
|
124 |
iRedrawQueue = new(ELeave) CRedrawQueue(this);
|
sl@0
|
125 |
iRedrawQueue->ConstructL();
|
sl@0
|
126 |
|
sl@0
|
127 |
iPriorityKeyEvent = new(ELeave) CPriorityKey(this);
|
sl@0
|
128 |
|
sl@0
|
129 |
CWsCliObj::NewL(this);
|
sl@0
|
130 |
|
sl@0
|
131 |
iComputeMode = RWsSession::EPriorityControlComputeOff;
|
sl@0
|
132 |
|
sl@0
|
133 |
CWsTop::NewSession(this);
|
sl@0
|
134 |
|
sl@0
|
135 |
#ifdef __WINS__
|
sl@0
|
136 |
TBool halValue = EFalse;
|
sl@0
|
137 |
if (UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalIntProperty,
|
sl@0
|
138 |
(TAny*)"debug_wserv_exe_EnforceRedrawCallingConvention", &halValue) == KErrNone)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
iDebug_EnforceRedrawCallingConvention = halValue;
|
sl@0
|
141 |
}
|
sl@0
|
142 |
#endif
|
sl@0
|
143 |
|
sl@0
|
144 |
iInternalFlags |= EIsInitialised;
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
TBool CWsClient::DebugEnforceRedrawCallingConvention()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
return iDebug_EnforceRedrawCallingConvention;
|
sl@0
|
150 |
}
|
sl@0
|
151 |
|
sl@0
|
152 |
void CWsClient::StartInitializationL(TUint aConnectionHandle)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
if (wsDebugLog)
|
sl@0
|
155 |
wsDebugLog->NewClient(aConnectionHandle);
|
sl@0
|
156 |
|
sl@0
|
157 |
if (iObjectIndex)
|
sl@0
|
158 |
PPanic(EWservPanicReInitialise);
|
sl@0
|
159 |
else
|
sl@0
|
160 |
{
|
sl@0
|
161 |
iConnectionHandle = aConnectionHandle;
|
sl@0
|
162 |
CompleteInitializationL();
|
sl@0
|
163 |
}
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
//
|
sl@0
|
167 |
// Convert a handle to object checking it is of the correct type.
|
sl@0
|
168 |
//
|
sl@0
|
169 |
void CWsClient::HandleToWindow(TInt aHandle,CWsWindowBase** pWin)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
if ((*pWin=(CWsWindowBase* )HandleToObjUntyped(aHandle))==NULL ||
|
sl@0
|
172 |
((*pWin)->Type()!=WS_HANDLE_WINDOW && (*pWin)->Type()!=WS_HANDLE_GROUP_WINDOW))
|
sl@0
|
173 |
PPanic(EWservPanicWindow);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
//
|
sl@0
|
177 |
// Convert a handle to object checking it is of the correct type.
|
sl@0
|
178 |
//
|
sl@0
|
179 |
void CWsClient::HandleToClientWindow(TInt aHandle,CWsClientWindow** pWin)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
if ((*pWin=(CWsClientWindow*)HandleToObj(aHandle, WS_HANDLE_WINDOW))==NULL)
|
sl@0
|
182 |
PPanic(EWservPanicWindow);
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
void CWsClient::CreateNewPointerCursorL(const TWsClCmdCreatePointerCursor &aCmd)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
CWsPointerCursor* pc=new(ELeave) CWsPointerCursor(this);
|
sl@0
|
188 |
CleanupStack::PushL(pc);
|
sl@0
|
189 |
pc->ConstructL(aCmd);
|
sl@0
|
190 |
CleanupStack::Pop();
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
// Create a new custom text cursor
|
sl@0
|
194 |
void CWsClient::StartSetCustomTextCursorL(const TWsClCmdCustomTextCursorData& aCmd)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
if (!iTextCursorArray)
|
sl@0
|
197 |
{
|
sl@0
|
198 |
const TInt textCursorArrayGranularity = 4;
|
sl@0
|
199 |
iTextCursorArray = new(ELeave) CArrayFixFlat<TWsCursorArrayItem>(textCursorArrayGranularity);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
TInt arrayIndex = KErrNotFound;
|
sl@0
|
203 |
if (FindCursorArrayItem(iTextCursorArray, aCmd.identifier, arrayIndex))
|
sl@0
|
204 |
User::Leave(KErrAlreadyExists);
|
sl@0
|
205 |
|
sl@0
|
206 |
delete iTempCustomTextCursor.iCursor;
|
sl@0
|
207 |
iTempCustomTextCursor.iCursor = NULL;
|
sl@0
|
208 |
iTempCustomTextCursor.iCursor = new(ELeave) CWsCustomTextCursor(this, aCmd.alignment);
|
sl@0
|
209 |
|
sl@0
|
210 |
static_cast<CWsCustomTextCursor*>(iTempCustomTextCursor.iCursor)->ConstructL(aCmd.flags);
|
sl@0
|
211 |
iTempCustomTextCursor.iIndex = aCmd.identifier;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
// Add new custom text cursor to global list
|
sl@0
|
215 |
void CWsClient::CompleteSetCustomTextCursorL(TInt aError)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
if (aError)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
delete iTempCustomTextCursor.iCursor;
|
sl@0
|
220 |
iTempCustomTextCursor.iCursor = NULL;
|
sl@0
|
221 |
User::Leave(aError);
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
TWsCursorArrayItem entry = iTempCustomTextCursor;
|
sl@0
|
225 |
iTempCustomTextCursor.iCursor = NULL;
|
sl@0
|
226 |
CleanupStack::PushL(entry.iCursor);
|
sl@0
|
227 |
|
sl@0
|
228 |
TInt arrayIndex;
|
sl@0
|
229 |
if (FindCursorArrayItem(iTextCursorArray, entry.iIndex, arrayIndex))
|
sl@0
|
230 |
User::Leave(KErrAlreadyExists);
|
sl@0
|
231 |
else
|
sl@0
|
232 |
iTextCursorArray->InsertIsqL(entry, iCursorKey);
|
sl@0
|
233 |
|
sl@0
|
234 |
CleanupStack::Pop(entry.iCursor);
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
CWsCustomTextCursor* CWsClient::FindCustomTextCursor(TInt aIdentifier)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
TInt arrayIndex;
|
sl@0
|
240 |
if (!FindCursorArrayItem(iTextCursorArray, aIdentifier, arrayIndex))
|
sl@0
|
241 |
return NULL;
|
sl@0
|
242 |
|
sl@0
|
243 |
return TextCursor(arrayIndex);
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
void CWsClient::CreateNewSpriteL(const TWsClCmdCreateSprite &aCmd)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
CWsSprite* sprite = new(ELeave) CWsSprite(this);
|
sl@0
|
249 |
CleanupStack::PushL(sprite);
|
sl@0
|
250 |
sprite->ConstructL(aCmd);
|
sl@0
|
251 |
CleanupStack::Pop();
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|
sl@0
|
254 |
void CWsClient::CreateNewBitmapL(const TWsClCmdCreateBitmap &aCmd)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
DWsBitmap* bitmap = new(ELeave) DWsBitmap(this);
|
sl@0
|
257 |
CleanupStack::PushL(bitmap);
|
sl@0
|
258 |
bitmap->ConstructL(aCmd);
|
sl@0
|
259 |
CleanupStack::Pop();
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
/** Creates a new window.
|
sl@0
|
263 |
|
sl@0
|
264 |
If the parent is a window group then a new CWsTopClientWindow instance is created. If the parent is
|
sl@0
|
265 |
a window then a new CWsClientWindow instance is created.
|
sl@0
|
266 |
|
sl@0
|
267 |
@param aCmd The command received from the client
|
sl@0
|
268 |
@internalComponent
|
sl@0
|
269 |
@released
|
sl@0
|
270 |
*/
|
sl@0
|
271 |
void CWsClient::CreateNewWindowL(const TWsClCmdCreateWindow &aCmd)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
CWsWindowBase* parent;
|
sl@0
|
274 |
HandleToWindow(aCmd.parent,&parent);
|
sl@0
|
275 |
CWsClientWindow* win = NULL;
|
sl@0
|
276 |
TBool deviceIsInvalid = EFalse;
|
sl@0
|
277 |
CScreen* screen = parent->Screen();
|
sl@0
|
278 |
if (parent->WinType()==EWinTypeGroup)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
__ASSERT_DEBUG(!((CWsWindowGroup*)parent)->ScreenDeviceDeleted(),PPanic(EWservPanicGroupWinScreenDeviceDeleted));
|
sl@0
|
281 |
win=new(ELeave) CWsTopClientWindow(this, screen);
|
sl@0
|
282 |
deviceIsInvalid=!((CWsWindowGroup*)parent)->ScreenDeviceValid();
|
sl@0
|
283 |
}
|
sl@0
|
284 |
else
|
sl@0
|
285 |
win=new(ELeave) CWsClientWindow(this, screen);
|
sl@0
|
286 |
|
sl@0
|
287 |
CleanupStack::PushL(win);
|
sl@0
|
288 |
win->ConstructL(aCmd,parent,deviceIsInvalid);
|
sl@0
|
289 |
CleanupStack::Pop(win);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
void CWsClient::CreateNewWindowGroupL(const TWsClCmdCreateWindowGroup &aCmd)
|
sl@0
|
293 |
{
|
sl@0
|
294 |
CWsWindowGroup::NewL(this, NULL, aCmd); //screen is initialised inside the constructL
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
void CWsClient::CreateNewAnimDllL(const TWsClCmdUnion &aParams)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
CWsAnimDll* animDll = new(ELeave) CWsAnimDll(this);
|
sl@0
|
300 |
CleanupStack::PushL(animDll);
|
sl@0
|
301 |
animDll->LoadL(BufferTPtr((TText*)(aParams.LoadAnimDll+1),aParams.LoadAnimDll->length));
|
sl@0
|
302 |
CleanupStack::Pop();
|
sl@0
|
303 |
}
|
sl@0
|
304 |
|
sl@0
|
305 |
void CWsClient::CreateNewScreenDeviceL(TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
DWsScreenDevice* screenDevice = new(ELeave) DWsScreenDevice(this, aDefaultScreenNumber,aClientScreenDevicePointer);
|
sl@0
|
308 |
CleanupStack::PushL(screenDevice);
|
sl@0
|
309 |
screenDevice->ConstructL();
|
sl@0
|
310 |
CleanupStack::Pop(screenDevice);
|
sl@0
|
311 |
if (iPrimaryScreenDevice==NULL)
|
sl@0
|
312 |
{
|
sl@0
|
313 |
iPrimaryScreenDevice=screenDevice;
|
sl@0
|
314 |
// When client create screen device, change default screen to the one specified.
|
sl@0
|
315 |
// Client should do this immediately after establishing session
|
sl@0
|
316 |
iScreen = iPrimaryScreenDevice->Screen();
|
sl@0
|
317 |
InitialiseScreenDevices();
|
sl@0
|
318 |
}
|
sl@0
|
319 |
}
|
sl@0
|
320 |
|
sl@0
|
321 |
void CWsClient::InitialiseScreenDevices()
|
sl@0
|
322 |
{
|
sl@0
|
323 |
const TWsObject* ptr = iObjectIndex->FirstObject();
|
sl@0
|
324 |
const TWsObject* end = ptr+iObjectIndex->Length();
|
sl@0
|
325 |
WS_ASSERT_DEBUG(ptr->iObject==NULL, EWsPanicObjectIndexError);
|
sl@0
|
326 |
while(++ptr<end)
|
sl@0
|
327 |
{
|
sl@0
|
328 |
if (ptr->iObject && ptr->iObject->Type()==WS_HANDLE_GROUP_WINDOW)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
CWsWindowGroup* gw = static_cast<CWsWindowGroup*>(ptr->iObject);
|
sl@0
|
331 |
if(!gw->Device())
|
sl@0
|
332 |
gw->SetScreenDevice(iPrimaryScreenDevice);
|
sl@0
|
333 |
}
|
sl@0
|
334 |
}
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
void CWsClient::CreateNewClickHandlerL(const TUid& aUid)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
CClick* click = new(ELeave) CClick(this);
|
sl@0
|
340 |
CleanupStack::PushL(click);
|
sl@0
|
341 |
click->ConstructL(aUid);
|
sl@0
|
342 |
CleanupStack::Pop(click);
|
sl@0
|
343 |
}
|
sl@0
|
344 |
|
sl@0
|
345 |
void CWsClient::RequestComplete(TRequestStatus* &aStatus, TInt aErr)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
Client().RequestComplete(aStatus,aErr);
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|
sl@0
|
350 |
void CWsClient::PanicCurrentClient(TClientPanic aPanic)
|
sl@0
|
351 |
{
|
sl@0
|
352 |
iCurrentClient->PPanic(aPanic);
|
sl@0
|
353 |
}
|
sl@0
|
354 |
|
sl@0
|
355 |
void CWsClient::PPanic(TClientPanic aPanic) const
|
sl@0
|
356 |
//This function is allowed to leave with out the 'L' convention for special reasons
|
sl@0
|
357 |
{
|
sl@0
|
358 |
SessionPanic(aPanic);
|
sl@0
|
359 |
User::Leave(EPanicLeave);
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
void CWsClient::SessionPanic(TClientPanic aReason) const
|
sl@0
|
363 |
{
|
sl@0
|
364 |
if (wsDebugLog)
|
sl@0
|
365 |
wsDebugLog->Panic(iConnectionHandle, aReason);
|
sl@0
|
366 |
|
sl@0
|
367 |
if (!(iInternalFlags&EPanicClientAsSoonAsPossible)) // keep the first error code
|
sl@0
|
368 |
{
|
sl@0
|
369 |
iInternalFlags |= EPanicClientAsSoonAsPossible;
|
sl@0
|
370 |
iPanicReason = aReason;
|
sl@0
|
371 |
}
|
sl@0
|
372 |
}
|
sl@0
|
373 |
|
sl@0
|
374 |
void CWsClient::SessionTerminate()
|
sl@0
|
375 |
{
|
sl@0
|
376 |
if (wsDebugLog)
|
sl@0
|
377 |
wsDebugLog->Panic(iConnectionHandle, 0);
|
sl@0
|
378 |
|
sl@0
|
379 |
const RThread thread=Client();
|
sl@0
|
380 |
RProcess process;
|
sl@0
|
381 |
if (thread.Process(process)==KErrNone)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
process.Terminate(0);
|
sl@0
|
384 |
process.Close();
|
sl@0
|
385 |
}
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
/**
|
sl@0
|
389 |
Returns the remaining space in the descriptor
|
sl@0
|
390 |
*/
|
sl@0
|
391 |
TInt CWsClient::ReplyBufSpace()
|
sl@0
|
392 |
{
|
sl@0
|
393 |
const TInt retVal = iCurrentClient->ClientMessage().GetDesLength(KReplyBufferMessageSlot);
|
sl@0
|
394 |
|
sl@0
|
395 |
if (iReplyOffset>=0 && retVal>=iReplyOffset)
|
sl@0
|
396 |
return retVal-iReplyOffset;
|
sl@0
|
397 |
else
|
sl@0
|
398 |
return (retVal<0 ? retVal : KErrBadDescriptor);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
|
sl@0
|
401 |
void CWsClient::ReplyBuf(const TDesC16 &aDes) // static
|
sl@0
|
402 |
{
|
sl@0
|
403 |
WS_ASSERT_DEBUG(!iCurrentClient->ClientMessage().IsNull(), EWsPanicInvalidMessageHandle);
|
sl@0
|
404 |
|
sl@0
|
405 |
if(iCurrentClient->ClientMessage().Write(KReplyBufferMessageSlot,aDes,iReplyOffset) != KErrNone)
|
sl@0
|
406 |
PanicCurrentClient(EWservPanicDescriptor);
|
sl@0
|
407 |
|
sl@0
|
408 |
iReplyOffset += aDes.Length();
|
sl@0
|
409 |
if (wsDebugLog)
|
sl@0
|
410 |
wsDebugLog->ReplyBuf(aDes);
|
sl@0
|
411 |
}
|
sl@0
|
412 |
|
sl@0
|
413 |
void CWsClient::ReplyBuf(const TDesC8 &aDes) // static
|
sl@0
|
414 |
{
|
sl@0
|
415 |
WS_ASSERT_DEBUG(!iCurrentClient->ClientMessage().IsNull(), EWsPanicInvalidMessageHandle);
|
sl@0
|
416 |
|
sl@0
|
417 |
if(iCurrentClient->ClientMessage().Write(KReplyBufferMessageSlot, aDes, iReplyOffset) != KErrNone)
|
sl@0
|
418 |
PanicCurrentClient(EWservPanicDescriptor);
|
sl@0
|
419 |
|
sl@0
|
420 |
iReplyOffset += aDes.Length();
|
sl@0
|
421 |
if (wsDebugLog)
|
sl@0
|
422 |
wsDebugLog->ReplyBuf(aDes);
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
void CWsClient::ReplyBuf(const TAny* aSource, TInt aLength) // static
|
sl@0
|
426 |
//
|
sl@0
|
427 |
// Send a buffer to the client process.
|
sl@0
|
428 |
//
|
sl@0
|
429 |
{
|
sl@0
|
430 |
TPtrC8 src(reinterpret_cast<const TUint8*>(aSource),aLength);
|
sl@0
|
431 |
ReplyBuf(src);
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
void CWsClient::ReplySize(const TSize &aSize) // static
|
sl@0
|
435 |
{
|
sl@0
|
436 |
ReplyBuf(&aSize, sizeof(aSize));
|
sl@0
|
437 |
}
|
sl@0
|
438 |
|
sl@0
|
439 |
void CWsClient::ReplyPoint(const TPoint &aPoint) // static
|
sl@0
|
440 |
{
|
sl@0
|
441 |
ReplyBuf(&aPoint, sizeof(aPoint));
|
sl@0
|
442 |
}
|
sl@0
|
443 |
|
sl@0
|
444 |
void CWsClient::ReplyRect(const TRect &aRect) // static
|
sl@0
|
445 |
{
|
sl@0
|
446 |
ReplyBuf(&aRect, sizeof(aRect));
|
sl@0
|
447 |
}
|
sl@0
|
448 |
|
sl@0
|
449 |
void CWsClient::SetReply(TInt reply)
|
sl@0
|
450 |
{
|
sl@0
|
451 |
iReply = reply;
|
sl@0
|
452 |
if (wsDebugLog)
|
sl@0
|
453 |
wsDebugLog->Reply(reply);
|
sl@0
|
454 |
}
|
sl@0
|
455 |
|
sl@0
|
456 |
const TUint8* CWsClient::EndOfCommandBuffer()
|
sl@0
|
457 |
{
|
sl@0
|
458 |
return(iCmdBuf.Ptr()+iCmdBuf.Size());
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
const TPtrC CWsClient::BufferTPtr(TText *aStart,TInt aLen)
|
sl@0
|
462 |
{
|
sl@0
|
463 |
TPtrC ptr;
|
sl@0
|
464 |
if (!BufferTPtrGc(aStart,aLen,ptr))
|
sl@0
|
465 |
PanicCurrentClient(EWservPanicBufferPtr);
|
sl@0
|
466 |
return(ptr);
|
sl@0
|
467 |
}
|
sl@0
|
468 |
|
sl@0
|
469 |
TBool CWsClient::BufferTPtrGc(TText* aStart,TInt aLen, TPtrC& aPtr)
|
sl@0
|
470 |
{
|
sl@0
|
471 |
if (iCurrentCommand.iOpcode>0)
|
sl@0
|
472 |
{
|
sl@0
|
473 |
if ((REINTERPRET_CAST(TUint8*,aStart)<iCmdBuf.Ptr()
|
sl@0
|
474 |
|| REINTERPRET_CAST(TUint8*,aStart+aLen)>(iCmdBuf.Ptr()+iCmdBuf.Size())))
|
sl@0
|
475 |
return(EFalse);
|
sl@0
|
476 |
}
|
sl@0
|
477 |
else
|
sl@0
|
478 |
{
|
sl@0
|
479 |
if (aLen>=iCurrentCommand.iCmdLength)
|
sl@0
|
480 |
return(EFalse);
|
sl@0
|
481 |
}
|
sl@0
|
482 |
aPtr.Set(aStart,aLen);
|
sl@0
|
483 |
return(ETrue);
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
const TPtrC8 CWsClient::BufferTPtr8(TUint8* aStart,TInt aLen)
|
sl@0
|
487 |
{
|
sl@0
|
488 |
if (iCurrentCommand.iOpcode>0 && (REINTERPRET_CAST(TUint8*,aStart)<iCmdBuf.Ptr()
|
sl@0
|
489 |
|| REINTERPRET_CAST(TUint8*,aStart+aLen)>(iCmdBuf.Ptr()+iCmdBuf.Size())))
|
sl@0
|
490 |
PanicCurrentClient(EWservPanicBufferPtr);
|
sl@0
|
491 |
|
sl@0
|
492 |
return(TPtrC8(aStart,aLen));
|
sl@0
|
493 |
}
|
sl@0
|
494 |
|
sl@0
|
495 |
/**
|
sl@0
|
496 |
Process a command buffer
|
sl@0
|
497 |
|
sl@0
|
498 |
@internalComponent
|
sl@0
|
499 |
@released
|
sl@0
|
500 |
*/
|
sl@0
|
501 |
void CWsClient::DispatchCommandsInBufL() // (step #4)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
if (wsDebugLog)
|
sl@0
|
504 |
{
|
sl@0
|
505 |
wsDebugLog->CommandBuf(iConnectionHandle);
|
sl@0
|
506 |
RThread client = Client();
|
sl@0
|
507 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything, client.FullName());
|
sl@0
|
508 |
}
|
sl@0
|
509 |
const TUint8* endCmd=iCmdBuf.Ptr()+iCmdBuf.Length();
|
sl@0
|
510 |
do
|
sl@0
|
511 |
{
|
sl@0
|
512 |
const TWsCmdHeader* pCmd=
|
sl@0
|
513 |
reinterpret_cast<const TWsCmdHeader*>(iNextCmd);
|
sl@0
|
514 |
TUint opcode = pCmd->iBase.iOpcode;
|
sl@0
|
515 |
TInt headerLen = sizeof(pCmd->iBase);
|
sl@0
|
516 |
iCurrentCommand = pCmd->iBase;
|
sl@0
|
517 |
|
sl@0
|
518 |
// For performance reasons the handle is only included
|
sl@0
|
519 |
// if it is different from the previous command. The EWsOpcodeHandle
|
sl@0
|
520 |
// flag indicates whether a new handle has been included in the
|
sl@0
|
521 |
// current command. If not we use the same handle as the previous
|
sl@0
|
522 |
// command.
|
sl@0
|
523 |
if (opcode&EWsOpcodeHandle)
|
sl@0
|
524 |
{
|
sl@0
|
525 |
// Find the WServ object associated with this op code
|
sl@0
|
526 |
opcode &= ~EWsOpcodeHandle;
|
sl@0
|
527 |
iCurrentCommand.iOpcode = reinterpret_cast<TUint16&>(opcode);
|
sl@0
|
528 |
iDestObj=HandleToObjUntyped(pCmd->iDestHandle);
|
sl@0
|
529 |
headerLen = sizeof(*pCmd);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
iNextCmd += headerLen;
|
sl@0
|
533 |
const TAny* cmdParams = iNextCmd;
|
sl@0
|
534 |
iNextCmd += pCmd->iBase.iCmdLength;
|
sl@0
|
535 |
if (!iDestObj || iNextCmd>endCmd) // Invalid handle or Corrupt buffer
|
sl@0
|
536 |
{
|
sl@0
|
537 |
SessionPanic(iDestObj==NULL ? EWservPanicHandle : EWservPanicBuffer);
|
sl@0
|
538 |
iInternalFlags|=EFinishedProcessingCommands;
|
sl@0
|
539 |
break;
|
sl@0
|
540 |
}
|
sl@0
|
541 |
|
sl@0
|
542 |
if (iNextCmd==endCmd)
|
sl@0
|
543 |
iInternalFlags|=EFinishedProcessingCommands;
|
sl@0
|
544 |
|
sl@0
|
545 |
if (wsDebugLog)
|
sl@0
|
546 |
wsDebugLog->Command(iDestObj->Type(), opcode, cmdParams, iDestObj->LogHandle());
|
sl@0
|
547 |
|
sl@0
|
548 |
// Dispatch the command to the WServ object that will process it
|
sl@0
|
549 |
iDestObj->CommandL(opcode, cmdParams); // (call #5)
|
sl@0
|
550 |
}
|
sl@0
|
551 |
while(iNextCmd<endCmd);
|
sl@0
|
552 |
|
sl@0
|
553 |
}
|
sl@0
|
554 |
|
sl@0
|
555 |
void CWsClient::DoServiceCommandBuf() // (step #3.1)
|
sl@0
|
556 |
{
|
sl@0
|
557 |
iCurrentClient=this;
|
sl@0
|
558 |
iInternalFlags&=~EFinishedProcessingCommands;
|
sl@0
|
559 |
TRAPD(err, DispatchCommandsInBufL()); // (call #4)
|
sl@0
|
560 |
|
sl@0
|
561 |
#if defined(_DEBUG)
|
sl@0
|
562 |
if (err!=KErrNone && !(iInternalFlags&(EFinishedProcessingCommands|EPanicClientAsSoonAsPossible)))
|
sl@0
|
563 |
SessionPanic(EWservPanicFunctionLeave);
|
sl@0
|
564 |
#endif
|
sl@0
|
565 |
|
sl@0
|
566 |
if (err<KErrNone)
|
sl@0
|
567 |
SetReply(err);
|
sl@0
|
568 |
|
sl@0
|
569 |
if (iInternalFlags&(EFinishedProcessingCommands|EPanicClientAsSoonAsPossible))
|
sl@0
|
570 |
CompleteMessage(iClientMessage,iReply); // (finish)
|
sl@0
|
571 |
|
sl@0
|
572 |
iCurrentClient=NULL;
|
sl@0
|
573 |
#if defined(_DEBUG)
|
sl@0
|
574 |
User::Heap().Check();
|
sl@0
|
575 |
#endif
|
sl@0
|
576 |
}
|
sl@0
|
577 |
|
sl@0
|
578 |
void CWsClient::ExecuteAsyncClientCommandL(TInt aOpcode, const RMessage2& aMessage) // (step #3.2)
|
sl@0
|
579 |
{
|
sl@0
|
580 |
switch(aOpcode)
|
sl@0
|
581 |
{
|
sl@0
|
582 |
case EWsClOpEventReady:
|
sl@0
|
583 |
EventReady(aMessage);
|
sl@0
|
584 |
break;
|
sl@0
|
585 |
case EWsClOpPriorityKeyReady:
|
sl@0
|
586 |
PriorityKeyEventReady(aMessage);
|
sl@0
|
587 |
break;
|
sl@0
|
588 |
case EWsClOpRedrawReady:
|
sl@0
|
589 |
RedrawEventReady(aMessage);
|
sl@0
|
590 |
break;
|
sl@0
|
591 |
case EWsClOpGraphicMessageReady:
|
sl@0
|
592 |
iGraphicMessageQueue.EventReady(aMessage);
|
sl@0
|
593 |
break;
|
sl@0
|
594 |
default:
|
sl@0
|
595 |
{
|
sl@0
|
596 |
PPanic(EWservPanicOpcode);
|
sl@0
|
597 |
break;
|
sl@0
|
598 |
}
|
sl@0
|
599 |
}
|
sl@0
|
600 |
}
|
sl@0
|
601 |
|
sl@0
|
602 |
|
sl@0
|
603 |
|
sl@0
|
604 |
void CWsClient::ExecuteCommandL(TInt aOpcode, const TAny* aCmdData) // (step #6)
|
sl@0
|
605 |
{
|
sl@0
|
606 |
TWsClCmdUnion pData;
|
sl@0
|
607 |
pData.any=aCmdData;
|
sl@0
|
608 |
switch(aOpcode)
|
sl@0
|
609 |
{
|
sl@0
|
610 |
case EWsClOpCreateWindowGroup:
|
sl@0
|
611 |
CreateNewWindowGroupL(*pData.CreateWindowGroup);
|
sl@0
|
612 |
break;
|
sl@0
|
613 |
case EWsClOpCreateWindow:
|
sl@0
|
614 |
CreateNewWindowL(*pData.CreateWindow);
|
sl@0
|
615 |
break;
|
sl@0
|
616 |
case EWsClOpCreateGc:
|
sl@0
|
617 |
CWsGc::NewL(this);
|
sl@0
|
618 |
break;
|
sl@0
|
619 |
case EWsClOpCreateAnimDll:
|
sl@0
|
620 |
if (!CheckBuffer(pData.LoadAnimDll->length, KMaxFileName))
|
sl@0
|
621 |
PanicCurrentClient(EWservPanicBufferPtr);
|
sl@0
|
622 |
CreateNewAnimDllL(pData);
|
sl@0
|
623 |
break;
|
sl@0
|
624 |
case EWsClOpCreateGraphic:
|
sl@0
|
625 |
CWsGraphicDrawerObject::NewL(this,pData);
|
sl@0
|
626 |
break;
|
sl@0
|
627 |
case EWsClOpCreateScreenDevice:
|
sl@0
|
628 |
{
|
sl@0
|
629 |
const TInt screenNumber = pData.CreateScreenDevice->screenNumber;
|
sl@0
|
630 |
const TUint clientScreenDevicePointer = pData.CreateScreenDevice->clientScreenDevicePointer;
|
sl@0
|
631 |
if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
632 |
{
|
sl@0
|
633 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
634 |
}
|
sl@0
|
635 |
else
|
sl@0
|
636 |
{
|
sl@0
|
637 |
CreateNewScreenDeviceL(screenNumber,clientScreenDevicePointer);
|
sl@0
|
638 |
}
|
sl@0
|
639 |
}
|
sl@0
|
640 |
break;
|
sl@0
|
641 |
case EWsClOpCreateSprite:
|
sl@0
|
642 |
CreateNewSpriteL(*pData.CreateSprite);
|
sl@0
|
643 |
break;
|
sl@0
|
644 |
case EWsClOpCreatePointerCursor:
|
sl@0
|
645 |
CreateNewPointerCursorL(*pData.CreatePointerCursor);
|
sl@0
|
646 |
break;
|
sl@0
|
647 |
case EWsClOpStartSetCustomTextCursor:
|
sl@0
|
648 |
StartSetCustomTextCursorL(*pData.CustomTextCursorData);
|
sl@0
|
649 |
break;
|
sl@0
|
650 |
case EWsClOpCompleteSetCustomTextCursor:
|
sl@0
|
651 |
CompleteSetCustomTextCursorL(*pData.Int);
|
sl@0
|
652 |
break;
|
sl@0
|
653 |
case EWsClOpCreateBitmap:
|
sl@0
|
654 |
CreateNewBitmapL(*pData.CreateBitmap);
|
sl@0
|
655 |
break;
|
sl@0
|
656 |
case EWsClOpCreateDirectScreenAccess:
|
sl@0
|
657 |
CWsDirectScreenAccess::NewL(this,EFalse);
|
sl@0
|
658 |
break;
|
sl@0
|
659 |
case EWsClOpCreateDirectScreenAccessRegionTrackingOnly:
|
sl@0
|
660 |
CWsDirectScreenAccess::NewL(this,ETrue); //creates a DSA object that will not draw to the screen, but will use just the region tracking functionality
|
sl@0
|
661 |
break;
|
sl@0
|
662 |
case EWsClOpCreateClick:
|
sl@0
|
663 |
CreateNewClickHandlerL(*pData.Uid);
|
sl@0
|
664 |
break;
|
sl@0
|
665 |
case EWsClOpSetHotKey:
|
sl@0
|
666 |
{
|
sl@0
|
667 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetHotKey API")))
|
sl@0
|
668 |
{
|
sl@0
|
669 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
670 |
}
|
sl@0
|
671 |
TWindowServerEvent::SetHotKeyL(*pData.SetHotKey);
|
sl@0
|
672 |
}
|
sl@0
|
673 |
break;
|
sl@0
|
674 |
case EWsClOpClearHotKeys:
|
sl@0
|
675 |
{
|
sl@0
|
676 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::ClearHotKeys API")))
|
sl@0
|
677 |
{
|
sl@0
|
678 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
679 |
}
|
sl@0
|
680 |
TWindowServerEvent::ClearHotKeysL(*pData.UInt);
|
sl@0
|
681 |
}
|
sl@0
|
682 |
break;
|
sl@0
|
683 |
case EWsClOpRestoreDefaultHotKey:
|
sl@0
|
684 |
TWindowServerEvent::ResetDefaultHotKeyL(*pData.UInt);
|
sl@0
|
685 |
break;
|
sl@0
|
686 |
case EWsClOpSetShadowVector:
|
sl@0
|
687 |
PPanic(EWservPanicOpcode); //this op code is deprecated, should never be generated by the client
|
sl@0
|
688 |
break;
|
sl@0
|
689 |
case EWsClOpShadowVector:
|
sl@0
|
690 |
PPanic(EWservPanicOpcode); //this op code is deprecated, should never be generated by the client
|
sl@0
|
691 |
break;
|
sl@0
|
692 |
case EWsClOpSetKeyboardRepeatRate:
|
sl@0
|
693 |
{
|
sl@0
|
694 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetKeyboardRepeatRate API")))
|
sl@0
|
695 |
{
|
sl@0
|
696 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
697 |
}
|
sl@0
|
698 |
if ((pData.SetKeyboardRepeatRate->initial.Int()<0) || (pData.SetKeyboardRepeatRate->time.Int()<0))
|
sl@0
|
699 |
{
|
sl@0
|
700 |
User::Leave(KErrArgument);
|
sl@0
|
701 |
}
|
sl@0
|
702 |
CKeyboardRepeat::SetRepeatTime(pData.SetKeyboardRepeatRate->initial,pData.SetKeyboardRepeatRate->time);
|
sl@0
|
703 |
}
|
sl@0
|
704 |
break;
|
sl@0
|
705 |
case EWsClOpGetKeyboardRepeatRate:
|
sl@0
|
706 |
{
|
sl@0
|
707 |
SKeyRepeatSettings settings;
|
sl@0
|
708 |
CKeyboardRepeat::GetRepeatTime(settings.iInitialTime,settings.iTime);
|
sl@0
|
709 |
ReplyBuf(&settings,sizeof(settings));
|
sl@0
|
710 |
}
|
sl@0
|
711 |
break;
|
sl@0
|
712 |
case EWsClOpSetDoubleClick:
|
sl@0
|
713 |
{
|
sl@0
|
714 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetDoubleClick API")))
|
sl@0
|
715 |
{
|
sl@0
|
716 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
717 |
}
|
sl@0
|
718 |
TWsPointer::SetDoubleClick(pData.SetDoubleClick->interval,pData.SetDoubleClick->distance);
|
sl@0
|
719 |
}
|
sl@0
|
720 |
break;
|
sl@0
|
721 |
case EWsClOpGetDoubleClickSettings:
|
sl@0
|
722 |
{
|
sl@0
|
723 |
SDoubleClickSettings settings;
|
sl@0
|
724 |
TWsPointer::GetDoubleClickSettings(settings.iInterval,settings.iDistance);
|
sl@0
|
725 |
ReplyBuf(&settings,sizeof(settings));
|
sl@0
|
726 |
}
|
sl@0
|
727 |
break;
|
sl@0
|
728 |
case EWsClOpEventReady:
|
sl@0
|
729 |
// No need to do anything
|
sl@0
|
730 |
break;
|
sl@0
|
731 |
case EWsClOpGetEvent:
|
sl@0
|
732 |
HandleClientRequestForEventData();
|
sl@0
|
733 |
// Check flag if the group message queue is overflow and has pended messages
|
sl@0
|
734 |
if (iInternalFlags & EWgMsgQueueOverflow)
|
sl@0
|
735 |
{
|
sl@0
|
736 |
iInternalFlags &= ~EWgMsgQueueOverflow;
|
sl@0
|
737 |
CWsWindowGroup::ReleasePendedMessagesToAllGroups(this);
|
sl@0
|
738 |
}
|
sl@0
|
739 |
break;
|
sl@0
|
740 |
case EWsClOpPurgePointerEvents:
|
sl@0
|
741 |
PurgePointerEvents();
|
sl@0
|
742 |
break;
|
sl@0
|
743 |
case EWsClOpEventReadyCancel:
|
sl@0
|
744 |
CancelClientRequestForEventData();
|
sl@0
|
745 |
break;
|
sl@0
|
746 |
case EWsClOpRedrawReady:
|
sl@0
|
747 |
iInternalFlags&=~EIsPerformingRedrawEvent;
|
sl@0
|
748 |
break;
|
sl@0
|
749 |
case EWsClOpRedrawReadyCancel:
|
sl@0
|
750 |
CancelClientRequestForRedrawEvent();
|
sl@0
|
751 |
break;
|
sl@0
|
752 |
case EWsClOpGetRedraw:
|
sl@0
|
753 |
HandleClientRequestForRedrawData();
|
sl@0
|
754 |
break;
|
sl@0
|
755 |
case EWsClOpPriorityKeyReady:
|
sl@0
|
756 |
// No need to do anything
|
sl@0
|
757 |
break;
|
sl@0
|
758 |
case EWsClOpPriorityKeyReadyCancel:
|
sl@0
|
759 |
CancelClientRequestForPriorityKeyEvent();
|
sl@0
|
760 |
break;
|
sl@0
|
761 |
case EWsClOpGetPriorityKey:
|
sl@0
|
762 |
HandleClientRequestForPriorityKeyData();
|
sl@0
|
763 |
break;
|
sl@0
|
764 |
case EWsClOpNumWindowGroups:
|
sl@0
|
765 |
SetReply(CWsWindowGroup::NumWindowGroups(EFalse,* pData.Int));
|
sl@0
|
766 |
break;
|
sl@0
|
767 |
case EWsClOpNumWindowGroupsAllPriorities:
|
sl@0
|
768 |
SetReply(CWsWindowGroup::NumWindowGroups(ETrue, 0));
|
sl@0
|
769 |
break;
|
sl@0
|
770 |
case EWsClOpNumWindowGroupsOnScreen:
|
sl@0
|
771 |
{
|
sl@0
|
772 |
const TInt screenNumber=pData.NumWinGroups->screenNumber;
|
sl@0
|
773 |
if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
774 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
775 |
else
|
sl@0
|
776 |
SetReply(CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(screenNumber)->RootWindow()->Child(),(pData.NumWinGroups->priority==EAllPriorities),pData.NumWinGroups->priority));
|
sl@0
|
777 |
}
|
sl@0
|
778 |
break;
|
sl@0
|
779 |
case EWsClOpWindowGroupList:
|
sl@0
|
780 |
{
|
sl@0
|
781 |
const TInt screenNumber=pData.WindowGroupList->screenNumber;
|
sl@0
|
782 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
783 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
784 |
else
|
sl@0
|
785 |
SetReply(CWsWindowGroup::SendWindowGroupListL(screenNumber,(pData.WindowGroupList->priority==EAllPriorities), pData.WindowGroupList->priority, pData.WindowGroupList->count));
|
sl@0
|
786 |
}
|
sl@0
|
787 |
break;
|
sl@0
|
788 |
case EWsClOpWindowGroupListAllPriorities:
|
sl@0
|
789 |
{
|
sl@0
|
790 |
const TInt screenNumber=pData.WindowGroupList->screenNumber;
|
sl@0
|
791 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
792 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
793 |
else
|
sl@0
|
794 |
SetReply(CWsWindowGroup::SendWindowGroupListL(screenNumber,ETrue, 0, pData.WindowGroupList->count));
|
sl@0
|
795 |
}
|
sl@0
|
796 |
break;
|
sl@0
|
797 |
case EWsClOpWindowGroupListAndChain:
|
sl@0
|
798 |
SetReply(CWsWindowGroup::SendWindowGroupListAndChainL(EFalse, pData.WindowGroupList->priority, pData.WindowGroupList->count));
|
sl@0
|
799 |
break;
|
sl@0
|
800 |
case EWsClOpWindowGroupListAndChainAllPriorities:
|
sl@0
|
801 |
SetReply(CWsWindowGroup::SendWindowGroupListAndChainL(ETrue, 0, pData.WindowGroupList->count));
|
sl@0
|
802 |
break;
|
sl@0
|
803 |
case EWsClOpGetDefaultOwningWindow:
|
sl@0
|
804 |
{
|
sl@0
|
805 |
const TInt screenNumber = *pData.Int;
|
sl@0
|
806 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
807 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
808 |
else
|
sl@0
|
809 |
{
|
sl@0
|
810 |
CScreen* screen = (screenNumber ==KDummyScreenNumber) ? iScreen : CWsTop::Screen(screenNumber);
|
sl@0
|
811 |
SetReply(screen->DefaultOwningWindowGroup() ? screen->DefaultOwningWindowGroup()->Identifier():0);
|
sl@0
|
812 |
}
|
sl@0
|
813 |
}
|
sl@0
|
814 |
break;
|
sl@0
|
815 |
case EWsClOpGetFocusWindowGroup:
|
sl@0
|
816 |
{
|
sl@0
|
817 |
const TInt screenNumber = *pData.Int;
|
sl@0
|
818 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
819 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
820 |
else
|
sl@0
|
821 |
CWsWindowGroup::GetFocusWindowGroupL(screenNumber);
|
sl@0
|
822 |
}
|
sl@0
|
823 |
break;
|
sl@0
|
824 |
case EWsClOpSetWindowGroupOrdinalPosition:
|
sl@0
|
825 |
CWsWindowGroup::WindowGroupFromIdentifierL(pData.SetWindowGroupOrdinalPosition->identifier)->SetOrdinalPosition(pData.SetWindowGroupOrdinalPosition->position);
|
sl@0
|
826 |
break;
|
sl@0
|
827 |
case EWsClOpGetWindowGroupHandle:
|
sl@0
|
828 |
SetReply(CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->ClientHandle());
|
sl@0
|
829 |
break;
|
sl@0
|
830 |
case EWsClOpGetWindowGroupOrdinalPriority:
|
sl@0
|
831 |
SetReply(CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->OrdinalPriority());
|
sl@0
|
832 |
break;
|
sl@0
|
833 |
case EWsClOpGetWindowGroupClientThreadId:
|
sl@0
|
834 |
{
|
sl@0
|
835 |
TThreadId id=CWsWindowGroup::WindowGroupFromIdentifierL(*pData.Int)->WsOwner()->Client().Id();
|
sl@0
|
836 |
ReplyBuf(&id,sizeof(id));
|
sl@0
|
837 |
}
|
sl@0
|
838 |
break;
|
sl@0
|
839 |
case EWsClOpSendEventToWindowGroup:
|
sl@0
|
840 |
{
|
sl@0
|
841 |
CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifierL(pData.SendEventToWindowGroup->parameter);
|
sl@0
|
842 |
TWsEvent event=pData.SendEventToWindowGroup->event;
|
sl@0
|
843 |
event.SetHandle(group->ClientHandle());
|
sl@0
|
844 |
// Events in enum TEventCode is protected by capabilities
|
sl@0
|
845 |
if (group->WsOwner()!=this && event.Type()>=EEventNull && event.Type()<EEventUser)
|
sl@0
|
846 |
{
|
sl@0
|
847 |
if (event.Type()<EEventPowerMgmt || event.Type()>=EEventReserved)
|
sl@0
|
848 |
{
|
sl@0
|
849 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToWindowGroup API")))
|
sl@0
|
850 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
851 |
}
|
sl@0
|
852 |
else
|
sl@0
|
853 |
{
|
sl@0
|
854 |
if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToWindowGroup API")))
|
sl@0
|
855 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
856 |
}
|
sl@0
|
857 |
}
|
sl@0
|
858 |
if (event.Type()==EEventKey && event.Key()->iRepeats!=0)
|
sl@0
|
859 |
CKeyboardRepeat::CancelRepeat(NULL); //Otherwise we will trip an invarient
|
sl@0
|
860 |
if (!group->EventQueue()->QueueEvent(event))
|
sl@0
|
861 |
User::Leave(KErrNoMemory);
|
sl@0
|
862 |
}
|
sl@0
|
863 |
break;
|
sl@0
|
864 |
case EWsClOpSendEventToAllWindowGroup:
|
sl@0
|
865 |
case EWsClOpSendEventToAllWindowGroupPriority:
|
sl@0
|
866 |
case EWsClOpSendEventToOneWindowGroupPerClient:
|
sl@0
|
867 |
{
|
sl@0
|
868 |
TWsEvent event=pData.SendEventToWindowGroup->event;
|
sl@0
|
869 |
if (event.Type()<0)
|
sl@0
|
870 |
User::Leave(KErrArgument);
|
sl@0
|
871 |
if(event.Type()<EEventUser)
|
sl@0
|
872 |
{
|
sl@0
|
873 |
if (event.Type()<EEventPowerMgmt || event.Type()>=EEventReserved)
|
sl@0
|
874 |
{
|
sl@0
|
875 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToAllWindowGroup API")))
|
sl@0
|
876 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
877 |
}
|
sl@0
|
878 |
else
|
sl@0
|
879 |
{
|
sl@0
|
880 |
if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendEventToAllWindowGroup API")))
|
sl@0
|
881 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
882 |
}
|
sl@0
|
883 |
}
|
sl@0
|
884 |
if (!CWsWindowGroup::SendEventToAllGroups(aOpcode!=EWsClOpSendEventToAllWindowGroupPriority
|
sl@0
|
885 |
,aOpcode==EWsClOpSendEventToOneWindowGroupPerClient,*pData.SendEventToWindowGroup))
|
sl@0
|
886 |
User::Leave(KErrNoMemory);
|
sl@0
|
887 |
}
|
sl@0
|
888 |
break;
|
sl@0
|
889 |
case EWsClOpSendMessageToWindowGroup:
|
sl@0
|
890 |
{
|
sl@0
|
891 |
CWsWindowGroup* group=CWsWindowGroup::WindowGroupFromIdentifierL(pData.SendMessageToWindowGroup->identifierOrPriority);
|
sl@0
|
892 |
if (group->WsOwner()!=this)
|
sl@0
|
893 |
{
|
sl@0
|
894 |
if (!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SendMessageToWindowGroup API")))
|
sl@0
|
895 |
{
|
sl@0
|
896 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
897 |
}
|
sl@0
|
898 |
}
|
sl@0
|
899 |
group->QueueMessageL(pData.SendMessageToWindowGroup->uid, pData.SendMessageToWindowGroup->dataLength,* this);
|
sl@0
|
900 |
}
|
sl@0
|
901 |
break;
|
sl@0
|
902 |
case EWsClOpSendMessageToAllWindowGroups:
|
sl@0
|
903 |
case EWsClOpSendMessageToAllWindowGroupsPriority:
|
sl@0
|
904 |
{
|
sl@0
|
905 |
if ((pData.SendMessageToWindowGroup->dataLength<0) || (pData.SendMessageToWindowGroup->dataLength>=(KMaxTInt/2)))
|
sl@0
|
906 |
{
|
sl@0
|
907 |
User::Leave(KErrArgument);
|
sl@0
|
908 |
}
|
sl@0
|
909 |
CWsWindowGroup::SendMessageToAllGroupsL(*this,aOpcode==EWsClOpSendMessageToAllWindowGroups,*pData.SendMessageToWindowGroup);
|
sl@0
|
910 |
}
|
sl@0
|
911 |
break;
|
sl@0
|
912 |
case EWsClOpFetchMessage:
|
sl@0
|
913 |
CWsWindowGroup::WindowGroupFromIdentifierL(pData.FetchMessage->windowGroupIdentifier)->FetchMessageL();
|
sl@0
|
914 |
break;
|
sl@0
|
915 |
case EWsClOpGetWindowGroupNameFromIdentifier:
|
sl@0
|
916 |
ReplyGroupName(CWsWindowGroup::WindowGroupFromIdentifierL(pData.GetWindowGroupNameFromIdentifier->identifier)->GroupName(),pData.GetWindowGroupNameFromIdentifier->maxLength);
|
sl@0
|
917 |
break;
|
sl@0
|
918 |
case EWsClOpFindWindowGroupIdentifier:
|
sl@0
|
919 |
{
|
sl@0
|
920 |
if (pData.FindWindowGroupIdentifier->length<0)
|
sl@0
|
921 |
User::Leave(KErrArgument);
|
sl@0
|
922 |
TPtrC ptr(BufferTPtr((TText*)(pData.FindWindowGroupIdentifier+1),pData.FindWindowGroupIdentifier->length));
|
sl@0
|
923 |
SetReply(CWsWindowGroup::FindWindowGroupL(this, pData.FindWindowGroupIdentifier->identifier,
|
sl@0
|
924 |
pData.FindWindowGroupIdentifier->offset,&ptr,NULL)->Identifier());
|
sl@0
|
925 |
}
|
sl@0
|
926 |
break;
|
sl@0
|
927 |
case EWsClOpFindWindowGroupIdentifierThread:
|
sl@0
|
928 |
SetReply(CWsWindowGroup::FindWindowGroupL(this, pData.FindWindowGroupIdentifierThread->identifier,0,NULL,
|
sl@0
|
929 |
&pData.FindWindowGroupIdentifierThread->threadId)->Identifier());
|
sl@0
|
930 |
break;
|
sl@0
|
931 |
case EWsClOpSetBackgroundColor:
|
sl@0
|
932 |
for(TInt i=0;i<CWsTop::NumberOfScreens();i++)
|
sl@0
|
933 |
{
|
sl@0
|
934 |
CWsTop::Screen(i)->RootWindow()->SetColor(*pData.rgb);
|
sl@0
|
935 |
}
|
sl@0
|
936 |
break;
|
sl@0
|
937 |
case EWsClOpGetBackgroundColor:
|
sl@0
|
938 |
SetReply(iScreen->RootWindow()->BackColor().Internal());
|
sl@0
|
939 |
break;
|
sl@0
|
940 |
case EWsClOpClaimSystemPointerCursorList:
|
sl@0
|
941 |
{
|
sl@0
|
942 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::ClaimSystemPointerCursorList API")))
|
sl@0
|
943 |
{
|
sl@0
|
944 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
945 |
}
|
sl@0
|
946 |
ClaimSystemPointerCursorListL();
|
sl@0
|
947 |
}
|
sl@0
|
948 |
break;
|
sl@0
|
949 |
case EWsClOpFreeSystemPointerCursorList:
|
sl@0
|
950 |
FreeSystemPointerCursorList();
|
sl@0
|
951 |
break;
|
sl@0
|
952 |
case EWsClOpSetSystemPointerCursor:
|
sl@0
|
953 |
{
|
sl@0
|
954 |
CWsObject* pointercursor = NULL;
|
sl@0
|
955 |
if ((pointercursor=HandleToObj(pData.SetSystemPointerCursor->handle, WS_HANDLE_POINTER_CURSOR))==NULL)
|
sl@0
|
956 |
PPanic(EWservPanicSprite);
|
sl@0
|
957 |
|
sl@0
|
958 |
SetSystemPointerCursorL(pData.SetSystemPointerCursor->number, (CWsPointerCursor* )pointercursor);
|
sl@0
|
959 |
}
|
sl@0
|
960 |
break;
|
sl@0
|
961 |
case EWsClOpClearSystemPointerCursor:
|
sl@0
|
962 |
ClearSystemPointerCursor(*pData.Int);
|
sl@0
|
963 |
break;
|
sl@0
|
964 |
case EWsClOpSetPointerCursorArea:
|
sl@0
|
965 |
{
|
sl@0
|
966 |
if(KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorArea API")))
|
sl@0
|
967 |
{
|
sl@0
|
968 |
if (!iScreen->IsValidScreenSizeMode(*pData.Int))
|
sl@0
|
969 |
PPanic(EWservPanicScreenModeNumber);
|
sl@0
|
970 |
iScreen->SetPointerCursorArea(pData.SetPointerCursorArea->mode,pData.SetPointerCursorArea->area);
|
sl@0
|
971 |
}
|
sl@0
|
972 |
}
|
sl@0
|
973 |
break;
|
sl@0
|
974 |
case EWsClOpPointerCursorArea:
|
sl@0
|
975 |
if (!iScreen->IsValidScreenSizeMode(*pData.Int))
|
sl@0
|
976 |
PPanic(EWservPanicScreenModeNumber);
|
sl@0
|
977 |
|
sl@0
|
978 |
ReplyRect(iScreen->GetPointerCursorArea(*pData.Int));
|
sl@0
|
979 |
break;
|
sl@0
|
980 |
case EWsClOpSetPointerCursorMode:
|
sl@0
|
981 |
{
|
sl@0
|
982 |
CWsWindowGroup* focusWinGp=CWsTop::FocusWindowGroup();
|
sl@0
|
983 |
if (focusWinGp && focusWinGp->WsOwner()==this)
|
sl@0
|
984 |
{
|
sl@0
|
985 |
TWsPointer::SetPointerCursorMode(*pData.Mode);
|
sl@0
|
986 |
TWsPointer::UpdatePointerCursor();
|
sl@0
|
987 |
}
|
sl@0
|
988 |
}
|
sl@0
|
989 |
break;
|
sl@0
|
990 |
case EWsClOpSetClientCursorMode :
|
sl@0
|
991 |
{
|
sl@0
|
992 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorModeIfFocused API")))
|
sl@0
|
993 |
{
|
sl@0
|
994 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
995 |
}
|
sl@0
|
996 |
TWsPointer::SetPointerCursorMode(*pData.Mode);
|
sl@0
|
997 |
TWsPointer::UpdatePointerCursor();
|
sl@0
|
998 |
}
|
sl@0
|
999 |
break;
|
sl@0
|
1000 |
case EWsClOpPointerCursorMode:
|
sl@0
|
1001 |
SetReply(TWsPointer::PointerCursorMode());
|
sl@0
|
1002 |
break;
|
sl@0
|
1003 |
case EWsClOpSetDefaultSystemPointerCursor:
|
sl@0
|
1004 |
SetDefaultSystemPointerCursor(*pData.Int);
|
sl@0
|
1005 |
break;
|
sl@0
|
1006 |
case EWsClOpClearDefaultSystemPointerCursor:
|
sl@0
|
1007 |
SetDefaultSystemPointerCursor(ENoDefaultSystemPointerCursor);
|
sl@0
|
1008 |
break;
|
sl@0
|
1009 |
case EWsClOpSetPointerCursorPosition:
|
sl@0
|
1010 |
{
|
sl@0
|
1011 |
CWsWindowGroup* focusWinGp=CWsTop::FocusWindowGroup();
|
sl@0
|
1012 |
if ((!focusWinGp || focusWinGp->WsOwner()!=this)&&
|
sl@0
|
1013 |
(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetPointerCursorPosition API"))))
|
sl@0
|
1014 |
{
|
sl@0
|
1015 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1016 |
}
|
sl@0
|
1017 |
TWsPointer::SetPointerCursorPos(*pData.Point);
|
sl@0
|
1018 |
}
|
sl@0
|
1019 |
break;
|
sl@0
|
1020 |
case EWsClOpPointerCursorPosition:
|
sl@0
|
1021 |
ReplyPoint(TWsPointer::PointerCursorPos());
|
sl@0
|
1022 |
break;
|
sl@0
|
1023 |
case EWsClOpSetModifierState:
|
sl@0
|
1024 |
{
|
sl@0
|
1025 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetModifierState API")))
|
sl@0
|
1026 |
{
|
sl@0
|
1027 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1028 |
}
|
sl@0
|
1029 |
TWindowServerEvent::SetModifierState(pData.SetModifierState->modifier,pData.SetModifierState->state);
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
break;
|
sl@0
|
1032 |
case EWsClOpGetModifierState:
|
sl@0
|
1033 |
SetReply(TWindowServerEvent::GetModifierState());
|
sl@0
|
1034 |
break;
|
sl@0
|
1035 |
case EWsClOpHeapCount:
|
sl@0
|
1036 |
SetReply(CWsMemoryManager::Static()->Count());
|
sl@0
|
1037 |
break;
|
sl@0
|
1038 |
case EWsClOpDebugInfo:
|
sl@0
|
1039 |
DebugInfoL(pData.DebugInfo->iFunction,pData.DebugInfo->iParam,EFalse);
|
sl@0
|
1040 |
break;
|
sl@0
|
1041 |
case EWsClOpDebugInfoReplyBuf:
|
sl@0
|
1042 |
DebugInfoL(pData.DebugInfo->iFunction,pData.DebugInfo->iParam,ETrue);
|
sl@0
|
1043 |
break;
|
sl@0
|
1044 |
case EWsClOpResourceCount:
|
sl@0
|
1045 |
SetReply(iObjectIndex->Count());
|
sl@0
|
1046 |
break;
|
sl@0
|
1047 |
case EWsClOpHeapSetFail:
|
sl@0
|
1048 |
{
|
sl@0
|
1049 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::HeapSetFail API")))
|
sl@0
|
1050 |
{
|
sl@0
|
1051 |
PPanic(EWservPanicPermissionDenied);
|
sl@0
|
1052 |
}
|
sl@0
|
1053 |
#if !defined(_DEBUG)
|
sl@0
|
1054 |
if (pData.HeapSetFail->type!=RHeap::ENone)
|
sl@0
|
1055 |
TWindowServerEvent::NotifyOom();
|
sl@0
|
1056 |
#endif
|
sl@0
|
1057 |
// if there is a memory manager and we are making the allocator fail next or
|
sl@0
|
1058 |
// deteministic we want to make sure we test both when the memory manager
|
sl@0
|
1059 |
// succeeds and fails in allocating after freeing up memory. we do that by
|
sl@0
|
1060 |
// remapping the rate and explicitly telling the memory manager to fail:
|
sl@0
|
1061 |
// requested rate | fail on retry, actual rate
|
sl@0
|
1062 |
// 1 | true , 1
|
sl@0
|
1063 |
// 2 | false , 1
|
sl@0
|
1064 |
// 3 | true , 2
|
sl@0
|
1065 |
CWsMemoryManager* memoryManager = NULL;
|
sl@0
|
1066 |
TInt rate = pData.HeapSetFail->value;
|
sl@0
|
1067 |
TBool memoryManagerRetryFail = EFalse;
|
sl@0
|
1068 |
if((pData.HeapSetFail->type == RAllocator::EFailNext || pData.HeapSetFail->type == RAllocator::EDeterministic))
|
sl@0
|
1069 |
{
|
sl@0
|
1070 |
memoryManager = CWsMemoryManager::Static();
|
sl@0
|
1071 |
if(memoryManager)
|
sl@0
|
1072 |
{
|
sl@0
|
1073 |
memoryManagerRetryFail = (rate % 2 == 1);
|
sl@0
|
1074 |
rate = rate / 2 + (memoryManagerRetryFail ? 1 : 0);
|
sl@0
|
1075 |
}
|
sl@0
|
1076 |
}
|
sl@0
|
1077 |
|
sl@0
|
1078 |
switch (pData.HeapSetFail->type)
|
sl@0
|
1079 |
{ //This log message means you can safely ignore the allocation failures in between
|
sl@0
|
1080 |
//see CWindowServer::ReleaseMemory()
|
sl@0
|
1081 |
case RAllocator::ENone:
|
sl@0
|
1082 |
RDebug::Printf("WSERV Heap: __DbgSetAllocFail() <<<ENone");
|
sl@0
|
1083 |
break;
|
sl@0
|
1084 |
case RAllocator::EReset:
|
sl@0
|
1085 |
RDebug::Printf("WSERV Heap: __DbgSetAllocFail() <<<EReset");
|
sl@0
|
1086 |
break;
|
sl@0
|
1087 |
default:
|
sl@0
|
1088 |
if (memoryManagerRetryFail)
|
sl@0
|
1089 |
RDebug::Printf("WSERV Heap: Memory Manager set to fail on retry");
|
sl@0
|
1090 |
RDebug::Printf("WSERV Heap: __DbgSetAllocFail(EUser,%i,%i)>>>", pData.HeapSetFail->type, rate);
|
sl@0
|
1091 |
break;
|
sl@0
|
1092 |
}
|
sl@0
|
1093 |
|
sl@0
|
1094 |
if (memoryManager && memoryManagerRetryFail)
|
sl@0
|
1095 |
memoryManager->SetFailNextRetry();
|
sl@0
|
1096 |
|
sl@0
|
1097 |
if (pData.HeapSetFail->burst >= 0)
|
sl@0
|
1098 |
User::__DbgSetBurstAllocFail(RHeap::EUser, pData.HeapSetFail->type, rate, pData.HeapSetFail->burst);
|
sl@0
|
1099 |
else
|
sl@0
|
1100 |
User::__DbgSetAllocFail(RHeap::EUser, pData.HeapSetFail->type, rate);
|
sl@0
|
1101 |
break;
|
sl@0
|
1102 |
}
|
sl@0
|
1103 |
case EWsClOpRawEvent:
|
sl@0
|
1104 |
{
|
sl@0
|
1105 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SimulateRawEvent API")))
|
sl@0
|
1106 |
{
|
sl@0
|
1107 |
PPanic(EWservPanicPermissionDenied);
|
sl@0
|
1108 |
}
|
sl@0
|
1109 |
TRawEvent event(*pData.RawEvent);
|
sl@0
|
1110 |
if (TWsPointer::PreProcessDriverEvent(event))
|
sl@0
|
1111 |
TWindowServerEvent::ProcessRawEvent(event);
|
sl@0
|
1112 |
}
|
sl@0
|
1113 |
break;
|
sl@0
|
1114 |
case EWsClOpKeyEvent:
|
sl@0
|
1115 |
{
|
sl@0
|
1116 |
if(!KSecurityPolicy_SwEvent().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SimulateKeyEvent API")))
|
sl@0
|
1117 |
{
|
sl@0
|
1118 |
PPanic(EWservPanicPermissionDenied);
|
sl@0
|
1119 |
}
|
sl@0
|
1120 |
TWindowServerEvent::ProcessKeyEvent(*pData.KeyEvent,0);
|
sl@0
|
1121 |
}
|
sl@0
|
1122 |
break;
|
sl@0
|
1123 |
case EWsClOpLogMessage:
|
sl@0
|
1124 |
if (wsDebugLog)
|
sl@0
|
1125 |
{
|
sl@0
|
1126 |
if (CheckBuffer(*pData.Int, KLogMessageLength))
|
sl@0
|
1127 |
wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,BufferTPtr((TText* )(pData.Int+1),*pData.Int),0);
|
sl@0
|
1128 |
}
|
sl@0
|
1129 |
break;
|
sl@0
|
1130 |
case EWsClOpPasswordEntered:
|
sl@0
|
1131 |
CWsPassword::PasswordEntered(this);
|
sl@0
|
1132 |
break;
|
sl@0
|
1133 |
case EWsClOpComputeMode:
|
sl@0
|
1134 |
SetComputeMode(*pData.ComputeMode);
|
sl@0
|
1135 |
break;
|
sl@0
|
1136 |
case EWsClOpSendOffEventsToShell:
|
sl@0
|
1137 |
{
|
sl@0
|
1138 |
if(!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::RequestOffEvents API")))
|
sl@0
|
1139 |
{
|
sl@0
|
1140 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1141 |
}
|
sl@0
|
1142 |
SetReply(CWsTop::SetSendOffEventsToShell(this,*pData.OffEventsToShell));
|
sl@0
|
1143 |
}
|
sl@0
|
1144 |
break;
|
sl@0
|
1145 |
case EWsClOpGetDefModeMaxNumColors:
|
sl@0
|
1146 |
{
|
sl@0
|
1147 |
SDefModeMaxNumColors colors;
|
sl@0
|
1148 |
const TInt screenNumber = *pData.Int;
|
sl@0
|
1149 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
1150 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
1151 |
else
|
sl@0
|
1152 |
{
|
sl@0
|
1153 |
CScreen* screen = (screenNumber==KDummyScreenNumber)?iScreen:CWsTop::Screen(screenNumber);
|
sl@0
|
1154 |
screen->MaxNumColors(colors.iColors,colors.iGrays);
|
sl@0
|
1155 |
colors.iDisplayMode=screen->FirstDefaultDisplayMode();
|
sl@0
|
1156 |
}
|
sl@0
|
1157 |
ReplyBuf(&colors,sizeof(colors));
|
sl@0
|
1158 |
}
|
sl@0
|
1159 |
break;
|
sl@0
|
1160 |
case EWsClOpGetColorModeList:
|
sl@0
|
1161 |
{
|
sl@0
|
1162 |
const TInt screenNumber = *pData.Int;
|
sl@0
|
1163 |
if (screenNumber<KDummyScreenNumber || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
1164 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
1165 |
else
|
sl@0
|
1166 |
SetReply((screenNumber==KDummyScreenNumber) ? iScreen->ColorModesFlag() : CWsTop::Screen(screenNumber)->ColorModesFlag());
|
sl@0
|
1167 |
}
|
sl@0
|
1168 |
break;
|
sl@0
|
1169 |
case EWsClOpSetDefaultFadingParams:
|
sl@0
|
1170 |
{
|
sl@0
|
1171 |
if(KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetDefaultFadingParameters API")))
|
sl@0
|
1172 |
{
|
sl@0
|
1173 |
iScreen->SetFadingParams(WservEncoding::ExtractFirst8BitValue(*pData.UInt),WservEncoding::ExtractSecond8BitValue(*pData.UInt));
|
sl@0
|
1174 |
}
|
sl@0
|
1175 |
}
|
sl@0
|
1176 |
break;
|
sl@0
|
1177 |
case EWsClOpPrepareForSwitchOff:
|
sl@0
|
1178 |
{
|
sl@0
|
1179 |
if(KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::PrepareForSwitchOff API")))
|
sl@0
|
1180 |
{
|
sl@0
|
1181 |
}
|
sl@0
|
1182 |
}
|
sl@0
|
1183 |
break;
|
sl@0
|
1184 |
case EWsClOpSetFaded:
|
sl@0
|
1185 |
{
|
sl@0
|
1186 |
// Deprecated - retained for BC with applications that retrieve the fade count
|
sl@0
|
1187 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetSystemFaded API")))
|
sl@0
|
1188 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1189 |
|
sl@0
|
1190 |
TUint8 blackMap;
|
sl@0
|
1191 |
TUint8 whiteMap;
|
sl@0
|
1192 |
if (pData.SetSystemFaded->UseDefaultMap())
|
sl@0
|
1193 |
iScreen->GetFadingParams(blackMap,whiteMap);
|
sl@0
|
1194 |
else
|
sl@0
|
1195 |
pData.SetSystemFaded->GetFadingParams(blackMap,whiteMap);
|
sl@0
|
1196 |
|
sl@0
|
1197 |
iScreen->RootWindow()->SetSystemFaded(pData.SetSystemFaded->Faded(),blackMap,whiteMap);
|
sl@0
|
1198 |
}
|
sl@0
|
1199 |
break;
|
sl@0
|
1200 |
case EWsClOpLogCommand:
|
sl@0
|
1201 |
CWsTop::LogCommand(*pData.LogCommand);
|
sl@0
|
1202 |
break;
|
sl@0
|
1203 |
#if defined(__WINS__)
|
sl@0
|
1204 |
case EWsClOpRemoveKeyCode:
|
sl@0
|
1205 |
iInternalFlags&=~ERemoveKeyCode;
|
sl@0
|
1206 |
if (*pData.Bool)
|
sl@0
|
1207 |
iInternalFlags|=ERemoveKeyCode;
|
sl@0
|
1208 |
break;
|
sl@0
|
1209 |
case EWsClOpSimulateXyInput:
|
sl@0
|
1210 |
TWsPointer::SetXyInputType(static_cast<TXYInputType>(*pData.XyInput));
|
sl@0
|
1211 |
break;
|
sl@0
|
1212 |
#endif
|
sl@0
|
1213 |
case EWsClOpNoFlickerFree:
|
sl@0
|
1214 |
PPanic(EWservPanicOpcode); //not supported anymore
|
sl@0
|
1215 |
break;
|
sl@0
|
1216 |
case EWsClOpSetFocusScreen:
|
sl@0
|
1217 |
{
|
sl@0
|
1218 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetFocusScreen API")))
|
sl@0
|
1219 |
{
|
sl@0
|
1220 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1221 |
}
|
sl@0
|
1222 |
TInt focusScreen=*pData.Int;
|
sl@0
|
1223 |
if (focusScreen>=0 && focusScreen<CWsTop::NumberOfScreens())
|
sl@0
|
1224 |
SetReply(CWsTop::SetCurrentFocusScreen(focusScreen));
|
sl@0
|
1225 |
else
|
sl@0
|
1226 |
SessionPanic(EWservPanicScreenNumber);
|
sl@0
|
1227 |
break;
|
sl@0
|
1228 |
}
|
sl@0
|
1229 |
case EWsClOpGetFocusScreen:
|
sl@0
|
1230 |
SetReply(CWsTop::CurrentFocusScreen()->ScreenNumber());
|
sl@0
|
1231 |
break;
|
sl@0
|
1232 |
case EWsClOpGetNumberOfScreens:
|
sl@0
|
1233 |
SetReply(CWsTop::NumberOfScreens());
|
sl@0
|
1234 |
break;
|
sl@0
|
1235 |
case EWsClOpClearAllRedrawStores:
|
sl@0
|
1236 |
CWsTop::ClearAllRedrawStores();
|
sl@0
|
1237 |
break;
|
sl@0
|
1238 |
case EWsClOpGetGraphicMessage:
|
sl@0
|
1239 |
iGraphicMessageQueue.GetGraphicMessage();
|
sl@0
|
1240 |
break;
|
sl@0
|
1241 |
case EWsClOpGraphicMessageCancel:
|
sl@0
|
1242 |
iGraphicMessageQueue.CancelRead();
|
sl@0
|
1243 |
break;
|
sl@0
|
1244 |
case EWsClOpGraphicAbortMessage:
|
sl@0
|
1245 |
iGraphicMessageQueue.AbortMessage(*pData.Int);
|
sl@0
|
1246 |
break;
|
sl@0
|
1247 |
case EWsClOpGraphicFetchHeaderMessage:
|
sl@0
|
1248 |
SetReply(iGraphicMessageQueue.TopClientHandle());
|
sl@0
|
1249 |
break;
|
sl@0
|
1250 |
case EWsClOpRegisterSurface:
|
sl@0
|
1251 |
SetReply(RegisterSurface(pData));
|
sl@0
|
1252 |
break;
|
sl@0
|
1253 |
case EWsClOpUnregisterSurface:
|
sl@0
|
1254 |
UnregisterSurface(pData);
|
sl@0
|
1255 |
break;
|
sl@0
|
1256 |
case EWsClOpSetCloseProximityThresholds:
|
sl@0
|
1257 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),
|
sl@0
|
1258 |
__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetCloseProximityThresholds")))
|
sl@0
|
1259 |
{
|
sl@0
|
1260 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1261 |
}
|
sl@0
|
1262 |
SetReply(TWsPointer::SetCloseProximityThresholds(pData.ZThresholdPair->enterThreshold,
|
sl@0
|
1263 |
pData.ZThresholdPair->exitThreshold));
|
sl@0
|
1264 |
break;
|
sl@0
|
1265 |
case EWsClOpSetHighPressureThresholds:
|
sl@0
|
1266 |
if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(ClientMessage(),
|
sl@0
|
1267 |
__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::SetHighPressureThresholds")))
|
sl@0
|
1268 |
{
|
sl@0
|
1269 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1270 |
}
|
sl@0
|
1271 |
SetReply(TWsPointer::SetHighPressureThresholds(pData.ZThresholdPair->enterThreshold,
|
sl@0
|
1272 |
pData.ZThresholdPair->exitThreshold));
|
sl@0
|
1273 |
break;
|
sl@0
|
1274 |
case EWsClOpGetEnterCloseProximityThreshold:
|
sl@0
|
1275 |
SetReply(TWsPointer::GetEnterCloseProximityThreshold());
|
sl@0
|
1276 |
break;
|
sl@0
|
1277 |
case EWsClOpGetExitCloseProximityThreshold:
|
sl@0
|
1278 |
SetReply(TWsPointer::GetExitCloseProximityThreshold());
|
sl@0
|
1279 |
break;
|
sl@0
|
1280 |
case EWsClOpGetEnterHighPressureThreshold:
|
sl@0
|
1281 |
SetReply(TWsPointer::GetEnterHighPressureThreshold());
|
sl@0
|
1282 |
break;
|
sl@0
|
1283 |
case EWsClOpGetExitHighPressureThreshold:
|
sl@0
|
1284 |
SetReply(TWsPointer::GetExitHighPressureThreshold());
|
sl@0
|
1285 |
break;
|
sl@0
|
1286 |
case EWsClOpCreateDrawableSource:
|
sl@0
|
1287 |
CreateDrawableSourceL(*pData.CreateDrawableSource);
|
sl@0
|
1288 |
break;
|
sl@0
|
1289 |
case EWsClOpIndicateAppOrientation:
|
sl@0
|
1290 |
IndicateAppOrientation(*pData.Orientation);
|
sl@0
|
1291 |
break;
|
sl@0
|
1292 |
case EWsClOpUnregisterAllTFXEffect:
|
sl@0
|
1293 |
RDebug::Printf("[Bug 3344] OpCode EWsClOpUnregisterAllTFXEffect not supported.");
|
sl@0
|
1294 |
break;
|
sl@0
|
1295 |
default:
|
sl@0
|
1296 |
PPanic(EWservPanicOpcode);
|
sl@0
|
1297 |
break;
|
sl@0
|
1298 |
}
|
sl@0
|
1299 |
}
|
sl@0
|
1300 |
/** Debug information accessor.
|
sl@0
|
1301 |
*
|
sl@0
|
1302 |
*
|
sl@0
|
1303 |
**/
|
sl@0
|
1304 |
void CWsClient::DebugInfoL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
|
sl@0
|
1305 |
{
|
sl@0
|
1306 |
if (aFunction & EWsDebugClassMask)
|
sl@0
|
1307 |
SetReply(DebugInfoClassifiedL(aFunction,aParam,aHasReplyBuf));
|
sl@0
|
1308 |
else
|
sl@0
|
1309 |
DebugInfoUnclassifiedL(aFunction,aParam,aHasReplyBuf);
|
sl@0
|
1310 |
}
|
sl@0
|
1311 |
|
sl@0
|
1312 |
/** A wide variety of generally unconnected debug enquiries.
|
sl@0
|
1313 |
*
|
sl@0
|
1314 |
*
|
sl@0
|
1315 |
**/
|
sl@0
|
1316 |
void CWsClient::DebugInfoUnclassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
|
sl@0
|
1317 |
{
|
sl@0
|
1318 |
switch(aFunction)
|
sl@0
|
1319 |
{
|
sl@0
|
1320 |
case EWsDebugInfoHeap:
|
sl@0
|
1321 |
if (aHasReplyBuf)
|
sl@0
|
1322 |
{
|
sl@0
|
1323 |
TWsDebugHeapInfo heapInfo;
|
sl@0
|
1324 |
RHeap& heap=User::Heap();
|
sl@0
|
1325 |
heapInfo.iCount=heap.AllocSize(heapInfo.iTotal);
|
sl@0
|
1326 |
heapInfo.iAvailable=heap.Available(heapInfo.iLargestAvailable);
|
sl@0
|
1327 |
ReplyBuf(&heapInfo,sizeof(heapInfo));
|
sl@0
|
1328 |
}
|
sl@0
|
1329 |
SetReply(KErrArgument);
|
sl@0
|
1330 |
break;
|
sl@0
|
1331 |
case EWsDebugSetCheckHeapOnDisconnectClient:
|
sl@0
|
1332 |
if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::DebugInfo API")))
|
sl@0
|
1333 |
{
|
sl@0
|
1334 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1335 |
}
|
sl@0
|
1336 |
CWsTop::SetCheckHeapOnDisconnectClient(this);
|
sl@0
|
1337 |
break;
|
sl@0
|
1338 |
case EWsDebugSetCheckHeapOnDisconnectMode:
|
sl@0
|
1339 |
if (!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWsSession::DebugInfo API")))
|
sl@0
|
1340 |
{
|
sl@0
|
1341 |
User::Leave(KErrPermissionDenied);
|
sl@0
|
1342 |
}
|
sl@0
|
1343 |
CWsTop::SetCheckHeapOnDisconnectMode(STATIC_CAST(TWsCheckHeapOnDisconnectMode,aParam));
|
sl@0
|
1344 |
break;
|
sl@0
|
1345 |
case EWsDebugFetchCheckHeapResult:
|
sl@0
|
1346 |
SetReply(CWsTop::FetchCheckHeapResult());
|
sl@0
|
1347 |
break;
|
sl@0
|
1348 |
case EWsDebugSetEventQueueTest:
|
sl@0
|
1349 |
CWsWindowGroup::SetEventQueueTestState(aParam);
|
sl@0
|
1350 |
break;
|
sl@0
|
1351 |
default:
|
sl@0
|
1352 |
SetReply(KErrNotSupported);
|
sl@0
|
1353 |
break;
|
sl@0
|
1354 |
}
|
sl@0
|
1355 |
}
|
sl@0
|
1356 |
|
sl@0
|
1357 |
/** Selects a debug function based on the class of debug query.
|
sl@0
|
1358 |
*
|
sl@0
|
1359 |
*
|
sl@0
|
1360 |
**/
|
sl@0
|
1361 |
TInt CWsClient::DebugInfoClassifiedL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const
|
sl@0
|
1362 |
{//Duplicating the meanings of Classified... this would be a good place for a security check
|
sl@0
|
1363 |
//first part of param is always screen number
|
sl@0
|
1364 |
TInt buffSpace=aHasReplyBuf?ReplyBufSpace():0;
|
sl@0
|
1365 |
if (buffSpace<0)
|
sl@0
|
1366 |
return (buffSpace);
|
sl@0
|
1367 |
|
sl@0
|
1368 |
const TInt screenNumber = (aParam&EWsDebugArgScreenMask)>>EWsDebugArgScreenShift;
|
sl@0
|
1369 |
const TInt functionClass = (aFunction&EWsDebugClassMask);
|
sl@0
|
1370 |
CScreen* screen = NULL;
|
sl@0
|
1371 |
if (functionClass<EWsDebugClassNonScreen)
|
sl@0
|
1372 |
{
|
sl@0
|
1373 |
if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
1374 |
return (KErrArgument);
|
sl@0
|
1375 |
|
sl@0
|
1376 |
screen = CWsTop::Screen(screenNumber);
|
sl@0
|
1377 |
}
|
sl@0
|
1378 |
WS_ASSERT_DEBUG(screen, EWsPanicNoScreen);
|
sl@0
|
1379 |
switch (aFunction&EWsDebugClassMask)
|
sl@0
|
1380 |
{
|
sl@0
|
1381 |
case EWsDebugClassScreenUiElement:
|
sl@0
|
1382 |
return DebugInfoScreenUiL(aFunction,aParam,buffSpace,*screen);
|
sl@0
|
1383 |
case EWsDebugClassScreenElementSet:
|
sl@0
|
1384 |
return DebugInfoScreenElementSetL(aFunction, aParam, buffSpace, *screen);
|
sl@0
|
1385 |
case EWsDebugClassElementSetWindow:
|
sl@0
|
1386 |
return DebugInfoElementSetWindowL(aFunction, aParam, buffSpace, *screen);
|
sl@0
|
1387 |
case EWsDebugClassElementSetElement:
|
sl@0
|
1388 |
return DebugInfoElementSetElementL(aFunction, aParam, buffSpace, *screen);
|
sl@0
|
1389 |
|
sl@0
|
1390 |
case EWsDebugClassClientWindow:
|
sl@0
|
1391 |
default:
|
sl@0
|
1392 |
return (KErrNotSupported);
|
sl@0
|
1393 |
}
|
sl@0
|
1394 |
}
|
sl@0
|
1395 |
|
sl@0
|
1396 |
/** Returns debug info about the UIElement entries for a screen.
|
sl@0
|
1397 |
* This describes the general state or size of the element set.
|
sl@0
|
1398 |
* It is indexed via screen num, and optionally element index.
|
sl@0
|
1399 |
* Element index MUST BE 0 when not required.
|
sl@0
|
1400 |
* @return size of buffer required or error code.
|
sl@0
|
1401 |
**/
|
sl@0
|
1402 |
TInt CWsClient::DebugInfoScreenUiL(TInt aFunction, TInt /* aParam */, TInt aReplyBufSize, CScreen& aScreen) const
|
sl@0
|
1403 |
{
|
sl@0
|
1404 |
switch(aFunction)
|
sl@0
|
1405 |
{
|
sl@0
|
1406 |
case EWsDebugGetFastpathMode:
|
sl@0
|
1407 |
{
|
sl@0
|
1408 |
// obsolete through preq2669
|
sl@0
|
1409 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1410 |
return KErrNotSupported;
|
sl@0
|
1411 |
}
|
sl@0
|
1412 |
|
sl@0
|
1413 |
case EWsDebugSetFastpathMode:
|
sl@0
|
1414 |
{
|
sl@0
|
1415 |
// obsolete through preq2669
|
sl@0
|
1416 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1417 |
return KErrNotSupported;
|
sl@0
|
1418 |
}
|
sl@0
|
1419 |
|
sl@0
|
1420 |
case EWsDebugGetUIElementInfoList:
|
sl@0
|
1421 |
{
|
sl@0
|
1422 |
// obsolete through preq2669
|
sl@0
|
1423 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1424 |
return KErrNotSupported;
|
sl@0
|
1425 |
}
|
sl@0
|
1426 |
|
sl@0
|
1427 |
case EWsDebugGetUIElementBase:
|
sl@0
|
1428 |
{
|
sl@0
|
1429 |
// obsolete through preq2669
|
sl@0
|
1430 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1431 |
return KErrNotSupported;
|
sl@0
|
1432 |
}
|
sl@0
|
1433 |
|
sl@0
|
1434 |
case EWsDebugGetUIElementIds:
|
sl@0
|
1435 |
{
|
sl@0
|
1436 |
// obsolete through preq2669
|
sl@0
|
1437 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1438 |
return KErrNotSupported;
|
sl@0
|
1439 |
}
|
sl@0
|
1440 |
|
sl@0
|
1441 |
case EWsDebugGetSceneElementIdOrder:
|
sl@0
|
1442 |
{
|
sl@0
|
1443 |
// obsolete through preq2669
|
sl@0
|
1444 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1445 |
return KErrNotSupported;
|
sl@0
|
1446 |
}
|
sl@0
|
1447 |
case EWsDebugSetFastpathTestMode:
|
sl@0
|
1448 |
{
|
sl@0
|
1449 |
// obsolete through preq2669
|
sl@0
|
1450 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1451 |
return KErrNotSupported;
|
sl@0
|
1452 |
}
|
sl@0
|
1453 |
|
sl@0
|
1454 |
case EWsDebugSetFastpathOomMode:
|
sl@0
|
1455 |
{
|
sl@0
|
1456 |
// obsolete through preq2669
|
sl@0
|
1457 |
WS_ASSERT_DEBUG(EFalse, EWsPanicDrawCommandsInvalidState);
|
sl@0
|
1458 |
return KErrNotSupported;
|
sl@0
|
1459 |
}
|
sl@0
|
1460 |
case EWsDebugGetUIElementConfig:
|
sl@0
|
1461 |
{
|
sl@0
|
1462 |
return DebugReturnConfig(aReplyBufSize,&aScreen.UiElement(),0);
|
sl@0
|
1463 |
|
sl@0
|
1464 |
}
|
sl@0
|
1465 |
default:
|
sl@0
|
1466 |
return (KErrNotSupported);
|
sl@0
|
1467 |
}
|
sl@0
|
1468 |
}
|
sl@0
|
1469 |
|
sl@0
|
1470 |
/** Returns debug info about the CWindowElementSet entry for a screen.
|
sl@0
|
1471 |
* This describes the general state or size of the element set
|
sl@0
|
1472 |
* It is indexed via screen num.
|
sl@0
|
1473 |
* @return size of buffer required or error code.
|
sl@0
|
1474 |
**/
|
sl@0
|
1475 |
TInt CWsClient::DebugInfoScreenElementSetL(TInt aFunction, TInt /*aParam*/, TInt aReplyBufSize, const CScreen& aScreen) const
|
sl@0
|
1476 |
{
|
sl@0
|
1477 |
const CWindowElementSet& elementSet = aScreen.WindowElements();
|
sl@0
|
1478 |
switch (aFunction)
|
sl@0
|
1479 |
{
|
sl@0
|
1480 |
case EWsDebugSerialSurfacesUpdated:
|
sl@0
|
1481 |
return 0;
|
sl@0
|
1482 |
|
sl@0
|
1483 |
case EWsDebugSurfaceWindowList:
|
sl@0
|
1484 |
{
|
sl@0
|
1485 |
TInt outSize = elementSet.Count() * sizeof(TWsDebugWindowId);
|
sl@0
|
1486 |
if (outSize<=aReplyBufSize)
|
sl@0
|
1487 |
{//can stream, so I shall!
|
sl@0
|
1488 |
for (TInt index = 0; index < elementSet.Count(); index++)
|
sl@0
|
1489 |
{
|
sl@0
|
1490 |
const CWsClientWindow& win = *elementSet.DebugWindowAt(index);
|
sl@0
|
1491 |
TWsDebugWindowId id=
|
sl@0
|
1492 |
{
|
sl@0
|
1493 |
win.ClientHandle(), 0
|
sl@0
|
1494 |
};
|
sl@0
|
1495 |
if (win.WsOwner()!=this)
|
sl@0
|
1496 |
id.iOtherGroupId=win.WinGroup()->Identifier();
|
sl@0
|
1497 |
ReplyBuf(&id, sizeof(id));
|
sl@0
|
1498 |
}
|
sl@0
|
1499 |
}
|
sl@0
|
1500 |
return outSize;
|
sl@0
|
1501 |
}
|
sl@0
|
1502 |
default:
|
sl@0
|
1503 |
return (KErrNotSupported);
|
sl@0
|
1504 |
|
sl@0
|
1505 |
}
|
sl@0
|
1506 |
}
|
sl@0
|
1507 |
|
sl@0
|
1508 |
/** Returns debug info about a CWindowElement entry.
|
sl@0
|
1509 |
* This describes the window or the background element(s)
|
sl@0
|
1510 |
* It is indexed via screen num, and index in elementset.
|
sl@0
|
1511 |
* @return size of buffer required or error code.
|
sl@0
|
1512 |
**/
|
sl@0
|
1513 |
TInt CWsClient::DebugInfoElementSetWindowL(TInt aFunction, TInt aParam,
|
sl@0
|
1514 |
TInt aReplyBufSize, const CScreen& aScreen) const
|
sl@0
|
1515 |
{
|
sl@0
|
1516 |
const CWindowElementSet& elementSet = aScreen.WindowElements();
|
sl@0
|
1517 |
TUint winIndex = (aParam & EWsDebugArgWindowMask) >> EWsDebugArgWindowShift;
|
sl@0
|
1518 |
const TAttributes* winElement = elementSet.DebugBackgroundAt(winIndex);
|
sl@0
|
1519 |
if (winElement == NULL)
|
sl@0
|
1520 |
{
|
sl@0
|
1521 |
return KErrArgument;
|
sl@0
|
1522 |
}
|
sl@0
|
1523 |
|
sl@0
|
1524 |
MWsElement* backElement = winElement->iElement;
|
sl@0
|
1525 |
TInt placedCount = elementSet.DebugPlacedCountAt(winIndex);
|
sl@0
|
1526 |
switch (aFunction)
|
sl@0
|
1527 |
{
|
sl@0
|
1528 |
case EWsDebugElementIdList:
|
sl@0
|
1529 |
{
|
sl@0
|
1530 |
TInt retVal = (placedCount + 1) * sizeof(MWsElement*);
|
sl@0
|
1531 |
if (retVal<aReplyBufSize)
|
sl@0
|
1532 |
{
|
sl@0
|
1533 |
ReplyBuf(&backElement, sizeof(MWsElement*));
|
sl@0
|
1534 |
for (TInt index=0; index<placedCount; index++)
|
sl@0
|
1535 |
ReplyBuf(&elementSet.DebugPlacedAt(winIndex, index)->iElement, sizeof(MWsElement*));
|
sl@0
|
1536 |
}
|
sl@0
|
1537 |
return retVal;
|
sl@0
|
1538 |
}
|
sl@0
|
1539 |
case EWsDebugBackgroundConfig:
|
sl@0
|
1540 |
if (backElement == NULL)
|
sl@0
|
1541 |
return KErrNotFound;
|
sl@0
|
1542 |
else
|
sl@0
|
1543 |
return DebugReturnConfig(aReplyBufSize, backElement,
|
sl@0
|
1544 |
winElement->DebugFlags());
|
sl@0
|
1545 |
case EWsDebugBackgroundBase:
|
sl@0
|
1546 |
if (backElement == NULL)
|
sl@0
|
1547 |
return KErrNotFound;
|
sl@0
|
1548 |
else
|
sl@0
|
1549 |
return DebugReturnBase(aReplyBufSize, backElement);
|
sl@0
|
1550 |
case EWsDebugBackgroundFlags:
|
sl@0
|
1551 |
return DebugReturnFlags(aReplyBufSize, backElement,
|
sl@0
|
1552 |
winElement->DebugFlags());
|
sl@0
|
1553 |
default:
|
sl@0
|
1554 |
return KErrNotSupported;
|
sl@0
|
1555 |
//This method can also be extended to return region and state information from the associated window
|
sl@0
|
1556 |
}
|
sl@0
|
1557 |
}
|
sl@0
|
1558 |
|
sl@0
|
1559 |
/** Returns debug info about a placed element.
|
sl@0
|
1560 |
* It is indexed via screen num, index in elementset, and index in placed element array.
|
sl@0
|
1561 |
* @return size of buffer required or error code.
|
sl@0
|
1562 |
**/
|
sl@0
|
1563 |
TInt CWsClient::DebugInfoElementSetElementL(TInt aFunction, TInt aParam,
|
sl@0
|
1564 |
TInt aReplyBufSize, const CScreen& aScreen) const
|
sl@0
|
1565 |
{
|
sl@0
|
1566 |
const CWindowElementSet& elementSet = aScreen.WindowElements();
|
sl@0
|
1567 |
TUint winIndex = (aParam & EWsDebugArgWindowMask) >> EWsDebugArgWindowShift;
|
sl@0
|
1568 |
TUint placeIndex = (aParam & EWsDebugArgElementMask) >> EWsDebugArgElementShift;
|
sl@0
|
1569 |
const TAttributes* placedElement = elementSet.DebugPlacedAt(winIndex, placeIndex);
|
sl@0
|
1570 |
if (placedElement == NULL)
|
sl@0
|
1571 |
{
|
sl@0
|
1572 |
return KErrArgument;
|
sl@0
|
1573 |
}
|
sl@0
|
1574 |
|
sl@0
|
1575 |
MWsElement* element = placedElement->iElement;
|
sl@0
|
1576 |
if (element == NULL)
|
sl@0
|
1577 |
{
|
sl@0
|
1578 |
return KErrNotFound;
|
sl@0
|
1579 |
}
|
sl@0
|
1580 |
|
sl@0
|
1581 |
switch (aFunction)
|
sl@0
|
1582 |
{
|
sl@0
|
1583 |
case EWsDebugPlacedConfig:
|
sl@0
|
1584 |
return DebugReturnConfig(aReplyBufSize, element,
|
sl@0
|
1585 |
placedElement->DebugFlags());
|
sl@0
|
1586 |
case EWsDebugPlacedBase:
|
sl@0
|
1587 |
return DebugReturnBase(aReplyBufSize, element);
|
sl@0
|
1588 |
case EWsDebugPlacedFlags:
|
sl@0
|
1589 |
return DebugReturnFlags(aReplyBufSize, element,
|
sl@0
|
1590 |
placedElement->DebugFlags());
|
sl@0
|
1591 |
default:
|
sl@0
|
1592 |
return KErrNotSupported;
|
sl@0
|
1593 |
}
|
sl@0
|
1594 |
}
|
sl@0
|
1595 |
|
sl@0
|
1596 |
/** Returns a filled in TSurfaceConfiguration from an MWsElement.
|
sl@0
|
1597 |
* Data is usually copied if the buffer is big enough
|
sl@0
|
1598 |
* @return the size of buffer required, or zero if the buffer is acceptable
|
sl@0
|
1599 |
**/
|
sl@0
|
1600 |
TInt CWsClient::DebugReturnConfig(TInt aReplyBufSize, MWsElement* aElement, TInt /*aFlags*/) const
|
sl@0
|
1601 |
{
|
sl@0
|
1602 |
if (aElement == NULL)
|
sl@0
|
1603 |
{
|
sl@0
|
1604 |
return KErrNotReady;
|
sl@0
|
1605 |
}
|
sl@0
|
1606 |
|
sl@0
|
1607 |
TSurfaceConfiguration config(aReplyBufSize);
|
sl@0
|
1608 |
TInt retVal=config.Size();
|
sl@0
|
1609 |
if (aReplyBufSize)
|
sl@0
|
1610 |
{
|
sl@0
|
1611 |
retVal = CWindowElementSet::GetConfiguration(config, *aElement);
|
sl@0
|
1612 |
if (retVal==KErrNone)
|
sl@0
|
1613 |
{
|
sl@0
|
1614 |
ReplyBuf(&config, config.Size()); //return code is 0 = "just right"
|
sl@0
|
1615 |
}
|
sl@0
|
1616 |
}
|
sl@0
|
1617 |
return retVal;
|
sl@0
|
1618 |
}
|
sl@0
|
1619 |
|
sl@0
|
1620 |
/** Returns the base region of the element.
|
sl@0
|
1621 |
* This region is element relative. There are a number of ways that this does not match the input region:
|
sl@0
|
1622 |
* First, if no region is specified then the extent rectangle is returned
|
sl@0
|
1623 |
* Any region returned has all negative ordinate values clipped.
|
sl@0
|
1624 |
* Positive values may exceed the extent, but negative values are never returned.
|
sl@0
|
1625 |
* Internally, a region which is only negative is "remembered illegally", but an empty region is returned.
|
sl@0
|
1626 |
**/
|
sl@0
|
1627 |
TInt CWsClient::DebugReturnBase(TInt /*aReplyBufSize*/, const MWsElement* /*aElement*/)const
|
sl@0
|
1628 |
{
|
sl@0
|
1629 |
return KErrNotSupported;
|
sl@0
|
1630 |
}
|
sl@0
|
1631 |
|
sl@0
|
1632 |
/** Returns the flags associated with the given element.
|
sl@0
|
1633 |
* 2 words are inserted.
|
sl@0
|
1634 |
* One represents the MWsElement flags, the other represents CWindowElement or UIElement flags
|
sl@0
|
1635 |
* @return length of two words
|
sl@0
|
1636 |
**/
|
sl@0
|
1637 |
TInt CWsClient::DebugReturnFlags(TInt aReplyBufSize, const MWsElement* /*aElement*/, TInt aFlags)const
|
sl@0
|
1638 |
{
|
sl@0
|
1639 |
const TInt KArraySize=2;
|
sl@0
|
1640 |
if (aReplyBufSize>KArraySize*sizeof(TInt))
|
sl@0
|
1641 |
{
|
sl@0
|
1642 |
// First field is for flags from scene element if any
|
sl@0
|
1643 |
TInt returns[KArraySize]=
|
sl@0
|
1644 |
{
|
sl@0
|
1645 |
0, aFlags
|
sl@0
|
1646 |
};
|
sl@0
|
1647 |
ReplyBuf(returns,KArraySize*sizeof(TInt));
|
sl@0
|
1648 |
}
|
sl@0
|
1649 |
return KArraySize*sizeof(TInt);
|
sl@0
|
1650 |
}
|
sl@0
|
1651 |
|
sl@0
|
1652 |
/** Packages a region for return ans an array of rectangles.
|
sl@0
|
1653 |
* If the buffer is big enough the data is transferred
|
sl@0
|
1654 |
* @return the buffer size required, or an error code if an empty or null pointer is passed in
|
sl@0
|
1655 |
**/
|
sl@0
|
1656 |
TInt CWsClient::DebugReturnRegion(TInt aReplyBufSize, const TRegion* aRegion, TInt aErrCodeIfEmpty)const
|
sl@0
|
1657 |
{
|
sl@0
|
1658 |
if (aRegion==NULL)
|
sl@0
|
1659 |
return KErrNotReady;
|
sl@0
|
1660 |
|
sl@0
|
1661 |
const TInt returnSize=aRegion->Count()*sizeof(TRect);
|
sl@0
|
1662 |
if (returnSize==0)
|
sl@0
|
1663 |
return aErrCodeIfEmpty;
|
sl@0
|
1664 |
|
sl@0
|
1665 |
if (returnSize<=aReplyBufSize)
|
sl@0
|
1666 |
ReplyBuf(aRegion->RectangleList(),returnSize);
|
sl@0
|
1667 |
|
sl@0
|
1668 |
return returnSize;
|
sl@0
|
1669 |
}
|
sl@0
|
1670 |
|
sl@0
|
1671 |
void CWsClient::ReplyGroupName(HBufC* aName, TInt aMaxLength) // static
|
sl@0
|
1672 |
{
|
sl@0
|
1673 |
if (aName)
|
sl@0
|
1674 |
{
|
sl@0
|
1675 |
if (aName->Length()>aMaxLength)
|
sl@0
|
1676 |
{
|
sl@0
|
1677 |
ReplyBuf(aName->Left(aMaxLength));
|
sl@0
|
1678 |
SetReply(KErrOverflow);
|
sl@0
|
1679 |
}
|
sl@0
|
1680 |
else
|
sl@0
|
1681 |
ReplyBuf(*aName);
|
sl@0
|
1682 |
}
|
sl@0
|
1683 |
else
|
sl@0
|
1684 |
ReplyBuf(KNullDesC);
|
sl@0
|
1685 |
}
|
sl@0
|
1686 |
|
sl@0
|
1687 |
void CWsClient::TriggerRedraw()
|
sl@0
|
1688 |
{
|
sl@0
|
1689 |
RedrawQueue()->TriggerRedraw();
|
sl@0
|
1690 |
}
|
sl@0
|
1691 |
|
sl@0
|
1692 |
void CWsClient::UpdateWindowOrdinalPrioritys()
|
sl@0
|
1693 |
{
|
sl@0
|
1694 |
for(CWsWindowGroup* win=iScreen->RootWindow()->Child();win;win=win->NextSibling())
|
sl@0
|
1695 |
{
|
sl@0
|
1696 |
if (win->WsOwner()==this)
|
sl@0
|
1697 |
win->UpdateOrdinalPriority(ETrue);
|
sl@0
|
1698 |
}
|
sl@0
|
1699 |
}
|
sl@0
|
1700 |
|
sl@0
|
1701 |
void CWsClient::DeleteSystemPointerListEntry(TInt aIndex)
|
sl@0
|
1702 |
{
|
sl@0
|
1703 |
PointerCursor (aIndex)->Close();
|
sl@0
|
1704 |
iSystemPointerCursors->Delete(aIndex);
|
sl@0
|
1705 |
}
|
sl@0
|
1706 |
|
sl@0
|
1707 |
CWsPointerCursor* CWsClient::SystemPointerCursor(TInt aIndex)
|
sl@0
|
1708 |
{
|
sl@0
|
1709 |
TInt arrayIndex;
|
sl@0
|
1710 |
if (iSystemPointerCursors)
|
sl@0
|
1711 |
{
|
sl@0
|
1712 |
if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
|
sl@0
|
1713 |
return PointerCursor(arrayIndex);
|
sl@0
|
1714 |
|
sl@0
|
1715 |
// Cursor not defined so try for default cursor
|
sl@0
|
1716 |
if (FindCursorArrayItem(iSystemPointerCursors, 0, arrayIndex))
|
sl@0
|
1717 |
return PointerCursor(arrayIndex);
|
sl@0
|
1718 |
}
|
sl@0
|
1719 |
|
sl@0
|
1720 |
// If that fails simply return NULL for no cursor
|
sl@0
|
1721 |
return NULL;
|
sl@0
|
1722 |
}
|
sl@0
|
1723 |
|
sl@0
|
1724 |
void CWsClient::SetSystemPointerCursorL(TInt aIndex, CWsPointerCursor* aCursor)
|
sl@0
|
1725 |
{
|
sl@0
|
1726 |
if (iSystemPointerCursorListOwner!=this)
|
sl@0
|
1727 |
PPanic(EWservPanicNotSystemPointerCursorListOwner);
|
sl@0
|
1728 |
|
sl@0
|
1729 |
TInt arrayIndex = KErrNotFound;
|
sl@0
|
1730 |
if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
|
sl@0
|
1731 |
{
|
sl@0
|
1732 |
PointerCursor(arrayIndex)->Close();
|
sl@0
|
1733 |
PointerCursor(arrayIndex) = aCursor;
|
sl@0
|
1734 |
}
|
sl@0
|
1735 |
else
|
sl@0
|
1736 |
{
|
sl@0
|
1737 |
TWsCursorArrayItem entry;
|
sl@0
|
1738 |
entry.iIndex=aIndex;
|
sl@0
|
1739 |
entry.iCursor=aCursor;
|
sl@0
|
1740 |
iSystemPointerCursors->InsertIsqL(entry, iCursorKey);
|
sl@0
|
1741 |
}
|
sl@0
|
1742 |
|
sl@0
|
1743 |
aCursor->Open();
|
sl@0
|
1744 |
if (aIndex==iDefaultSystemPointerCursorIndex)
|
sl@0
|
1745 |
iDefaultSystemPointerCursor=aCursor;
|
sl@0
|
1746 |
TWsPointer::UpdatePointerCursor();
|
sl@0
|
1747 |
}
|
sl@0
|
1748 |
|
sl@0
|
1749 |
void CWsClient::ClearSystemPointerCursor(TInt aIndex)
|
sl@0
|
1750 |
{
|
sl@0
|
1751 |
if (iSystemPointerCursorListOwner!=this)
|
sl@0
|
1752 |
PPanic(EWservPanicNotSystemPointerCursorListOwner);
|
sl@0
|
1753 |
|
sl@0
|
1754 |
TInt arrayIndex;
|
sl@0
|
1755 |
if (FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
|
sl@0
|
1756 |
{
|
sl@0
|
1757 |
DeleteSystemPointerListEntry(arrayIndex);
|
sl@0
|
1758 |
if (aIndex==iDefaultSystemPointerCursorIndex)
|
sl@0
|
1759 |
iDefaultSystemPointerCursor=NULL;
|
sl@0
|
1760 |
}
|
sl@0
|
1761 |
}
|
sl@0
|
1762 |
|
sl@0
|
1763 |
void CWsClient::ClaimSystemPointerCursorListL()
|
sl@0
|
1764 |
{
|
sl@0
|
1765 |
if (iSystemPointerCursorListOwner)
|
sl@0
|
1766 |
User::Leave(KErrInUse);
|
sl@0
|
1767 |
|
sl@0
|
1768 |
const TInt systemPointerCursorGranularity = 4;
|
sl@0
|
1769 |
iSystemPointerCursors = new(ELeave) CArrayFixFlat<TWsCursorArrayItem> (systemPointerCursorGranularity);
|
sl@0
|
1770 |
iSystemPointerCursorListOwner=this;
|
sl@0
|
1771 |
}
|
sl@0
|
1772 |
|
sl@0
|
1773 |
void CWsClient::FreeSystemPointerCursorList()
|
sl@0
|
1774 |
{
|
sl@0
|
1775 |
if(iSystemPointerCursorListOwner == this)
|
sl@0
|
1776 |
{
|
sl@0
|
1777 |
iSystemPointerCursorListOwner = NULL;
|
sl@0
|
1778 |
|
sl@0
|
1779 |
while(iSystemPointerCursors->Count()>0)
|
sl@0
|
1780 |
DeleteSystemPointerListEntry(0);
|
sl@0
|
1781 |
|
sl@0
|
1782 |
iDefaultSystemPointerCursor = NULL;
|
sl@0
|
1783 |
iDefaultSystemPointerCursorIndex = 0;
|
sl@0
|
1784 |
|
sl@0
|
1785 |
delete iSystemPointerCursors;
|
sl@0
|
1786 |
iSystemPointerCursors = NULL;
|
sl@0
|
1787 |
}
|
sl@0
|
1788 |
}
|
sl@0
|
1789 |
|
sl@0
|
1790 |
void CWsClient::SetDefaultSystemPointerCursor(TInt aIndex)
|
sl@0
|
1791 |
{
|
sl@0
|
1792 |
TInt arrayIndex;
|
sl@0
|
1793 |
if (iSystemPointerCursorListOwner != this)
|
sl@0
|
1794 |
PPanic(EWservPanicNotSystemPointerCursorListOwner);
|
sl@0
|
1795 |
|
sl@0
|
1796 |
iDefaultSystemPointerCursorIndex = aIndex;
|
sl@0
|
1797 |
iDefaultSystemPointerCursor = NULL;
|
sl@0
|
1798 |
|
sl@0
|
1799 |
if (aIndex != ENoDefaultSystemPointerCursor &&
|
sl@0
|
1800 |
FindCursorArrayItem(iSystemPointerCursors, aIndex, arrayIndex))
|
sl@0
|
1801 |
iDefaultSystemPointerCursor = PointerCursor (arrayIndex);
|
sl@0
|
1802 |
else
|
sl@0
|
1803 |
iDefaultSystemPointerCursor = NULL;
|
sl@0
|
1804 |
|
sl@0
|
1805 |
TWsPointer::UpdatePointerCursor();
|
sl@0
|
1806 |
}
|
sl@0
|
1807 |
|
sl@0
|
1808 |
TBool CWsClient::FindCursorArrayItem(CArrayFixFlat<TWsCursorArrayItem>* aCursorArray,
|
sl@0
|
1809 |
TInt aIndex,TInt& aPosition)
|
sl@0
|
1810 |
{
|
sl@0
|
1811 |
if (!aCursorArray)
|
sl@0
|
1812 |
return EFalse; // No hit if the array isn't even allocated
|
sl@0
|
1813 |
|
sl@0
|
1814 |
TWsCursorArrayItem entry;
|
sl@0
|
1815 |
entry.iIndex = aIndex;
|
sl@0
|
1816 |
return aCursorArray->FindIsq(entry, iCursorKey, aPosition)==KErrNone;
|
sl@0
|
1817 |
}
|
sl@0
|
1818 |
|
sl@0
|
1819 |
void CWsClient::SetClientPriority()
|
sl@0
|
1820 |
{
|
sl@0
|
1821 |
if (iComputeMode!=RWsSession::EPriorityControlDisabled)
|
sl@0
|
1822 |
{
|
sl@0
|
1823 |
Client().SetProcessPriority(
|
sl@0
|
1824 |
iComputeMode==RWsSession::EPriorityControlComputeOn
|
sl@0
|
1825 |
|| CWsTop::FocusWindowGroupOwner()!=this
|
sl@0
|
1826 |
? EPriorityBackground
|
sl@0
|
1827 |
: EPriorityForeground);
|
sl@0
|
1828 |
}
|
sl@0
|
1829 |
}
|
sl@0
|
1830 |
|
sl@0
|
1831 |
void CWsClient::SetComputeMode(RWsSession::TComputeMode aComputeMode)
|
sl@0
|
1832 |
{
|
sl@0
|
1833 |
if (aComputeMode!=RWsSession::EPriorityControlDisabled
|
sl@0
|
1834 |
&& aComputeMode !=RWsSession::EPriorityControlComputeOn
|
sl@0
|
1835 |
&& aComputeMode !=RWsSession::EPriorityControlComputeOff)
|
sl@0
|
1836 |
PPanic(EWservPanicSetComputeMode);
|
sl@0
|
1837 |
iComputeMode=aComputeMode;
|
sl@0
|
1838 |
SetClientPriority();
|
sl@0
|
1839 |
}
|
sl@0
|
1840 |
|
sl@0
|
1841 |
void CWsClient::CompleteMessage(const RMessage2& aMessage,TInt aReason)
|
sl@0
|
1842 |
{
|
sl@0
|
1843 |
WS_ASSERT_DEBUG(!aMessage.IsNull(),EWsPanicPanicFlagError);
|
sl@0
|
1844 |
if (iInternalFlags&EPanicClientAsSoonAsPossible)
|
sl@0
|
1845 |
{
|
sl@0
|
1846 |
aMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
|
sl@0
|
1847 |
iInternalFlags&=~EPanicClientAsSoonAsPossible;
|
sl@0
|
1848 |
}
|
sl@0
|
1849 |
else
|
sl@0
|
1850 |
{
|
sl@0
|
1851 |
if(!iResponseHandle)
|
sl@0
|
1852 |
aMessage.Complete(aReason);
|
sl@0
|
1853 |
else
|
sl@0
|
1854 |
{
|
sl@0
|
1855 |
aMessage.Complete(*iResponseHandle);
|
sl@0
|
1856 |
iResponseHandle=NULL;
|
sl@0
|
1857 |
}
|
sl@0
|
1858 |
}
|
sl@0
|
1859 |
}
|
sl@0
|
1860 |
|
sl@0
|
1861 |
void CWsClient::ServiceError(const RMessage2& /*aMessage*/,TInt aError)
|
sl@0
|
1862 |
{
|
sl@0
|
1863 |
CompleteMessage(iClientMessage,aError); // (finish)
|
sl@0
|
1864 |
}
|
sl@0
|
1865 |
|
sl@0
|
1866 |
void CWsClient::ServiceL(const RMessage2 &aMessage) // (step ##1)
|
sl@0
|
1867 |
//
|
sl@0
|
1868 |
// Handle messages for the window server server.
|
sl@0
|
1869 |
//
|
sl@0
|
1870 |
{
|
sl@0
|
1871 |
iClientMessage=aMessage; // from now on use always the message stored in the session
|
sl@0
|
1872 |
if (iInternalFlags&EPanicClientAsSoonAsPossible)
|
sl@0
|
1873 |
{
|
sl@0
|
1874 |
iClientMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
|
sl@0
|
1875 |
}
|
sl@0
|
1876 |
else
|
sl@0
|
1877 |
{
|
sl@0
|
1878 |
iPanicReason=KErrNone;
|
sl@0
|
1879 |
iReply=KErrNone;
|
sl@0
|
1880 |
TBool completeRequest=ETrue;
|
sl@0
|
1881 |
DoServiceL(iClientMessage, completeRequest); // (call #2)
|
sl@0
|
1882 |
if (completeRequest)
|
sl@0
|
1883 |
CompleteMessage(iClientMessage,iReply); // (finish)
|
sl@0
|
1884 |
}
|
sl@0
|
1885 |
}
|
sl@0
|
1886 |
|
sl@0
|
1887 |
void CWsClient::SetResponseHandle(RHandleBase* aHandle)
|
sl@0
|
1888 |
{
|
sl@0
|
1889 |
iResponseHandle = aHandle;
|
sl@0
|
1890 |
}
|
sl@0
|
1891 |
|
sl@0
|
1892 |
void CWsClient::DoServiceL(const RMessage2& aMessage, TBool& aCompleteRequest) // (step #2)
|
sl@0
|
1893 |
{
|
sl@0
|
1894 |
if (aMessage.IsNull())
|
sl@0
|
1895 |
PPanic(EWservPanicNullMessageFromClient);
|
sl@0
|
1896 |
|
sl@0
|
1897 |
WS_ASSERT_DEBUG(iInternalFlags&EFinishedProcessingCommands,EWsPanicCommandBufferStillBeingProcessed);
|
sl@0
|
1898 |
|
sl@0
|
1899 |
const TInt function = aMessage.Function();
|
sl@0
|
1900 |
switch (function)
|
sl@0
|
1901 |
{
|
sl@0
|
1902 |
case EWservMessInit:
|
sl@0
|
1903 |
StartInitializationL(iConnectionId++);
|
sl@0
|
1904 |
break;
|
sl@0
|
1905 |
case EWservMessSyncMsgBuf:
|
sl@0
|
1906 |
case EWservMessCommandBuffer: // Process command buffer containing draw ops
|
sl@0
|
1907 |
{
|
sl@0
|
1908 |
if (!IsInitialised())
|
sl@0
|
1909 |
PPanic(EWservPanicUninitialisedClient);
|
sl@0
|
1910 |
|
sl@0
|
1911 |
const TInt err = aMessage.Read(KBufferMessageSlot, iCmdBuf);
|
sl@0
|
1912 |
if (!err)
|
sl@0
|
1913 |
{
|
sl@0
|
1914 |
iReplyOffset=0;
|
sl@0
|
1915 |
iDestObj=NULL;
|
sl@0
|
1916 |
iNextCmd=iCmdBuf.Ptr();
|
sl@0
|
1917 |
DoServiceCommandBuf(); // (call #3.1)
|
sl@0
|
1918 |
}
|
sl@0
|
1919 |
else if (err!=KErrDied)
|
sl@0
|
1920 |
PPanic(EWservPanicDescriptor);
|
sl@0
|
1921 |
|
sl@0
|
1922 |
if(function == EWservMessCommandBuffer && CWsTop::FinishEveryFlush())
|
sl@0
|
1923 |
Screen()->DoRedrawNow();
|
sl@0
|
1924 |
else
|
sl@0
|
1925 |
aCompleteRequest=EFalse;
|
sl@0
|
1926 |
}
|
sl@0
|
1927 |
break;
|
sl@0
|
1928 |
case EWservMessShutdown:
|
sl@0
|
1929 |
{
|
sl@0
|
1930 |
if(!KSecurityPolicy_PowerMgmt().CheckPolicy(ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for EWservMessShutdown message ")))
|
sl@0
|
1931 |
PPanic(EWservPanicPermissionDenied);
|
sl@0
|
1932 |
|
sl@0
|
1933 |
if (aMessage.Int0() == EWservShutdownCheck)
|
sl@0
|
1934 |
CWsTop::Exit();
|
sl@0
|
1935 |
else
|
sl@0
|
1936 |
PPanic(EWservPanicHandle);
|
sl@0
|
1937 |
}
|
sl@0
|
1938 |
break;
|
sl@0
|
1939 |
case EWservMessFinish:
|
sl@0
|
1940 |
Screen()->DoRedrawNow();
|
sl@0
|
1941 |
break;
|
sl@0
|
1942 |
default:
|
sl@0
|
1943 |
if (function&EWservMessAsynchronousService)
|
sl@0
|
1944 |
{
|
sl@0
|
1945 |
TRAPD(err, ExecuteAsyncClientCommandL((function&~EWservMessAsynchronousService), aMessage)); // (call #3.2)
|
sl@0
|
1946 |
aCompleteRequest = (err!=KErrNone);
|
sl@0
|
1947 |
WS_ASSERT_DEBUG((!(iInternalFlags&EPanicClientAsSoonAsPossible))==(!aCompleteRequest), EWsPanicPanicFlagError);
|
sl@0
|
1948 |
}
|
sl@0
|
1949 |
else if (function&EWservMessAnimDllAsyncCommand)
|
sl@0
|
1950 |
{
|
sl@0
|
1951 |
CWsAnimDll* const animDll = static_cast<CWsAnimDll*>(HandleToObj(aMessage.Int0(), WS_HANDLE_ANIM_DLL));
|
sl@0
|
1952 |
if (!animDll)
|
sl@0
|
1953 |
{
|
sl@0
|
1954 |
SessionPanic(EWservPanicHandle);
|
sl@0
|
1955 |
break;
|
sl@0
|
1956 |
}
|
sl@0
|
1957 |
|
sl@0
|
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
|
sl@0
|
1959 |
TRAPD(err, animDll->AnimObjectL(aMessage.Int1())->CommandReply(function&~EWservMessAnimDllAsyncCommand,NULL));
|
sl@0
|
1960 |
aCompleteRequest=(err!=KErrNone);
|
sl@0
|
1961 |
WS_ASSERT_DEBUG((!(iInternalFlags&EPanicClientAsSoonAsPossible))==(!aCompleteRequest), EWsPanicPanicFlagError);
|
sl@0
|
1962 |
}
|
sl@0
|
1963 |
else
|
sl@0
|
1964 |
SetReply(KErrNotSupported);
|
sl@0
|
1965 |
}
|
sl@0
|
1966 |
}
|
sl@0
|
1967 |
void CWsClient::RemoteRead(TDes16& aDes, TInt aOffset)
|
sl@0
|
1968 |
{
|
sl@0
|
1969 |
if (iClientMessage.Read(KRemoteBufferMessageSlot,aDes,aOffset)!=KErrNone)
|
sl@0
|
1970 |
SessionPanic(EWservPanicDescriptor);
|
sl@0
|
1971 |
}
|
sl@0
|
1972 |
|
sl@0
|
1973 |
void CWsClient::RemoteRead(TDes8& aDes, TInt aOffset)
|
sl@0
|
1974 |
{
|
sl@0
|
1975 |
if (iClientMessage.Read(KRemoteBufferMessageSlot,aDes,aOffset)!=KErrNone)
|
sl@0
|
1976 |
SessionPanic(EWservPanicDescriptor);
|
sl@0
|
1977 |
}
|
sl@0
|
1978 |
|
sl@0
|
1979 |
void CWsClient::RemoteReadL(TDes16& aDes, TInt aOffset)
|
sl@0
|
1980 |
{
|
sl@0
|
1981 |
iClientMessage.ReadL(KRemoteBufferMessageSlot,aDes,aOffset);
|
sl@0
|
1982 |
}
|
sl@0
|
1983 |
|
sl@0
|
1984 |
void CWsClient::RemoteReadL(TDes8& aDes, TInt aOffset)
|
sl@0
|
1985 |
{
|
sl@0
|
1986 |
iClientMessage.ReadL(KRemoteBufferMessageSlot,aDes,aOffset);
|
sl@0
|
1987 |
}
|
sl@0
|
1988 |
|
sl@0
|
1989 |
void CWsClient::InitStaticsL()
|
sl@0
|
1990 |
{
|
sl@0
|
1991 |
}
|
sl@0
|
1992 |
|
sl@0
|
1993 |
void CWsClient::DeleteStatics()
|
sl@0
|
1994 |
{
|
sl@0
|
1995 |
if (iTextCursorArray)
|
sl@0
|
1996 |
{
|
sl@0
|
1997 |
const TInt count = iTextCursorArray->Count();
|
sl@0
|
1998 |
for (TInt index=0;index<count;index++)
|
sl@0
|
1999 |
delete iTextCursorArray->At(index).iCursor;
|
sl@0
|
2000 |
|
sl@0
|
2001 |
delete iTextCursorArray;
|
sl@0
|
2002 |
iTextCursorArray = NULL;
|
sl@0
|
2003 |
}
|
sl@0
|
2004 |
|
sl@0
|
2005 |
// coverity[extend_simple_error]
|
sl@0
|
2006 |
}
|
sl@0
|
2007 |
|
sl@0
|
2008 |
/* CWsClient implementing MWsClient */
|
sl@0
|
2009 |
|
sl@0
|
2010 |
TBool CWsClient::HasCapability(TCapability aCapability) const
|
sl@0
|
2011 |
{
|
sl@0
|
2012 |
return iClient.HasCapability(aCapability);
|
sl@0
|
2013 |
}
|
sl@0
|
2014 |
|
sl@0
|
2015 |
TSecureId CWsClient::SecureId() const
|
sl@0
|
2016 |
{
|
sl@0
|
2017 |
return iClient.SecureId();
|
sl@0
|
2018 |
}
|
sl@0
|
2019 |
|
sl@0
|
2020 |
TVendorId CWsClient::VendorId() const
|
sl@0
|
2021 |
{
|
sl@0
|
2022 |
return iClient.VendorId();
|
sl@0
|
2023 |
}
|
sl@0
|
2024 |
|
sl@0
|
2025 |
/**
|
sl@0
|
2026 |
Makes a new copy of the aData. so it could be deleted after this call.
|
sl@0
|
2027 |
*/
|
sl@0
|
2028 |
TInt CWsClient::SendMessage(const CWsGraphicDrawer* aOnBehalfOf,const TDesC8& aData)
|
sl@0
|
2029 |
{
|
sl@0
|
2030 |
CWsGraphicMessageQueue::CMessage* msg = CWsGraphicMessageQueue::CMessage::New(aData);
|
sl@0
|
2031 |
if(msg)
|
sl@0
|
2032 |
return SendMessage(aOnBehalfOf, *msg);
|
sl@0
|
2033 |
|
sl@0
|
2034 |
return KErrGeneral;
|
sl@0
|
2035 |
}
|
sl@0
|
2036 |
|
sl@0
|
2037 |
/** adds a message to the message queue
|
sl@0
|
2038 |
@return a postive number to uniquely identify the message
|
sl@0
|
2039 |
*/
|
sl@0
|
2040 |
TInt CWsClient::SendMessage(const CWsGraphicDrawer* aOnBehalfOf,CWsMessageData& aData)
|
sl@0
|
2041 |
{
|
sl@0
|
2042 |
WS_ASSERT_DEBUG(aData.Data().Size(), EWsPanicWsGraphic);
|
sl@0
|
2043 |
const CWsGraphicDrawerObject* obj = DrawerObject(aOnBehalfOf);
|
sl@0
|
2044 |
WS_ASSERT_DEBUG(obj, EWsPanicWsGraphic);
|
sl@0
|
2045 |
if(obj)
|
sl@0
|
2046 |
{
|
sl@0
|
2047 |
// assign message id
|
sl@0
|
2048 |
if(iMessageIdSeq == KMaxTInt) // Wrap if iMessageIdSeq has reached KMaxTInt
|
sl@0
|
2049 |
iMessageIdSeq = 0;
|
sl@0
|
2050 |
|
sl@0
|
2051 |
iMessageIdSeq++;
|
sl@0
|
2052 |
// correct other handles
|
sl@0
|
2053 |
aData.iClientHandle = (obj->ClientHandle() | (EWsGraphMessageTypeUser & 0x03));
|
sl@0
|
2054 |
aData.iDrawer = obj->Drawer();
|
sl@0
|
2055 |
aData.iId = iMessageIdSeq;
|
sl@0
|
2056 |
iGraphicMessageQueue.Queue(&aData);
|
sl@0
|
2057 |
return iMessageIdSeq;
|
sl@0
|
2058 |
}
|
sl@0
|
2059 |
|
sl@0
|
2060 |
return KErrGeneral;
|
sl@0
|
2061 |
}
|
sl@0
|
2062 |
|
sl@0
|
2063 |
|
sl@0
|
2064 |
CWsGraphicDrawerObject* CWsClient::DrawerObject(const CWsGraphicDrawer* aDrawer)
|
sl@0
|
2065 |
{
|
sl@0
|
2066 |
const TInt count = ObjectIndex()->Length();
|
sl@0
|
2067 |
for(TInt i=0; i<count; i++)
|
sl@0
|
2068 |
{
|
sl@0
|
2069 |
CWsObject* obj = const_cast<CWsObject*>(ObjectIndex()->At(i));
|
sl@0
|
2070 |
if(obj && (WS_HANDLE_GRAPHIC_DRAWER == obj->Type()))
|
sl@0
|
2071 |
{
|
sl@0
|
2072 |
CWsGraphicDrawerObject* candidate = static_cast<CWsGraphicDrawerObject*>(obj);
|
sl@0
|
2073 |
if(candidate->Drawer() == aDrawer)
|
sl@0
|
2074 |
return candidate;
|
sl@0
|
2075 |
}
|
sl@0
|
2076 |
}
|
sl@0
|
2077 |
|
sl@0
|
2078 |
return NULL;
|
sl@0
|
2079 |
}
|
sl@0
|
2080 |
|
sl@0
|
2081 |
const CWsGraphicDrawerObject* CWsClient::DrawerObject(const CWsGraphicDrawer* aDrawer) const
|
sl@0
|
2082 |
{
|
sl@0
|
2083 |
CWsObjectIx* objectIndex = const_cast<CWsClient*>(this)->ObjectIndex();
|
sl@0
|
2084 |
const TInt count = objectIndex->Length();
|
sl@0
|
2085 |
for(TInt i=0; i<count; i++)
|
sl@0
|
2086 |
{
|
sl@0
|
2087 |
CWsObject* obj = const_cast<CWsObject*>(objectIndex->At(i));
|
sl@0
|
2088 |
if(obj && (WS_HANDLE_GRAPHIC_DRAWER == obj->Type()))
|
sl@0
|
2089 |
{
|
sl@0
|
2090 |
const CWsGraphicDrawerObject* candidate = static_cast<CWsGraphicDrawerObject*>(obj);
|
sl@0
|
2091 |
if(candidate->Drawer() == aDrawer)
|
sl@0
|
2092 |
return candidate;
|
sl@0
|
2093 |
}
|
sl@0
|
2094 |
}
|
sl@0
|
2095 |
|
sl@0
|
2096 |
return NULL;
|
sl@0
|
2097 |
}
|
sl@0
|
2098 |
|
sl@0
|
2099 |
TInt CWsClient::RegisterSurface(const TWsClCmdUnion& pData)
|
sl@0
|
2100 |
{
|
sl@0
|
2101 |
TInt screenNumber = pData.SurfaceRegister->screenNumber;
|
sl@0
|
2102 |
if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
2103 |
{
|
sl@0
|
2104 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
2105 |
}
|
sl@0
|
2106 |
if (pData.SurfaceRegister->surfaceId.Type() == TSurfaceId::EScreenSurface
|
sl@0
|
2107 |
|| pData.SurfaceRegister->surfaceId.IsNull())
|
sl@0
|
2108 |
{
|
sl@0
|
2109 |
PPanic(EWservPanicInvalidSurface);
|
sl@0
|
2110 |
}
|
sl@0
|
2111 |
|
sl@0
|
2112 |
CRegisteredSurfaceMap* surfaceMap = CWsTop::Screen(screenNumber)->SurfaceMap();
|
sl@0
|
2113 |
const TSurfaceId& surfaceId = pData.SurfaceRegister->surfaceId;
|
sl@0
|
2114 |
TInt err = surfaceMap->Add(*this,surfaceId);
|
sl@0
|
2115 |
|
sl@0
|
2116 |
switch(err)
|
sl@0
|
2117 |
{
|
sl@0
|
2118 |
case KErrNone:
|
sl@0
|
2119 |
case KErrNoMemory:
|
sl@0
|
2120 |
case KErrInUse:
|
sl@0
|
2121 |
case KErrArgument:
|
sl@0
|
2122 |
break;
|
sl@0
|
2123 |
default:
|
sl@0
|
2124 |
PPanic(EWservPanicInvalidSurface);
|
sl@0
|
2125 |
}
|
sl@0
|
2126 |
return err;
|
sl@0
|
2127 |
}
|
sl@0
|
2128 |
|
sl@0
|
2129 |
void CWsClient::UnregisterSurface(const TWsClCmdUnion& pData)
|
sl@0
|
2130 |
{
|
sl@0
|
2131 |
TInt screenNumber = pData.SurfaceRegister->screenNumber;
|
sl@0
|
2132 |
if (screenNumber<0 || screenNumber>=CWsTop::NumberOfScreens())
|
sl@0
|
2133 |
{
|
sl@0
|
2134 |
PPanic(EWservPanicScreenNumber);
|
sl@0
|
2135 |
}
|
sl@0
|
2136 |
TInt err = CWsTop::Screen(screenNumber)->SurfaceMap()->Remove(*this,pData.SurfaceRegister->surfaceId);
|
sl@0
|
2137 |
WS_ASSERT_DEBUG((err==KErrNone||err==KErrNotFound), EWsPanicSurfaceMapError);
|
sl@0
|
2138 |
}
|
sl@0
|
2139 |
|
sl@0
|
2140 |
void CWsClient::CreateDrawableSourceL(const TWsClCmdCreateDrawableSource& aDrawableSourceData)
|
sl@0
|
2141 |
{
|
sl@0
|
2142 |
CWsDrawableSource* drawableSource = new(ELeave) CWsDrawableSource(this);
|
sl@0
|
2143 |
CleanupStack::PushL(drawableSource);
|
sl@0
|
2144 |
drawableSource->ConstructL(aDrawableSourceData);
|
sl@0
|
2145 |
CleanupStack::Pop();
|
sl@0
|
2146 |
}
|
sl@0
|
2147 |
|
sl@0
|
2148 |
void CWsClient::IndicateAppOrientation(TRenderOrientation aOrientation)
|
sl@0
|
2149 |
{
|
sl@0
|
2150 |
iIndicatedAppOrientation = aOrientation;
|
sl@0
|
2151 |
CWsTop::CheckRenderOrientation();
|
sl@0
|
2152 |
}
|
sl@0
|
2153 |
|
sl@0
|
2154 |
TInt CWsClient::GetIndicatedAppOrientation()
|
sl@0
|
2155 |
{
|
sl@0
|
2156 |
return iIndicatedAppOrientation;
|
sl@0
|
2157 |
}
|
sl@0
|
2158 |
|
sl@0
|
2159 |
//
|
sl@0
|
2160 |
// class CWsCliObj
|
sl@0
|
2161 |
//
|
sl@0
|
2162 |
|
sl@0
|
2163 |
CWsCliObj* CWsCliObj::NewL(CWsClient* aOwner)
|
sl@0
|
2164 |
{
|
sl@0
|
2165 |
CWsCliObj* self = new(ELeave) CWsCliObj(aOwner);
|
sl@0
|
2166 |
CleanupStack::PushL(self);
|
sl@0
|
2167 |
self->ConstructL();
|
sl@0
|
2168 |
CleanupStack::Pop(self);
|
sl@0
|
2169 |
return self;
|
sl@0
|
2170 |
}
|
sl@0
|
2171 |
|
sl@0
|
2172 |
CWsCliObj::CWsCliObj(CWsClient *aOwner) :
|
sl@0
|
2173 |
CWsObject(aOwner, WS_HANDLE_CLIENT)
|
sl@0
|
2174 |
{
|
sl@0
|
2175 |
}
|
sl@0
|
2176 |
|
sl@0
|
2177 |
void CWsCliObj::ConstructL()
|
sl@0
|
2178 |
{
|
sl@0
|
2179 |
NewObjL();
|
sl@0
|
2180 |
}
|
sl@0
|
2181 |
|
sl@0
|
2182 |
void CWsCliObj::CommandL(TInt aOpcode, const TAny* aCmdData) // (step #5)
|
sl@0
|
2183 |
{
|
sl@0
|
2184 |
iWsOwner->ExecuteCommandL(aOpcode,aCmdData); // (call #6)
|
sl@0
|
2185 |
}
|
sl@0
|
2186 |
|
sl@0
|
2187 |
CWsObject* CWsClient::HandleToObjUntyped(TInt aHandle)
|
sl@0
|
2188 |
{
|
sl@0
|
2189 |
return iObjectIndex->HandleToObject(aHandle);
|
sl@0
|
2190 |
}
|
sl@0
|
2191 |
|
sl@0
|
2192 |
const CWsObject* CWsClient::HandleToObjUntyped(TInt aHandle) const
|
sl@0
|
2193 |
{
|
sl@0
|
2194 |
return const_cast<CWsClient*>(this)->HandleToObjUntyped(aHandle);
|
sl@0
|
2195 |
}
|
sl@0
|
2196 |
|
sl@0
|
2197 |
CWsObject* CWsClient::HandleToObj(TInt aHandle, WH_HANDLES aType)
|
sl@0
|
2198 |
{
|
sl@0
|
2199 |
CWsObject* object = HandleToObjUntyped(aHandle);
|
sl@0
|
2200 |
return (object && object->Type() == aType) ? object : NULL;
|
sl@0
|
2201 |
}
|
sl@0
|
2202 |
|
sl@0
|
2203 |
|
sl@0
|
2204 |
const CWsObject* CWsClient::HandleToObj(TInt aHandle, WH_HANDLES aType) const
|
sl@0
|
2205 |
{
|
sl@0
|
2206 |
return const_cast<CWsClient*>(this)->HandleToObj(aHandle, aType);
|
sl@0
|
2207 |
}
|
sl@0
|
2208 |
|
sl@0
|
2209 |
void CWsClient::SetRetryFlag(TEventCode aEventCode)
|
sl@0
|
2210 |
{
|
sl@0
|
2211 |
switch(aEventCode)
|
sl@0
|
2212 |
{
|
sl@0
|
2213 |
//To be expanded
|
sl@0
|
2214 |
case EEventDisplayChanged:
|
sl@0
|
2215 |
{
|
sl@0
|
2216 |
iInternalFlags |= ERetryDisplayEvent;
|
sl@0
|
2217 |
}
|
sl@0
|
2218 |
break;
|
sl@0
|
2219 |
|
sl@0
|
2220 |
}
|
sl@0
|
2221 |
}
|
sl@0
|
2222 |
TBool CWsClient::RetryEvent(TEventCode aEventCode)
|
sl@0
|
2223 |
{
|
sl@0
|
2224 |
switch(aEventCode)
|
sl@0
|
2225 |
{//To be expanded
|
sl@0
|
2226 |
case EEventDisplayChanged:
|
sl@0
|
2227 |
{
|
sl@0
|
2228 |
return (iInternalFlags & ERetryDisplayEvent);
|
sl@0
|
2229 |
}
|
sl@0
|
2230 |
}
|
sl@0
|
2231 |
return EFalse;
|
sl@0
|
2232 |
}
|
sl@0
|
2233 |
|
sl@0
|
2234 |
void CWsClient::RemoveRetryFlag(TEventCode aEventCode)
|
sl@0
|
2235 |
{
|
sl@0
|
2236 |
switch(aEventCode)
|
sl@0
|
2237 |
{//To be expanded
|
sl@0
|
2238 |
case EEventDisplayChanged:
|
sl@0
|
2239 |
{
|
sl@0
|
2240 |
iInternalFlags &= ~ERetryDisplayEvent;
|
sl@0
|
2241 |
}
|
sl@0
|
2242 |
break;
|
sl@0
|
2243 |
}
|
sl@0
|
2244 |
}
|
sl@0
|
2245 |
|