为什么我的状态机会抛出错误:转换无效?

问题描述 投票:0回答:1

我正在尝试实现状态机。该方案是,如果提交了文档,则会将其发送给审核,然后再批准。

但是它会引发一个错误,即审核 - >批准转换无效。

这是可能提供更好图片的代码。

为什么会抛出错误?我确保一切都井然有序但仍然如此。

 public enum ProcessState
    {    
        Submitted,    
        Reviewed,    
        Approved    
    }  

    public enum Command
    {    
        Submit,    
        Review,    
        Approve    
    }   

    public class Process
    {    
        class StateTransition
        {
            readonly ProcessState CurrentState;    
            readonly Command Command;      

            public StateTransition(ProcessState currentState, Command command)
            {    
                CurrentState = currentState;    
                Command = command;    
            }   

            public override int GetHashCode()
            {    
                return 17 + 31 * CurrentState.GetHashCode() + 31 * Command.GetHashCode();    
            }    

            public override bool Equals(object obj)
            {    
                StateTransition other = obj as StateTransition;    
                return other != null && this.CurrentState == other.CurrentState && this.Command == other.Command;    
            }    
        }    

        Dictionary<StateTransition, ProcessState> transitions;

        public ProcessState CurrentState { get; private set; }   

        public Process()
        {    
            CurrentState = ProcessState.Submitted;    
            transitions = new Dictionary<StateTransition, ProcessState>    
            {    
                 { new StateTransition(ProcessState.Submitted, Command.Review), ProcessState.Reviewed },

            { new StateTransition(ProcessState.Reviewed, Command.Approve), ProcessState.Approved },

            };    
        }   

        public ProcessState GetNext(Command command)
        {    
            StateTransition transition = new StateTransition(CurrentState, command);    
            ProcessState nextState;

            if (!transitions.TryGetValue(transition, out nextState))

                throw new Exception("Invalid transition: " + CurrentState + " -> " + command);

            return nextState;    
        }    

        public ProcessState MoveNext(Command command)
        {    
            CurrentState = GetNext(command);    
            return CurrentState;    
        }    
    }    

    public class Program
    {   
        static void Main(string[] args)
        {    
            Process p = new Process();

            Console.WriteLine("Current State = " + p.CurrentState);    
            Console.WriteLine("Command.Submit: Current State = " + p.MoveNext(Command.Submit));    
            Console.WriteLine("Command.Review: Current State = " + p.MoveNext(Command.Review));    
            Console.WriteLine("Command.Approve: Current State = " + p.MoveNext(Command.Approve));    
            Console.ReadLine();  
        }    
    }

更新:

这是错误部分:

  public ProcessState GetNext(Command command)
        {

            StateTransition transition = new StateTransition(CurrentState, command);

            ProcessState nextState;

            if (!transitions.TryGetValue(transition, out nextState))

                throw new Exception("Invalid transition: " + CurrentState + " -> " + command);

            return nextState;

        }
c# .net c#-4.0 state-machine
1个回答
1
投票

这允许您的示例Main正确运行。问题是你的transitions字典没有Command.Approve的条目。

public Process()
{
    CurrentState = ProcessState.Submitted;
    transitions = new Dictionary<StateTransition, ProcessState>
    {
        //This does nothing.  Submitted -> Submitted
        { new StateTransition(ProcessState.Submitted, Command.Submit), ProcessState.Submitted },
        //Submitted -> Reviewed
        { new StateTransition(ProcessState.Submitted, Command.Review), ProcessState.Reviewed },
        //Reviewed -> Submitted.  Do you want this?
        { new StateTransition(ProcessState.Reviewed, Command.Submit), ProcessState.Submitted },
        //I added this.  Reviewed -> Approved
        { new StateTransition(ProcessState.Reviewed, Command.Approve), ProcessState.Approved }
    };
}

输出:

Command.Submit:当前状态=已提交

Command.Review:当前状态=已审核

Command.Approve:当前状态=已批准

注意我没有检查所有状态机转换。我只是添加了遗失的那个。

© www.soinside.com 2019 - 2024. All rights reserved.