1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/src/serverexe/burstate.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,156 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 +*/
1.22 +
1.23 +#ifndef BURSTATE_H
1.24 +#define BURSTATE_H
1.25 +
1.26 +// INCLUDES
1.27 +#include <e32svr.h>
1.28 +#include <featmgr/featurecmn.h>
1.29 +#include <featmgr/featureinfoplugin.h>
1.30 +#include <babackup.h>
1.31 +#include "featmgrclientserver.h"
1.32 +#include "featmgrtimer.h"
1.33 +#include "featmgrfeatureregistry.h"
1.34 +
1.35 +// CLASS DECLARATION
1.36 +class CFeatMgrServer;
1.37 +class CBurState;
1.38 +
1.39 +/**
1.40 + * States of the backup and restore state-machine.
1.41 + */
1.42 +typedef enum
1.43 + {
1.44 + /** Normal state : Normal operation, not in a BUR state */
1.45 + EFeatMgrBURState_None = 0,
1.46 + /** Error state */
1.47 + EFeatMgrBURState_Error,
1.48 + /** Backup commands */
1.49 + EFeatMgrBURState_BackupStarted,
1.50 + EFeatMgrBURState_BackupEnded,
1.51 + /** Restore commands */
1.52 + EFeatMgrBURState_RestoreStarted,
1.53 + EFeatMgrBURState_RestoreEnded,
1.54 + } BURStatus;
1.55 +
1.56 +const TInt KBURArrayLength = 7;
1.57 +const TInt KBURErrorArrayLength = 5;
1.58 +
1.59 +
1.60 +/**
1.61 + * State machine for handling the BUR operations for Feature Manager.
1.62 + */
1.63 +class CBurState
1.64 + {
1.65 + public:
1.66 +
1.67 + ~CBurState();
1.68 + CBurState(CFeatMgrServer* aServer);
1.69 +
1.70 + static CBurState* NewL();
1.71 + static CBurState* NewLC();
1.72 +
1.73 + /**
1.74 + * Function from MBackupOperationObserver in response to a change in the state of the backup and
1.75 + * restore operation(s). This function is called to notify the Feature Manager that a backup and
1.76 + * restore operation is in progress.
1.77 + * @param aBackupOperationAttributes The current state of the backup operation. Made up of
1.78 + * MBackupObserver::TFileLockFlags and TOperationType types.
1.79 + * @see MBackupObserver::TFileLockFlags
1.80 + * @see TOperationType.
1.81 + */
1.82 + void BUROperationL(const TBackupOperationAttributes& aBackupOperationAttributes);
1.83 +
1.84 + private:
1.85 +
1.86 + CBurState();
1.87 + void ConstructL();
1.88 +
1.89 + /**
1.90 + * Used to check the TBackupOperationAttributes values that have arrived in Feature Manager
1.91 + * as part of HandleBackupOperationEventL. This function makes sure the arguments from the Backup and Restore
1.92 + * server can be properly understood by the Feature Manager.
1.93 + * @param TBackupOperationAttributes
1.94 + * @return Error code. Can either be KErrNone or KErrNotFound if an argument is not understood.
1.95 + * @see CFeatMgrFeatureRegistry::HandleBackupOperationEventL
1.96 + */
1.97 + TInt CheckBURArguments( const TBackupOperationAttributes& aBackupOperationAttributes );
1.98 +
1.99 + /**
1.100 + * Conversion function will change TBackupOperationAttributes into a form more easily managed.
1.101 + * @param TBackupOperationAttributes
1.102 + * @return BURStatus
1.103 + */
1.104 + BURStatus ConvertToBURState( const TBackupOperationAttributes& aBackupOperationAttributes );
1.105 +
1.106 + /**
1.107 + * Increment the state machine.
1.108 + * @param aCurrent : current state (location)
1.109 + * @param aGoto : state to go to next (direction)
1.110 + * @return next state
1.111 + */
1.112 + BURStatus BUR_StateMachine( BURStatus aCurrent, BURStatus aGoto );
1.113 +
1.114 + void SetUpBurStruct();
1.115 +
1.116 + // Backup Notification
1.117 + TUint32 iBackupFlag;
1.118 + CBaBackupSessionWrapper *iBackupNotification;
1.119 + BURStatus iCurrentBURStatus;
1.120 + CFeatMgrServer *iServer;
1.121 +
1.122 + /** The file lock status of the file we are interested in. */
1.123 + MBackupObserver::TFileLockFlags iBURLockFlag;
1.124 + /** The current BUR operation, e.g. Start/End. */
1.125 + MBackupOperationObserver::TOperationType iBUROpType;
1.126 +
1.127 + /**
1.128 + * A structure for storing the information on the possible state elements
1.129 + * that are used for backup and restore. Each element has a current state, and
1.130 + * a direction to goto. e.g. (s1)-> (s2)-> (s3)-> (s4)-> (s5)-> etc..
1.131 + * The state machine is formed from a series of these interconnecting elements,
1.132 + * and transition between states is handled by an associated function.
1.133 + */
1.134 + struct BURStruct
1.135 + {
1.136 + BURStatus iCurrent;
1.137 + BURStatus iGoto;
1.138 +
1.139 + /** A function pointer that is called to switch between states */
1.140 + BURStatus (CFeatMgrServer::*iFunc)( BURStatus );
1.141 + };
1.142 +
1.143 + /**
1.144 + * State machine architecture, written as BURStruct elements. This array defines the
1.145 + * normal operation paths of the state machine.
1.146 + */
1.147 + BURStruct iBURStructArray[ KBURArrayLength ];
1.148 + /**
1.149 + * Error handling is taken care of in the same manner as normal operation
1.150 + * in the state machine architecture. Also written as written as BURStruct elements.
1.151 + * The error array defines a set of paths to take upon discovering a path that is
1.152 + * not supported by the normal operation paths.
1.153 + */
1.154 + BURStruct iBURStructErrorArray[ KBURErrorArrayLength ];
1.155 +
1.156 + };
1.157 +
1.158 +#endif // BURSTATE_H
1.159 +