sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef FEATURECONTROL_H
|
sl@0
|
23 |
#define FEATURECONTROL_H
|
sl@0
|
24 |
|
sl@0
|
25 |
// INCLUDES
|
sl@0
|
26 |
#include <e32std.h>
|
sl@0
|
27 |
#include <e32svr.h>
|
sl@0
|
28 |
#include <featmgr/featurecmn.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
// FORWARD DECLARATIONS
|
sl@0
|
31 |
|
sl@0
|
32 |
// DEFINES
|
sl@0
|
33 |
|
sl@0
|
34 |
// CLASS DECLARATION
|
sl@0
|
35 |
|
sl@0
|
36 |
// CONSTANTS
|
sl@0
|
37 |
|
sl@0
|
38 |
// MACROS
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
|
sl@0
|
42 |
The Feature Control API provides methods that can be used to query which
|
sl@0
|
43 |
features are supported on the device. The API also provides methods to
|
sl@0
|
44 |
get status flags that define that behaviour of the feature flag and data
|
sl@0
|
45 |
associated with the feature.
|
sl@0
|
46 |
|
sl@0
|
47 |
The Feature Control API provides methods to enable and disable features at
|
sl@0
|
48 |
runtime e.g. when new software is installed or uninstalled. The API provides
|
sl@0
|
49 |
also methods for setting feature data, adding a new feature to the device
|
sl@0
|
50 |
and listing all supported features on the device.
|
sl@0
|
51 |
|
sl@0
|
52 |
It is only possible to enable or disable a feature or set feature data
|
sl@0
|
53 |
at runtime if that feature is modifiable (this is defined by the status
|
sl@0
|
54 |
32 bit word associated with the feature flag). It is also possible to enable or
|
sl@0
|
55 |
disable a feature UID that is not even defined in the device yet.
|
sl@0
|
56 |
When adding a new feature to the device status flags and data of the feature
|
sl@0
|
57 |
must be set.
|
sl@0
|
58 |
|
sl@0
|
59 |
The meaning of the bits of the 32-bit feature status flags are as follows:
|
sl@0
|
60 |
|
sl@0
|
61 |
Bit Flag Name Meaning
|
sl@0
|
62 |
- 0 Supported If set, feature is supported and available for use;
|
sl@0
|
63 |
if not, feature is not supported.
|
sl@0
|
64 |
- 1 Upgradeable If set, feature is upgradeable. The feature is known to
|
sl@0
|
65 |
the device but it must be upgraded to enable it. If a feature
|
sl@0
|
66 |
is blacklisted, its upgradeable flag is unset.
|
sl@0
|
67 |
- 2 Modifiable If set, the feature is modifiable and may be enabled/disabled at
|
sl@0
|
68 |
run-time. The initial flag values for such a feature flag are
|
sl@0
|
69 |
defined in a ROM image obey file.
|
sl@0
|
70 |
- 3 Blacklisted If set, the feature has been blacklisted, and may not be changed
|
sl@0
|
71 |
at run-time. This also prevents a feature from being upgraded.
|
sl@0
|
72 |
- 4 Uninitialised If set, the status flag Supported is unknown at build-time and is
|
sl@0
|
73 |
initialised at run-time by system software. The Feature Manager
|
sl@0
|
74 |
will ignore the Supported flag in the file. A run-time call to
|
sl@0
|
75 |
RFeatureControl will be needed to set the feature's supported
|
sl@0
|
76 |
flag. Look ups of uninitialised features result in a KErrNotReady
|
sl@0
|
77 |
error code.
|
sl@0
|
78 |
- 5 Persisted If set, this flag is saved to the system drive when modified
|
sl@0
|
79 |
preserving its value across reboots/power downs
|
sl@0
|
80 |
- 6 ..23 Reserved for future use, always zero.
|
sl@0
|
81 |
- 24..31 Reserved for internal use.
|
sl@0
|
82 |
|
sl@0
|
83 |
Enumeration TFeatureFlags defined in featurecmn.h should be used for
|
sl@0
|
84 |
accessing feature status flags e.g. flags.IsSet( EFeatureUpgradeable ),
|
sl@0
|
85 |
flags.IsSet( EFeatureModifiable ).
|
sl@0
|
86 |
|
sl@0
|
87 |
Feature data is 32-bit word for client read and write. Feature data can
|
sl@0
|
88 |
contain any data that needs to be associated with the Feature Flag.
|
sl@0
|
89 |
Feature data can only be set if the feature is modifiable or a new feature.
|
sl@0
|
90 |
|
sl@0
|
91 |
The use of the Feature Manager API to set the supported status of a feature,
|
sl@0
|
92 |
it in no way means that the functionality itself is modified on the device.
|
sl@0
|
93 |
All the corresponding DLLs, including feature functionality and resources still
|
sl@0
|
94 |
remain on the device. To properly support runtime activation/deactivation
|
sl@0
|
95 |
of the feature, all feature APIs need to implement runtime checking of the
|
sl@0
|
96 |
feature status in their code.
|
sl@0
|
97 |
|
sl@0
|
98 |
The API consists of the RFeatureControl class which is
|
sl@0
|
99 |
used together with feature UIDs defined in featureUIDs.h, TFeatureFlags,
|
sl@0
|
100 |
TFeatureEntry and RFeatureUidArray defined in featurecmn.h.
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
Usage:
|
sl@0
|
104 |
|
sl@0
|
105 |
Before calling any other methods the client must call the Open()
|
sl@0
|
106 |
method that connects to the Feature Manager Server.
|
sl@0
|
107 |
When the client has finished using the RFeatureControl it should
|
sl@0
|
108 |
disconnect using the Close() method.
|
sl@0
|
109 |
|
sl@0
|
110 |
@publishedPartner
|
sl@0
|
111 |
@released
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
NONSHARABLE_CLASS(RFeatureControl)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
public:
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
C++ default constructor.
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
IMPORT_C RFeatureControl();
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
Connect() must be called before calling any other methods of
|
sl@0
|
123 |
RFeatureControl.
|
sl@0
|
124 |
It connects to the Feature Manager Server.
|
sl@0
|
125 |
After usage Close() function must be called.
|
sl@0
|
126 |
|
sl@0
|
127 |
@return Error Code. One of the Symbian error codes.
|
sl@0
|
128 |
|
sl@0
|
129 |
@deprecated Use Open() instead.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
IMPORT_C TInt Connect();
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
Open() must be called before calling any other methods of
|
sl@0
|
135 |
RFeatureControl.
|
sl@0
|
136 |
After usage Close() function must be called.
|
sl@0
|
137 |
|
sl@0
|
138 |
@return Error Code. One of the Symbian error codes.
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
IMPORT_C TInt Open();
|
sl@0
|
141 |
|
sl@0
|
142 |
/**
|
sl@0
|
143 |
Remember to call Close after using RFeatureControl.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
IMPORT_C void Close();
|
sl@0
|
146 |
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
This method returns the supported status on the device of the feature
|
sl@0
|
149 |
specified in the aFeature parameter.
|
sl@0
|
150 |
|
sl@0
|
151 |
@param aFeature Feature UID.
|
sl@0
|
152 |
@return KFeatureSupported if the feature is supported.
|
sl@0
|
153 |
KFeatureUnsupported if the feature is not supported.
|
sl@0
|
154 |
KErrNotFound if the feature does not exist.
|
sl@0
|
155 |
KErrNotReady it the feature is uninitialized.
|
sl@0
|
156 |
Otherwise one of the Symbian error codes.
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
IMPORT_C TInt FeatureSupported( TUid aFeature );
|
sl@0
|
161 |
|
sl@0
|
162 |
/**
|
sl@0
|
163 |
This method returns the supported status on the device of the feature
|
sl@0
|
164 |
described by the aFeature parameter. The feature UID should be set in
|
sl@0
|
165 |
TFeatureEntry class before the FeatureSupported method is called. If
|
sl@0
|
166 |
FeatureSupported returns successufully the TFeatureEntry parameter will
|
sl@0
|
167 |
also have been populated with the feature's status flags and the data
|
sl@0
|
168 |
word associates with the feature.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aFeature A reference to a a client owned TFeatureEntry object.
|
sl@0
|
171 |
Must contain UID of the queried feature.
|
sl@0
|
172 |
After returning contains status flags and data of
|
sl@0
|
173 |
the feature.
|
sl@0
|
174 |
@return KFeatureSupported if the feature is supported.
|
sl@0
|
175 |
KFeatureUnsupported if the feature is not supported.
|
sl@0
|
176 |
KErrNotFound if the feature does not exist.
|
sl@0
|
177 |
KErrNotReady if the feature is uninitialized.
|
sl@0
|
178 |
Otherwise one of the Symbian error codes.
|
sl@0
|
179 |
|
sl@0
|
180 |
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
IMPORT_C TInt FeatureSupported( TFeatureEntry& aFeature );
|
sl@0
|
183 |
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
This method allows the user to pass an array of type TFeatureEntry
|
sl@0
|
186 |
to Feature Manager. In this way the user can retrieve the supported status and
|
sl@0
|
187 |
associated information for the features whose UIDs have been set in
|
sl@0
|
188 |
TFeatureEntry classes. In order for the client to know whether
|
sl@0
|
189 |
feature is just disabled or does not exist at all it must check
|
sl@0
|
190 |
this from response feature array. If the feature exists the EFeatureSupported
|
sl@0
|
191 |
status bit will contain the support status. If the feature does not exist
|
sl@0
|
192 |
it will be removed from array after the query. For this reason instead of hard
|
sl@0
|
193 |
coding array accesses for features the Find method should always
|
sl@0
|
194 |
be used to query feature index in array after query.
|
sl@0
|
195 |
|
sl@0
|
196 |
@param aFeatures A reference to a a client owned RFeatureArray array.
|
sl@0
|
197 |
Must contain UIDs of the queried features.
|
sl@0
|
198 |
@return KErrNone if fetching of features statuses successful.
|
sl@0
|
199 |
KErrArgument if query made with empty array.
|
sl@0
|
200 |
Otherwise one of the Symbian error codes.
|
sl@0
|
201 |
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
IMPORT_C TInt FeaturesSupported( RFeatureArray& aFeatures );
|
sl@0
|
204 |
|
sl@0
|
205 |
/**
|
sl@0
|
206 |
Enables the specified feature. WriteDeviceData capability required.
|
sl@0
|
207 |
|
sl@0
|
208 |
@param aFeature Feature UID.
|
sl@0
|
209 |
@return Error Code. KErrNone if the feature was succesfully enabled.
|
sl@0
|
210 |
KErrAccessDenied if the feature is not modifiable.
|
sl@0
|
211 |
KErrPermissionDenied if a capability check fails.
|
sl@0
|
212 |
KErrNotFound if the feature does not exist.
|
sl@0
|
213 |
KErrArgument if the maximum number of cached features
|
sl@0
|
214 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
215 |
session has been exceeded.
|
sl@0
|
216 |
Otherwise one of the Symbian error codes.
|
sl@0
|
217 |
*/
|
sl@0
|
218 |
IMPORT_C TInt EnableFeature( TUid aFeature );
|
sl@0
|
219 |
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
Disables the specified feature. WriteDeviceData capability required.
|
sl@0
|
222 |
|
sl@0
|
223 |
@param aFeature Feature UID.
|
sl@0
|
224 |
@return Error Code. KErrNone if the feature was succesfully disabled.
|
sl@0
|
225 |
KErrAccessDenied if the feature is not modifiable.
|
sl@0
|
226 |
KErrPermissionDenied if a capability check fails.
|
sl@0
|
227 |
KErrNotFound if the feature does not exist.
|
sl@0
|
228 |
KErrArgument if the maximum number of cached features
|
sl@0
|
229 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
230 |
session has been exceeded.
|
sl@0
|
231 |
Otherwise one of the Symbian error codes.
|
sl@0
|
232 |
*/
|
sl@0
|
233 |
IMPORT_C TInt DisableFeature( TUid aFeature );
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
Enables or disables the specified feature and sets feature data.
|
sl@0
|
237 |
WriteDeviceData capability required.
|
sl@0
|
238 |
|
sl@0
|
239 |
@param aFeature Feature UID.
|
sl@0
|
240 |
@param aEnabled ETrue if enabling the feature, EFalse if disabling.
|
sl@0
|
241 |
@param aData Feature data.
|
sl@0
|
242 |
@return Error Code. KErrNone if the feature was succesfully enabled.
|
sl@0
|
243 |
KErrAccessDenied if the feature is not modifiable.
|
sl@0
|
244 |
KErrPermissionDenied if a capability check fails.
|
sl@0
|
245 |
KErrNotFound if the feature does not exist.
|
sl@0
|
246 |
KErrArgument if the maximum number of cached features
|
sl@0
|
247 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
248 |
session has been exceeded.
|
sl@0
|
249 |
Otherwise one of the Symbian error codes.
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
IMPORT_C TInt SetFeature( TUid aFeature, TBool aEnabled, TUint32 aData );
|
sl@0
|
252 |
|
sl@0
|
253 |
/**
|
sl@0
|
254 |
Sets feature data. WriteDeviceData capability required.
|
sl@0
|
255 |
|
sl@0
|
256 |
@param aFeature Feature UID.
|
sl@0
|
257 |
@param aData Feature data.
|
sl@0
|
258 |
@return Error Code. KErrNone if the feature data was succesfully set.
|
sl@0
|
259 |
KErrAccessDenied if the feature is not modifiable.
|
sl@0
|
260 |
KErrPermissionDenied if a capability check fails.
|
sl@0
|
261 |
KErrNotFound if the feature does not exist.
|
sl@0
|
262 |
KErrArgument if the maximum number of cached features
|
sl@0
|
263 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
264 |
session has been exceeded.
|
sl@0
|
265 |
Otherwise one of the Symbian error codes.
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
IMPORT_C TInt SetFeature( TUid aFeature, TUint32 aData );
|
sl@0
|
268 |
|
sl@0
|
269 |
/**
|
sl@0
|
270 |
Adds a new feature and sets status flags and data of the feature.
|
sl@0
|
271 |
Note: When adding a new feature to the device status flags and
|
sl@0
|
272 |
data of the feature must be set. WriteDeviceData capability required.
|
sl@0
|
273 |
|
sl@0
|
274 |
@param aFeature A reference to a client owned TFeatureEntry object.
|
sl@0
|
275 |
Must contain UID, status flags and data of the feature.
|
sl@0
|
276 |
@return Error Code. KErrNone if the feature was succesfully added.
|
sl@0
|
277 |
KErrPermissionDenied if capability check fails.
|
sl@0
|
278 |
KErrAlreadyExists if the feature already exists
|
sl@0
|
279 |
in the device.
|
sl@0
|
280 |
KErrArgument if the maximum number of cached features
|
sl@0
|
281 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
282 |
session has been exceeded, or when "out of memory"
|
sl@0
|
283 |
occured in a previous call to this function during
|
sl@0
|
284 |
the caching process.
|
sl@0
|
285 |
KErrNoMemory if out-of-memory occured during caching.
|
sl@0
|
286 |
Otherwise one of the Symbian error codes.
|
sl@0
|
287 |
|
sl@0
|
288 |
@see TFeatureEntry
|
sl@0
|
289 |
@see TFeatureFlags
|
sl@0
|
290 |
*/
|
sl@0
|
291 |
IMPORT_C TInt AddFeature( TFeatureEntry& aFeature );
|
sl@0
|
292 |
|
sl@0
|
293 |
/**
|
sl@0
|
294 |
Deletes a feature.
|
sl@0
|
295 |
Note: WriteDeviceData capability required.
|
sl@0
|
296 |
|
sl@0
|
297 |
@param aFeature Feature UID.
|
sl@0
|
298 |
@return Error Code. KErrNone if the feature was successfully deleted.
|
sl@0
|
299 |
KErrAccessDenied if the feature is not runtime.
|
sl@0
|
300 |
KErrPermissionDenied if capability check fails.
|
sl@0
|
301 |
KErrNotFound if the feature does not exist.
|
sl@0
|
302 |
KErrArgument if the maximum number of cached features
|
sl@0
|
303 |
during a Software Installer (SWI) install/uninstall
|
sl@0
|
304 |
session has been exceeded.
|
sl@0
|
305 |
KErrNoMemory if out-of-memory occured during caching.
|
sl@0
|
306 |
Otherwise one of the Symbian error codes.
|
sl@0
|
307 |
|
sl@0
|
308 |
@see TFeatureEntry
|
sl@0
|
309 |
@see TFeatureFlags
|
sl@0
|
310 |
*/
|
sl@0
|
311 |
IMPORT_C TInt DeleteFeature( TUid aFeature );
|
sl@0
|
312 |
|
sl@0
|
313 |
/**
|
sl@0
|
314 |
Lists all supported features.
|
sl@0
|
315 |
|
sl@0
|
316 |
@param aSupportedFeatures A reference to a client owned RFeatureUidArray array which
|
sl@0
|
317 |
will be filled with the UIDs of supported features.
|
sl@0
|
318 |
@return Error code. KErrNone if client owned array was successfully
|
sl@0
|
319 |
filled with IDs of supported features.
|
sl@0
|
320 |
KErrServerBusy if there was ongoing enabling or
|
sl@0
|
321 |
disabling of some feature(s) and Feature Manager Server
|
sl@0
|
322 |
could not return unambiguous list of supported features.
|
sl@0
|
323 |
KErrNoMemory if out-of-memory occured during caching.
|
sl@0
|
324 |
Otherwise one of the Symbian error codes.
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
IMPORT_C TInt ListSupportedFeatures( RFeatureUidArray& aSupportedFeatures );
|
sl@0
|
327 |
|
sl@0
|
328 |
/**
|
sl@0
|
329 |
Calling this method informs Feature Manager that a software installer (SWI)
|
sl@0
|
330 |
launched executable is going to set, add, delete, enable or disable features
|
sl@0
|
331 |
in Feature Manager. This mandates Feature Manager to cache all modification
|
sl@0
|
332 |
calls issued by that executable until a call to SWIEnd is made to commit them
|
sl@0
|
333 |
to Feature Manager. This prevents against situations where the installation is
|
sl@0
|
334 |
user-aborted without being able to roll back direct feature manipulations.
|
sl@0
|
335 |
|
sl@0
|
336 |
@return Error code. KErrNone if Feature Manager has accepted the request to use
|
sl@0
|
337 |
the caching APIs.
|
sl@0
|
338 |
KErrInUse if the caching APIs are already in use by another
|
sl@0
|
339 |
exe launched by the SWI.
|
sl@0
|
340 |
KErrNotReady if there is no software installation in progress.
|
sl@0
|
341 |
*/
|
sl@0
|
342 |
IMPORT_C TInt SWIStart();
|
sl@0
|
343 |
|
sl@0
|
344 |
/**
|
sl@0
|
345 |
Mandates Feature Manager to stop caching and prepare to commit the cached
|
sl@0
|
346 |
feature manipulations performed by the executable launched by SWI during
|
sl@0
|
347 |
installation into Feature Manager. The cached features are committed only
|
sl@0
|
348 |
after that installation of the executable is successfully completed.
|
sl@0
|
349 |
This API must be called before a timeout managed by Feature Manager times
|
sl@0
|
350 |
out. Otherwise the cached features will be dumped.
|
sl@0
|
351 |
|
sl@0
|
352 |
@return Error code. KErrNone when SWIEnd call is received by a client or when an abort occurs
|
sl@0
|
353 |
prior to the timeout managed by Feature Manager expires.
|
sl@0
|
354 |
KErrNotReady if SWIStart was not called before calling this
|
sl@0
|
355 |
function, or because the timeout managed by Feature Manager
|
sl@0
|
356 |
had timed out.
|
sl@0
|
357 |
KErrGeneral an indication that an out-of-memory condition
|
sl@0
|
358 |
was encountered during caching which will force FeatMgr to
|
sl@0
|
359 |
disregard the whole cache.
|
sl@0
|
360 |
KErrNoMemory if an out-of-memory condition was encountered
|
sl@0
|
361 |
whilst reserving memory in the features list for the new
|
sl@0
|
362 |
features t be added, or if an out-of-memory occured in a call
|
sl@0
|
363 |
to AddFeaure() during caching..
|
sl@0
|
364 |
Otherwise one of the Symbian error codes.
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
IMPORT_C TInt SWIEnd();
|
sl@0
|
367 |
|
sl@0
|
368 |
private:
|
sl@0
|
369 |
|
sl@0
|
370 |
/**
|
sl@0
|
371 |
Used for resource counting.
|
sl@0
|
372 |
*/
|
sl@0
|
373 |
TBool iInitialized;
|
sl@0
|
374 |
|
sl@0
|
375 |
/**
|
sl@0
|
376 |
Reserved for future use. Initialised to 0 on construction.
|
sl@0
|
377 |
*/
|
sl@0
|
378 |
TUint32 iReserved1;
|
sl@0
|
379 |
|
sl@0
|
380 |
/**
|
sl@0
|
381 |
Reserved for future use. Initialised to 0 on construction.
|
sl@0
|
382 |
*/
|
sl@0
|
383 |
TUint32 iReserved2;
|
sl@0
|
384 |
|
sl@0
|
385 |
};
|
sl@0
|
386 |
|
sl@0
|
387 |
/**
|
sl@0
|
388 |
@code
|
sl@0
|
389 |
// replace <featureUID> with a real UID )
|
sl@0
|
390 |
|
sl@0
|
391 |
#include <featmgr/featurecontrol.h>
|
sl@0
|
392 |
#include <featmgr/featureinfo.h> // for feature definitions
|
sl@0
|
393 |
|
sl@0
|
394 |
CMyClass::MyMethodL()
|
sl@0
|
395 |
{
|
sl@0
|
396 |
// Replace KFeatureUidx with real feature uid.
|
sl@0
|
397 |
// Open() must be called before calling any other methods.
|
sl@0
|
398 |
// Disconnect is done by calling the Close() method.
|
sl@0
|
399 |
RFeatureControl featureControl;
|
sl@0
|
400 |
TInt err = featureControl.Open();
|
sl@0
|
401 |
|
sl@0
|
402 |
if ( err == KErrNone )
|
sl@0
|
403 |
{
|
sl@0
|
404 |
// Query multiple features statuses (single IPC-call, so less overhead)
|
sl@0
|
405 |
|
sl@0
|
406 |
RFeatureArray uids;
|
sl@0
|
407 |
CleanupClosePushL(uids);
|
sl@0
|
408 |
|
sl@0
|
409 |
uids.AppendL( KFeatureUid1 );
|
sl@0
|
410 |
uids.AppendL( KFeatureUid2 );
|
sl@0
|
411 |
TInt err = control.FeaturesSupported( uids );
|
sl@0
|
412 |
|
sl@0
|
413 |
if ( err == KErrNone )
|
sl@0
|
414 |
{
|
sl@0
|
415 |
TInt index;
|
sl@0
|
416 |
|
sl@0
|
417 |
index = uids.Find( KFeatureUid1 );
|
sl@0
|
418 |
if(index == KErrNotFound)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
// Feature does not exist (result is analogous if KFeatureUid1
|
sl@0
|
421 |
// is not appended in uids array before query).
|
sl@0
|
422 |
}
|
sl@0
|
423 |
else
|
sl@0
|
424 |
{
|
sl@0
|
425 |
iFeature1Supported = uids[index].FeatureFlags().IsSet( EFeatureSupported );
|
sl@0
|
426 |
}
|
sl@0
|
427 |
|
sl@0
|
428 |
index = uids.Find( KFeatureUid2 );
|
sl@0
|
429 |
if(index == KErrNotFound)
|
sl@0
|
430 |
{
|
sl@0
|
431 |
// Feature does not exist (result is analogous if KFeatureUid2
|
sl@0
|
432 |
// is not appended in uids array before query).
|
sl@0
|
433 |
}
|
sl@0
|
434 |
else
|
sl@0
|
435 |
{
|
sl@0
|
436 |
TBool feature2Supported = uids[index].FeatureFlags().IsSet( EFeatureSupported );
|
sl@0
|
437 |
TUint32 data = uids[index].FeatureData();
|
sl@0
|
438 |
// Do something with support-information and data
|
sl@0
|
439 |
...
|
sl@0
|
440 |
}
|
sl@0
|
441 |
}
|
sl@0
|
442 |
CleanupStack::PopAndDestroy(&uids);
|
sl@0
|
443 |
|
sl@0
|
444 |
|
sl@0
|
445 |
// Query single feature status
|
sl@0
|
446 |
|
sl@0
|
447 |
err = control.FeatureSupported( KFeatureUid3 );
|
sl@0
|
448 |
if( err == KFeatureSupported )
|
sl@0
|
449 |
{
|
sl@0
|
450 |
// do something with enabled feature
|
sl@0
|
451 |
}
|
sl@0
|
452 |
|
sl@0
|
453 |
|
sl@0
|
454 |
// Query single feature status and data
|
sl@0
|
455 |
|
sl@0
|
456 |
TFeatureEntry entry( KFeatureUid4 );
|
sl@0
|
457 |
err = control.FeatureSupported( entry );
|
sl@0
|
458 |
if( err == KFeatureSupported )
|
sl@0
|
459 |
{
|
sl@0
|
460 |
TUint32 data = entry.FeatureData();
|
sl@0
|
461 |
// do something with enabled feature's data
|
sl@0
|
462 |
}
|
sl@0
|
463 |
else if( err == KFeatureUnsupported )
|
sl@0
|
464 |
{
|
sl@0
|
465 |
// do or do not something with disabled feature's data
|
sl@0
|
466 |
}
|
sl@0
|
467 |
|
sl@0
|
468 |
|
sl@0
|
469 |
// Enable some feature.
|
sl@0
|
470 |
|
sl@0
|
471 |
// EnableFeature() and DisableFeature() methods return
|
sl@0
|
472 |
// KErrNone if the feature was succesfully enabled or disabled,
|
sl@0
|
473 |
// KErrAccessDenied if the feature is not modifiable.
|
sl@0
|
474 |
// KErrPermissionDenied a capability check fails,
|
sl@0
|
475 |
// KErrNotFound if the feature does not exist and
|
sl@0
|
476 |
// otherwise one of the Symbian error codes.
|
sl@0
|
477 |
err = featureControl.EnableFeature( <featureUID> );
|
sl@0
|
478 |
|
sl@0
|
479 |
// do something
|
sl@0
|
480 |
|
sl@0
|
481 |
|
sl@0
|
482 |
// List all supported features.
|
sl@0
|
483 |
|
sl@0
|
484 |
// A client owned RFeatureUidArray array which will be filled with
|
sl@0
|
485 |
// the UIDs of supported features.
|
sl@0
|
486 |
RFeatureUidArray supportedFeatures;
|
sl@0
|
487 |
|
sl@0
|
488 |
// ListSupportedFeatures() returns one of the Symbian error codes.
|
sl@0
|
489 |
err = featureControl.ListSupportedFeatures( supportedFeatures );
|
sl@0
|
490 |
|
sl@0
|
491 |
// do something
|
sl@0
|
492 |
|
sl@0
|
493 |
// Closes the array and frees all memory allocated to the array.
|
sl@0
|
494 |
supportedFeatures.Close();
|
sl@0
|
495 |
|
sl@0
|
496 |
|
sl@0
|
497 |
// Remember to call CloseL after using RFeatureControl.
|
sl@0
|
498 |
// It disconnects the Feature Manager server.
|
sl@0
|
499 |
featureControl.Close();
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
}
|
sl@0
|
503 |
@endcode
|
sl@0
|
504 |
*/
|
sl@0
|
505 |
|
sl@0
|
506 |
#endif // FEATURECONTROL_H
|
sl@0
|
507 |
|
sl@0
|
508 |
// End of File
|