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.
25 #include <featmgr/featurecmn.h>
26 #include <featmgr/featureinfoplugin.h>
28 #include "featmgrclientserver.h"
29 #include "featmgrtimer.h"
30 #include "featmgrfeatureregistry.h"
37 * States of the backup and restore state-machine.
41 /** Normal state : Normal operation, not in a BUR state */
42 EFeatMgrBURState_None = 0,
44 EFeatMgrBURState_Error,
45 /** Backup commands */
46 EFeatMgrBURState_BackupStarted,
47 EFeatMgrBURState_BackupEnded,
48 /** Restore commands */
49 EFeatMgrBURState_RestoreStarted,
50 EFeatMgrBURState_RestoreEnded,
53 const TInt KBURArrayLength = 7;
54 const TInt KBURErrorArrayLength = 5;
58 * State machine for handling the BUR operations for Feature Manager.
65 CBurState(CFeatMgrServer* aServer);
67 static CBurState* NewL();
68 static CBurState* NewLC();
71 * Function from MBackupOperationObserver in response to a change in the state of the backup and
72 * restore operation(s). This function is called to notify the Feature Manager that a backup and
73 * restore operation is in progress.
74 * @param aBackupOperationAttributes The current state of the backup operation. Made up of
75 * MBackupObserver::TFileLockFlags and TOperationType types.
76 * @see MBackupObserver::TFileLockFlags
77 * @see TOperationType.
79 void BUROperationL(const TBackupOperationAttributes& aBackupOperationAttributes);
87 * Used to check the TBackupOperationAttributes values that have arrived in Feature Manager
88 * as part of HandleBackupOperationEventL. This function makes sure the arguments from the Backup and Restore
89 * server can be properly understood by the Feature Manager.
90 * @param TBackupOperationAttributes
91 * @return Error code. Can either be KErrNone or KErrNotFound if an argument is not understood.
92 * @see CFeatMgrFeatureRegistry::HandleBackupOperationEventL
94 TInt CheckBURArguments( const TBackupOperationAttributes& aBackupOperationAttributes );
97 * Conversion function will change TBackupOperationAttributes into a form more easily managed.
98 * @param TBackupOperationAttributes
101 BURStatus ConvertToBURState( const TBackupOperationAttributes& aBackupOperationAttributes );
104 * Increment the state machine.
105 * @param aCurrent : current state (location)
106 * @param aGoto : state to go to next (direction)
109 BURStatus BUR_StateMachine( BURStatus aCurrent, BURStatus aGoto );
111 void SetUpBurStruct();
113 // Backup Notification
115 CBaBackupSessionWrapper *iBackupNotification;
116 BURStatus iCurrentBURStatus;
117 CFeatMgrServer *iServer;
119 /** The file lock status of the file we are interested in. */
120 MBackupObserver::TFileLockFlags iBURLockFlag;
121 /** The current BUR operation, e.g. Start/End. */
122 MBackupOperationObserver::TOperationType iBUROpType;
125 * A structure for storing the information on the possible state elements
126 * that are used for backup and restore. Each element has a current state, and
127 * a direction to goto. e.g. (s1)-> (s2)-> (s3)-> (s4)-> (s5)-> etc..
128 * The state machine is formed from a series of these interconnecting elements,
129 * and transition between states is handled by an associated function.
136 /** A function pointer that is called to switch between states */
137 BURStatus (CFeatMgrServer::*iFunc)( BURStatus );
141 * State machine architecture, written as BURStruct elements. This array defines the
142 * normal operation paths of the state machine.
144 BURStruct iBURStructArray[ KBURArrayLength ];
146 * Error handling is taken care of in the same manner as normal operation
147 * in the state machine architecture. Also written as written as BURStruct elements.
148 * The error array defines a set of paths to take upon discovering a path that is
149 * not supported by the normal operation paths.
151 BURStruct iBURStructErrorArray[ KBURErrorArrayLength ];