sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef FEATURECONTROL_H sl@0: #define FEATURECONTROL_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // FORWARD DECLARATIONS sl@0: sl@0: // DEFINES sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: // CONSTANTS sl@0: sl@0: // MACROS sl@0: sl@0: /** sl@0: sl@0: The Feature Control API provides methods that can be used to query which sl@0: features are supported on the device. The API also provides methods to sl@0: get status flags that define that behaviour of the feature flag and data sl@0: associated with the feature. sl@0: sl@0: The Feature Control API provides methods to enable and disable features at sl@0: runtime e.g. when new software is installed or uninstalled. The API provides sl@0: also methods for setting feature data, adding a new feature to the device sl@0: and listing all supported features on the device. sl@0: sl@0: It is only possible to enable or disable a feature or set feature data sl@0: at runtime if that feature is modifiable (this is defined by the status sl@0: 32 bit word associated with the feature flag). It is also possible to enable or sl@0: disable a feature UID that is not even defined in the device yet. sl@0: When adding a new feature to the device status flags and data of the feature sl@0: must be set. sl@0: sl@0: The meaning of the bits of the 32-bit feature status flags are as follows: sl@0: sl@0: Bit Flag Name Meaning sl@0: - 0 Supported If set, feature is supported and available for use; sl@0: if not, feature is not supported. sl@0: - 1 Upgradeable If set, feature is upgradeable. The feature is known to sl@0: the device but it must be upgraded to enable it. If a feature sl@0: is blacklisted, its upgradeable flag is unset. sl@0: - 2 Modifiable If set, the feature is modifiable and may be enabled/disabled at sl@0: run-time. The initial flag values for such a feature flag are sl@0: defined in a ROM image obey file. sl@0: - 3 Blacklisted If set, the feature has been blacklisted, and may not be changed sl@0: at run-time. This also prevents a feature from being upgraded. sl@0: - 4 Uninitialised If set, the status flag Supported is unknown at build-time and is sl@0: initialised at run-time by system software. The Feature Manager sl@0: will ignore the Supported flag in the file. A run-time call to sl@0: RFeatureControl will be needed to set the feature's supported sl@0: flag. Look ups of uninitialised features result in a KErrNotReady sl@0: error code. sl@0: - 5 Persisted If set, this flag is saved to the system drive when modified sl@0: preserving its value across reboots/power downs sl@0: - 6 ..23 Reserved for future use, always zero. sl@0: - 24..31 Reserved for internal use. sl@0: sl@0: Enumeration TFeatureFlags defined in featurecmn.h should be used for sl@0: accessing feature status flags e.g. flags.IsSet( EFeatureUpgradeable ), sl@0: flags.IsSet( EFeatureModifiable ). sl@0: sl@0: Feature data is 32-bit word for client read and write. Feature data can sl@0: contain any data that needs to be associated with the Feature Flag. sl@0: Feature data can only be set if the feature is modifiable or a new feature. sl@0: sl@0: The use of the Feature Manager API to set the supported status of a feature, sl@0: it in no way means that the functionality itself is modified on the device. sl@0: All the corresponding DLLs, including feature functionality and resources still sl@0: remain on the device. To properly support runtime activation/deactivation sl@0: of the feature, all feature APIs need to implement runtime checking of the sl@0: feature status in their code. sl@0: sl@0: The API consists of the RFeatureControl class which is sl@0: used together with feature UIDs defined in featureUIDs.h, TFeatureFlags, sl@0: TFeatureEntry and RFeatureUidArray defined in featurecmn.h. sl@0: sl@0: sl@0: Usage: sl@0: sl@0: Before calling any other methods the client must call the Open() sl@0: method that connects to the Feature Manager Server. sl@0: When the client has finished using the RFeatureControl it should sl@0: disconnect using the Close() method. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: NONSHARABLE_CLASS(RFeatureControl) sl@0: { sl@0: public: sl@0: /** sl@0: C++ default constructor. sl@0: */ sl@0: IMPORT_C RFeatureControl(); sl@0: sl@0: /** sl@0: Connect() must be called before calling any other methods of sl@0: RFeatureControl. sl@0: It connects to the Feature Manager Server. sl@0: After usage Close() function must be called. sl@0: sl@0: @return Error Code. One of the Symbian error codes. sl@0: sl@0: @deprecated Use Open() instead. sl@0: */ sl@0: IMPORT_C TInt Connect(); sl@0: sl@0: /** sl@0: Open() must be called before calling any other methods of sl@0: RFeatureControl. sl@0: After usage Close() function must be called. sl@0: sl@0: @return Error Code. One of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt Open(); sl@0: sl@0: /** sl@0: Remember to call Close after using RFeatureControl. sl@0: */ sl@0: IMPORT_C void Close(); sl@0: sl@0: /** sl@0: This method returns the supported status on the device of the feature sl@0: specified in the aFeature parameter. sl@0: sl@0: @param aFeature Feature UID. sl@0: @return KFeatureSupported if the feature is supported. sl@0: KFeatureUnsupported if the feature is not supported. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrNotReady it the feature is uninitialized. sl@0: Otherwise one of the Symbian error codes. sl@0: sl@0: sl@0: */ sl@0: IMPORT_C TInt FeatureSupported( TUid aFeature ); sl@0: sl@0: /** sl@0: This method returns the supported status on the device of the feature sl@0: described by the aFeature parameter. The feature UID should be set in sl@0: TFeatureEntry class before the FeatureSupported method is called. If sl@0: FeatureSupported returns successufully the TFeatureEntry parameter will sl@0: also have been populated with the feature's status flags and the data sl@0: word associates with the feature. sl@0: sl@0: @param aFeature A reference to a a client owned TFeatureEntry object. sl@0: Must contain UID of the queried feature. sl@0: After returning contains status flags and data of sl@0: the feature. sl@0: @return KFeatureSupported if the feature is supported. sl@0: KFeatureUnsupported if the feature is not supported. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrNotReady if the feature is uninitialized. sl@0: Otherwise one of the Symbian error codes. sl@0: sl@0: sl@0: */ sl@0: IMPORT_C TInt FeatureSupported( TFeatureEntry& aFeature ); sl@0: sl@0: /** sl@0: This method allows the user to pass an array of type TFeatureEntry sl@0: to Feature Manager. In this way the user can retrieve the supported status and sl@0: associated information for the features whose UIDs have been set in sl@0: TFeatureEntry classes. In order for the client to know whether sl@0: feature is just disabled or does not exist at all it must check sl@0: this from response feature array. If the feature exists the EFeatureSupported sl@0: status bit will contain the support status. If the feature does not exist sl@0: it will be removed from array after the query. For this reason instead of hard sl@0: coding array accesses for features the Find method should always sl@0: be used to query feature index in array after query. sl@0: sl@0: @param aFeatures A reference to a a client owned RFeatureArray array. sl@0: Must contain UIDs of the queried features. sl@0: @return KErrNone if fetching of features statuses successful. sl@0: KErrArgument if query made with empty array. sl@0: Otherwise one of the Symbian error codes. sl@0: sl@0: */ sl@0: IMPORT_C TInt FeaturesSupported( RFeatureArray& aFeatures ); sl@0: sl@0: /** sl@0: Enables the specified feature. WriteDeviceData capability required. sl@0: sl@0: @param aFeature Feature UID. sl@0: @return Error Code. KErrNone if the feature was succesfully enabled. sl@0: KErrAccessDenied if the feature is not modifiable. sl@0: KErrPermissionDenied if a capability check fails. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt EnableFeature( TUid aFeature ); sl@0: sl@0: /** sl@0: Disables the specified feature. WriteDeviceData capability required. sl@0: sl@0: @param aFeature Feature UID. sl@0: @return Error Code. KErrNone if the feature was succesfully disabled. sl@0: KErrAccessDenied if the feature is not modifiable. sl@0: KErrPermissionDenied if a capability check fails. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt DisableFeature( TUid aFeature ); sl@0: sl@0: /** sl@0: Enables or disables the specified feature and sets feature data. sl@0: WriteDeviceData capability required. sl@0: sl@0: @param aFeature Feature UID. sl@0: @param aEnabled ETrue if enabling the feature, EFalse if disabling. sl@0: @param aData Feature data. sl@0: @return Error Code. KErrNone if the feature was succesfully enabled. sl@0: KErrAccessDenied if the feature is not modifiable. sl@0: KErrPermissionDenied if a capability check fails. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt SetFeature( TUid aFeature, TBool aEnabled, TUint32 aData ); sl@0: sl@0: /** sl@0: Sets feature data. WriteDeviceData capability required. sl@0: sl@0: @param aFeature Feature UID. sl@0: @param aData Feature data. sl@0: @return Error Code. KErrNone if the feature data was succesfully set. sl@0: KErrAccessDenied if the feature is not modifiable. sl@0: KErrPermissionDenied if a capability check fails. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt SetFeature( TUid aFeature, TUint32 aData ); sl@0: sl@0: /** sl@0: Adds a new feature and sets status flags and data of the feature. sl@0: Note: When adding a new feature to the device status flags and sl@0: data of the feature must be set. WriteDeviceData capability required. sl@0: sl@0: @param aFeature A reference to a client owned TFeatureEntry object. sl@0: Must contain UID, status flags and data of the feature. sl@0: @return Error Code. KErrNone if the feature was succesfully added. sl@0: KErrPermissionDenied if capability check fails. sl@0: KErrAlreadyExists if the feature already exists sl@0: in the device. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded, or when "out of memory" sl@0: occured in a previous call to this function during sl@0: the caching process. sl@0: KErrNoMemory if out-of-memory occured during caching. sl@0: Otherwise one of the Symbian error codes. sl@0: sl@0: @see TFeatureEntry sl@0: @see TFeatureFlags sl@0: */ sl@0: IMPORT_C TInt AddFeature( TFeatureEntry& aFeature ); sl@0: sl@0: /** sl@0: Deletes a feature. sl@0: Note: WriteDeviceData capability required. sl@0: sl@0: @param aFeature Feature UID. sl@0: @return Error Code. KErrNone if the feature was successfully deleted. sl@0: KErrAccessDenied if the feature is not runtime. sl@0: KErrPermissionDenied if capability check fails. sl@0: KErrNotFound if the feature does not exist. sl@0: KErrArgument if the maximum number of cached features sl@0: during a Software Installer (SWI) install/uninstall sl@0: session has been exceeded. sl@0: KErrNoMemory if out-of-memory occured during caching. sl@0: Otherwise one of the Symbian error codes. sl@0: sl@0: @see TFeatureEntry sl@0: @see TFeatureFlags sl@0: */ sl@0: IMPORT_C TInt DeleteFeature( TUid aFeature ); sl@0: sl@0: /** sl@0: Lists all supported features. sl@0: sl@0: @param aSupportedFeatures A reference to a client owned RFeatureUidArray array which sl@0: will be filled with the UIDs of supported features. sl@0: @return Error code. KErrNone if client owned array was successfully sl@0: filled with IDs of supported features. sl@0: KErrServerBusy if there was ongoing enabling or sl@0: disabling of some feature(s) and Feature Manager Server sl@0: could not return unambiguous list of supported features. sl@0: KErrNoMemory if out-of-memory occured during caching. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt ListSupportedFeatures( RFeatureUidArray& aSupportedFeatures ); sl@0: sl@0: /** sl@0: Calling this method informs Feature Manager that a software installer (SWI) sl@0: launched executable is going to set, add, delete, enable or disable features sl@0: in Feature Manager. This mandates Feature Manager to cache all modification sl@0: calls issued by that executable until a call to SWIEnd is made to commit them sl@0: to Feature Manager. This prevents against situations where the installation is sl@0: user-aborted without being able to roll back direct feature manipulations. sl@0: sl@0: @return Error code. KErrNone if Feature Manager has accepted the request to use sl@0: the caching APIs. sl@0: KErrInUse if the caching APIs are already in use by another sl@0: exe launched by the SWI. sl@0: KErrNotReady if there is no software installation in progress. sl@0: */ sl@0: IMPORT_C TInt SWIStart(); sl@0: sl@0: /** sl@0: Mandates Feature Manager to stop caching and prepare to commit the cached sl@0: feature manipulations performed by the executable launched by SWI during sl@0: installation into Feature Manager. The cached features are committed only sl@0: after that installation of the executable is successfully completed. sl@0: This API must be called before a timeout managed by Feature Manager times sl@0: out. Otherwise the cached features will be dumped. sl@0: sl@0: @return Error code. KErrNone when SWIEnd call is received by a client or when an abort occurs sl@0: prior to the timeout managed by Feature Manager expires. sl@0: KErrNotReady if SWIStart was not called before calling this sl@0: function, or because the timeout managed by Feature Manager sl@0: had timed out. sl@0: KErrGeneral an indication that an out-of-memory condition sl@0: was encountered during caching which will force FeatMgr to sl@0: disregard the whole cache. sl@0: KErrNoMemory if an out-of-memory condition was encountered sl@0: whilst reserving memory in the features list for the new sl@0: features t be added, or if an out-of-memory occured in a call sl@0: to AddFeaure() during caching.. sl@0: Otherwise one of the Symbian error codes. sl@0: */ sl@0: IMPORT_C TInt SWIEnd(); sl@0: sl@0: private: sl@0: sl@0: /** sl@0: Used for resource counting. sl@0: */ sl@0: TBool iInitialized; sl@0: sl@0: /** sl@0: Reserved for future use. Initialised to 0 on construction. sl@0: */ sl@0: TUint32 iReserved1; sl@0: sl@0: /** sl@0: Reserved for future use. Initialised to 0 on construction. sl@0: */ sl@0: TUint32 iReserved2; sl@0: sl@0: }; sl@0: sl@0: /** sl@0: @code sl@0: // replace with a real UID ) sl@0: sl@0: #include sl@0: #include // for feature definitions sl@0: sl@0: CMyClass::MyMethodL() sl@0: { sl@0: // Replace KFeatureUidx with real feature uid. sl@0: // Open() must be called before calling any other methods. sl@0: // Disconnect is done by calling the Close() method. sl@0: RFeatureControl featureControl; sl@0: TInt err = featureControl.Open(); sl@0: sl@0: if ( err == KErrNone ) sl@0: { sl@0: // Query multiple features statuses (single IPC-call, so less overhead) sl@0: sl@0: RFeatureArray uids; sl@0: CleanupClosePushL(uids); sl@0: sl@0: uids.AppendL( KFeatureUid1 ); sl@0: uids.AppendL( KFeatureUid2 ); sl@0: TInt err = control.FeaturesSupported( uids ); sl@0: sl@0: if ( err == KErrNone ) sl@0: { sl@0: TInt index; sl@0: sl@0: index = uids.Find( KFeatureUid1 ); sl@0: if(index == KErrNotFound) sl@0: { sl@0: // Feature does not exist (result is analogous if KFeatureUid1 sl@0: // is not appended in uids array before query). sl@0: } sl@0: else sl@0: { sl@0: iFeature1Supported = uids[index].FeatureFlags().IsSet( EFeatureSupported ); sl@0: } sl@0: sl@0: index = uids.Find( KFeatureUid2 ); sl@0: if(index == KErrNotFound) sl@0: { sl@0: // Feature does not exist (result is analogous if KFeatureUid2 sl@0: // is not appended in uids array before query). sl@0: } sl@0: else sl@0: { sl@0: TBool feature2Supported = uids[index].FeatureFlags().IsSet( EFeatureSupported ); sl@0: TUint32 data = uids[index].FeatureData(); sl@0: // Do something with support-information and data sl@0: ... sl@0: } sl@0: } sl@0: CleanupStack::PopAndDestroy(&uids); sl@0: sl@0: sl@0: // Query single feature status sl@0: sl@0: err = control.FeatureSupported( KFeatureUid3 ); sl@0: if( err == KFeatureSupported ) sl@0: { sl@0: // do something with enabled feature sl@0: } sl@0: sl@0: sl@0: // Query single feature status and data sl@0: sl@0: TFeatureEntry entry( KFeatureUid4 ); sl@0: err = control.FeatureSupported( entry ); sl@0: if( err == KFeatureSupported ) sl@0: { sl@0: TUint32 data = entry.FeatureData(); sl@0: // do something with enabled feature's data sl@0: } sl@0: else if( err == KFeatureUnsupported ) sl@0: { sl@0: // do or do not something with disabled feature's data sl@0: } sl@0: sl@0: sl@0: // Enable some feature. sl@0: sl@0: // EnableFeature() and DisableFeature() methods return sl@0: // KErrNone if the feature was succesfully enabled or disabled, sl@0: // KErrAccessDenied if the feature is not modifiable. sl@0: // KErrPermissionDenied a capability check fails, sl@0: // KErrNotFound if the feature does not exist and sl@0: // otherwise one of the Symbian error codes. sl@0: err = featureControl.EnableFeature( ); sl@0: sl@0: // do something sl@0: sl@0: sl@0: // List all supported features. sl@0: sl@0: // A client owned RFeatureUidArray array which will be filled with sl@0: // the UIDs of supported features. sl@0: RFeatureUidArray supportedFeatures; sl@0: sl@0: // ListSupportedFeatures() returns one of the Symbian error codes. sl@0: err = featureControl.ListSupportedFeatures( supportedFeatures ); sl@0: sl@0: // do something sl@0: sl@0: // Closes the array and frees all memory allocated to the array. sl@0: supportedFeatures.Close(); sl@0: sl@0: sl@0: // Remember to call CloseL after using RFeatureControl. sl@0: // It disconnects the Feature Manager server. sl@0: featureControl.Close(); sl@0: } sl@0: sl@0: } sl@0: @endcode sl@0: */ sl@0: sl@0: #endif // FEATURECONTROL_H sl@0: sl@0: // End of File