DQMH Consortium Toolkits Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

HSE State Machine vs TLB'?

This question is mostly directed at Jörg (can we not tag people on the forum?), but I want to leave the discussion public.

I've been re-evaluating my template usage and having been looking at both the DQMH HSE State Machine implementation and Norm's TLB'. One thing bugging me about the HSE SM implementation is that the MHL can be influenced by either the EHL or the state machine. This means that if you have a state that transitions back into itself (iterating an acquisition and waiting on the latest frame or an interrupt), the EHL might inject a message in between. This puts the onus on the developer to be consistent in routing events to the MHL or state machine. In an implementation like TLB', the EHL MUST go through the state machine, keeping the "MHL" clean. I would imagine trying to keep the clear division of components using the DQMH-(HSE)SM, one would have to delete the auto-generated MHL case and always send an event the to SM loop from the EHL. From my eyes, a DQMH-TLB hybrid would be a fantastic thing, but at present, the scripting of the MHL vs that state machine logic cases seems like a significant incompatibility.

I would appreciate if Jörg or anyone else could elaborate on this aspect of using the DQMH-(HSE)SM.

0 Kudos
Message 1 of 6
(138 Views)

Hey @ConnerP (<- that's a tag here 😃 ), thanks for taking the time to compare these templates and reporting back here!

 

I would argue that the MHL *should* be able to accommodate each and every request sent to it. If we need to isolate a process (like data acquisition), that would most definitely go into a separate helper loop.

 

Are you suggesting that you'd like to drop incoming messages in the EHL based on the State of the SM? I've never had to do that before... I think we use the SM module slightly differently (and I don't quite know how to put this into words): The SM represents something in the system and it is the prime citizen - the DQMH module around it just the scaffolding for hosting the SM. What you describes sounds as if the SM manages the internal state of the module.

 

Does this differentiation make any sense?




DSH Pragmatic Software Development Workshops (Fab, Steve, Brian and me)
Release Automation Tools for LabVIEW (CI/CD integration with LabVIEW)
HSE Discord Server (Discuss our free and commercial tools and services)
DQMH® (Developer Experience that makes you smile )


0 Kudos
Message 2 of 6
(95 Views)

Hi Joerg, thanks for getting back.

I think there is still some confusion on the communication. I agree with what you say about the SM should be the prime citizen. However, your template as it is, allows it to be undercut if there isn't a 1-to-1 relationship between SM transitions and the number of MHL cases. I now realize that I think I am getting mixed up between what the code allows and the *intended use* of the different frameworks.

The other major frameworks (Messenger Library, JKI, TLB') all guarantee by design that a sequence of actions (case structure cases) will run un-interrupted. You are supposed to queue up an array of actions to keep each action small, single purpose, and re-usable.

Messenger library: Action loop following the event structure
JKI: Event structure only runs once action stack is cleared
TLB': Action loop is only ever loaded by a SM transition, so nothing is ever injected between cases from outside the loop

In the DQMH-HSE-SM, the MHL (action loop) can be triggered by the EHL or the SM loop. That means if one tried to enqueue multiple actions like any of the other major frameworks, things would get messy. Like I said, I think I was blurring the differences of the frameworks in my mind. As The Simple Dos and Don'ts says, all MHL cases should be atomic-- either they fit within the single case on the block diagram or everything gets packed into a sub-VI.

The trade-off being that DQMH-HSE-SM allows queries of private data without going through state transitions (as may be necessary in TLB', I'm not sure maybe Norm can chime in here), but on the flip side the MHL has a mixture of state transition dependent actions and non-state transition dependent actions. I suppose these could be separated by dividers in the case list. I need to let this turn over in my head a bit more.

 

(user tags don't seem to work for me. This post claims only people with admin rights can: https://forums.ni.com/t5/Feedback-on-NI-Community/How-to-mention-a-user/td-p/4334670)

0 Kudos
Message 3 of 6
(82 Views)

I think this is a difficult topic to nail down in just so many words - but I'm willing to work with you on this 🙂 

 


@ConnerP wrote:

your template as it is, allows it to be undercut if there isn't a 1-to-1 relationship between SM transitions and the number of MHL cases.


Either I don't understand this, or I disagree. The state machine cannot be undercut by anything at all. Whatever happens to the rest of the module and the application - the state machine is in a state, which has defined a certain set of transitions it cares about (and how to react to each). 

 

I don't want to sound academic or dogmatic, and I don't want to claim one of us is right and the other is wrong. These terms - sequence, state machine, QMH, ... - and implementations bleed into each other, and terminology is often used ambiguously in our bubble. So for the sake of this discussion, let's be very clear and academic:

 

You keep mentioning a sequence of actions. Our State Machine is not a sequencer - it has very little to do with how a sequence of states (or even actions) is or is not atomic. Also, this is not the intended responsibility of the State Machine module. It represents a stateful system, which reacts to different stimuli depending on the state its in. It does not care about the order of states and transitions (state changes).

 

Also, the State Machine is independent of and indifferent to whatever cases might be available in the MHL. Some of those cases might be triggered by the State Machine, or by other means, or both. 

 

Of course you're right that DQMH does not guarantee atomic processing of multiple messages, hence the recommendation in the do's and don'ts that you already mentioned. If you want that kind of functionality, the other frameworks you mentioned make it easy(er) to get there 🙂

 

Looking forward to your thoughts about this. Thanks for keeping me on my toes and forcing me to think these things through.




DSH Pragmatic Software Development Workshops (Fab, Steve, Brian and me)
Release Automation Tools for LabVIEW (CI/CD integration with LabVIEW)
HSE Discord Server (Discuss our free and commercial tools and services)
DQMH® (Developer Experience that makes you smile )


0 Kudos
Message 4 of 6
(67 Views)

Either I don't understand this, or I disagree. The state machine cannot be undercut by anything at all. Whatever happens to the rest of the module and the application - the state machine is in a state, which has defined a certain set of transitions it cares about (and how to react to each).

 

I don't want to sound academic or dogmatic, and I don't want to claim one of us is right and the other is wrong. These terms - sequence, state machine, QMH, ... - and implementations bleed into each other, and terminology is often used ambiguously in our bubble. So for the sake of this discussion, let's be very clear and academic:

 

You keep mentioning a sequence of actions. Our State Machine is not a sequencer - it has very little to do with how a sequence of states (or even actions) is or is not atomic. Also, this is not the intended responsibility of the State Machine module. It represents a stateful system, which reacts to different stimuli depending on the state its in. It does not care about the order of states and transitions (state changes).

I didn't mean about the state machine getting undercut, I meant about the MHL queue getting undercut.

I agree asynchronous text communication is difficult, especially with the fuzzy wuzzy use of the labels! Something about naming variables and cache invalidation...

 


Also, the State Machine is independent of and indifferent to whatever cases might be available in the MHL. Some of those cases might be triggered by the State Machine, or by other means, or both. 

 

This is one key difference between your flavor and TLB'. In yours, as you say, nothing in the data of the module (MHL) directly influences the behavior of the state machine. This means that any data dependent transitions, i.e. branching, are decided on in the MHL and an explicit transition in the SM is requested (assuming one from the EHL didn't beat it there). In TLB', the state machine can receive a request/trigger for a state change but branch itself based on the module data. I feel that your implementation emphasizes a bit more the documentation aspect of the SM loop, where-as the TLB' SM is slightly more of an "active" thing, but that is very hand-wavey, gut-feeling interpretation at the moment. I would need to play with both in a more hands-on way to compare the strengths and weaknesses.

 


Of course you're right that DQMH does not guarantee atomic processing of multiple messages, hence the recommendation in the do's and don'ts that you already mentioned. If you want that kind of functionality, the other frameworks you mentioned make it easy(er) to get there 🙂

 

Yea. Previously I kind of clumped them all together in my mental model as "asynchronous, event-driven process" frameworks with either strict typing, JKI and DQMH using scripted events, or "duck-typed" as in Messenger Library, at least at the messaging level-- the user is responsible for passing the right type to extract-message-contents/variant-to-data VIs. I didn't however appreciate the difference between the developer responsibility of atomic message handling in DQMH and the more by-nature atomic action stack of JKI and Messenger Library.

 

 


Looking forward to your thoughts about this. Thanks for keeping me on my toes and forcing me to think these things through.

Glad to help 😁

0 Kudos
Message 5 of 6
(54 Views)

While looking for something else, I came across this post where Fab mentions having done a TLB' flavored DQMH module. Fab, any chance of seeing the implementation?

https://forums.ni.com/t5/LabVIEW/Is-QMH-obsolete-Am-I-wasteing-my-time/m-p/4171230/highlight/true#M1...

0 Kudos
Message 6 of 6
(17 Views)