os/graphics/windowing/windowserver/nga/CLIENT/MWSCLI.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/CLIENT/MWSCLI.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,218 @@
     1.4 +// Copyright (c) 1996-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Common client side class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include "../SERVER/w32cmd.h"
    1.23 +#include "CLIENT.H"
    1.24 +
    1.25 +
    1.26 +MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL)
    1.27 +	{
    1.28 +	}
    1.29 +
    1.30 +MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer)
    1.31 +	{
    1.32 +	}
    1.33 +
    1.34 +/**
    1.35 +Writes data sent in aData1 of length aLength1 for the specifed aOpcode
    1.36 +into wserv buffer. It also takes aLength2 paratmeter, which is the length of second data 
    1.37 +that will be added using AppendData. This Function checks if current command and aLength2 
    1.38 +can fit in the remaining buffer, if not then it does flush of previous command so that
    1.39 +the current command can be set along with data of aLength2. 
    1.40 +
    1.41 +@param aData1 Data to be added to the buffer
    1.42 +@param aLength1 Length of the data to be added to buffer
    1.43 +@param aLength2 Length of second data that will(and must) be added using AppendData()
    1.44 +@param aOpcode Opcode for the current command
    1.45 +*/
    1.46 +void MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode) const
    1.47 +	{
    1.48 +	Write(aData1,aLength1,NULL,aLength2,aOpcode);
    1.49 +	}
    1.50 +
    1.51 +/**
    1.52 +Writes data sent in aData1 and aData2 of lengths aLength1 and aLength2 
    1.53 +for the specifed aOpcode into wserv buffer. It also takes an TIpcArgs by which 
    1.54 +you can send additional data. But one thing needs to be noted that if aIpcArgs 
    1.55 +has some content then this function flushes the wserv buffer 
    1.56 +
    1.57 +@param aData1 Data to be added to the buffer
    1.58 +@param aLength1 Length of the data to be added to buffer
    1.59 +@param aData2 second Data to be added to the buffer
    1.60 +@param aLength2 second Length of second data then can be added using AppendData()
    1.61 +@param aOpcode Opcode for the current command
    1.62 +@param aIpcArgs Additional data sent from client to server. It has default argument NULL.
    1.63 +				And if some data is sent in aIpcArgs, it flushes wserv buffer.
    1.64 +
    1.65 +Note:Only second, third and fourth slot of IPC agrs can be used to send data 
    1.66 +as first slot is used up for normal wserv buffer
    1.67 +*/
    1.68 +void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs/*=NULL*/) const
    1.69 +	{
    1.70 +	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs);
    1.71 +	}
    1.72 +
    1.73 +/**
    1.74 +Writes data sent in aData1 of length aLength1 for the specifed aOpcode 
    1.75 +into wserv buffer. It also takes an TIpcArgs by which you can send additional data. 
    1.76 +But one thing needs to be noted that if aIpcArgs has some content then this 
    1.77 +function flushes the wserv buffer 
    1.78 +
    1.79 +@param aData1 Data to be added to the buffer
    1.80 +@param aLength1 Length of the data to be added to buffer
    1.81 +@param aOpcode Opcode for the current command
    1.82 +@param aIpcArgs Additional data sent from client to server. It has default argument NULL.
    1.83 +				And if some data is sent in aIpcArgs, it flushes wserv buffer
    1.84 +
    1.85 +Note:Only second, third and fourth slot of IPC agrs can be used to send data 
    1.86 +as first slot is used up for normal wserv buffer				
    1.87 +*/
    1.88 +void MWsClientClass::Write(const TAny *aData, TInt aLength, TUint aOpcode, const TIpcArgs* aIpcArgs/*=NULL*/) const
    1.89 +	{
    1.90 +	iBuffer->Write(iWsHandle,aOpcode,aData,aLength,aIpcArgs);
    1.91 +	}
    1.92 +
    1.93 +void MWsClientClass::Write(TUint aOpcode) const
    1.94 +	{
    1.95 +	iBuffer->Write(iWsHandle,aOpcode);
    1.96 +	}
    1.97 +
    1.98 +void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
    1.99 +	{
   1.100 +	iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
   1.101 +	}
   1.102 +
   1.103 +void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
   1.104 +	{
   1.105 +	Write(&aRect,sizeof(aRect),aOpcode);
   1.106 +	}
   1.107 +
   1.108 +void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
   1.109 +	{
   1.110 +	Write(&aPoint,sizeof(aPoint),aOpcode);
   1.111 +	}
   1.112 +
   1.113 +void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
   1.114 +	{
   1.115 +	Write(&aSize,sizeof(aSize),aOpcode);
   1.116 +	}
   1.117 +
   1.118 +/**
   1.119 +Appends data directly to wserv buffer for the current command. So this function 
   1.120 +should be used after adding the current command.
   1.121 +Typically this function is used in conjunction with  
   1.122 +MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode)
   1.123 +Please see its description for more details.  
   1.124 +
   1.125 +@param aData Data to be added to the buffer
   1.126 +@param aLength Length of the data to be added to buffer. Make sure that its length
   1.127 +		is less than availabe buffer.
   1.128 +@param aFinished EFalse, adds data to buffer and disables flushing(notfies that more data is pending to be added)
   1.129 +				 ETrue, adds data to buffer and enables flushing(Signals that this is the last bit of data to be added)
   1.130 +
   1.131 +Notes:
   1.132 +1. The total length of all data added by using this API(by one or more calls) must be less then(See note 3)or 
   1.133 +same as aLength2 passed in earlier call to MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode)
   1.134 +2. When data is added using this API, it pads out buffer to multiple of 4 bytes so that 
   1.135 +all strings added to the buffer will begin on a 4 byte boundary.
   1.136 +3. If data added is less then the length passed to above Write API it works, but wastes buffer spaces. 
   1.137 +*/
   1.138 +void MWsClientClass::AppendData(const TAny *aData,TInt aLength,TBool aFinished)
   1.139 +	{
   1.140 +	iBuffer->AppendData(aData,aLength,aFinished);
   1.141 +	}
   1.142 +
   1.143 +TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
   1.144 +	{
   1.145 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
   1.146 +	}
   1.147 +
   1.148 +TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
   1.149 +	{
   1.150 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
   1.151 +	}
   1.152 +
   1.153 +TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
   1.154 +	{
   1.155 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
   1.156 +	}
   1.157 +
   1.158 +TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
   1.159 +	{
   1.160 +	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
   1.161 +	}
   1.162 +
   1.163 +TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.164 +	{
   1.165 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
   1.166 +	}
   1.167 +
   1.168 +TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.169 +	{
   1.170 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
   1.171 +	}
   1.172 +
   1.173 +TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.174 +	{
   1.175 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
   1.176 +	}
   1.177 +
   1.178 +TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   1.179 +	{
   1.180 +	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
   1.181 +	}
   1.182 +
   1.183 +TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
   1.184 +	{
   1.185 +	return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
   1.186 +	}
   1.187 +
   1.188 +void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
   1.189 +	{
   1.190 +	iBuffer->AddToBitmapArray(aBitmapHandle);
   1.191 +	}
   1.192 +
   1.193 +void MWsClientClass::AsyncRequest(TRequestStatus& aStatus, TUint aOpcode) const
   1.194 +	{
   1.195 +	iBuffer->AsyncRequest(iWsHandle, aOpcode, aStatus);
   1.196 +	}
   1.197 +
   1.198 +TBool MWsClientClass::WindowSizeCacheEnabled() const
   1.199 +    {
   1.200 +    return iBuffer->WindowSizeCacheEnabled();
   1.201 +    }
   1.202 +
   1.203 +void MWsClientClass::MarkWindowSizeCacheDirty()
   1.204 +    {
   1.205 +    iBuffer->MarkWindowSizeCacheDirty(iWsHandle);
   1.206 +    }
   1.207 +
   1.208 +void MWsClientClass::RefreshWindowSizeCache(const TSize& aNewSize) const
   1.209 +    {
   1.210 +    iBuffer->RefreshWindowSizeCache(iWsHandle,aNewSize);
   1.211 +    }
   1.212 +
   1.213 +TInt MWsClientClass::CachedWindowSize(TSize& aSize) const
   1.214 +    {
   1.215 +    return iBuffer->CachedWindowSize(iWsHandle, aSize);
   1.216 +    }
   1.217 +
   1.218 +void MWsClientClass::DestroyWindowSizeCacheEntry()
   1.219 +    {
   1.220 +    iBuffer->DestroyWindowSizeCacheEntry(iWsHandle);
   1.221 +    }