os/graphics/windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1996-2009 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 void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
    32 	{
    33 	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2);
    34 	}
    35 
    36 void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
    37 	{
    38 	iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1);
    39 	}
    40 
    41 void MWsClientClass::Write(TUint aOpcode) const
    42 	{
    43 	iBuffer->Write(iWsHandle,aOpcode);
    44 	}
    45 
    46 void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
    47 	{
    48 	iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
    49 	}
    50 
    51 void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
    52 	{
    53 	Write(&aRect,sizeof(aRect),aOpcode);
    54 	}
    55 
    56 void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
    57 	{
    58 	Write(&aPoint,sizeof(aPoint),aOpcode);
    59 	}
    60 
    61 void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
    62 	{
    63 	Write(&aSize,sizeof(aSize),aOpcode);
    64 	}
    65 
    66 void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/)
    67 	{
    68 	}
    69 
    70 TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
    71 	{
    72 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
    73 	}
    74 
    75 TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
    76 	{
    77 	return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
    78 	}
    79 
    80 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
    81 	{
    82 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
    83 	}
    84 
    85 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
    86 	{
    87 	return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
    88 	}
    89 
    90 TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
    91 	{
    92 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
    93 	}
    94 
    95 TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
    96 	{
    97 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
    98 	}
    99 
   100 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   101 	{
   102 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
   103 	}
   104 
   105 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
   106 	{
   107 	return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
   108 	}
   109 
   110 TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
   111 	{
   112 	return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
   113 	}
   114 
   115 void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
   116 	{
   117 	iBuffer->AddToBitmapArray(aBitmapHandle);
   118 	}
   119 
   120