sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef FEATMGRSERVER_H
|
sl@0
|
22 |
#define FEATMGRSERVER_H
|
sl@0
|
23 |
|
sl@0
|
24 |
// INCLUDES
|
sl@0
|
25 |
#include <e32svr.h>
|
sl@0
|
26 |
#include <featmgr/featurecmn.h>
|
sl@0
|
27 |
#include <babackup.h>
|
sl@0
|
28 |
#include "featmgrclientserver.h"
|
sl@0
|
29 |
#include <featmgr/featureinfoplugin.h>
|
sl@0
|
30 |
#include "featmgrtimer.h"
|
sl@0
|
31 |
#include "featmgrfeatureregistry.h"
|
sl@0
|
32 |
#include "burstate.h"
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef FEATURE_MANAGER_STARTUP_TEST
|
sl@0
|
35 |
inline void FmgrFatalErrorL(TInt err, const TDesC&, TInt)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
User::Leave(err);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
#else
|
sl@0
|
40 |
inline void FmgrFatalErrorL(TInt, const TDesC& aPanicCategory, TInt aPanicCode)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
User::Panic(aPanicCategory, aPanicCode);
|
sl@0
|
43 |
}
|
sl@0
|
44 |
#endif
|
sl@0
|
45 |
|
sl@0
|
46 |
// FORWARD DECLARATIONS
|
sl@0
|
47 |
class CFeatMgrPluginHandler;
|
sl@0
|
48 |
class CFeatMgrFeatureRegistry;
|
sl@0
|
49 |
|
sl@0
|
50 |
enum TFeatureSupport
|
sl@0
|
51 |
{
|
sl@0
|
52 |
EFeatureSupportDisable = EFalse,
|
sl@0
|
53 |
EFeatureSupportEnable = ETrue,
|
sl@0
|
54 |
EFeatureSupportUntouch = 2
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
// CLASS DECLARATIONS
|
sl@0
|
58 |
|
sl@0
|
59 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
Auto shutdown class (standard pattern) for testing purposes
|
sl@0
|
62 |
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
class CShutdown : public CTimer
|
sl@0
|
65 |
{
|
sl@0
|
66 |
enum TMemScanShutdown
|
sl@0
|
67 |
{
|
sl@0
|
68 |
EMemScanServShutdownDelay=0x200000
|
sl@0
|
69 |
};
|
sl@0
|
70 |
public:
|
sl@0
|
71 |
inline CShutdown();
|
sl@0
|
72 |
inline void ConstructL();
|
sl@0
|
73 |
inline void Start();
|
sl@0
|
74 |
private:
|
sl@0
|
75 |
void RunL();
|
sl@0
|
76 |
};
|
sl@0
|
77 |
#endif // EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
Feature Manager server implementation
|
sl@0
|
81 |
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
NONSHARABLE_CLASS(CFeatMgrServer) :
|
sl@0
|
84 |
public CPolicyServer,
|
sl@0
|
85 |
public MFeatMgrTimerCallback,
|
sl@0
|
86 |
public MFeatMgrRegistryObserver,
|
sl@0
|
87 |
private MBackupOperationObserver,
|
sl@0
|
88 |
private MBackupObserver
|
sl@0
|
89 |
{
|
sl@0
|
90 |
public: // Constructors and destructor
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
Creates a new server. Newly created instance is left in the cleanup stack.
|
sl@0
|
94 |
@param aPriority Priority of the server.
|
sl@0
|
95 |
@return A pointer to the created object.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
static CFeatMgrServer* NewLC( const TInt aPriority );
|
sl@0
|
98 |
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
Destructor.
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
virtual ~CFeatMgrServer();
|
sl@0
|
103 |
|
sl@0
|
104 |
public: // New functions
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
Called by plugin handler to inform feature info to server.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
void FeatureInfoL( RArray<FeatureInfoCommand::TFeature>& aFeatureList,
|
sl@0
|
110 |
CFeatMgrPluginHandler* aPluginHandler );
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
Called by plugin handler to inform feature info to server.
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
void FeatureInfoL( RFeatureArray& aFeatureList, CFeatMgrPluginHandler* aPluginHandler );
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
Returns ETrue if all plugins are ready and
|
sl@0
|
119 |
Feature info received.
|
sl@0
|
120 |
Else returns EFalse.
|
sl@0
|
121 |
|
sl@0
|
122 |
@return plugins loading status
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
TBool PluginsReady() const;
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
Returns ETrue if backup is in progress
|
sl@0
|
128 |
Else returns EFalse.
|
sl@0
|
129 |
@return backup status
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
TBool BURIsInProgress() const;
|
sl@0
|
132 |
|
sl@0
|
133 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
Called by session to indicate addition of session.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
void AddSession();
|
sl@0
|
138 |
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
Called by session to indicate end of session.
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
void DropSession();
|
sl@0
|
143 |
#endif // EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
144 |
|
sl@0
|
145 |
public: // Functions from base classes
|
sl@0
|
146 |
|
sl@0
|
147 |
// From MFeatMgrTimerCallback
|
sl@0
|
148 |
virtual void TimerFired();
|
sl@0
|
149 |
|
sl@0
|
150 |
// From MFeatMgrRegistryObserver
|
sl@0
|
151 |
virtual void HandleFeatureChange( TFeatureServerEntry& aFeature, TFeatureChangeType aType );
|
sl@0
|
152 |
|
sl@0
|
153 |
/**
|
sl@0
|
154 |
Function from MBackupOperationObserver in response to a change in the state of the backup and
|
sl@0
|
155 |
restore operation(s). This function is called to notify the Feature Manager that a backup and
|
sl@0
|
156 |
restore operation is in progress. However, this is not the whole story, and notification using
|
sl@0
|
157 |
the callback ChangeLockFileL() is also used.
|
sl@0
|
158 |
@param aBackupOperationAttributes The current state of the backup operation. Made up of
|
sl@0
|
159 |
MBackupObserver::TFileLockFlags and TOperationType types.
|
sl@0
|
160 |
@see MBackupObserver::TFileLockFlags
|
sl@0
|
161 |
@see TOperationType.
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
|
sl@0
|
164 |
|
sl@0
|
165 |
/**
|
sl@0
|
166 |
* Function from MBackupObserver in response to a change in the state of the file to be subject to
|
sl@0
|
167 |
* the BUR operation. This function is called to notify the Feature Manager that a filelock has
|
sl@0
|
168 |
* changed.
|
sl@0
|
169 |
* @param aFileName name of the file whose status has changed.
|
sl@0
|
170 |
* @param aFlags the lock status information for the file.
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
void ChangeFileLockL( const TDesC& aFileName, TFileLockFlags aFlags );
|
sl@0
|
173 |
|
sl@0
|
174 |
public:
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
* Feature manager state machine function.
|
sl@0
|
178 |
* This returns the feature manager back to a normal state.
|
sl@0
|
179 |
* @param BURStatus current state
|
sl@0
|
180 |
* @return BURStatus the next state
|
sl@0
|
181 |
*/
|
sl@0
|
182 |
BURStatus Goto_NormalState( BURStatus aCurrent );
|
sl@0
|
183 |
/**
|
sl@0
|
184 |
* Feature manager state machine function.
|
sl@0
|
185 |
* This will put the Feature Manager into the "start backup" state. Where the Feature Manager
|
sl@0
|
186 |
* is expecting the BUR backup to start.
|
sl@0
|
187 |
* @param BURStatus current state
|
sl@0
|
188 |
* @return BURStatus the next state
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
BURStatus Goto_StartBackupState( BURStatus aCurrent );
|
sl@0
|
191 |
/**
|
sl@0
|
192 |
* Feature manager state machine function.
|
sl@0
|
193 |
* This will put the Feature Manager into the "end backup" state. Where the Feature Manager
|
sl@0
|
194 |
* is expecting the BUR backup has just ended, and it is required to return itself to a
|
sl@0
|
195 |
* normal operating mode.
|
sl@0
|
196 |
* @param BURStatus current state
|
sl@0
|
197 |
* @return BURStatus the next state
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
BURStatus Goto_EndBackupState( BURStatus aCurrent );
|
sl@0
|
200 |
/**
|
sl@0
|
201 |
* Feature manager state machine function.
|
sl@0
|
202 |
* This will put the Feature Manager into the "start restore" state. Where the Feature Manager
|
sl@0
|
203 |
* is expecting the BUR restore operation to start.
|
sl@0
|
204 |
* @param BURStatus current state
|
sl@0
|
205 |
* @return BURStatus the next state
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
BURStatus Goto_StartRestoreState( BURStatus aCurrent );
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
* Feature manager state machine function.
|
sl@0
|
210 |
* This will put the Feature Manager into the "end restore" state. Where the Feature Manager
|
sl@0
|
211 |
* is expecting the BUR restore operation has just ended, and it is required to return itself
|
sl@0
|
212 |
* to a normal operating mode.
|
sl@0
|
213 |
* @param BURStatus current state
|
sl@0
|
214 |
* @return BURStatus the next state
|
sl@0
|
215 |
*/
|
sl@0
|
216 |
BURStatus Goto_EndRestoreState( BURStatus aCurrent );
|
sl@0
|
217 |
/**
|
sl@0
|
218 |
* Feature manager state machine function.
|
sl@0
|
219 |
* This will return the Feature Manager from its current state, and into a "safe" state whereby
|
sl@0
|
220 |
* a normal operating mode is possible again. This is an error recovery function.
|
sl@0
|
221 |
* @param BURStatus current state
|
sl@0
|
222 |
* @return BURStatus the next state
|
sl@0
|
223 |
*/
|
sl@0
|
224 |
BURStatus Goto_ErrorState( BURStatus aCurrent );
|
sl@0
|
225 |
|
sl@0
|
226 |
private:
|
sl@0
|
227 |
|
sl@0
|
228 |
/* Clears the feature array ready to re-populate it during a restore operation */
|
sl@0
|
229 |
void ClearFeaturesL( void );
|
sl@0
|
230 |
/* Reloads the feature array and merges features during a restore operation */
|
sl@0
|
231 |
void LoadFeaturesL( void );
|
sl@0
|
232 |
/* Handles any outstanding notifications after a restore operation */
|
sl@0
|
233 |
void HandleRestoredNotificationsL( void );
|
sl@0
|
234 |
|
sl@0
|
235 |
private:
|
sl@0
|
236 |
|
sl@0
|
237 |
/**
|
sl@0
|
238 |
C++ constructor.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
CFeatMgrServer( const TInt aPriority,
|
sl@0
|
241 |
const TServerType aType = EUnsharableSessions );
|
sl@0
|
242 |
/**
|
sl@0
|
243 |
By default Symbian 2nd phase constructor is private.
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
void ConstructL();
|
sl@0
|
246 |
|
sl@0
|
247 |
/**
|
sl@0
|
248 |
Creates a new session when client connects.
|
sl@0
|
249 |
@param aVersion Version
|
sl@0
|
250 |
@param aMessage 'connect' message from the client
|
sl@0
|
251 |
@return Pointer to created session or leaves with codes
|
sl@0
|
252 |
KErrNotSupported if versions does not match
|
sl@0
|
253 |
KErrNoMemory if creation of new session fails.
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
CSession2* NewSessionL( const TVersion& aVersion,
|
sl@0
|
256 |
const RMessage2& aMessage ) const;
|
sl@0
|
257 |
/**
|
sl@0
|
258 |
Panics the server thread
|
sl@0
|
259 |
@param aCategory Panicer's id
|
sl@0
|
260 |
@param aPanic Reason of panic
|
sl@0
|
261 |
@return void
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
void Panic( const TDesC& aCategory, const TInt aReason );
|
sl@0
|
264 |
|
sl@0
|
265 |
/**
|
sl@0
|
266 |
Lists and loads Feature Manager plugins.
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
TBool LoadPluginsL();
|
sl@0
|
269 |
|
sl@0
|
270 |
/**
|
sl@0
|
271 |
Deletes plugin handler if feature info is ready.
|
sl@0
|
272 |
*/
|
sl@0
|
273 |
void DeletePlugins();
|
sl@0
|
274 |
|
sl@0
|
275 |
/**
|
sl@0
|
276 |
Check whether plugins have finished processing.
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
void CheckPluginsReadyL();
|
sl@0
|
279 |
|
sl@0
|
280 |
/**
|
sl@0
|
281 |
Calls ServicePendingRequestsL of sessions
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
void ServicePendingRequests();
|
sl@0
|
284 |
|
sl@0
|
285 |
private: // Data
|
sl@0
|
286 |
|
sl@0
|
287 |
// Timer pointer.
|
sl@0
|
288 |
CFeatMgrTimer* iTimer;
|
sl@0
|
289 |
|
sl@0
|
290 |
CBurState iBurState;
|
sl@0
|
291 |
|
sl@0
|
292 |
// ETrue when backup in progress
|
sl@0
|
293 |
TBool iBURInProgress;
|
sl@0
|
294 |
|
sl@0
|
295 |
// ETrue when feature info received from all plugins
|
sl@0
|
296 |
TBool iPluginsReady;
|
sl@0
|
297 |
|
sl@0
|
298 |
// Struct to contain information of found Feature Manager plugins
|
sl@0
|
299 |
struct SFeatMgrPluginInfo
|
sl@0
|
300 |
{
|
sl@0
|
301 |
// Plugin handler of the plugin
|
sl@0
|
302 |
CFeatMgrPluginHandler* iPluginHandler;
|
sl@0
|
303 |
// ETrue if feature info received from plugin handler
|
sl@0
|
304 |
TBool iPluginReady;
|
sl@0
|
305 |
};
|
sl@0
|
306 |
|
sl@0
|
307 |
// Array of found Feature Manager plugins
|
sl@0
|
308 |
RArray<SFeatMgrPluginInfo> iPluginList;
|
sl@0
|
309 |
|
sl@0
|
310 |
// ETrue if all plugin handlers are deleted
|
sl@0
|
311 |
TBool iPluginsDeleted;
|
sl@0
|
312 |
|
sl@0
|
313 |
// ETrue if ServicePendingRequest not called yet.
|
sl@0
|
314 |
TBool iPendingRequests;
|
sl@0
|
315 |
|
sl@0
|
316 |
// File server session
|
sl@0
|
317 |
RFs iFs;
|
sl@0
|
318 |
|
sl@0
|
319 |
// ETrue when iPluginsReady is ETrue and all feature files have been read.
|
sl@0
|
320 |
TBool iFeaturesReady;
|
sl@0
|
321 |
|
sl@0
|
322 |
CFeatMgrFeatureRegistry* iRegistry;
|
sl@0
|
323 |
|
sl@0
|
324 |
// Backup Notification
|
sl@0
|
325 |
TUint32 iBackupFlag;
|
sl@0
|
326 |
CBaBackupSessionWrapper * iBackupNotification;
|
sl@0
|
327 |
|
sl@0
|
328 |
#ifdef EXTENDED_FEATURE_MANAGER_TEST
|
sl@0
|
329 |
TInt iSessionCount;
|
sl@0
|
330 |
CShutdown iShutdown;
|
sl@0
|
331 |
#endif
|
sl@0
|
332 |
};
|
sl@0
|
333 |
|
sl@0
|
334 |
#endif // FEATMGRSERVER_H
|
sl@0
|
335 |
|
sl@0
|
336 |
// End of File
|