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 FEATMGRSERVER_H
22 #define FEATMGRSERVER_H
26 #include <featmgr/featurecmn.h>
28 #include "featmgrclientserver.h"
29 #include <featmgr/featureinfoplugin.h>
30 #include "featmgrtimer.h"
31 #include "featmgrfeatureregistry.h"
34 #ifdef FEATURE_MANAGER_STARTUP_TEST
35 inline void FmgrFatalErrorL(TInt err, const TDesC&, TInt)
40 inline void FmgrFatalErrorL(TInt, const TDesC& aPanicCategory, TInt aPanicCode)
42 User::Panic(aPanicCategory, aPanicCode);
46 // FORWARD DECLARATIONS
47 class CFeatMgrPluginHandler;
48 class CFeatMgrFeatureRegistry;
52 EFeatureSupportDisable = EFalse,
53 EFeatureSupportEnable = ETrue,
54 EFeatureSupportUntouch = 2
59 #ifdef EXTENDED_FEATURE_MANAGER_TEST
61 Auto shutdown class (standard pattern) for testing purposes
64 class CShutdown : public CTimer
68 EMemScanServShutdownDelay=0x200000
72 inline void ConstructL();
77 #endif // EXTENDED_FEATURE_MANAGER_TEST
80 Feature Manager server implementation
83 NONSHARABLE_CLASS(CFeatMgrServer) :
85 public MFeatMgrTimerCallback,
86 public MFeatMgrRegistryObserver,
87 private MBackupOperationObserver,
88 private MBackupObserver
90 public: // Constructors and destructor
93 Creates a new server. Newly created instance is left in the cleanup stack.
94 @param aPriority Priority of the server.
95 @return A pointer to the created object.
97 static CFeatMgrServer* NewLC( const TInt aPriority );
102 virtual ~CFeatMgrServer();
104 public: // New functions
107 Called by plugin handler to inform feature info to server.
109 void FeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aFeatureList,
110 CFeatMgrPluginHandler* aPluginHandler );
113 Called by plugin handler to inform feature info to server.
115 void FeatureInfoL( RFeatureArray& aFeatureList, CFeatMgrPluginHandler* aPluginHandler );
118 Returns ETrue if all plugins are ready and
119 Feature info received.
122 @return plugins loading status
124 TBool PluginsReady() const;
127 Returns ETrue if backup is in progress
129 @return backup status
131 TBool BURIsInProgress() const;
133 #ifdef EXTENDED_FEATURE_MANAGER_TEST
135 Called by session to indicate addition of session.
140 Called by session to indicate end of session.
143 #endif // EXTENDED_FEATURE_MANAGER_TEST
145 public: // Functions from base classes
147 // From MFeatMgrTimerCallback
148 virtual void TimerFired();
150 // From MFeatMgrRegistryObserver
151 virtual void HandleFeatureChange( TFeatureServerEntry& aFeature, TFeatureChangeType aType );
154 Function from MBackupOperationObserver in response to a change in the state of the backup and
155 restore operation(s). This function is called to notify the Feature Manager that a backup and
156 restore operation is in progress. However, this is not the whole story, and notification using
157 the callback ChangeLockFileL() is also used.
158 @param aBackupOperationAttributes The current state of the backup operation. Made up of
159 MBackupObserver::TFileLockFlags and TOperationType types.
160 @see MBackupObserver::TFileLockFlags
163 void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
166 * Function from MBackupObserver in response to a change in the state of the file to be subject to
167 * the BUR operation. This function is called to notify the Feature Manager that a filelock has
169 * @param aFileName name of the file whose status has changed.
170 * @param aFlags the lock status information for the file.
172 void ChangeFileLockL( const TDesC& aFileName, TFileLockFlags aFlags );
177 * Feature manager state machine function.
178 * This returns the feature manager back to a normal state.
179 * @param BURStatus current state
180 * @return BURStatus the next state
182 BURStatus Goto_NormalState( BURStatus aCurrent );
184 * Feature manager state machine function.
185 * This will put the Feature Manager into the "start backup" state. Where the Feature Manager
186 * is expecting the BUR backup to start.
187 * @param BURStatus current state
188 * @return BURStatus the next state
190 BURStatus Goto_StartBackupState( BURStatus aCurrent );
192 * Feature manager state machine function.
193 * This will put the Feature Manager into the "end backup" state. Where the Feature Manager
194 * is expecting the BUR backup has just ended, and it is required to return itself to a
195 * normal operating mode.
196 * @param BURStatus current state
197 * @return BURStatus the next state
199 BURStatus Goto_EndBackupState( BURStatus aCurrent );
201 * Feature manager state machine function.
202 * This will put the Feature Manager into the "start restore" state. Where the Feature Manager
203 * is expecting the BUR restore operation to start.
204 * @param BURStatus current state
205 * @return BURStatus the next state
207 BURStatus Goto_StartRestoreState( BURStatus aCurrent );
209 * Feature manager state machine function.
210 * This will put the Feature Manager into the "end restore" state. Where the Feature Manager
211 * is expecting the BUR restore operation has just ended, and it is required to return itself
212 * to a normal operating mode.
213 * @param BURStatus current state
214 * @return BURStatus the next state
216 BURStatus Goto_EndRestoreState( BURStatus aCurrent );
218 * Feature manager state machine function.
219 * This will return the Feature Manager from its current state, and into a "safe" state whereby
220 * a normal operating mode is possible again. This is an error recovery function.
221 * @param BURStatus current state
222 * @return BURStatus the next state
224 BURStatus Goto_ErrorState( BURStatus aCurrent );
228 /* Clears the feature array ready to re-populate it during a restore operation */
229 void ClearFeaturesL( void );
230 /* Reloads the feature array and merges features during a restore operation */
231 void LoadFeaturesL( void );
232 /* Handles any outstanding notifications after a restore operation */
233 void HandleRestoredNotificationsL( void );
240 CFeatMgrServer( const TInt aPriority,
241 const TServerType aType = EUnsharableSessions );
243 By default Symbian 2nd phase constructor is private.
248 Creates a new session when client connects.
249 @param aVersion Version
250 @param aMessage 'connect' message from the client
251 @return Pointer to created session or leaves with codes
252 KErrNotSupported if versions does not match
253 KErrNoMemory if creation of new session fails.
255 CSession2* NewSessionL( const TVersion& aVersion,
256 const RMessage2& aMessage ) const;
258 Panics the server thread
259 @param aCategory Panicer's id
260 @param aPanic Reason of panic
263 void Panic( const TDesC& aCategory, const TInt aReason );
266 Lists and loads Feature Manager plugins.
268 TBool LoadPluginsL();
271 Deletes plugin handler if feature info is ready.
273 void DeletePlugins();
276 Check whether plugins have finished processing.
278 void CheckPluginsReadyL();
281 Calls ServicePendingRequestsL of sessions
283 void ServicePendingRequests();
288 CFeatMgrTimer* iTimer;
292 // ETrue when backup in progress
293 TBool iBURInProgress;
295 // ETrue when feature info received from all plugins
298 // Struct to contain information of found Feature Manager plugins
299 struct SFeatMgrPluginInfo
301 // Plugin handler of the plugin
302 CFeatMgrPluginHandler* iPluginHandler;
303 // ETrue if feature info received from plugin handler
307 // Array of found Feature Manager plugins
308 RArray<SFeatMgrPluginInfo> iPluginList;
310 // ETrue if all plugin handlers are deleted
311 TBool iPluginsDeleted;
313 // ETrue if ServicePendingRequest not called yet.
314 TBool iPendingRequests;
316 // File server session
319 // ETrue when iPluginsReady is ETrue and all feature files have been read.
320 TBool iFeaturesReady;
322 CFeatMgrFeatureRegistry* iRegistry;
324 // Backup Notification
326 CBaBackupSessionWrapper * iBackupNotification;
328 #ifdef EXTENDED_FEATURE_MANAGER_TEST
334 #endif // FEATMGRSERVER_H