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