os/graphics/windowing/windowserver/nonnga/CLIENT/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
// Window server client side local header file
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
#if defined(_DEBUG) && defined(__WINS__)
sl@0
    22
//#define __AUTO_FLUSH		//Define this for test purposes only, it hard codes auto flushing
sl@0
    23
#endif
sl@0
    24
sl@0
    25
/** Panics the client. This will result in the client thread being destroyed. */ 
sl@0
    26
GLREF_C void Panic(TW32Panic aPanic); 
sl@0
    27
GLREF_C void Assert(TW32Assert aPanic); 
sl@0
    28
sl@0
    29
class TReadDescriptorType;
sl@0
    30
class TWriteDescriptorType;
sl@0
    31
sl@0
    32
class RWsBuffer
sl@0
    33
	{
sl@0
    34
	friend class RWsSession;
sl@0
    35
public:
sl@0
    36
	enum bufferSizes
sl@0
    37
		{
sl@0
    38
		EDefBufferSize=EClientBufferSize,
sl@0
    39
		EMinBufferSize=EClientBufferSize,
sl@0
    40
		EMaxBufferSize=EClientBufferMaxSize
sl@0
    41
		};
sl@0
    42
public:
sl@0
    43
	RWsBuffer(RWsSession *aSession);
sl@0
    44
	void Close();
sl@0
    45
	void Destroy();
sl@0
    46
	TInt Open();
sl@0
    47
	TInt Connect(TUint32 handle);
sl@0
    48
	TInt WriteReplyWs(TUint opcode);
sl@0
    49
	TInt WriteReplyWs(const TAny *pData, TInt length,TUint opcode);
sl@0
    50
	TInt WriteReplyWs(const TAny *pData, TInt length, const TAny *pData2, TInt length2, TUint opcode);
sl@0
    51
	void SetBufferSizeL(TInt aBufSize);
sl@0
    52
	void SetMaxBufferSizeL(TInt aMaxBufSize);
sl@0
    53
	TInt Flush(const TIpcArgs* aIpcArgs=NULL,TBool aRequestFinish=EFalse);
sl@0
    54
	TBool SetAutoFlush(TBool aState);
sl@0
    55
	void Write(TInt handle,TUint opcode,const TAny *pData, TInt length,const TAny *pData2, TInt length2);
sl@0
    56
	void Write(TInt handle,TUint opcode,const TAny *buf, TInt bufLen);
sl@0
    57
	void Write(TInt handle,TUint opcode);
sl@0
    58
	TInt WriteReply(TInt handle,TUint opcode, const TIpcArgs* aIpcArgs=NULL);
sl@0
    59
	TInt WriteReply(TInt handle,TUint opcode,const TAny *buf, TInt bufLen, const TIpcArgs* aIpcArgs=NULL);
sl@0
    60
	TInt WriteReply(TInt handle,TUint opcode,const TAny *buf, TInt bufLen,const TAny *buf2, TInt buflen2, const TIpcArgs* aIpcArgs=NULL);
sl@0
    61
	TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TWriteDescriptorType& aReplyBuffer);
sl@0
    62
	TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TAny *aData,TInt aLength,const TWriteDescriptorType& aReplyBuffer);
sl@0
    63
	TInt WriteReplyP(TInt aHandle,TUint aOpcode,const TAny *aData1,TInt aLengthData1,const TAny *aData2,TInt aLengthData2,const TWriteDescriptorType& aReplyBuffer);
sl@0
    64
	TInt WriteReplyByProvidingRemoteReadAccess(TInt aHandle,TUint aOpcode,const TAny *aData, TInt aLength,const TReadDescriptorType& aRemoteReadBuffer);
sl@0
    65
sl@0
    66
	inline TInt BufferSize() const;
sl@0
    67
	inline TBool IsEmpty() const;
sl@0
    68
	inline RWsSession* Session() {return iSession;}
sl@0
    69
	static void FlushAllBuffers(TInt aBitmapHandle);
sl@0
    70
	void SetCallBack();
sl@0
    71
	void CancelCallBack();
sl@0
    72
	void AddToBitmapArray(TInt aBitmapHandle);
sl@0
    73
	
sl@0
    74
	void SetWsGraphicManager(CWsGraphic::CManager* aManager);
sl@0
    75
	static CWsGraphic::CManager* WsGraphicManager();
sl@0
    76
sl@0
    77
private:
sl@0
    78
	TInt DoWrite(TInt aHandle, TUint aOpcode, TBool aFlush, const TIpcArgs* aIpcArgs, const TAny* aData1=NULL, TInt aLength1=0, const TAny* aData2=NULL, TInt aLength2=0);
sl@0
    79
	inline void SetAndLimitMaxBufSize(TInt aMaxBufSize);
sl@0
    80
	void ReAllocBufferL(TInt aNewSize);
sl@0
    81
	TBool ReAllocBuffer(TInt aNewSize);
sl@0
    82
	void GrowBuffer(TInt aRequiredSpace, TInt aMsgSize);
sl@0
    83
sl@0
    84
private:
sl@0
    85
	RWsSession *iSession;
sl@0
    86
	CWsGraphic::CManager* iManager;
sl@0
    87
	TBool iAutoFlush;
sl@0
    88
	TPtr8 iBuf;
sl@0
    89
	RWsBuffer *iNext;
sl@0
    90
	TInt iPreviousHandle;
sl@0
    91
	TInt iBufSize;				// current buffer size, DoWrite can expand this up to iMaxBufize
sl@0
    92
	TInt iMaxBufSize;			// maximum buffer size, set by SetBufferSizeL or SetMaxBufferSizeL
sl@0
    93
private:		//Added here as adding it to RWsSession breaks BC.
sl@0
    94
	TInt iDirectAcessCount;
sl@0
    95
	RArray<TInt> iBitmapArray;
sl@0
    96
	TBool iInvalidBitmapArray;
sl@0
    97
	};
sl@0
    98
sl@0
    99
inline TInt RWsBuffer::BufferSize() const
sl@0
   100
	{return(iBuf.MaxLength());}
sl@0
   101
sl@0
   102
inline TBool RWsBuffer::IsEmpty() const
sl@0
   103
	{return iBuf.Length()==0;}
sl@0
   104
#endif