sl@0
|
1 |
// Copyright (c) 2007-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
// INCLUDE FILES
|
sl@0
|
20 |
#include <e32svr.h>
|
sl@0
|
21 |
#include <s32mem.h>
|
sl@0
|
22 |
#include "featmgrclient.h"
|
sl@0
|
23 |
#include "featmgrconfiguration.h"
|
sl@0
|
24 |
#include "featmgrdebug.h"
|
sl@0
|
25 |
#include "featmgrclientserver.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
// CONSTANTS
|
sl@0
|
28 |
const TInt KRetry( 2 );
|
sl@0
|
29 |
|
sl@0
|
30 |
// ============================= LOCAL FUNCTIONS ===============================
|
sl@0
|
31 |
|
sl@0
|
32 |
// ============================ MEMBER FUNCTIONS ===============================
|
sl@0
|
33 |
|
sl@0
|
34 |
// -----------------------------------------------------------------------------
|
sl@0
|
35 |
// RFeatMgrClient::RFeatMgrClient
|
sl@0
|
36 |
// C++ default constructor can NOT contain any code, that
|
sl@0
|
37 |
// might leave.
|
sl@0
|
38 |
// -----------------------------------------------------------------------------
|
sl@0
|
39 |
//
|
sl@0
|
40 |
RFeatMgrClient::RFeatMgrClient()
|
sl@0
|
41 |
: RSessionBase(), iFeaturePckg( NULL, 0, 0 )
|
sl@0
|
42 |
{
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
// -----------------------------------------------------------------------------
|
sl@0
|
46 |
// RFeatMgrClient::Connect
|
sl@0
|
47 |
// Connects to server
|
sl@0
|
48 |
// -----------------------------------------------------------------------------
|
sl@0
|
49 |
//
|
sl@0
|
50 |
TInt RFeatMgrClient::Connect()
|
sl@0
|
51 |
{
|
sl@0
|
52 |
FUNC_LOG
|
sl@0
|
53 |
|
sl@0
|
54 |
// Try this twice
|
sl@0
|
55 |
TInt retry( KRetry );
|
sl@0
|
56 |
TInt err( KErrNone );
|
sl@0
|
57 |
|
sl@0
|
58 |
while ( retry > 0 )
|
sl@0
|
59 |
{
|
sl@0
|
60 |
// Try to create a FeatMgr Server session
|
sl@0
|
61 |
err = CreateSession( KServerProcessName,
|
sl@0
|
62 |
ServerVersion(),
|
sl@0
|
63 |
KDefaultAsyncSlots );
|
sl@0
|
64 |
|
sl@0
|
65 |
LOG_IF_ERROR1( err, "RFeatMgrClient::Connect - CreateSession returned: %d", err );
|
sl@0
|
66 |
|
sl@0
|
67 |
if ( err != KErrNotFound && err != KErrServerTerminated )
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// KErrNone or unrecoverable error
|
sl@0
|
70 |
retry = 0;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
else
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Return code was KErrNotFound or KErrServerTerminated.
|
sl@0
|
75 |
// Try to start a new FeatMgr Server
|
sl@0
|
76 |
err = StartServer();
|
sl@0
|
77 |
|
sl@0
|
78 |
LOG_IF_ERROR1( err, "RFeatMgrClient::Connect - StartServer returned: %d", err );
|
sl@0
|
79 |
|
sl@0
|
80 |
if ( err != KErrNone && err != KErrAlreadyExists )
|
sl@0
|
81 |
{
|
sl@0
|
82 |
// Unrecoverable error
|
sl@0
|
83 |
retry = 0;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
retry--;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
return err;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
// -----------------------------------------------------------------------------
|
sl@0
|
94 |
// RFeatMgrClient::StartServer
|
sl@0
|
95 |
// Starts server.
|
sl@0
|
96 |
// -----------------------------------------------------------------------------
|
sl@0
|
97 |
//
|
sl@0
|
98 |
TInt RFeatMgrClient::StartServer()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
FUNC_LOG
|
sl@0
|
101 |
TIMESTAMP( "StartServer start: " )
|
sl@0
|
102 |
|
sl@0
|
103 |
RProcess server;
|
sl@0
|
104 |
const TUidType serverUid( KNullUid, KServerUid2, KNullUid );
|
sl@0
|
105 |
TInt err = server.Create( KServerExeName, // FeatMgrServer.exe
|
sl@0
|
106 |
KNullDesC, // A descriptor containing data passed as
|
sl@0
|
107 |
// an argument to the thread function of
|
sl@0
|
108 |
// the new process's main thread, when it
|
sl@0
|
109 |
// is first scheduled.
|
sl@0
|
110 |
serverUid, // FeatMgr server UID
|
sl@0
|
111 |
EOwnerProcess ); // Ownership of this process handle
|
sl@0
|
112 |
|
sl@0
|
113 |
// Return error code if we couldn't create a process
|
sl@0
|
114 |
if ( err == KErrNone )
|
sl@0
|
115 |
{
|
sl@0
|
116 |
// Rendezvous is used to detect server start
|
sl@0
|
117 |
TRequestStatus stat;
|
sl@0
|
118 |
server.Rendezvous( stat );
|
sl@0
|
119 |
|
sl@0
|
120 |
if ( stat != KRequestPending )
|
sl@0
|
121 |
{
|
sl@0
|
122 |
server.Kill( KErrNone ); // Abort startup
|
sl@0
|
123 |
}
|
sl@0
|
124 |
else
|
sl@0
|
125 |
{
|
sl@0
|
126 |
server.Resume(); // Logon OK - start the server
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
INFO_LOG( "RFeatMgrClient::StartServer - Waiting server startup" );
|
sl@0
|
130 |
|
sl@0
|
131 |
User::WaitForRequest( stat ); // Wait for start or death
|
sl@0
|
132 |
|
sl@0
|
133 |
INFO_LOG( "RFeatMgrClient::StartServer - Server startup wait finished" );
|
sl@0
|
134 |
|
sl@0
|
135 |
// We can't use the 'exit reason' if the server paniced as this
|
sl@0
|
136 |
// is the panic 'reason' and may be '0' which cannot be distinguished
|
sl@0
|
137 |
// from KErrNone
|
sl@0
|
138 |
err = (server.ExitType() == EExitPanic)? KErrGeneral : stat.Int();
|
sl@0
|
139 |
|
sl@0
|
140 |
// We can close the handle now
|
sl@0
|
141 |
server.Close();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
TIMESTAMP( "StartServer end: " )
|
sl@0
|
145 |
|
sl@0
|
146 |
return err;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
|
sl@0
|
150 |
// -----------------------------------------------------------------------------
|
sl@0
|
151 |
// RFeatMgrClient::ServerVersion
|
sl@0
|
152 |
// Return version of server
|
sl@0
|
153 |
// -----------------------------------------------------------------------------
|
sl@0
|
154 |
//
|
sl@0
|
155 |
TVersion RFeatMgrClient::ServerVersion() const
|
sl@0
|
156 |
{
|
sl@0
|
157 |
return TVersion( KServerVersionMajor, KServerVersionMinor, KServerVersionBuild );
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
|
sl@0
|
161 |
// -----------------------------------------------------------------------------
|
sl@0
|
162 |
// RFeatMgrClient::FeatureSupported()
|
sl@0
|
163 |
// -----------------------------------------------------------------------------
|
sl@0
|
164 |
//
|
sl@0
|
165 |
TInt RFeatMgrClient::FeatureSupported( TFeatureEntry& aFeature ) const
|
sl@0
|
166 |
{
|
sl@0
|
167 |
TPckg<TFeatureEntry> pckg( aFeature );
|
sl@0
|
168 |
TPckgBuf<TInt> pckgRet;
|
sl@0
|
169 |
|
sl@0
|
170 |
TInt retval = SendReceive(EFeatMgrFeatureSupported, TIpcArgs( &pckg, &pckgRet ));
|
sl@0
|
171 |
|
sl@0
|
172 |
if ( retval != KErrNone )
|
sl@0
|
173 |
{
|
sl@0
|
174 |
ERROR_LOG1( "RFeatMgrClient::FeatureSupported - SendReceive error %d", retval );
|
sl@0
|
175 |
return retval;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
INFO_LOG2( "RFeatMgrClient::FeatureSupported - uid %d, supported %d",
|
sl@0
|
179 |
aFeature.FeatureUid().iUid, pckgRet() );
|
sl@0
|
180 |
return pckgRet();
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
// -----------------------------------------------------------------------------
|
sl@0
|
184 |
// RFeatMgrClient::FeaturesSupported()
|
sl@0
|
185 |
// -----------------------------------------------------------------------------
|
sl@0
|
186 |
//
|
sl@0
|
187 |
TInt RFeatMgrClient::FeaturesSupported( RFeatureArray& aFeatures )
|
sl@0
|
188 |
{
|
sl@0
|
189 |
TPckgBuf<TInt> pckg;
|
sl@0
|
190 |
|
sl@0
|
191 |
TInt retval( KErrNone );
|
sl@0
|
192 |
|
sl@0
|
193 |
TRAP( retval, SendRcvFeatureArrayL( aFeatures, pckg() ) );
|
sl@0
|
194 |
|
sl@0
|
195 |
if ( retval != KErrNone )
|
sl@0
|
196 |
{
|
sl@0
|
197 |
ERROR_LOG1( "RFeatMgrClient::FeaturesSupported - SendReceive error %d", retval );
|
sl@0
|
198 |
return retval;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
INFO_LOG1( "RFeatMgrClient::FeaturesSupported - return %d", pckg() );
|
sl@0
|
202 |
return pckg();
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
// -----------------------------------------------------------------------------
|
sl@0
|
206 |
// RFeatMgrClient::EnableFeature()
|
sl@0
|
207 |
// -----------------------------------------------------------------------------
|
sl@0
|
208 |
//
|
sl@0
|
209 |
TInt RFeatMgrClient::EnableFeature( TUid aFeature ) const
|
sl@0
|
210 |
{
|
sl@0
|
211 |
TPckgBuf<TInt> pckg;
|
sl@0
|
212 |
|
sl@0
|
213 |
TInt retval = SendReceive(EFeatMgrEnableFeature, TIpcArgs(aFeature.iUid, &pckg));
|
sl@0
|
214 |
|
sl@0
|
215 |
if ( retval != KErrNone )
|
sl@0
|
216 |
{
|
sl@0
|
217 |
ERROR_LOG1( "RFeatMgrClient::EnableFeature - SendReceive error %d", retval );
|
sl@0
|
218 |
return retval;
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
INFO_LOG1( "RFeatMgrClient::EnableFeature - return %d", pckg() );
|
sl@0
|
222 |
return pckg();
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
// -----------------------------------------------------------------------------
|
sl@0
|
226 |
// RFeatMgrClient::DisableFeature()
|
sl@0
|
227 |
// -----------------------------------------------------------------------------
|
sl@0
|
228 |
//
|
sl@0
|
229 |
TInt RFeatMgrClient::DisableFeature( TUid aFeature ) const
|
sl@0
|
230 |
{
|
sl@0
|
231 |
TPckgBuf<TInt> pckg;
|
sl@0
|
232 |
|
sl@0
|
233 |
TInt retval = SendReceive(EFeatMgrDisableFeature, TIpcArgs(aFeature.iUid, &pckg));
|
sl@0
|
234 |
|
sl@0
|
235 |
if ( retval != KErrNone )
|
sl@0
|
236 |
{
|
sl@0
|
237 |
ERROR_LOG1( "RFeatMgrClient::DisableFeature - SendReceive error %d", retval );
|
sl@0
|
238 |
return retval;
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
INFO_LOG1( "RFeatMgrClient::DisableFeature - return %d", pckg() );
|
sl@0
|
242 |
return pckg();
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
// -----------------------------------------------------------------------------
|
sl@0
|
246 |
// RFeatMgrClient::SetFeature()
|
sl@0
|
247 |
// -----------------------------------------------------------------------------
|
sl@0
|
248 |
//
|
sl@0
|
249 |
TInt RFeatMgrClient::SetFeature( TUid aFeature, TBool aEnable, TInt aData ) const
|
sl@0
|
250 |
{
|
sl@0
|
251 |
TPckgBuf<TInt> pckg;
|
sl@0
|
252 |
|
sl@0
|
253 |
TInt retval = SendReceive(EFeatMgrSetFeatureAndData, TIpcArgs(
|
sl@0
|
254 |
aFeature.iUid, aEnable, aData, &pckg));
|
sl@0
|
255 |
|
sl@0
|
256 |
if ( retval != KErrNone )
|
sl@0
|
257 |
{
|
sl@0
|
258 |
ERROR_LOG1( "RFeatMgrClient::SetFeature - SendReceive error %d", retval );
|
sl@0
|
259 |
return retval;
|
sl@0
|
260 |
}
|
sl@0
|
261 |
|
sl@0
|
262 |
INFO_LOG1( "RFeatMgrClient::SetFeature - return %d", pckg() );
|
sl@0
|
263 |
return pckg();
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
// -----------------------------------------------------------------------------
|
sl@0
|
267 |
// RFeatMgrClient::SetFeature()
|
sl@0
|
268 |
// -----------------------------------------------------------------------------
|
sl@0
|
269 |
//
|
sl@0
|
270 |
TInt RFeatMgrClient::SetFeature( TUid aFeature, TInt aData ) const
|
sl@0
|
271 |
{
|
sl@0
|
272 |
TPckgBuf<TInt> pckg;
|
sl@0
|
273 |
|
sl@0
|
274 |
TInt retval = SendReceive(EFeatMgrSetFeatureData, TIpcArgs(
|
sl@0
|
275 |
aFeature.iUid, aData, &pckg));
|
sl@0
|
276 |
|
sl@0
|
277 |
if ( retval != KErrNone )
|
sl@0
|
278 |
{
|
sl@0
|
279 |
ERROR_LOG1( "RFeatMgrClient::SetFeature - SendReceive error %d", retval );
|
sl@0
|
280 |
return retval;
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
INFO_LOG1( "RFeatMgrClient::SetFeature - return %d", pckg() );
|
sl@0
|
284 |
return pckg();
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
// -----------------------------------------------------------------------------
|
sl@0
|
288 |
// RFeatMgrClient::AddFeature()
|
sl@0
|
289 |
// -----------------------------------------------------------------------------
|
sl@0
|
290 |
//
|
sl@0
|
291 |
TInt RFeatMgrClient::AddFeature( TFeatureEntry aFeature ) const
|
sl@0
|
292 |
{
|
sl@0
|
293 |
TPckg<TFeatureEntry> pckg( aFeature );
|
sl@0
|
294 |
TPckgBuf<TInt> pckgRet;
|
sl@0
|
295 |
|
sl@0
|
296 |
TInt retval = SendReceive(EFeatMgrAddFeature, TIpcArgs(&pckg, &pckgRet));
|
sl@0
|
297 |
|
sl@0
|
298 |
if ( retval != KErrNone )
|
sl@0
|
299 |
{
|
sl@0
|
300 |
ERROR_LOG1( "RFeatMgrClient::AddFeature - SendReceive error %d", retval );
|
sl@0
|
301 |
return retval;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
INFO_LOG1( "RFeatMgrClient::AddFeature - return %d", pckgRet() );
|
sl@0
|
305 |
return pckgRet();
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
// -----------------------------------------------------------------------------
|
sl@0
|
309 |
// RFeatMgrClient::DeleteFeature()
|
sl@0
|
310 |
// -----------------------------------------------------------------------------
|
sl@0
|
311 |
//
|
sl@0
|
312 |
TInt RFeatMgrClient::DeleteFeature( TUid aFeature ) const
|
sl@0
|
313 |
{
|
sl@0
|
314 |
TPckgBuf<TInt> pckg;
|
sl@0
|
315 |
|
sl@0
|
316 |
TInt retval = SendReceive(EFeatMgrDeleteFeature, TIpcArgs(aFeature.iUid, &pckg));
|
sl@0
|
317 |
|
sl@0
|
318 |
if ( retval != KErrNone )
|
sl@0
|
319 |
{
|
sl@0
|
320 |
ERROR_LOG1( "RFeatMgrClient::DeleteFeature - SendReceive error %d", retval );
|
sl@0
|
321 |
return retval;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
INFO_LOG1( "RFeatMgrClient::DeleteFeature - return %d", pckg() );
|
sl@0
|
325 |
return pckg();
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
// -----------------------------------------------------------------------------
|
sl@0
|
329 |
// RFeatMgrClient::ListSupportedFeaturesL()
|
sl@0
|
330 |
// -----------------------------------------------------------------------------
|
sl@0
|
331 |
//
|
sl@0
|
332 |
void RFeatMgrClient::ListSupportedFeaturesL( RFeatureUidArray& aSupportedFeatures )
|
sl@0
|
333 |
{
|
sl@0
|
334 |
// Reset as array might contain old data.
|
sl@0
|
335 |
aSupportedFeatures.Reset();
|
sl@0
|
336 |
TInt retry( 5 );
|
sl@0
|
337 |
TInt err( KErrNone );
|
sl@0
|
338 |
TInt count;
|
sl@0
|
339 |
TPckg<TInt> sizePckg( count );
|
sl@0
|
340 |
|
sl@0
|
341 |
while ( retry > 0 )
|
sl@0
|
342 |
{
|
sl@0
|
343 |
User::LeaveIfError( SendReceive( EFeatMgrNumberOfSupportedFeatures,
|
sl@0
|
344 |
TIpcArgs( &sizePckg ) ) );
|
sl@0
|
345 |
|
sl@0
|
346 |
HBufC8* buf = HBufC8::NewLC( count * sizeof( TInt ) );
|
sl@0
|
347 |
TPtr8 ptr = buf->Des();
|
sl@0
|
348 |
|
sl@0
|
349 |
err = SendReceive( EFeatMgrListSupportedFeatures, TIpcArgs( count, &ptr ) );
|
sl@0
|
350 |
LOG_IF_ERROR1( err, "RFeatMgrClient::ListSupportedFeaturesL - SendReceive error %d", err );
|
sl@0
|
351 |
INFO_LOG1( "RFeatMgrClient::ListSupportedFeaturesL - count %d", count );
|
sl@0
|
352 |
|
sl@0
|
353 |
if ( err == KErrNone )
|
sl@0
|
354 |
{
|
sl@0
|
355 |
aSupportedFeatures.ReserveL( count );
|
sl@0
|
356 |
|
sl@0
|
357 |
for ( TInt i = 0; i < count; i++ )
|
sl@0
|
358 |
{
|
sl@0
|
359 |
TPtrC8 featurePtr = ptr.Mid( i * sizeof( TUid ), sizeof( TUid ) );
|
sl@0
|
360 |
TUid featureId = TUid::Uid( 0 );
|
sl@0
|
361 |
TPckg<TUid> feature( featureId );
|
sl@0
|
362 |
feature.Copy( featurePtr );
|
sl@0
|
363 |
aSupportedFeatures.AppendL( featureId );
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
retry = 0;
|
sl@0
|
367 |
}
|
sl@0
|
368 |
else if ( err == KErrServerBusy )
|
sl@0
|
369 |
{
|
sl@0
|
370 |
retry--;
|
sl@0
|
371 |
}
|
sl@0
|
372 |
else
|
sl@0
|
373 |
{
|
sl@0
|
374 |
User::Leave( err );
|
sl@0
|
375 |
}
|
sl@0
|
376 |
CleanupStack::PopAndDestroy( buf );
|
sl@0
|
377 |
}
|
sl@0
|
378 |
|
sl@0
|
379 |
User::LeaveIfError( err );
|
sl@0
|
380 |
}
|
sl@0
|
381 |
|
sl@0
|
382 |
|
sl@0
|
383 |
// -----------------------------------------------------------------------------
|
sl@0
|
384 |
// RFeatMgrClient::ReRequestNotification(TUid&, TRequestStatus&)
|
sl@0
|
385 |
// -----------------------------------------------------------------------------
|
sl@0
|
386 |
//
|
sl@0
|
387 |
void RFeatMgrClient::ReRequestNotification( TUid& aFeatUid, TRequestStatus& aStatus )
|
sl@0
|
388 |
{
|
sl@0
|
389 |
TPckgBuf<TInt> pckg;
|
sl@0
|
390 |
iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
|
sl@0
|
391 |
TIpcArgs args( &iFeaturePckg );
|
sl@0
|
392 |
SendReceive( EFeatMgrReqNotify, args, aStatus );
|
sl@0
|
393 |
}
|
sl@0
|
394 |
|
sl@0
|
395 |
// -----------------------------------------------------------------------------
|
sl@0
|
396 |
// RFeatMgrClient::RequestNotification(RFeatureUidArray&, TUid&, TRequestStatus&)
|
sl@0
|
397 |
// -----------------------------------------------------------------------------
|
sl@0
|
398 |
//
|
sl@0
|
399 |
TInt RFeatMgrClient::RequestNotification( RFeatureUidArray& aFeatures,
|
sl@0
|
400 |
TUid& aFeatUid, TRequestStatus& aStatus )
|
sl@0
|
401 |
{
|
sl@0
|
402 |
TPckgBuf<TInt> pckg;
|
sl@0
|
403 |
|
sl@0
|
404 |
TInt retval( KErrNone );
|
sl@0
|
405 |
|
sl@0
|
406 |
TRAP( retval, SendUidArrayL( aFeatures, pckg() ) );
|
sl@0
|
407 |
|
sl@0
|
408 |
if ( retval == KErrNone )
|
sl@0
|
409 |
{
|
sl@0
|
410 |
iFeaturePckg.Set( (TUint8*) &aFeatUid.iUid, sizeof(TUid), sizeof(TUid) );
|
sl@0
|
411 |
TIpcArgs args( &iFeaturePckg );
|
sl@0
|
412 |
SendReceive( EFeatMgrReqNotify, args, aStatus );
|
sl@0
|
413 |
}
|
sl@0
|
414 |
else
|
sl@0
|
415 |
{
|
sl@0
|
416 |
ERROR_LOG1( "RFeatMgrClient::RequestNotification - SendReceive error %d", retval );
|
sl@0
|
417 |
return retval;
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
INFO_LOG1( "RFeatMgrClient::RequestNotification - return %d", pckg() );
|
sl@0
|
421 |
return pckg();
|
sl@0
|
422 |
}
|
sl@0
|
423 |
|
sl@0
|
424 |
// -----------------------------------------------------------------------------
|
sl@0
|
425 |
// RFeatMgrClient::RequestNotifyCancel(TUid)
|
sl@0
|
426 |
// -----------------------------------------------------------------------------
|
sl@0
|
427 |
//
|
sl@0
|
428 |
TInt RFeatMgrClient::RequestNotifyCancel( TUid aFeature ) const
|
sl@0
|
429 |
{
|
sl@0
|
430 |
TPckgBuf<TInt> pckg;
|
sl@0
|
431 |
|
sl@0
|
432 |
TInt retval = SendReceive(EFeatMgrReqNotifyCancel, TIpcArgs(aFeature.iUid, &pckg));
|
sl@0
|
433 |
|
sl@0
|
434 |
if ( retval != KErrNone )
|
sl@0
|
435 |
{
|
sl@0
|
436 |
ERROR_LOG1( "RFeatMgrClient::RequestNotifyCancel - SendReceive error %d", retval );
|
sl@0
|
437 |
return retval;
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
INFO_LOG1( "RFeatMgrClient::RequestNotifyCancel - return %d", pckg() );
|
sl@0
|
441 |
return pckg();
|
sl@0
|
442 |
}
|
sl@0
|
443 |
|
sl@0
|
444 |
// -----------------------------------------------------------------------------
|
sl@0
|
445 |
// RFeatMgrClient::RequestNotifyCancelAll()
|
sl@0
|
446 |
// -----------------------------------------------------------------------------
|
sl@0
|
447 |
//
|
sl@0
|
448 |
TInt RFeatMgrClient::RequestNotifyCancelAll() const
|
sl@0
|
449 |
{
|
sl@0
|
450 |
TPckgBuf<TInt> pckg;
|
sl@0
|
451 |
|
sl@0
|
452 |
TInt retval = SendReceive(EFeatMgrReqNotifyCancelAll, TIpcArgs(&pckg));
|
sl@0
|
453 |
|
sl@0
|
454 |
if ( retval != KErrNone )
|
sl@0
|
455 |
{
|
sl@0
|
456 |
ERROR_LOG1( "RFeatMgrClient::RequestNotifyCancelAll - SendReceive error %d", retval );
|
sl@0
|
457 |
return retval;
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
INFO_LOG1( "RFeatMgrClient::RequestNotifyCancelAll - return %d", pckg() );
|
sl@0
|
461 |
return pckg();
|
sl@0
|
462 |
}
|
sl@0
|
463 |
|
sl@0
|
464 |
// -----------------------------------------------------------------------------
|
sl@0
|
465 |
// RFeatMgrClient::SendUidArrayL()
|
sl@0
|
466 |
// -----------------------------------------------------------------------------
|
sl@0
|
467 |
//
|
sl@0
|
468 |
void RFeatMgrClient::SendUidArrayL( RFeatureUidArray& aFeatures, TInt &retval)
|
sl@0
|
469 |
{
|
sl@0
|
470 |
FUNC_LOG
|
sl@0
|
471 |
|
sl@0
|
472 |
INFO_LOG1( "RFeatMgrClient::SendUidArrayL - Send %d features", aFeatures.Count() );
|
sl@0
|
473 |
|
sl@0
|
474 |
TInt size = aFeatures.Count() * sizeof(TUid);
|
sl@0
|
475 |
CBufBase* buffer = CBufFlat::NewL( size );
|
sl@0
|
476 |
CleanupStack::PushL( buffer );
|
sl@0
|
477 |
buffer->ResizeL( size );
|
sl@0
|
478 |
|
sl@0
|
479 |
RBufWriteStream stream( *buffer );
|
sl@0
|
480 |
CleanupClosePushL( stream );
|
sl@0
|
481 |
|
sl@0
|
482 |
TInt count = aFeatures.Count();
|
sl@0
|
483 |
// Write each field in array to stream
|
sl@0
|
484 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
485 |
{
|
sl@0
|
486 |
stream.WriteUint32L( aFeatures[i].iUid );
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
stream.CommitL();
|
sl@0
|
490 |
|
sl@0
|
491 |
// Write transfer buffer to server
|
sl@0
|
492 |
TPtr8 pBuffer(buffer->Ptr(0));
|
sl@0
|
493 |
TPckgBuf<TInt> pckg;
|
sl@0
|
494 |
TIpcArgs args( count, &pBuffer, &pckg );
|
sl@0
|
495 |
TInt sendErr = SendReceive( EFeatMgrReqNotifyUids, args );
|
sl@0
|
496 |
|
sl@0
|
497 |
retval = pckg();
|
sl@0
|
498 |
|
sl@0
|
499 |
CleanupStack::PopAndDestroy( &stream );
|
sl@0
|
500 |
CleanupStack::PopAndDestroy( buffer );
|
sl@0
|
501 |
User::LeaveIfError( sendErr );
|
sl@0
|
502 |
}
|
sl@0
|
503 |
|
sl@0
|
504 |
// -----------------------------------------------------------------------------
|
sl@0
|
505 |
// RFeatMgrClient::SendRcvFeatureArrayL()
|
sl@0
|
506 |
// -----------------------------------------------------------------------------
|
sl@0
|
507 |
//
|
sl@0
|
508 |
void RFeatMgrClient::SendRcvFeatureArrayL( RFeatureArray& aFeatures, TInt &retval)
|
sl@0
|
509 |
{
|
sl@0
|
510 |
FUNC_LOG
|
sl@0
|
511 |
|
sl@0
|
512 |
INFO_LOG1( "RFeatMgrClient::SendRcvFeatureArrayL - Send %d features", aFeatures.Count() );
|
sl@0
|
513 |
|
sl@0
|
514 |
TInt size = aFeatures.Count() * sizeof(TFeatureEntry);
|
sl@0
|
515 |
CBufBase* buffer = CBufFlat::NewL( size );
|
sl@0
|
516 |
CleanupStack::PushL( buffer );
|
sl@0
|
517 |
buffer->ResizeL( size );
|
sl@0
|
518 |
|
sl@0
|
519 |
RBufWriteStream stream( *buffer );
|
sl@0
|
520 |
CleanupClosePushL( stream );
|
sl@0
|
521 |
|
sl@0
|
522 |
TInt count = aFeatures.Count();
|
sl@0
|
523 |
// Write each field in array to stream
|
sl@0
|
524 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
525 |
{
|
sl@0
|
526 |
TFeatureEntry entry( aFeatures[i].FeatureUid(), aFeatures[i].FeatureFlags(),
|
sl@0
|
527 |
aFeatures[i].FeatureData() );
|
sl@0
|
528 |
stream.WriteUint32L( aFeatures[i].FeatureUid().iUid );
|
sl@0
|
529 |
stream.WriteUint32L( aFeatures[i].FeatureFlags().iFlags );
|
sl@0
|
530 |
stream.WriteUint32L( aFeatures[i].FeatureData() );
|
sl@0
|
531 |
stream.WriteUint32L( 0 ); // reserved
|
sl@0
|
532 |
}
|
sl@0
|
533 |
|
sl@0
|
534 |
stream.CommitL();
|
sl@0
|
535 |
|
sl@0
|
536 |
// Write transfer buffer to server
|
sl@0
|
537 |
TPtr8 pBuffer(buffer->Ptr(0));
|
sl@0
|
538 |
TPckgBuf<TInt> pckg;
|
sl@0
|
539 |
TIpcArgs args( count, &pBuffer, &pckg );
|
sl@0
|
540 |
TInt sendErr = SendReceive( EFeatMgrFeaturesSupported, args );
|
sl@0
|
541 |
|
sl@0
|
542 |
if ( sendErr == KErrNone )
|
sl@0
|
543 |
{
|
sl@0
|
544 |
TInt responseCount = pckg();
|
sl@0
|
545 |
// Read modified feature entries back to array
|
sl@0
|
546 |
RBufReadStream readStream( *buffer );
|
sl@0
|
547 |
CleanupClosePushL( readStream );
|
sl@0
|
548 |
aFeatures.Reset();
|
sl@0
|
549 |
aFeatures.ReserveL( responseCount );
|
sl@0
|
550 |
|
sl@0
|
551 |
for ( TInt i = 0; i < responseCount; i++ )
|
sl@0
|
552 |
{
|
sl@0
|
553 |
TUid uid = TUid::Uid( readStream.ReadUint32L() );
|
sl@0
|
554 |
TBitFlags32 flags = readStream.ReadUint32L();
|
sl@0
|
555 |
TUint32 data = readStream.ReadUint32L();
|
sl@0
|
556 |
readStream.ReadUint32L(); // reserved
|
sl@0
|
557 |
TFeatureEntry entry( uid, flags, data );
|
sl@0
|
558 |
aFeatures.AppendL( entry );
|
sl@0
|
559 |
}
|
sl@0
|
560 |
|
sl@0
|
561 |
CleanupStack::PopAndDestroy( &readStream );
|
sl@0
|
562 |
}
|
sl@0
|
563 |
|
sl@0
|
564 |
retval = KErrNone; // Currently no error response exist.
|
sl@0
|
565 |
|
sl@0
|
566 |
CleanupStack::PopAndDestroy( &stream );
|
sl@0
|
567 |
CleanupStack::PopAndDestroy( buffer );
|
sl@0
|
568 |
User::LeaveIfError( sendErr );
|
sl@0
|
569 |
}
|
sl@0
|
570 |
|
sl@0
|
571 |
// -----------------------------------------------------------------------------
|
sl@0
|
572 |
// RFeatMgrClient::SWIStart()
|
sl@0
|
573 |
// -----------------------------------------------------------------------------
|
sl@0
|
574 |
//
|
sl@0
|
575 |
TInt RFeatMgrClient::SWIStart() const
|
sl@0
|
576 |
{
|
sl@0
|
577 |
TPckgBuf<TInt> pckg;
|
sl@0
|
578 |
|
sl@0
|
579 |
TInt retval = SendReceive(EFeatMgrSWIStart, TIpcArgs(&pckg));
|
sl@0
|
580 |
|
sl@0
|
581 |
if ( retval != KErrNone )
|
sl@0
|
582 |
{
|
sl@0
|
583 |
ERROR_LOG1( "RFeatMgrClient::SWIStart - SendReceive error %d", retval );
|
sl@0
|
584 |
return retval;
|
sl@0
|
585 |
}
|
sl@0
|
586 |
|
sl@0
|
587 |
INFO_LOG1( "RFeatMgrClient::SWIStart - return %d", pckg() );
|
sl@0
|
588 |
return pckg();
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
// -----------------------------------------------------------------------------
|
sl@0
|
592 |
// RFeatMgrClient::SWIEnd()
|
sl@0
|
593 |
// -----------------------------------------------------------------------------
|
sl@0
|
594 |
//
|
sl@0
|
595 |
TInt RFeatMgrClient::SWIEnd() const
|
sl@0
|
596 |
{
|
sl@0
|
597 |
TPckgBuf<TInt> pckg;
|
sl@0
|
598 |
|
sl@0
|
599 |
TInt retval = SendReceive(EFeatMgrSWIEnd, TIpcArgs(&pckg));
|
sl@0
|
600 |
|
sl@0
|
601 |
if ( retval != KErrNone )
|
sl@0
|
602 |
{
|
sl@0
|
603 |
ERROR_LOG1( "RFeatMgrClient::SWIEnd - SendReceive error %d", retval );
|
sl@0
|
604 |
return retval;
|
sl@0
|
605 |
}
|
sl@0
|
606 |
|
sl@0
|
607 |
INFO_LOG1( "RFeatMgrClient::SWIEnd - return %d", pckg() );
|
sl@0
|
608 |
return pckg();
|
sl@0
|
609 |
}
|
sl@0
|
610 |
|
sl@0
|
611 |
// ========================== OTHER EXPORTED FUNCTIONS =========================
|
sl@0
|
612 |
|
sl@0
|
613 |
// DEBUG only API functions
|
sl@0
|
614 |
|
sl@0
|
615 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
616 |
|
sl@0
|
617 |
#pragma BullseyeCoverage off
|
sl@0
|
618 |
|
sl@0
|
619 |
/**
|
sl@0
|
620 |
*/
|
sl@0
|
621 |
void RFeatMgrClient::ResourceMark()
|
sl@0
|
622 |
{
|
sl@0
|
623 |
(void)SendReceive(EFeatMgrResourceMark);
|
sl@0
|
624 |
}
|
sl@0
|
625 |
|
sl@0
|
626 |
/**
|
sl@0
|
627 |
*/
|
sl@0
|
628 |
void RFeatMgrClient::ResourceCheck()
|
sl@0
|
629 |
{
|
sl@0
|
630 |
(void)SendReceive(EFeatMgrResourceCheck);
|
sl@0
|
631 |
}
|
sl@0
|
632 |
|
sl@0
|
633 |
/**
|
sl@0
|
634 |
*/
|
sl@0
|
635 |
TInt RFeatMgrClient::ResourceCount()
|
sl@0
|
636 |
{
|
sl@0
|
637 |
return SendReceive(EFeatMgrResourceCount);
|
sl@0
|
638 |
}
|
sl@0
|
639 |
|
sl@0
|
640 |
/**
|
sl@0
|
641 |
*/
|
sl@0
|
642 |
void RFeatMgrClient::SetHeapFailure(TInt aAllocFailType, TInt aRate)
|
sl@0
|
643 |
{
|
sl@0
|
644 |
(void)SendReceive(EFeatMgrSetHeapFailure, TIpcArgs(aAllocFailType, aRate));
|
sl@0
|
645 |
}
|
sl@0
|
646 |
|
sl@0
|
647 |
// -----------------------------------------------------------------------------
|
sl@0
|
648 |
// RFeatMgrClient::NumberOfNotifyFeatures()
|
sl@0
|
649 |
// -----------------------------------------------------------------------------
|
sl@0
|
650 |
//
|
sl@0
|
651 |
TInt RFeatMgrClient::NumberOfNotifyFeatures( void ) const
|
sl@0
|
652 |
{
|
sl@0
|
653 |
TInt count;
|
sl@0
|
654 |
TPckg<TInt> sizePckg( count );
|
sl@0
|
655 |
|
sl@0
|
656 |
TInt retval = SendReceive( EFeatMgrNumberOfNotifyFeatures, TIpcArgs( &sizePckg ) );
|
sl@0
|
657 |
if ( KErrNone != retval )
|
sl@0
|
658 |
{
|
sl@0
|
659 |
ERROR_LOG1( "RFeatMgrClient::NumberOfNotifyFeatures - SendReceive error %d", retval );
|
sl@0
|
660 |
return retval;
|
sl@0
|
661 |
}
|
sl@0
|
662 |
|
sl@0
|
663 |
INFO_LOG1( "RFeatMgrClient::NumberOfNotifyFeatures - return %d", sizePckg() );
|
sl@0
|
664 |
return sizePckg();
|
sl@0
|
665 |
}
|
sl@0
|
666 |
|
sl@0
|
667 |
// -----------------------------------------------------------------------------
|
sl@0
|
668 |
// RFeatMgrClient::CountAllocCells()
|
sl@0
|
669 |
// -----------------------------------------------------------------------------
|
sl@0
|
670 |
//
|
sl@0
|
671 |
TInt RFeatMgrClient::CountAllocCells( void ) const
|
sl@0
|
672 |
{
|
sl@0
|
673 |
TInt count;
|
sl@0
|
674 |
TPckg<TInt> sizePckg( count );
|
sl@0
|
675 |
|
sl@0
|
676 |
TInt retval = SendReceive( EFeatMgrCountAllocCells, TIpcArgs( &sizePckg ) );
|
sl@0
|
677 |
if ( KErrNone != retval )
|
sl@0
|
678 |
{
|
sl@0
|
679 |
ERROR_LOG1( "RFeatMgrClient::CountAllocCells - SendReceive error %d", retval );
|
sl@0
|
680 |
return retval;
|
sl@0
|
681 |
}
|
sl@0
|
682 |
|
sl@0
|
683 |
INFO_LOG1( "RFeatMgrClient::CountAllocCells - return %d", sizePckg() );
|
sl@0
|
684 |
return sizePckg();
|
sl@0
|
685 |
}
|
sl@0
|
686 |
|
sl@0
|
687 |
#pragma BullseyeCoverage on
|
sl@0
|
688 |
|
sl@0
|
689 |
#endif
|
sl@0
|
690 |
|
sl@0
|
691 |
// End of File
|