Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "featmgrdebug.h"
23 #include "featmgrserver.h"
25 CBurState::CBurState()
31 * The Backup and Restore state machine.
32 * This state machine has two state tables. The first table defines the correct modes of operation
33 * and the second describe the pathways arrising from error conditions. By seperating the normal
34 * pathways from the error pathways we can simplify the state machine into two parts. The function
35 * SetUpBurStruct() will define the pathways for both these tables.
36 * Each table has three items per row: a current state, an ending state, and a pointer to a function
37 * that transforms between these two states safely.
38 * Given that we already know where we are, and where we are told to goto, the state machine
39 * function BUR_StateMachine() will search the normal operation table for a match, and then apply
40 * the function through the pointer. If no match is found, then the goto state is set to Error, and
41 * the error table is searched and applied. Because all the state are covered within the error table
42 * we can always return to a normal more of operation through the application of the error
45 CBurState::CBurState(CFeatMgrServer* aServer) : iCurrentBURStatus( EFeatMgrBURState_None ), iServer( aServer )
51 CBurState::~CBurState()
56 CBurState* CBurState::NewLC()
58 CBurState* self = new (ELeave)CBurState();
59 CleanupStack::PushL(self);
64 CBurState* CBurState::NewL()
66 CBurState* self=CBurState::NewLC();
67 CleanupStack::Pop(); // self;
71 void CBurState::ConstructL()
77 * This function checks the arguments that are passed into HandleBackupOperationEventL.
78 * The TBackupOperationAttributes are checked against known values and an error is returned if
79 * the Feature Manager doesn't recognise the events.
81 TInt CBurState::CheckBURArguments( const TBackupOperationAttributes& aBackupOperationAttributes )
83 TInt error( KErrNone );
84 iBURLockFlag = aBackupOperationAttributes.iFileFlag;
85 iBUROpType = aBackupOperationAttributes.iOperation;
87 // determine the operation type (backup or restore)
88 switch( iBURLockFlag )
90 case MBackupObserver::EReleaseLockReadOnly:
91 INFO_LOG( "MBackupObserver::EReleaseLockReadOnly" );
93 case MBackupObserver::EReleaseLockNoAccess:
94 INFO_LOG( "MBackupObserver::EReleaseLockNoAccess" );
96 case MBackupObserver::ETakeLock:
97 INFO_LOG( "MBackupObserver::ETakeLock" );
100 INFO_LOG( "CheckBURArguments iBURLockFlag default" );
101 error = KErrNotFound;
105 // determine the operation status (e.g. starting, ending)
108 case MBackupOperationObserver::ENone:
111 case MBackupOperationObserver::EStart:
112 INFO_LOG( "EStart" );
114 case MBackupOperationObserver::EEnd:
117 case MBackupOperationObserver::EAbort:
118 INFO_LOG( "EAbort" );
121 INFO_LOG( "CheckBURArguments iOperation default" );
122 error = KErrNotFound;
130 * Sets up the array entries for the possible backup/restore state vectors.
131 * from -> to : function
132 * State vector: None -> BackupStarted : Goto_StartBackupState
133 * State vector: BackupStarted -> BackupEnded : EndBackupState
134 * State vector: BackupEnded -> None : Goto_NormalState
135 * State vector: None -> RestoreStarted : Goto_StartRestoreState
136 * State vector: RestoreStarted -> RestoreEnded : Goto_EndRestoreState
137 * State vector: RestoreEnded -> None : Goto_NormalState
139 void CBurState::SetUpBurStruct()
145 // State vector: None -> BackupStarted : Goto_StartBackupState
146 bStruct.iCurrent = EFeatMgrBURState_None;
147 bStruct.iGoto = EFeatMgrBURState_BackupStarted;
148 bStruct.iFunc = &CFeatMgrServer::Goto_StartBackupState;
149 iBURStructArray[0] = bStruct;
151 // State vector: BackupStarted -> BackupEnded : EndBackupState
152 bStruct.iCurrent = EFeatMgrBURState_BackupStarted;
153 bStruct.iGoto = EFeatMgrBURState_BackupEnded;
154 bStruct.iFunc = &CFeatMgrServer::Goto_EndBackupState;
155 iBURStructArray[1] = bStruct;
157 // State vector: BackupEnded -> None : Goto_NormalState
158 bStruct.iCurrent = EFeatMgrBURState_BackupEnded;
159 bStruct.iGoto = EFeatMgrBURState_None;
160 bStruct.iFunc = &CFeatMgrServer::Goto_NormalState;
161 iBURStructArray[2] = bStruct;
163 // Valid restore states
165 // State vector: None -> RestoreStarted : Goto_StartRestoreState
166 bStruct.iCurrent = EFeatMgrBURState_None;
167 bStruct.iGoto = EFeatMgrBURState_RestoreStarted;
168 bStruct.iFunc = &CFeatMgrServer::Goto_StartRestoreState;
169 iBURStructArray[3] = bStruct;
171 // State vector: RestoreStarted -> RestoreEnded : Goto_EndRestoreState
172 bStruct.iCurrent = EFeatMgrBURState_RestoreStarted;
173 bStruct.iGoto = EFeatMgrBURState_RestoreEnded;
174 bStruct.iFunc = &CFeatMgrServer::Goto_EndRestoreState;
175 iBURStructArray[4] = bStruct;
177 // State vector: RestoreEnded -> None : Goto_NormalState
178 bStruct.iCurrent = EFeatMgrBURState_RestoreEnded;
179 bStruct.iGoto = EFeatMgrBURState_None;
180 bStruct.iFunc = &CFeatMgrServer::Goto_NormalState;
181 iBURStructArray[6] = bStruct;
183 // State vector: None -> None : Goto_NormalState
184 bStruct.iCurrent = EFeatMgrBURState_None;
185 bStruct.iGoto = EFeatMgrBURState_None;
186 bStruct.iFunc = &CFeatMgrServer::Goto_NormalState;
187 iBURStructArray[5] = bStruct;
193 // State vector: RestoreStarted -> Error : Goto_ErrorState
194 bStruct.iCurrent = EFeatMgrBURState_RestoreStarted;
195 bStruct.iGoto = EFeatMgrBURState_Error;
196 bStruct.iFunc = &CFeatMgrServer::Goto_ErrorState;
197 iBURStructErrorArray[0] = bStruct;
199 // State vector: RestoreEnded -> Error : Goto_ErrorState
200 bStruct.iCurrent = EFeatMgrBURState_RestoreEnded;
201 bStruct.iGoto = EFeatMgrBURState_Error;
202 bStruct.iFunc = &CFeatMgrServer::Goto_ErrorState;
203 iBURStructErrorArray[1] = bStruct;
205 // State vector: BackupStarted -> None : Goto_ErrorState
206 bStruct.iCurrent = EFeatMgrBURState_BackupStarted;
207 bStruct.iGoto = EFeatMgrBURState_Error;
208 bStruct.iFunc = &CFeatMgrServer::Goto_ErrorState;
209 iBURStructErrorArray[2] = bStruct;
211 // State vector: BackupEnded -> None : Goto_ErrorState
212 bStruct.iCurrent = EFeatMgrBURState_BackupEnded;
213 bStruct.iGoto = EFeatMgrBURState_Error;
214 bStruct.iFunc = &CFeatMgrServer::Goto_ErrorState;
215 iBURStructErrorArray[3] = bStruct;
217 // State vector: Error -> None : Goto_NormalState
218 bStruct.iCurrent = EFeatMgrBURState_Error;
219 bStruct.iGoto = EFeatMgrBURState_None;
220 bStruct.iFunc = &CFeatMgrServer::Goto_NormalState;
221 iBURStructErrorArray[4] = bStruct;
227 * Convert from the type provided in TBackupOperationAttributes into more sensible BUR types that
228 * can be handles by the BUR_StateMachine. This step is necessary for two reasons, the first is
229 * simplification and the second is a lexical check for invalid type MBackupObserver::TFileLockFlags.
231 BURStatus CBurState::ConvertToBURState( const TBackupOperationAttributes& aBackupOperationAttributes )
233 BURStatus status = EFeatMgrBURState_Error;
234 iBURLockFlag = aBackupOperationAttributes.iFileFlag;
235 iBUROpType = aBackupOperationAttributes.iOperation;
236 // we ignore the iOperation state
238 if( iBURLockFlag == MBackupObserver::ETakeLock )
240 // ending (this doesn't define whether it was a backup
241 // or a restore ending, just that file writing can now start
243 INFO_LOG("ChangeFileLockL() BUR ending");
244 switch( iCurrentBURStatus )
246 case( EFeatMgrBURState_BackupStarted ):
247 status = EFeatMgrBURState_BackupEnded;
249 case( EFeatMgrBURState_RestoreStarted ):
250 status = EFeatMgrBURState_RestoreEnded;
252 case( EFeatMgrBURState_None ):
253 status = EFeatMgrBURState_None;
256 status = EFeatMgrBURState_Error;
260 else if( (iBURLockFlag & MBackupObserver::EReleaseLockReadOnly) &&
261 (iBURLockFlag & ~MBackupObserver::EReleaseLockNoAccess) )
263 // starting (making the file read-only is a sign that we are
264 // in "backup" mode).
265 INFO_LOG("ChangeFileLockL() backup starting");
266 status = EFeatMgrBURState_BackupStarted;
268 else if( iBURLockFlag & MBackupObserver::EReleaseLockNoAccess )
270 // starting (now read/write access is used to signify that a
271 // restore has been started).
272 INFO_LOG("ChangeFileLockL() restore starting");
273 status = EFeatMgrBURState_RestoreStarted;
277 // unhandled flag states
278 INFO_LOG("ChangeFileLockL() error state");
279 status = EFeatMgrBURState_Error;
286 * This function is called from within featmgr server when a backup event occurs
287 * There are two state variables coming into Feature Manager as types MBackupObserver::TFileLockFlags
288 * and TOperationType. Only certain combinations of these two state variables are valid for Feature
289 * Manager and if the combination is not valid (because there is no way of returning an error)
290 * it will just set the internal state machine into an "error" state.
291 * Given our current state and our goto state (i.e. where we are at the moment and where we want to goto)
292 * the state machine checks that this is a valid path in our state machine and then perform the correct
293 * operations to get us to the next valid state.
295 void CBurState::BUROperationL( const TBackupOperationAttributes& aBackupOperationAttributes )
297 BURStatus gotoState = EFeatMgrBURState_Error; // fail safe
298 BURStatus currentState = iCurrentBURStatus; // where in the state machine we are at the moment
300 // Check that the arguments are within valid limits
301 if( KErrNone == CheckBURArguments( aBackupOperationAttributes ) )
303 // Now convert into states that the Feature Manager understands.
304 gotoState = ConvertToBURState( aBackupOperationAttributes );
307 // Check that this is a valid path and then perform the correct operations to get to the next valid state
308 iCurrentBURStatus = BUR_StateMachine( currentState, gotoState );
314 * The state machine for the backup and restore of the featmgr
315 * The logic that goes into changing states in the state machine.
317 BURStatus CBurState::BUR_StateMachine( BURStatus aCurrent, BURStatus aGoto )
320 TBool found = EFalse;
322 // Fail safe default state values
323 BURStatus newState = EFeatMgrBURState_Error;
324 BURStatus stateTableGoto = EFeatMgrBURState_Error;
325 BURStatus stateTableCurrent = EFeatMgrBURState_Error;
331 // Get the n-th state table [current,goto] state vector
332 stateTableCurrent = iBURStructArray[count].iCurrent;
333 stateTableGoto = iBURStructArray[count].iGoto;
335 // if the state table matches what we are given
336 if( (aCurrent == stateTableCurrent) &&
337 (aGoto == stateTableGoto) )
339 // process the relevant state function
340 if( NULL != iBURStructArray[count].iFunc )
342 newState = (iServer->*iBURStructArray[count].iFunc)( aCurrent );
344 // check result: when from the state machine is not what we expected from the state table
345 if( newState != stateTableGoto )
347 // put state machine into an error state and break "normal" loop
349 aGoto = EFeatMgrBURState_Error;
358 // self-perpetuate in certain cases
359 if( (EFeatMgrBURState_BackupEnded == newState) ||
360 (EFeatMgrBURState_RestoreEnded == newState) )
363 aGoto = EFeatMgrBURState_None;
370 while( (!found) && count < KBURArrayLength );
375 if( EFeatMgrBURState_Error == aGoto ||
379 aGoto = EFeatMgrBURState_Error;
385 // Get the n-th state table [current,goto] state vector in the error array
386 stateTableCurrent = iBURStructErrorArray[count].iCurrent;
387 stateTableGoto = iBURStructErrorArray[count].iGoto;
389 // if the state table matches what we are given
390 if( ((aCurrent == stateTableCurrent) && (aGoto == stateTableGoto)) )
392 // process the relevant state function
393 if( NULL != iBURStructErrorArray[count].iFunc )
395 newState = (iServer->*iBURStructErrorArray[count].iFunc)( aCurrent );
396 // there is no error recovery from error recovery.
400 // self-perpetuate in certain cases
401 if( EFeatMgrBURState_Error == newState )
404 aGoto = EFeatMgrBURState_None;
411 while( (!found) && count < KBURErrorArrayLength );