author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
// Copyright (c) 2004-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 the License "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 |
// Implementation of finite state machine |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
/** |
sl@0 | 19 |
@file |
sl@0 | 20 |
@internalTechnology |
sl@0 | 21 |
*/ |
sl@0 | 22 |
|
sl@0 | 23 |
#include "t_ms_main.h" |
sl@0 | 24 |
#include "cstatemachine.h" |
sl@0 | 25 |
#include "tstate.h" |
sl@0 | 26 |
|
sl@0 | 27 |
CStateMachine* |
sl@0 | 28 |
CStateMachine::NewL() |
sl@0 | 29 |
{ |
sl@0 | 30 |
return new (ELeave) CStateMachine; |
sl@0 | 31 |
} |
sl@0 | 32 |
|
sl@0 | 33 |
CStateMachine::CStateMachine() |
sl@0 | 34 |
{ |
sl@0 | 35 |
// Intentionally left blank |
sl@0 | 36 |
} |
sl@0 | 37 |
|
sl@0 | 38 |
CStateMachine::~CStateMachine() |
sl@0 | 39 |
{ |
sl@0 | 40 |
allStates.ResetAndDestroy(); |
sl@0 | 41 |
} |
sl@0 | 42 |
|
sl@0 | 43 |
void |
sl@0 | 44 |
CStateMachine::MoveTo(int aStateId) |
sl@0 | 45 |
{ |
sl@0 | 46 |
if (!iCurrentState) |
sl@0 | 47 |
{ |
sl@0 | 48 |
test.Printf(_L("The current state is undefined\n")); |
sl@0 | 49 |
test(EFalse); |
sl@0 | 50 |
} |
sl@0 | 51 |
|
sl@0 | 52 |
iCurrentState->MoveTo(aStateId); |
sl@0 | 53 |
iCurrentState = FindState(aStateId); |
sl@0 | 54 |
} |
sl@0 | 55 |
|
sl@0 | 56 |
const TState* |
sl@0 | 57 |
CStateMachine::AddState(int aStateId) |
sl@0 | 58 |
{ |
sl@0 | 59 |
const TState* state = FindState(aStateId); |
sl@0 | 60 |
|
sl@0 | 61 |
if (state == 0) |
sl@0 | 62 |
{ |
sl@0 | 63 |
switch (aStateId) |
sl@0 | 64 |
{ |
sl@0 | 65 |
case EUsbMsDriveState_Disconnected: |
sl@0 | 66 |
state = new TDisconnected(); |
sl@0 | 67 |
break; |
sl@0 | 68 |
case EUsbMsDriveState_Connecting: |
sl@0 | 69 |
state = new TConnecting(); |
sl@0 | 70 |
break; |
sl@0 | 71 |
case EUsbMsDriveState_Connected: |
sl@0 | 72 |
state = new TConnected(); |
sl@0 | 73 |
break; |
sl@0 | 74 |
case EUsbMsDriveState_Disconnecting: |
sl@0 | 75 |
state = new TDisconnecting(); |
sl@0 | 76 |
break; |
sl@0 | 77 |
case EUsbMsDriveState_Active: |
sl@0 | 78 |
state = new TActive(); |
sl@0 | 79 |
break; |
sl@0 | 80 |
case EUsbMsDriveState_Locked: |
sl@0 | 81 |
state = new TLocked(); |
sl@0 | 82 |
break; |
sl@0 | 83 |
case EUsbMsState_Read: |
sl@0 | 84 |
state = new TRead(); |
sl@0 | 85 |
break; |
sl@0 | 86 |
case EUsbMsState_Written: |
sl@0 | 87 |
state = new TWritten(); |
sl@0 | 88 |
break; |
sl@0 | 89 |
default: |
sl@0 | 90 |
break; |
sl@0 | 91 |
} |
sl@0 | 92 |
|
sl@0 | 93 |
if (state) |
sl@0 | 94 |
{ |
sl@0 | 95 |
allStates.Append(state); |
sl@0 | 96 |
} |
sl@0 | 97 |
} |
sl@0 | 98 |
|
sl@0 | 99 |
return state; |
sl@0 | 100 |
} |
sl@0 | 101 |
|
sl@0 | 102 |
void |
sl@0 | 103 |
CStateMachine::SetInitState(int aStateId) |
sl@0 | 104 |
{ |
sl@0 | 105 |
iCurrentState = FindState(aStateId); |
sl@0 | 106 |
iFromStateId = aStateId; |
sl@0 | 107 |
} |
sl@0 | 108 |
|
sl@0 | 109 |
const TState* |
sl@0 | 110 |
CStateMachine::FindState(int aStateId) const |
sl@0 | 111 |
{ |
sl@0 | 112 |
TInt count = allStates.Count(); |
sl@0 | 113 |
for (TInt i = 0; i < count; i++) |
sl@0 | 114 |
{ |
sl@0 | 115 |
if (allStates[i]->GetStateId() == aStateId) |
sl@0 | 116 |
{ |
sl@0 | 117 |
return allStates[i]; |
sl@0 | 118 |
} |
sl@0 | 119 |
} |
sl@0 | 120 |
|
sl@0 | 121 |
return 0; |
sl@0 | 122 |
} |
sl@0 | 123 |
|
sl@0 | 124 |
TInt CStateMachine::CurrentStateId() const |
sl@0 | 125 |
{ |
sl@0 | 126 |
return iCurrentState->GetStateId(); |
sl@0 | 127 |
} |
sl@0 | 128 |
|
sl@0 | 129 |
TInt CStateMachine::FromStateId() const |
sl@0 | 130 |
{ |
sl@0 | 131 |
return iFromStateId; |
sl@0 | 132 |
} |
sl@0 | 133 |
|
sl@0 | 134 |
void CStateMachine::SetFromStateId(TInt aStateId) |
sl@0 | 135 |
{ |
sl@0 | 136 |
iFromStateId = aStateId; |
sl@0 | 137 |
} |