Update contrib.
2 * Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #ifndef FEATMGRFEATUREREGISTRY_H
22 #define FEATMGRFEATUREREGISTRY_H
27 #include <featmgr/featurecmn.h>
28 #include <featmgr/featureinfoplugin.h>
29 #include "featmgrfeatureentry.h"
30 #include "swilistener.h"
32 // FORWARD DECLARATIONS
36 class MFeatMgrRegistryObserver
39 virtual void HandleFeatureChange( TFeatureServerEntry& aFeature,
40 TFeatureChangeType aType ) = 0;
44 NONSHARABLE_CLASS(CFeatMgrFeatureRegistry) : public CBase, MSWICallBack
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.
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.
64 * Enumerations to identify the category of the operation to apply on the cached
65 * features after SWI completes.
77 * The operation tuple to be cached
79 struct TSWICachedOperation
81 TSWIOperationCat iCat;
82 TFeatureServerEntry iFeatEntry;
88 * Two-phased constructor.
90 static CFeatMgrFeatureRegistry* NewL( RFs& aFs, MFeatMgrRegistryObserver& aObserver );
95 virtual ~CFeatMgrFeatureRegistry();
100 * Reads feature files.
102 void ReadFeatureFilesL();
105 * Reads runtime feature file.
107 void ReadRuntimeFeaturesL( TBool &aFeaturesReady );
110 * Merges features to common feature array from plugin.
112 void MergePluginFeaturesL( RArray<FeatureInfoCommand::TFeature>& aList );
115 * Merges features to common feature array from plugin.
117 void MergePluginFeaturesL( RFeatureArray& aList );
120 * Returns feature support status.
122 TInt IsFeatureSupported( TFeatureServerEntry& aFeature );
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
133 TInt AddFeature( TFeatureServerEntry& aFeature, TUint aProcessId = 0 );
138 TInt DeleteFeature( TUid aFeature, TUint = 0 );
141 * Sets feature support status and optionally data.
143 TInt SetFeature( TUid aFeature, TInt aEnable, const TUint32 *aData = NULL, TUint = 0 );
146 * Lists supported features to array.
148 void SupportedFeaturesL( RFeatureUidArray& aSupportedFeatures );
151 * Returns number of supported features.
153 TInt NumberOfSupportedFeatures();
156 * Make a backup of the feature list into member iFeatureListBackup, then reset
157 * the feature list iFeatureList.
159 * Leaves if there is an error during back up, with KErrNoMemory or any of the
160 * other system-wide error codes.
162 void ResetFeaturesL();
165 * This function will handle the required notifications for new, deleted and changed features
166 * after a restore operation has taken place.
168 void HandleRestoredFeatureNotificationsL();
171 * Returns the fully qualified path and filename for the runtime feature data file.
173 TFileName GetFeaturesFilePathAndName( void );
176 * Indicates that SWI started. It takes the Id of the process calling it as a parameter.
178 TInt SWIStart(TUint);
181 * Indicates that SWI ended. It takes the Id of the process calling it as a parameter.
186 * Add a new command to the cache.
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.
192 TInt SWICacheCommand(TSWIOperationCat aOptCat, TFeatureServerEntry aFeature);
195 * Commit changes for the cached features into feature manager.
197 void CommitSWIFeatChanges();
200 * Reset and clean up SWI-related states and member variables.
205 * Handle the case when SWI aborts.
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.
218 * Return the status of the caching mechanism (started or not).
220 TBool SWICacheStarted();
223 * Returns the status of the caching mechanism (successful, aborted, out-of-memory).
225 TBool SWICacheStatusOOM();
229 CFeatMgrFeatureRegistry( RFs& aFs, MFeatMgrRegistryObserver& aObserver );
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 );
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);
254 // Observer of feature changes
255 MFeatMgrRegistryObserver& iObserver;
257 RArray<TFeatureServerEntry> iFeatureList;
258 // Struct to contain information of default supported ranges
265 // Array of supported ranges
266 RArray<TDefaultRange> iRangeList;
267 // File server session
270 // Array of features (backup up for BUR)
271 RArray<TFeatureServerEntry> iFeatureListBackup;
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
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.
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.
290 // Counts the number of features allowed to be cached during SWI install/uninstall.
291 // The maximum is set to 50 (MAXSWIOPS)
293 // Counts how many AddFeature commands are cached during SWI
297 #endif // FEATMGRFEATUREREGISTRY_H