sl@0
|
1 |
// Copyright (c) 1996-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 |
// Common client side class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
20 |
#include "CLIENT.H"
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
|
sl@0
|
32 |
{
|
sl@0
|
33 |
iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2);
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
|
sl@0
|
37 |
{
|
sl@0
|
38 |
iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
void MWsClientClass::Write(TUint aOpcode) const
|
sl@0
|
42 |
{
|
sl@0
|
43 |
iBuffer->Write(iWsHandle,aOpcode);
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
|
sl@0
|
47 |
{
|
sl@0
|
48 |
iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
|
sl@0
|
52 |
{
|
sl@0
|
53 |
Write(&aRect,sizeof(aRect),aOpcode);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
|
sl@0
|
57 |
{
|
sl@0
|
58 |
Write(&aPoint,sizeof(aPoint),aOpcode);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
|
sl@0
|
62 |
{
|
sl@0
|
63 |
Write(&aSize,sizeof(aSize),aOpcode);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
|
sl@0
|
76 |
{
|
sl@0
|
77 |
return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
|
sl@0
|
86 |
{
|
sl@0
|
87 |
return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
|
sl@0
|
91 |
{
|
sl@0
|
92 |
return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
|
sl@0
|
96 |
{
|
sl@0
|
97 |
return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
|
sl@0
|
101 |
{
|
sl@0
|
102 |
return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
|
sl@0
|
106 |
{
|
sl@0
|
107 |
return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
|
sl@0
|
111 |
{
|
sl@0
|
112 |
return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
|
sl@0
|
116 |
{
|
sl@0
|
117 |
iBuffer->AddToBitmapArray(aBitmapHandle);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
|