Cohesion is a very important design consideration for producing decent software designs but are generally applied to VIs when talking about LabVIEW.
The types of cohesion that applies to modules (VIs), in order of the worst to the best type, are as follows:
I'd like the discussion to move onto how these rules can apply to States in a state machine. First I guess we should define a state machine.
A finite-state machine (FSM) or simply a state machine, is a mathematical model of computation used to design both computer programs and sequential logic circuits. It is conceived as an abstract machine that can be in one of a finite number of states. The machine is in only one state at a time; the state it is in at any given time is called the current state. It can change from one state to another when initiated by a triggering event or condition; this is called a transition.
In LabVIEW terms we may be looking at something like this.
Reading through the list above it can be seen that having clarity and purpose when defining states has the same advantages as when defining modules.
So how can cohesion apply to states in a state machine? One test I do for good cohesion of a VI is the "1 simple sentence rule".
A VI should be described in 1 simple sentence.
With a state in a state machine I would modify to the following...
A State should be described in 1 simple sentence without logical connectives. (clue.. "Self-Test OR Test Units" is 2 states and the logic is part of the transition)
Another useful technique to consider is the granularity of the state, does it do enough to be tested.
We have worked on systems that drag states out of a database each state being a very small portion of a test. So for example each check on the results was an individual state. To do a test, get results, compare these results, print results and store them was in excess of 12 individual states in the state machine. The result was a system where it was very difficult to just do a test and get results, fault-finding was a pain.
The Yang to that particular Ying is if you have a state machine like this.
So although we can describe this in a simple sentence it's a bit disappointing. In this case the state is doing too much and any benefits of using a state machine are lost. If you find yourself making decisions and branching within your state code it's a pretty good sign that you need to break out some more states. |
Localized cohesion (transitions in a state machine)
So considering a state machine with transitions driven by a queue as shown earlier. We then spawn lots of concurrent processes and thoughtlessly allow any and all of them to trigger transitions, it can be seen that this will cause issues with comprehension (it's also an example of control coupling, of which I will talk about in another article). The simplest solution is to keep transition code within the state machine, obviously this is not so easy in some of the larger systems, but it should be a consideration in your design.
Another way to harm the cohesion of your state machine is with the event structure, for example it is very nice and convenient to put actions into your event structure when actually should you be firing off a transition instead? I'm framing this as a question because I'm about 80% convinced about this.
Initialise State : Sets up your state machine.
Error State : We could report errors in here and make decisions about what to do next.
Safe Exit State : It's good to have a pigeon-hole where you think about how you safely exit your program. Especially true for control systems.
This is just the beginning of my thoughts on State Machine design, but I thought it would be useful to put the ideas out there as not a great deal is available on it barring the pure mechanics.
Lots of love and don't let your state machines get in a state!
Steve
Steve
Opportunity to learn from experienced developers / entrepeneurs (Fab,Joerg and Brian amongst them):
DSH Pragmatic Software Development Workshop
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.