os/graphics/windowing/windowserver/nonnga/SERVER/CLIENT.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Definition of classes for the class that deals with client communication
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __CLIENT_H__
sl@0
    19
#define __CLIENT_H__
sl@0
    20
sl@0
    21
#include <graphics/wsgraphicdrawerinterface.h>
sl@0
    22
#include "WSGRAPHICDRAWERARRAY.H"
sl@0
    23
sl@0
    24
#include <e32std.h>
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <w32std.h>
sl@0
    27
#include "w32cmd.h"
sl@0
    28
#include "WSOBJIX.H"
sl@0
    29
#include "EVQUEUE.H"
sl@0
    30
#include "PRIKEY.H"
sl@0
    31
#include "wstypes.h"
sl@0
    32
sl@0
    33
class CWsWindowBase;
sl@0
    34
class CWsClientWindow;
sl@0
    35
class CWsPointerCursor;
sl@0
    36
class CWsCustomTextCursor;
sl@0
    37
class CWsSpriteBase;
sl@0
    38
class DWsScreenDevice;
sl@0
    39
class CScreen;
sl@0
    40
class RHandleBase;
sl@0
    41
class CWindowServer;
sl@0
    42
class CWsGraphicDrawerObject;
sl@0
    43
class CWsGraphicDrawer;
sl@0
    44
sl@0
    45
class TWsCursorArrayItem
sl@0
    46
	{
sl@0
    47
public:
sl@0
    48
	CWsSpriteBase *iCursor;
sl@0
    49
	TInt iIndex;
sl@0
    50
	};
sl@0
    51
sl@0
    52
/** Server-side object for a client session.
sl@0
    53
sl@0
    54
@internalComponent
sl@0
    55
@released
sl@0
    56
*/
sl@0
    57
class CWsClient : public CSession2, public MWsClient
sl@0
    58
	{
sl@0
    59
private:
sl@0
    60
	enum{EObjectGranularity=5};
sl@0
    61
	enum{ENoDefaultSystemPointerCursor=-1};
sl@0
    62
public:
sl@0
    63
	enum{EPanicLeave=1};
sl@0
    64
public:
sl@0
    65
	CWsClient(RThread aClient);
sl@0
    66
	~CWsClient();
sl@0
    67
	inline const RThread& Client() const;
sl@0
    68
	inline CWindowServer& WindowServer();
sl@0
    69
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
    70
	void StartInitializationL(TUint aConnectionHandle);
sl@0
    71
	static const TUint8 *EndOfCommandBuffer();
sl@0
    72
	static const TPtrC BufferTPtr(TText *aStart,TInt aLen);
sl@0
    73
	static TBool BufferTPtrGc(TText* aStart,TInt aLen,TPtrC& aPtr);
sl@0
    74
	static const TPtrC8 BufferTPtr8(TUint8* aStart,TInt aLen);
sl@0
    75
	void CommandBufL();
sl@0
    76
	static void ReplyBuf(const TAny *aSource, TInt aLength);
sl@0
    77
	static void ReplyBuf(const TDesC8 &aDes);
sl@0
    78
	static void ReplyBuf(const TDesC16 &aDes);
sl@0
    79
	static void ReplySize(const TSize &aSize);
sl@0
    80
	static void ReplyPoint(const TPoint &aPoint);
sl@0
    81
	static void ReplyRect(const TRect &aRect);
sl@0
    82
	static void SetReply(TInt reply);
sl@0
    83
	static void PanicCurrentClient(TClientPanic aPanic);
sl@0
    84
	void PPanic(TClientPanic aPanic) const;
sl@0
    85
	void HandleToWindow(TInt handle,CWsWindowBase **pWin);
sl@0
    86
	void HandleToClientWindow(TInt handle,CWsClientWindow **pWin);
sl@0
    87
	inline CEventQueue *EventQueue() const;
sl@0
    88
	inline CRedrawQueue *RedrawQueue() const;
sl@0
    89
	inline CWsObjectIx *ObjectIndex();
sl@0
    90
	CWsObject *HandleToObjUntyped(TInt aHandle);
sl@0
    91
	CWsObject *HandleToObj(TInt aHandle, WH_HANDLES aType);
sl@0
    92
	void RequestComplete(TRequestStatus * &aStatus, TInt aErr);
sl@0
    93
//
sl@0
    94
	inline void EventReady(const RMessagePtr2& aEventMsg);
sl@0
    95
	inline void GetEventData();
sl@0
    96
	inline void CancelEvent();
sl@0
    97
	inline void PurgePointerEvents();
sl@0
    98
sl@0
    99
	inline void RedrawEventReady(const RMessagePtr2& aEventMsg);
sl@0
   100
	inline void CancelRedrawEvent();
sl@0
   101
	inline void GetRedrawData();
sl@0
   102
sl@0
   103
	inline void PriorityKeyEventReady(const RMessagePtr2& aEventMsg);
sl@0
   104
	inline void CancelPriorityKeyEvent();
sl@0
   105
	inline void GetPriorityKeyData();
sl@0
   106
	inline void PriorityKeyPressed(TInt aHandle, const TKeyData &aKey, TInt aScanCode);
sl@0
   107
sl@0
   108
	void TriggerRedraw();
sl@0
   109
	void SessionPanic(TClientPanic aReason) const;
sl@0
   110
	void SessionTerminate();
sl@0
   111
	void UpdateWindowOrdinalPrioritys();
sl@0
   112
	void CreateNewWindowGroupL(const TWsClCmdCreateWindowGroup &aCmd);
sl@0
   113
	void CreateNewWindowL(const TWsClCmdCreateWindow &aCmd);
sl@0
   114
	void CreateNewAnimDllL(const TWsClCmdUnion &aParams);
sl@0
   115
//
sl@0
   116
	void CreateNewSpriteL(const TWsClCmdCreateSprite &aCmd);
sl@0
   117
	void CreateNewPointerCursorL(const TWsClCmdCreatePointerCursor &aCmd);
sl@0
   118
	void StartSetCustomTextCursorL(const TWsClCmdCustomTextCursorData& aCmd);
sl@0
   119
	void CompleteSetCustomTextCursorL(TInt aErr);
sl@0
   120
	static CWsCustomTextCursor* FindCustomTextCursor(TInt aIdentifier);
sl@0
   121
sl@0
   122
	void CreateNewScreenDeviceL( TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer);
sl@0
   123
	void CreateNewBitmapL(const TWsClCmdCreateBitmap &aCmd);
sl@0
   124
	void CreateNewClickL(const TUid& aUid);
sl@0
   125
//
sl@0
   126
	void ReplyGroupName(HBufC *aName, TInt aMaxLength) const;
sl@0
   127
	inline TInt ObjectHandle(const CWsObject *aThis);
sl@0
   128
	void SetSystemPointerCursorL(TInt aIndex, CWsPointerCursor *aCursor);
sl@0
   129
	void ClearSystemPointerCursor(TInt aIndex);
sl@0
   130
	void ClaimSystemPointerCursorListL();
sl@0
   131
	void FreeSystemPointerCursorList();
sl@0
   132
	static CWsPointerCursor *SystemPointerCursor(TInt aIndex);
sl@0
   133
	static inline CWsPointerCursor *DefaultSystemPointerCursor();
sl@0
   134
	void SetDefaultSystemPointerCursor(TInt aIndex);
sl@0
   135
	void SetComputeMode(RWsSession::TComputeMode aComputeMode);
sl@0
   136
	void SetClientPriority();
sl@0
   137
	inline TInt ConnectionHandle() const;
sl@0
   138
	inline DWsScreenDevice *PrimaryScreenDevice() const;
sl@0
   139
 	inline void NotifyScreenDeviceDeleted(DWsScreenDevice* aDeletedScreenDevice);
sl@0
   140
	inline CScreen* Screen() const;
sl@0
   141
	inline TBool NotClosing() const;
sl@0
   142
	inline const RMessage2& ClientMessage() const;
sl@0
   143
	void RemoteRead(TDes16& aDes, TInt aOffset);
sl@0
   144
	void RemoteRead(TDes8& aDes, TInt aOffset);
sl@0
   145
	void RemoteReadL(TDes16& aDes, TInt aOffset);
sl@0
   146
	void RemoteReadL(TDes8& aDes, TInt aOffset);
sl@0
   147
	static void DeleteStatics();
sl@0
   148
	void SetResponseHandle(RHandleBase* aHandle);
sl@0
   149
sl@0
   150
	// from MWsClient
sl@0
   151
	TBool HasCapability(TCapability aCapability) const;
sl@0
   152
	TSecureId SecureId() const;
sl@0
   153
	TVendorId VendorId() const;
sl@0
   154
	TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,const TDesC8& aData);
sl@0
   155
	TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,CWsMessageData& aData);
sl@0
   156
sl@0
   157
	CWsGraphicDrawerObject* DrawerObject(const CWsGraphicDrawer* aDrawer);
sl@0
   158
	const CWsGraphicDrawerObject* DrawerObject(const CWsGraphicDrawer* aDrawer) const;
sl@0
   159
	static inline CWsClient* CurrentClient();
sl@0
   160
	static inline TBool CheckBuffer(TInt aLength, TInt aMaxLength);
sl@0
   161
 	static TBool DebugEnforceRedrawCallingConvention();
sl@0
   162
private: // from CSession2
sl@0
   163
	void ServiceL(const RMessage2 &aMessage);
sl@0
   164
	void ServiceError(const RMessage2& aMessage,TInt aError);
sl@0
   165
private:
sl@0
   166
	void CompleteInitializationL();
sl@0
   167
	static void DeleteSystemPointerListEntry(TInt aIndex);
sl@0
   168
	static TBool FindCursorArrayItem (CArrayFixFlat<TWsCursorArrayItem>* aCursorArray,
sl@0
   169
									  TInt aIndex, TInt& aPosition);
sl@0
   170
	static inline CWsPointerCursor*& PointerCursor (TInt aPosition);
sl@0
   171
	static inline CWsCustomTextCursor*& TextCursor (TInt aPosition);
sl@0
   172
	void CommandL(TInt aOpcode, const RMessage2& aMessage);
sl@0
   173
	void DoServiceL(const RMessage2& aMessage, TBool& aCompleteRequest);
sl@0
   174
	void CompleteMessage(const RMessage2& aMessage,TInt aReason);
sl@0
   175
	void InitialiseScreenDevices();
sl@0
   176
	inline TBool IsInitialised();
sl@0
   177
	void DebugInfoL(TInt aFunction, TInt aParam, TBool aHasReplyBuf) const;
sl@0
   178
public:
sl@0
   179
	static TWsCmdHeaderBase iCurrentCommand;
sl@0
   180
private:
sl@0
   181
	enum TInternalFlags
sl@0
   182
		{
sl@0
   183
		EPanicClientAsSoonAsPossible	=0x01,		//The client should be panicked, but we have no way to panic him now
sl@0
   184
		EClientIsClosing		=0x02,		//The client is closing down, so the screen device may no longer be valid
sl@0
   185
		};
sl@0
   186
private:	// Private data
sl@0
   187
	RThread iClient;
sl@0
   188
	TUint iConnectionHandle; // Connection ID, only needed for logging, could bin this
sl@0
   189
	CEventQueue *iEventQueue;
sl@0
   190
	CRedrawQueue *iRedrawQueue;
sl@0
   191
	CPriorityKey *iPriorityKeyEvent;
sl@0
   192
	CWsGraphicMessageQueue iGraphicMessageQueue;
sl@0
   193
	RWsSession::TComputeMode iComputeMode;
sl@0
   194
	CWsObjectIx *iObjectIndex;
sl@0
   195
	DWsScreenDevice *iPrimaryScreenDevice;
sl@0
   196
	TWsCursorArrayItem iTempCustomTextCursor;
sl@0
   197
	CScreen* iScreen;		//## This needs updating
sl@0
   198
	mutable TInt iPanicReason;
sl@0
   199
	mutable TInt iInternalFlags;
sl@0
   200
	RMessage2 iClientMessage;
sl@0
   201
	RHandleBase* iResponseHandle;
sl@0
   202
	TInt iMessageIdSeq;
sl@0
   203
	TBool iIsInitialised;
sl@0
   204
#if defined(_DEBUG)
sl@0
   205
	TBool iLastCommand;
sl@0
   206
#endif
sl@0
   207
	static CWsClient *iCurrentClient;	// Client who's buffer is currently being processed
sl@0
   208
	static TInt iReply;					// Value to reply
sl@0
   209
	static TInt iReplyOffset;			// Offset into reply to write next block of data
sl@0
   210
	static TInt iDefaultSystemPointerCursorIndex;		//Negative when there isn't one
sl@0
   211
	static CWsPointerCursor *iDefaultSystemPointerCursor;
sl@0
   212
	static CArrayFixFlat<TWsCursorArrayItem> *iSystemPointerCursors;
sl@0
   213
	static CWsClient *iSystemPointerCursorListOwner;
sl@0
   214
	static CArrayFixFlat<TWsCursorArrayItem> *iTextCursorArray;
sl@0
   215
	static TBuf8<EClientBufferMaxSize> iCmdBuf;
sl@0
   216
	static TUint iConnectionId;
sl@0
   217
 	static TBool iDebug_EnforceRedrawCallingConvention;
sl@0
   218
#if defined(__WINS__)
sl@0
   219
	TBool iRemoveKeyCode;
sl@0
   220
public:
sl@0
   221
	inline TBool RemoveKeyCode();
sl@0
   222
#endif
sl@0
   223
	};
sl@0
   224
sl@0
   225
sl@0
   226
//
sl@0
   227
// inlines			//
sl@0
   228
//
sl@0
   229
sl@0
   230
//
sl@0
   231
inline const RThread& CWsClient::Client() const
sl@0
   232
	{return iClient;}
sl@0
   233
inline CWindowServer& CWsClient::WindowServer()
sl@0
   234
	{return *reinterpret_cast<CWindowServer*>(const_cast<CServer2*>(Server()));}
sl@0
   235
inline void CWsClient::EventReady(const RMessagePtr2& aEventMsg)
sl@0
   236
	{iEventQueue->EventReady(aEventMsg);}
sl@0
   237
inline void CWsClient::GetEventData()
sl@0
   238
    {iEventQueue->GetData();}
sl@0
   239
inline void CWsClient::PurgePointerEvents()
sl@0
   240
	{iEventQueue->PurgePointerEvents();}
sl@0
   241
inline void CWsClient::CancelEvent()
sl@0
   242
	{iEventQueue->CancelRead();}
sl@0
   243
inline void CWsClient::RedrawEventReady(const RMessagePtr2& aEventMsg)
sl@0
   244
    {iRedrawQueue->EventReady(aEventMsg);}
sl@0
   245
inline void CWsClient::GetRedrawData()
sl@0
   246
    {iRedrawQueue->GetData();}
sl@0
   247
inline void CWsClient::CancelRedrawEvent()
sl@0
   248
	{iRedrawQueue->CancelRead();}
sl@0
   249
inline void CWsClient::PriorityKeyEventReady(const RMessagePtr2& aEventMsg)
sl@0
   250
    {iPriorityKeyEvent->EventReady(aEventMsg);}
sl@0
   251
inline void CWsClient::CancelPriorityKeyEvent()
sl@0
   252
	{iPriorityKeyEvent->CancelRead();}
sl@0
   253
inline void CWsClient::GetPriorityKeyData()
sl@0
   254
	{iPriorityKeyEvent->GetData();}
sl@0
   255
inline void CWsClient::PriorityKeyPressed(TInt aHandle, const TKeyData &aKey, TInt aScanCode)
sl@0
   256
	{iPriorityKeyEvent->PriorityKey(aHandle,aKey,aScanCode);}
sl@0
   257
inline TInt CWsClient::ObjectHandle(const CWsObject *aThis)
sl@0
   258
	{return(iObjectIndex->At(aThis));}
sl@0
   259
#if defined(__WINS__)
sl@0
   260
inline TBool CWsClient::RemoveKeyCode()
sl@0
   261
	{return iRemoveKeyCode;}
sl@0
   262
#endif
sl@0
   263
//
sl@0
   264
inline CEventQueue *CWsClient::EventQueue() const
sl@0
   265
	{return(iEventQueue);}
sl@0
   266
inline CRedrawQueue *CWsClient::RedrawQueue() const
sl@0
   267
	{return(iRedrawQueue);}
sl@0
   268
inline CWsObjectIx *CWsClient::ObjectIndex()
sl@0
   269
	{return(iObjectIndex);}
sl@0
   270
inline TInt CWsClient::ConnectionHandle() const
sl@0
   271
	{return(iConnectionHandle);}
sl@0
   272
inline DWsScreenDevice *CWsClient::PrimaryScreenDevice() const
sl@0
   273
	{return(iPrimaryScreenDevice);}
sl@0
   274
inline void CWsClient::NotifyScreenDeviceDeleted(DWsScreenDevice* aDeletedScreenDevice)
sl@0
   275
	{
sl@0
   276
	if (iPrimaryScreenDevice == aDeletedScreenDevice)
sl@0
   277
		iPrimaryScreenDevice = NULL;
sl@0
   278
	}
sl@0
   279
inline CWsPointerCursor*& CWsClient::PointerCursor(TInt aIndex)
sl@0
   280
	{return (CWsPointerCursor*&)(*iSystemPointerCursors)[aIndex].iCursor;}
sl@0
   281
inline CWsCustomTextCursor*& CWsClient::TextCursor(TInt aIndex)
sl@0
   282
	{return (CWsCustomTextCursor*&)(*iTextCursorArray)[aIndex].iCursor;}
sl@0
   283
inline const RMessage2& CWsClient::ClientMessage() const
sl@0
   284
	{return iClientMessage;}
sl@0
   285
inline CScreen* CWsClient::Screen() const
sl@0
   286
	{return iScreen;}
sl@0
   287
inline TBool CWsClient::NotClosing() const
sl@0
   288
	{return !(iInternalFlags&EClientIsClosing);}
sl@0
   289
inline CWsClient* CWsClient::CurrentClient()
sl@0
   290
	{return iCurrentClient;}
sl@0
   291
inline TBool CWsClient::CheckBuffer(TInt aLength, TInt aMaxLength)
sl@0
   292
	{return TBool((aLength>=0) && (aLength<=aMaxLength));}
sl@0
   293
inline TBool CWsClient::IsInitialised()
sl@0
   294
	{return iIsInitialised;}
sl@0
   295
#endif