sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef BURSTATE_H
|
sl@0
|
21 |
#define BURSTATE_H
|
sl@0
|
22 |
|
sl@0
|
23 |
// INCLUDES
|
sl@0
|
24 |
#include <e32svr.h>
|
sl@0
|
25 |
#include <featmgr/featurecmn.h>
|
sl@0
|
26 |
#include <featmgr/featureinfoplugin.h>
|
sl@0
|
27 |
#include <babackup.h>
|
sl@0
|
28 |
#include "featmgrclientserver.h"
|
sl@0
|
29 |
#include "featmgrtimer.h"
|
sl@0
|
30 |
#include "featmgrfeatureregistry.h"
|
sl@0
|
31 |
|
sl@0
|
32 |
// CLASS DECLARATION
|
sl@0
|
33 |
class CFeatMgrServer;
|
sl@0
|
34 |
class CBurState;
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
* States of the backup and restore state-machine.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
typedef enum
|
sl@0
|
40 |
{
|
sl@0
|
41 |
/** Normal state : Normal operation, not in a BUR state */
|
sl@0
|
42 |
EFeatMgrBURState_None = 0,
|
sl@0
|
43 |
/** Error state */
|
sl@0
|
44 |
EFeatMgrBURState_Error,
|
sl@0
|
45 |
/** Backup commands */
|
sl@0
|
46 |
EFeatMgrBURState_BackupStarted,
|
sl@0
|
47 |
EFeatMgrBURState_BackupEnded,
|
sl@0
|
48 |
/** Restore commands */
|
sl@0
|
49 |
EFeatMgrBURState_RestoreStarted,
|
sl@0
|
50 |
EFeatMgrBURState_RestoreEnded,
|
sl@0
|
51 |
} BURStatus;
|
sl@0
|
52 |
|
sl@0
|
53 |
const TInt KBURArrayLength = 7;
|
sl@0
|
54 |
const TInt KBURErrorArrayLength = 5;
|
sl@0
|
55 |
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
* State machine for handling the BUR operations for Feature Manager.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
class CBurState
|
sl@0
|
61 |
{
|
sl@0
|
62 |
public:
|
sl@0
|
63 |
|
sl@0
|
64 |
~CBurState();
|
sl@0
|
65 |
CBurState(CFeatMgrServer* aServer);
|
sl@0
|
66 |
|
sl@0
|
67 |
static CBurState* NewL();
|
sl@0
|
68 |
static CBurState* NewLC();
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
* Function from MBackupOperationObserver in response to a change in the state of the backup and
|
sl@0
|
72 |
* restore operation(s). This function is called to notify the Feature Manager that a backup and
|
sl@0
|
73 |
* restore operation is in progress.
|
sl@0
|
74 |
* @param aBackupOperationAttributes The current state of the backup operation. Made up of
|
sl@0
|
75 |
* MBackupObserver::TFileLockFlags and TOperationType types.
|
sl@0
|
76 |
* @see MBackupObserver::TFileLockFlags
|
sl@0
|
77 |
* @see TOperationType.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
void BUROperationL(const TBackupOperationAttributes& aBackupOperationAttributes);
|
sl@0
|
80 |
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
|
sl@0
|
83 |
CBurState();
|
sl@0
|
84 |
void ConstructL();
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
* Used to check the TBackupOperationAttributes values that have arrived in Feature Manager
|
sl@0
|
88 |
* as part of HandleBackupOperationEventL. This function makes sure the arguments from the Backup and Restore
|
sl@0
|
89 |
* server can be properly understood by the Feature Manager.
|
sl@0
|
90 |
* @param TBackupOperationAttributes
|
sl@0
|
91 |
* @return Error code. Can either be KErrNone or KErrNotFound if an argument is not understood.
|
sl@0
|
92 |
* @see CFeatMgrFeatureRegistry::HandleBackupOperationEventL
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
TInt CheckBURArguments( const TBackupOperationAttributes& aBackupOperationAttributes );
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
* Conversion function will change TBackupOperationAttributes into a form more easily managed.
|
sl@0
|
98 |
* @param TBackupOperationAttributes
|
sl@0
|
99 |
* @return BURStatus
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
BURStatus ConvertToBURState( const TBackupOperationAttributes& aBackupOperationAttributes );
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
* Increment the state machine.
|
sl@0
|
105 |
* @param aCurrent : current state (location)
|
sl@0
|
106 |
* @param aGoto : state to go to next (direction)
|
sl@0
|
107 |
* @return next state
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
BURStatus BUR_StateMachine( BURStatus aCurrent, BURStatus aGoto );
|
sl@0
|
110 |
|
sl@0
|
111 |
void SetUpBurStruct();
|
sl@0
|
112 |
|
sl@0
|
113 |
// Backup Notification
|
sl@0
|
114 |
TUint32 iBackupFlag;
|
sl@0
|
115 |
CBaBackupSessionWrapper *iBackupNotification;
|
sl@0
|
116 |
BURStatus iCurrentBURStatus;
|
sl@0
|
117 |
CFeatMgrServer *iServer;
|
sl@0
|
118 |
|
sl@0
|
119 |
/** The file lock status of the file we are interested in. */
|
sl@0
|
120 |
MBackupObserver::TFileLockFlags iBURLockFlag;
|
sl@0
|
121 |
/** The current BUR operation, e.g. Start/End. */
|
sl@0
|
122 |
MBackupOperationObserver::TOperationType iBUROpType;
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
* A structure for storing the information on the possible state elements
|
sl@0
|
126 |
* that are used for backup and restore. Each element has a current state, and
|
sl@0
|
127 |
* a direction to goto. e.g. (s1)-> (s2)-> (s3)-> (s4)-> (s5)-> etc..
|
sl@0
|
128 |
* The state machine is formed from a series of these interconnecting elements,
|
sl@0
|
129 |
* and transition between states is handled by an associated function.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
struct BURStruct
|
sl@0
|
132 |
{
|
sl@0
|
133 |
BURStatus iCurrent;
|
sl@0
|
134 |
BURStatus iGoto;
|
sl@0
|
135 |
|
sl@0
|
136 |
/** A function pointer that is called to switch between states */
|
sl@0
|
137 |
BURStatus (CFeatMgrServer::*iFunc)( BURStatus );
|
sl@0
|
138 |
};
|
sl@0
|
139 |
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
* State machine architecture, written as BURStruct elements. This array defines the
|
sl@0
|
142 |
* normal operation paths of the state machine.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
BURStruct iBURStructArray[ KBURArrayLength ];
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
* Error handling is taken care of in the same manner as normal operation
|
sl@0
|
147 |
* in the state machine architecture. Also written as written as BURStruct elements.
|
sl@0
|
148 |
* The error array defines a set of paths to take upon discovering a path that is
|
sl@0
|
149 |
* not supported by the normal operation paths.
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
BURStruct iBURStructErrorArray[ KBURErrorArrayLength ];
|
sl@0
|
152 |
|
sl@0
|
153 |
};
|
sl@0
|
154 |
|
sl@0
|
155 |
#endif // BURSTATE_H
|
sl@0
|
156 |
|