os/persistentdata/featuremgmt/featuremgr/src/serverexe/featmgrfeatureregistry.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 #ifndef FEATMGRFEATUREREGISTRY_H
    22 #define FEATMGRFEATUREREGISTRY_H
    23 
    24 //  INCLUDES
    25 #include <e32svr.h>
    26 #include <s32file.h>
    27 #include <featmgr/featurecmn.h>
    28 #include <featmgr/featureinfoplugin.h>
    29 #include "featmgrfeatureentry.h"
    30 #include "swilistener.h"
    31 
    32 // FORWARD DECLARATIONS
    33 
    34 // CLASS DECLARATION
    35 
    36 class MFeatMgrRegistryObserver
    37     {
    38     public:
    39         virtual void HandleFeatureChange( TFeatureServerEntry& aFeature, 
    40             TFeatureChangeType aType ) = 0;
    41     };
    42 
    43 // CLASS DECLARATION
    44 NONSHARABLE_CLASS(CFeatMgrFeatureRegistry) : public CBase, MSWICallBack
    45     {
    46     private:
    47 	
    48     	/* 
    49     	* Status for SWI which must be kept in memory in order for calls made to the new
    50     	* API functions SWIStart and SWIEnd can be related to actual installation/uninstallation.
    51     	* 
    52     	* ESWIOutOfMemory will inform FeatMgr that an out-of-memory condition has occurred during
    53     	* caching and/or memory pre-allocation for the new features to be added.
    54     	*/
    55     	enum TSWIStatus
    56 	    	{
    57 	    	ESWIComplete=0,
    58 	    	ESWIInstalling,
    59 	    	ESWIAborted,
    60 	    	ESWIOutOfMemory 
    61 	    	};
    62     	
    63 	    /*
    64 	    * Enumerations to identify the category of the operation to apply on the cached 
    65 	    * features after SWI completes.
    66 	    */
    67 		enum TSWIOperationCat
    68 			{ 
    69 			ESWIAddFeat,
    70 			ESWIDeleteFeat,
    71 			ESWISetFeatAndData,
    72 			ESWISetFeatData,
    73 			ESWISetFeat
    74 			};
    75 		
    76 		/*
    77 		* The operation tuple to be cached
    78 		*/
    79 		struct TSWICachedOperation
    80 			{
    81 			TSWIOperationCat iCat;
    82 			TFeatureServerEntry iFeatEntry;
    83 			};
    84 
    85     public:
    86         
    87         /**
    88         * Two-phased constructor.
    89         */
    90         static CFeatMgrFeatureRegistry* NewL( RFs& aFs, MFeatMgrRegistryObserver& aObserver );
    91 
    92         /**
    93         * Destructor.
    94         */
    95         virtual ~CFeatMgrFeatureRegistry();
    96 
    97     public:
    98            
    99         /**
   100         * Reads feature files.
   101         */
   102         void ReadFeatureFilesL();
   103 
   104         /**
   105         * Reads runtime feature file.
   106         */
   107         void ReadRuntimeFeaturesL( TBool &aFeaturesReady );
   108 
   109         /**
   110         * Merges features to common feature array from plugin.
   111         */
   112         void MergePluginFeaturesL( RArray<FeatureInfoCommand::TFeature>& aList );
   113 
   114         /**
   115         * Merges features to common feature array from plugin.
   116         */
   117         void MergePluginFeaturesL( RFeatureArray& aList );
   118 
   119         /**
   120         * Returns feature support status.
   121         */
   122         TInt IsFeatureSupported( TFeatureServerEntry& aFeature );
   123 
   124         /**
   125         * Adds feature.
   126         * @param aFeature A reference to a client owned TFeatureEntry object
   127         * @param aProcessId The id of the process calling this function. This is needed to identify 
   128         * 					the executable launched by Software Installer (SWI) and cache its to-be
   129         * 					added features. The default value for aProcessId enables other clients to 
   130         * 					add features directly to the list (allowing backward compatibility).
   131         * When set to ETrue the function 
   132         */
   133         TInt AddFeature( TFeatureServerEntry& aFeature, TUint aProcessId = 0 );
   134 
   135         /**
   136         * Deletes feature.
   137         */
   138         TInt DeleteFeature( TUid aFeature, TUint = 0 );
   139 
   140         /**
   141         * Sets feature support status and optionally data.
   142         */
   143         TInt SetFeature( TUid aFeature, TInt aEnable, const TUint32 *aData = NULL, TUint = 0 );
   144 
   145         /**
   146         * Lists supported features to array.
   147         */
   148         void SupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
   149 
   150         /**
   151         * Returns number of supported features.
   152         */
   153         TInt NumberOfSupportedFeatures();
   154         
   155         /**
   156          * Make a backup of the feature list into member iFeatureListBackup, then reset 
   157          * the feature list iFeatureList.
   158 		 *
   159 		 * Leaves if there is an error during back up, with KErrNoMemory or any of the 
   160 		 * other system-wide error codes.
   161          */ 
   162         void ResetFeaturesL();
   163         
   164         /**
   165 		 * This function will handle the required notifications for new, deleted and changed features
   166 		 * after a restore operation has taken place.
   167          */ 
   168         void HandleRestoredFeatureNotificationsL();
   169         
   170         /**
   171 		 * Returns the fully qualified path and filename for the runtime feature data file.
   172          */ 
   173         TFileName GetFeaturesFilePathAndName( void );
   174 
   175         /**
   176         * Indicates that SWI started. It takes the Id of the process calling it as a parameter.
   177         */
   178         TInt SWIStart(TUint);
   179         
   180         /**
   181         * Indicates that SWI ended. It takes the Id of the process calling it as a parameter.
   182         */
   183         TInt SWIEnd(TUint);
   184         
   185         /**
   186          * Add a new command to the cache.
   187          * 
   188          * @return error KErrArgument if the maximum number of cached features is reached.
   189          * 				 KErrNoMemory if there is no memory to create a new command to cached,
   190          * 							  or if an out-of-memory condition has occured during caching.
   191          */
   192          TInt SWICacheCommand(TSWIOperationCat aOptCat, TFeatureServerEntry aFeature);
   193         
   194         /**
   195         * Commit changes for the cached features into feature manager.
   196         */
   197         void CommitSWIFeatChanges();
   198         
   199         /**
   200         * Reset and clean up SWI-related states and member variables.
   201         */
   202         void SWIReset();
   203 
   204         /*
   205         * Handle the case when SWI aborts.
   206         */
   207         void SWIAborted();
   208         
   209         /*
   210         * Virtual function from MSWICallBack.
   211         * It is fired when the timer runs out to indicate that SWI finished before a call to 
   212         * SWIEnd or the launched executable crashed or hanged. It will deal with rolling-back 
   213         * all cached changes. It is called after 15 seconds.
   214         */
   215         void SWITimedOut();
   216         
   217         /*
   218         * Return the status of the caching mechanism (started or not).
   219         */
   220         TBool SWICacheStarted();
   221         
   222         /*
   223         * Returns the status of the caching mechanism (successful, aborted, out-of-memory).
   224         */
   225         TBool SWICacheStatusOOM();
   226         
   227     private:
   228 
   229         CFeatMgrFeatureRegistry( RFs& aFs, MFeatMgrRegistryObserver& aObserver );
   230         void ConstructL();
   231         
   232         TInt ReadFiles( const TDesC& aFilePath, CDir* aDir );
   233         void ReadFileL( const TDesC& aFilePath );
   234         void CompareFeatureListsL();
   235         void ReadFilesFromDirL( const TDesC& aDirName );
   236         void UpdateRuntimeFeaturesFileL( TFeatureServerEntry& aFeature, TFeatureChangeType aType );
   237 
   238         TInt HandleChange( TFeatureServerEntry& aFeature, TFeatureChangeType aType );
   239         TInt ValidateFeature( TUid aFeature, TInt &aIndex );
   240         TInt SearchFeature( TUid aFeature );
   241         TInt EnableFeature( TUid aFeature );
   242         TInt DisableFeature( TUid aFeature );
   243         TBool IsFlagSet( TInt aIndex, TFeatureFlags aFlag );
   244         static TInt FindByUid( const TUid *aFeature, const TFeatureServerEntry& aItem );
   245         static TInt FindByUid( const TFeatureServerEntry& aFeature, 
   246         const TFeatureServerEntry& aItem );
   247         void ValidateHeaderL( RFileReadStream& stream, TUint32& count, TUint32& countDSRs );
   248         void WriteHeaderAndEntriesL( RFileWriteStream &aStream, RFeatureServerArray& aArray );
   249         void ValidateFeatureFlagL(TBitFlags32 aFlags);
   250         void ValidateRuntimeFeatureFlagL(TBitFlags32 aFlags);
   251         
   252      private:
   253         
   254         // Observer of feature changes
   255         MFeatMgrRegistryObserver& iObserver;
   256         // Array of features
   257         RArray<TFeatureServerEntry> iFeatureList;
   258         // Struct to contain information of default supported ranges
   259         class TDefaultRange
   260 	        {
   261 	        public:
   262     	        TUid iLowUid;
   263     	        TUid iHighUid;
   264 	        };
   265         // Array of supported ranges
   266         RArray<TDefaultRange> iRangeList;
   267         // File server session
   268         RFs& iFs;
   269         
   270         // Array of features (backup up for BUR)
   271         RArray<TFeatureServerEntry> iFeatureListBackup;
   272 
   273         // Flag to tell feature manager to cache newly modified features during SWI.
   274         TBool iSWICacheFeature;
   275         // Tracks the SWI status to check if an installation/uninstallation is in progress before 
   276         // starting caching.
   277         TSWIStatus iSWIStatus;
   278         // Array that holds the operations to apply on cached features when SWI ends.
   279         RArray<TSWICachedOperation> iSWICachedOperations;
   280         // Id of the process launched by SWI whose commands to feature manager are to be cached.
   281         TUint iSWIProcessId;
   282         // Listens to the SWI P&S property KSAUidSoftwareInstallKeyValue 
   283         CSWIListener* iSWIListener;
   284         // Timer to handle the situation when the launched exe by SWI manipulates features and then 
   285         // hangs/crashes, or a call to SWIEnd was not made.
   286         CSWITimer* iSWITimer;
   287         // Traces if an "out-of-memory" condition has occurred during caching. If so, FeatMgr will
   288         // not commit the cache when the installation is successful. It will be disregarded.
   289         TBool iOomOccured;
   290         // Counts the number of features allowed to be cached during SWI install/uninstall. 
   291         // The maximum is set to 50 (MAXSWIOPS)
   292         TInt iSWIOperations;
   293         // Counts how many AddFeature commands are cached during SWI
   294         TInt iAddFeatCount;
   295     };
   296 
   297 #endif      // FEATMGRFEATUREREGISTRY_H 
   298             
   299 // End of File