os/persistentdata/featuremgmt/featuremgr/src/serverexe/burstate.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18 */
    19 
    20 #ifndef BURSTATE_H
    21 #define BURSTATE_H
    22 
    23 // INCLUDES
    24 #include <e32svr.h>
    25 #include <featmgr/featurecmn.h>
    26 #include <featmgr/featureinfoplugin.h>
    27 #include <babackup.h>
    28 #include "featmgrclientserver.h"
    29 #include "featmgrtimer.h"
    30 #include "featmgrfeatureregistry.h"
    31 
    32 // CLASS DECLARATION
    33 class CFeatMgrServer;
    34 class CBurState;
    35 
    36 /**
    37  * States of the backup and restore state-machine.
    38  */ 
    39 typedef enum 
    40 	{
    41 	/** Normal state : Normal operation, not in a BUR state */
    42 	EFeatMgrBURState_None = 0,          
    43 	/** Error state */
    44 	EFeatMgrBURState_Error,             
    45 	/** Backup commands */
    46 	EFeatMgrBURState_BackupStarted,     
    47 	EFeatMgrBURState_BackupEnded,
    48 	/** Restore commands */
    49 	EFeatMgrBURState_RestoreStarted,    
    50 	EFeatMgrBURState_RestoreEnded,
    51 	} BURStatus;
    52 
    53 const TInt KBURArrayLength = 7;
    54 const TInt KBURErrorArrayLength = 5;
    55 
    56 
    57 /** 
    58  * State machine for handling the BUR operations for Feature Manager.
    59  */ 
    60 class CBurState
    61 	{
    62 	public: 
    63 
    64 	~CBurState();
    65 	CBurState(CFeatMgrServer* aServer);
    66 
    67 	static CBurState* NewL();
    68 	static CBurState* NewLC();
    69 	
    70    	/**
    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.
    78      */
    79 	 void BUROperationL(const TBackupOperationAttributes& aBackupOperationAttributes);
    80 
    81 	private:
    82 
    83 	CBurState();
    84 	void ConstructL();
    85 	
    86    /** 
    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
    93      */
    94     TInt CheckBURArguments(  const TBackupOperationAttributes& aBackupOperationAttributes );
    95     
    96     /** 
    97      * Conversion function will change TBackupOperationAttributes into a form more easily managed.
    98      * @param TBackupOperationAttributes
    99      * @return BURStatus
   100      */
   101     BURStatus ConvertToBURState(  const TBackupOperationAttributes& aBackupOperationAttributes );        
   102 
   103     /**
   104      * Increment the state machine.
   105      * @param aCurrent : current state (location)
   106      * @param aGoto : state to go to next (direction)
   107      * @return next state
   108      */
   109     BURStatus BUR_StateMachine( BURStatus aCurrent, BURStatus aGoto );
   110     
   111     void SetUpBurStruct();
   112     
   113     // Backup Notification
   114     TUint32 iBackupFlag;
   115     CBaBackupSessionWrapper *iBackupNotification;
   116     BURStatus iCurrentBURStatus;
   117     CFeatMgrServer *iServer;
   118     
   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;
   123         
   124     /**
   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.
   130      */
   131     struct BURStruct
   132         {
   133         BURStatus iCurrent;
   134         BURStatus iGoto;
   135         
   136         /** A function pointer that is called to switch between states */
   137         BURStatus  (CFeatMgrServer::*iFunc)( BURStatus );
   138         };
   139     
   140     /** 
   141      * State machine architecture, written as BURStruct elements. This array defines the 
   142      * normal operation paths of the state machine.
   143      */
   144     BURStruct iBURStructArray[ KBURArrayLength ];
   145     /** 
   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.
   150      */
   151     BURStruct iBURStructErrorArray[ KBURErrorArrayLength ];
   152 
   153 	};
   154 
   155 #endif // BURSTATE_H
   156