os/graphics/windowing/windowserver/nga/CLIENT/MWSCLI.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1996-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Common client side class
    15 // 
    16 //
    17 
    18 #include <e32std.h>
    19 #include "../SERVER/w32cmd.h"
    20 #include "CLIENT.H"
    21 
    22 
    23 MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL)
    24 	{
    25 	}
    26 
    27 MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer)
    28 	{
    29 	}
    30 
    31 /**
    32 Writes data sent in aData1 of length aLength1 for the specifed aOpcode
    33 into wserv buffer. It also takes aLength2 paratmeter, which is the length of second data 
    34 that will be added using AppendData. This Function checks if current command and aLength2 
    35 can fit in the remaining buffer, if not then it does flush of previous command so that
    36 the current command can be set along with data of aLength2. 
    37 
    38 @param aData1 Data to be added to the buffer
    39 @param aLength1 Length of the data to be added to buffer
    40 @param aLength2 Length of second data that will(and must) be added using AppendData()
    41 @param aOpcode Opcode for the current command
    42 */
    43 void MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode) const
    44 	{
    45 	Write(aData1,aLength1,NULL,aLength2,aOpcode);
    46 	}
    47 
    48 /**
    49 Writes data sent in aData1 and aData2 of lengths aLength1 and aLength2 
    50 for the specifed aOpcode into wserv buffer. It also takes an TIpcArgs by which 
    51 you can send additional data. But one thing needs to be noted that if aIpcArgs 
    52 has some content then this function flushes the wserv buffer 
    53 
    54 @param aData1 Data to be added to the buffer
    55 @param aLength1 Length of the data to be added to buffer
    56 @param aData2 second Data to be added to the buffer
    57 @param aLength2 second Length of second data then can be added using AppendData()
    58 @param aOpcode Opcode for the current command
    59 @param aIpcArgs Additional data sent from client to server. It has default argument NULL.
    60 				And if some data is sent in aIpcArgs, it flushes wserv buffer.
    61 
    62 Note:Only second, third and fourth slot of IPC agrs can be used to send data 
    63 as first slot is used up for normal wserv buffer
    64 */
    65 void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs/*=NULL*/) const
    66 	{
    67 	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs);
    68 	}
    69 
    70 /**
    71 Writes data sent in aData1 of length aLength1 for the specifed aOpcode 
    72 into wserv buffer. It also takes an TIpcArgs by which you can send additional data. 
    73 But one thing needs to be noted that if aIpcArgs has some content then this 
    74 function flushes the wserv buffer 
    75 
    76 @param aData1 Data to be added to the buffer
    77 @param aLength1 Length of the data to be added to buffer
    78 @param aOpcode Opcode for the current command
    79 @param aIpcArgs Additional data sent from client to server. It has default argument NULL.
    80 				And if some data is sent in aIpcArgs, it flushes wserv buffer
    81 
    82 Note:Only second, third and fourth slot of IPC agrs can be used to send data 
    83 as first slot is used up for normal wserv buffer				
    84 */
    85 void MWsClientClass::Write(const TAny *aData, TInt aLength, TUint aOpcode, const TIpcArgs* aIpcArgs/*=NULL*/) const
    86 	{
    87 	iBuffer->Write(iWsHandle,aOpcode,aData,aLength,aIpcArgs);
    88 	}
    89 
    90 void MWsClientClass::Write(TUint aOpcode) const
    91 	{
    92 	iBuffer->Write(iWsHandle,aOpcode);
    93 	}
    94 
    95 void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
    96 	{
    97 	iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
    98 	}
    99 
   100 void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
   101 	{
   102 	Write(&aRect,sizeof(aRect),aOpcode);
   103 	}
   104 
   105 void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
   106 	{
   107 	Write(&aPoint,sizeof(aPoint),aOpcode);
   108 	}
   109 
   110 void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
   111 	{
   112 	Write(&aSize,sizeof(aSize),aOpcode);
   113 	}
   114 
   115 /**
   116 Appends data directly to wserv buffer for the current command. So this function 
   117 should be used after adding the current command.
   118 Typically this function is used in conjunction with  
   119 MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode)
   120 Please see its description for more details.  
   121 
   122 @param aData Data to be added to the buffer
   123 @param aLength Length of the data to be added to buffer. Make sure that its length
   124 		is less than availabe buffer.
   125 @param aFinished EFalse, adds data to buffer and disables flushing(notfies that more data is pending to be added)
   126 				 ETrue, adds data to buffer and enables flushing(Signals that this is the last bit of data to be added)
   127 
   128 Notes:
   129 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 
   130 same as aLength2 passed in earlier call to MWsClientClass::Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode)
   131 2. When data is added using this API, it pads out buffer to multiple of 4 bytes so that 
   132 all strings added to the buffer will begin on a 4 byte boundary.
   133 3. If data added is less then the length passed to above Write API it works, but wastes buffer spaces. 
   134 */
   135 void MWsClientClass::AppendData(const TAny *aData,TInt aLength,TBool aFinished)
   136 	{
   137 	iBuffer->AppendData(aData,aLength,aFinished);
   138 	}
   139 
   140 TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
   141 	{
   142 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
   143 	}
   144 
   145 TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
   146 	{
   147 	return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
   148 	}
   149 
   150 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
   151 	{
   152 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
   153 	}
   154 
   155 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
   156 	{
   157 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
   158 	}
   159 
   160 TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   161 	{
   162 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
   163 	}
   164 
   165 TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   166 	{
   167 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
   168 	}
   169 
   170 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   171 	{
   172 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
   173 	}
   174 
   175 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   176 	{
   177 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
   178 	}
   179 
   180 TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
   181 	{
   182 	return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
   183 	}
   184 
   185 void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
   186 	{
   187 	iBuffer->AddToBitmapArray(aBitmapHandle);
   188 	}
   189 
   190 void MWsClientClass::AsyncRequest(TRequestStatus& aStatus, TUint aOpcode) const
   191 	{
   192 	iBuffer->AsyncRequest(iWsHandle, aOpcode, aStatus);
   193 	}
   194 
   195 TBool MWsClientClass::WindowSizeCacheEnabled() const
   196     {
   197     return iBuffer->WindowSizeCacheEnabled();
   198     }
   199 
   200 void MWsClientClass::MarkWindowSizeCacheDirty()
   201     {
   202     iBuffer->MarkWindowSizeCacheDirty(iWsHandle);
   203     }
   204 
   205 void MWsClientClass::RefreshWindowSizeCache(const TSize& aNewSize) const
   206     {
   207     iBuffer->RefreshWindowSizeCache(iWsHandle,aNewSize);
   208     }
   209 
   210 TInt MWsClientClass::CachedWindowSize(TSize& aSize) const
   211     {
   212     return iBuffer->CachedWindowSize(iWsHandle, aSize);
   213     }
   214 
   215 void MWsClientClass::DestroyWindowSizeCacheEntry()
   216     {
   217     iBuffer->DestroyWindowSizeCacheEntry(iWsHandle);
   218     }