sl@0: /* sl@0: * Copyright (c) 2007-2010 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: #ifndef FEATMGRFEATUREREGISTRY_H sl@0: #define FEATMGRFEATUREREGISTRY_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "featmgrfeatureentry.h" sl@0: #include "swilistener.h" sl@0: sl@0: // FORWARD DECLARATIONS sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: class MFeatMgrRegistryObserver sl@0: { sl@0: public: sl@0: virtual void HandleFeatureChange( TFeatureServerEntry& aFeature, sl@0: TFeatureChangeType aType ) = 0; sl@0: }; sl@0: sl@0: // CLASS DECLARATION sl@0: NONSHARABLE_CLASS(CFeatMgrFeatureRegistry) : public CBase, MSWICallBack sl@0: { sl@0: private: sl@0: sl@0: /* sl@0: * Status for SWI which must be kept in memory in order for calls made to the new sl@0: * API functions SWIStart and SWIEnd can be related to actual installation/uninstallation. sl@0: * sl@0: * ESWIOutOfMemory will inform FeatMgr that an out-of-memory condition has occurred during sl@0: * caching and/or memory pre-allocation for the new features to be added. sl@0: */ sl@0: enum TSWIStatus sl@0: { sl@0: ESWIComplete=0, sl@0: ESWIInstalling, sl@0: ESWIAborted, sl@0: ESWIOutOfMemory sl@0: }; sl@0: sl@0: /* sl@0: * Enumerations to identify the category of the operation to apply on the cached sl@0: * features after SWI completes. sl@0: */ sl@0: enum TSWIOperationCat sl@0: { sl@0: ESWIAddFeat, sl@0: ESWIDeleteFeat, sl@0: ESWISetFeatAndData, sl@0: ESWISetFeatData, sl@0: ESWISetFeat sl@0: }; sl@0: sl@0: /* sl@0: * The operation tuple to be cached sl@0: */ sl@0: struct TSWICachedOperation sl@0: { sl@0: TSWIOperationCat iCat; sl@0: TFeatureServerEntry iFeatEntry; sl@0: }; sl@0: sl@0: public: sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: */ sl@0: static CFeatMgrFeatureRegistry* NewL( RFs& aFs, MFeatMgrRegistryObserver& aObserver ); sl@0: sl@0: /** sl@0: * Destructor. sl@0: */ sl@0: virtual ~CFeatMgrFeatureRegistry(); sl@0: sl@0: public: sl@0: sl@0: /** sl@0: * Reads feature files. sl@0: */ sl@0: void ReadFeatureFilesL(); sl@0: sl@0: /** sl@0: * Reads runtime feature file. sl@0: */ sl@0: void ReadRuntimeFeaturesL( TBool &aFeaturesReady ); sl@0: sl@0: /** sl@0: * Merges features to common feature array from plugin. sl@0: */ sl@0: void MergePluginFeaturesL( RArray& aList ); sl@0: sl@0: /** sl@0: * Merges features to common feature array from plugin. sl@0: */ sl@0: void MergePluginFeaturesL( RFeatureArray& aList ); sl@0: sl@0: /** sl@0: * Returns feature support status. sl@0: */ sl@0: TInt IsFeatureSupported( TFeatureServerEntry& aFeature ); sl@0: sl@0: /** sl@0: * Adds feature. sl@0: * @param aFeature A reference to a client owned TFeatureEntry object sl@0: * @param aProcessId The id of the process calling this function. This is needed to identify sl@0: * the executable launched by Software Installer (SWI) and cache its to-be sl@0: * added features. The default value for aProcessId enables other clients to sl@0: * add features directly to the list (allowing backward compatibility). sl@0: * When set to ETrue the function sl@0: */ sl@0: TInt AddFeature( TFeatureServerEntry& aFeature, TUint aProcessId = 0 ); sl@0: sl@0: /** sl@0: * Deletes feature. sl@0: */ sl@0: TInt DeleteFeature( TUid aFeature, TUint = 0 ); sl@0: sl@0: /** sl@0: * Sets feature support status and optionally data. sl@0: */ sl@0: TInt SetFeature( TUid aFeature, TInt aEnable, const TUint32 *aData = NULL, TUint = 0 ); sl@0: sl@0: /** sl@0: * Lists supported features to array. sl@0: */ sl@0: void SupportedFeaturesL( RFeatureUidArray& aSupportedFeatures ); sl@0: sl@0: /** sl@0: * Returns number of supported features. sl@0: */ sl@0: TInt NumberOfSupportedFeatures(); sl@0: sl@0: /** sl@0: * Make a backup of the feature list into member iFeatureListBackup, then reset sl@0: * the feature list iFeatureList. sl@0: * sl@0: * Leaves if there is an error during back up, with KErrNoMemory or any of the sl@0: * other system-wide error codes. sl@0: */ sl@0: void ResetFeaturesL(); sl@0: sl@0: /** sl@0: * This function will handle the required notifications for new, deleted and changed features sl@0: * after a restore operation has taken place. sl@0: */ sl@0: void HandleRestoredFeatureNotificationsL(); sl@0: sl@0: /** sl@0: * Returns the fully qualified path and filename for the runtime feature data file. sl@0: */ sl@0: TFileName GetFeaturesFilePathAndName( void ); sl@0: sl@0: /** sl@0: * Indicates that SWI started. It takes the Id of the process calling it as a parameter. sl@0: */ sl@0: TInt SWIStart(TUint); sl@0: sl@0: /** sl@0: * Indicates that SWI ended. It takes the Id of the process calling it as a parameter. sl@0: */ sl@0: TInt SWIEnd(TUint); sl@0: sl@0: /** sl@0: * Add a new command to the cache. sl@0: * sl@0: * @return error KErrArgument if the maximum number of cached features is reached. sl@0: * KErrNoMemory if there is no memory to create a new command to cached, sl@0: * or if an out-of-memory condition has occured during caching. sl@0: */ sl@0: TInt SWICacheCommand(TSWIOperationCat aOptCat, TFeatureServerEntry aFeature); sl@0: sl@0: /** sl@0: * Commit changes for the cached features into feature manager. sl@0: */ sl@0: void CommitSWIFeatChanges(); sl@0: sl@0: /** sl@0: * Reset and clean up SWI-related states and member variables. sl@0: */ sl@0: void SWIReset(); sl@0: sl@0: /* sl@0: * Handle the case when SWI aborts. sl@0: */ sl@0: void SWIAborted(); sl@0: sl@0: /* sl@0: * Virtual function from MSWICallBack. sl@0: * It is fired when the timer runs out to indicate that SWI finished before a call to sl@0: * SWIEnd or the launched executable crashed or hanged. It will deal with rolling-back sl@0: * all cached changes. It is called after 15 seconds. sl@0: */ sl@0: void SWITimedOut(); sl@0: sl@0: /* sl@0: * Return the status of the caching mechanism (started or not). sl@0: */ sl@0: TBool SWICacheStarted(); sl@0: sl@0: /* sl@0: * Returns the status of the caching mechanism (successful, aborted, out-of-memory). sl@0: */ sl@0: TBool SWICacheStatusOOM(); sl@0: sl@0: private: sl@0: sl@0: CFeatMgrFeatureRegistry( RFs& aFs, MFeatMgrRegistryObserver& aObserver ); sl@0: void ConstructL(); sl@0: sl@0: TInt ReadFiles( const TDesC& aFilePath, CDir* aDir ); sl@0: void ReadFileL( const TDesC& aFilePath ); sl@0: void CompareFeatureListsL(); sl@0: void ReadFilesFromDirL( const TDesC& aDirName ); sl@0: void UpdateRuntimeFeaturesFileL( TFeatureServerEntry& aFeature, TFeatureChangeType aType ); sl@0: sl@0: TInt HandleChange( TFeatureServerEntry& aFeature, TFeatureChangeType aType ); sl@0: TInt ValidateFeature( TUid aFeature, TInt &aIndex ); sl@0: TInt SearchFeature( TUid aFeature ); sl@0: TInt EnableFeature( TUid aFeature ); sl@0: TInt DisableFeature( TUid aFeature ); sl@0: TBool IsFlagSet( TInt aIndex, TFeatureFlags aFlag ); sl@0: static TInt FindByUid( const TUid *aFeature, const TFeatureServerEntry& aItem ); sl@0: static TInt FindByUid( const TFeatureServerEntry& aFeature, sl@0: const TFeatureServerEntry& aItem ); sl@0: void ValidateHeaderL( RFileReadStream& stream, TUint32& count, TUint32& countDSRs ); sl@0: void WriteHeaderAndEntriesL( RFileWriteStream &aStream, RFeatureServerArray& aArray ); sl@0: void ValidateFeatureFlagL(TBitFlags32 aFlags); sl@0: void ValidateRuntimeFeatureFlagL(TBitFlags32 aFlags); sl@0: sl@0: private: sl@0: sl@0: // Observer of feature changes sl@0: MFeatMgrRegistryObserver& iObserver; sl@0: // Array of features sl@0: RArray iFeatureList; sl@0: // Struct to contain information of default supported ranges sl@0: class TDefaultRange sl@0: { sl@0: public: sl@0: TUid iLowUid; sl@0: TUid iHighUid; sl@0: }; sl@0: // Array of supported ranges sl@0: RArray iRangeList; sl@0: // File server session sl@0: RFs& iFs; sl@0: sl@0: // Array of features (backup up for BUR) sl@0: RArray iFeatureListBackup; sl@0: sl@0: // Flag to tell feature manager to cache newly modified features during SWI. sl@0: TBool iSWICacheFeature; sl@0: // Tracks the SWI status to check if an installation/uninstallation is in progress before sl@0: // starting caching. sl@0: TSWIStatus iSWIStatus; sl@0: // Array that holds the operations to apply on cached features when SWI ends. sl@0: RArray iSWICachedOperations; sl@0: // Id of the process launched by SWI whose commands to feature manager are to be cached. sl@0: TUint iSWIProcessId; sl@0: // Listens to the SWI P&S property KSAUidSoftwareInstallKeyValue sl@0: CSWIListener* iSWIListener; sl@0: // Timer to handle the situation when the launched exe by SWI manipulates features and then sl@0: // hangs/crashes, or a call to SWIEnd was not made. sl@0: CSWITimer* iSWITimer; sl@0: // Traces if an "out-of-memory" condition has occurred during caching. If so, FeatMgr will sl@0: // not commit the cache when the installation is successful. It will be disregarded. sl@0: TBool iOomOccured; sl@0: // Counts the number of features allowed to be cached during SWI install/uninstall. sl@0: // The maximum is set to 50 (MAXSWIOPS) sl@0: TInt iSWIOperations; sl@0: // Counts how many AddFeature commands are cached during SWI sl@0: TInt iAddFeatCount; sl@0: }; sl@0: sl@0: #endif // FEATMGRFEATUREREGISTRY_H sl@0: sl@0: // End of File