State machine limitations

homepage Forums BridgePoint/xtUML Usage and Training State machine limitations

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1233
    andersivner
    Participant

    Hi!

    I cannot find exit actions on states, and it does not seem to be possible to do nested states. Is this a deliberate limitation in xtUML state machines, and if so why?

    Thanks,

    /Anders

    #1234
    Lee Riemenschneider
    Participant

    This topic comes up every time a new Executable UML forum pops up. :-)

    If you look in the help documentation, the metamodel state machine description shows support for both Moore (action on entry) and Mealy (action on transition) support, but as far as I know, the xtUML Editor only supports Moore state machines. It should be noted that Moore and Mealy are 100% convertible to each other.

    Harel (nested states) isn’t recommended. Here’s a quote from Marc Balcer, “Executable UML does not employ the full Harel statechart formalism, complete with substates and state history, precisely because such things, in practice, tend to hide abstractions. Modeling is supposed to expose abstractions.”, from the Yahoo! Executable UML group

    H.S. Lahman also expressed this view, “Complex state machines usually indicate poor object cohesion (too many responsibilities). [I regard even thinking about using Harel as a similar symptom. B-)]” here.

    To sum up the Mellor and Lahman comments, nested states hide the abstracted dynamics of the model, and are only desired, if you’ve improperly abstracted the class model. Exposing more rules of the system in your class models greatly reduces the complexity in the dynamics (states and actions). The most convincing argument is redrawing your Harel state model as a Moore or Mealy state model. ;-)

    #1236
    poj
    Participant

    The xtUML Editor supports both actions on entry and actions on transition, but actions on transitions are much less visible, and therefore harder to understand when looking at a state machine. Double-clicking on a transition opens an action editor for the transition action.

    #1248
    cort
    Keymaster

    @poj, there is a very slight visible “…” on the transitions that contain action language.

    @andersivener, to support @lwriemen do a net search on “Deterministic versus Non-Deterministic Finite State Automata” especially regarding testing.

    The door is not closed on adding richness to xtUML state machines, but any such richness would need to be configurable, so that users could disable it to maintain the deterministic testability.

    Cort

    #1291
    Domonkos Asztalos
    Participant

    @Lee can you provide a particular elaborated example reference for “The most convincing argument is redrawing your Harel state model as a Moore or Mealy state model. ;-)” ?

    Domi

    #1320
    Lee Riemenschneider
    Participant

    @Domonkos Most of the nested state machines I’ve seen are based on a complex functional breakdown. Redrawing the nesting on a single-level state diagram ends up looking like spaghetti and meatballs. You usually don’t have to redraw much to make the point that you have a very complex mess. I haven’t ever seen an example put online.

    In Executable UML, we manage complexity in the class model, so the complexity doesn’t get pushed down into the state machines and action language (process models). This exposes dependencies and constraints much better.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.