JKI State Machine Objects

cancel
Showing results for 
Search instead for 
Did you mean: 

JKI SMO vs Actor Framework

Hello,

 

I have been using both AF and SMO for different projects. I started using SMO because it seemed easier and then used AF for some specific projects.

 

Here are my two cents:

 

- I agree with François that the SMO is simplier to apprehend than AF.

 

- There is a nice UI to create SMOs (with templates) and messages, which smooths up the first use of the framework. That UI gets however, very slow as the project grows to a point where it is not usable anymore. AF as some scripting tools to help you create actors and messages, not as fancy as the SMO tools but they do not get slow when the project grows.

 

- SMO automatically creates for you a launcher to test your SMO. It's not a lot of work to create a launcher with AF but still...

 

- SMO tends to use a reactive programing paradigm: what is shared between actors is data. While AF uses an imperative programing paradigm: what is shared is commands, each actor tells what to do to other actors (except when using abstrac messages). 

 

- Decoupling processes is natural with SMO while with AF you have to go through the process of creating abstract messages which is painful and takes a lot of time (if there is a way to do that without having to find the parent class on the harddrive, please do tell me!). 

 

- It is easy to just add one SMO to an existing application that wasn't programmed with SMO or AF in mind. For instance when revamping parts of a legacy code. It's not that easy to add an Actor to an application that wasn't programmed with AF from the ground up (it is possible, though).

 

- Managing static nested processes is very easy with SMO: just add the static dependecy inside a cluster and that's it. It makes it very easy to create mediators processes. One downside is that is it not possible to apply a pre-launch configuration to the nested dependency. With AF, it is not that difficult to create nested dependency but is is not automatic.However it is possible to modify the private data of an actor before launching.

 

- I don't think there is a robust way to make sure an Actor of the AF has stopped (without modifying the framework). Because you never know if all the helper loops have stopped. SMO, out of the box provides an "SMO state" information which is very useful.

 

- In the same idea: SMO gives you the opportunity to abort a process that did not stop correctly. This is very handy. I don't think there is the equivalent in AF.

 

- the SMO class is programmed with many hooks. This is good because when you know where to add a functionnality, it is very straightforward. However as mentionned by someone else, documentation is a bit lacking.

 

- SMO use events as transport mechanism for the messages, while AF use queues. Using events makes it easy to implement an observer pattern: many processes listening to the same event generated by one process. But it is harder to track when messages are consumed.

 

-  I find intra-process communication easier with AF, mostly because of the use of the command pattern. Creating relatively complex state machines with AF seems easier than whith SMO.

 

- When inheriting from an SMO, the parent SMO runs in parallel with the child. When inheriting from an actor of the AF, the messages of the child actor are processed in series with the messages of the parent actor. Having the parent and child SMO running in parallel means that a bit extra work is needed when you try to synchronize the work of the parent and the child.

 

- One big-big plus of the AF is the documentation and the tools that the community created around it. For instance Monitored Actors, Panel Actors, MVA framework,... are really worth checking out.

 

This is not exhaustive and I guess there are many more differences. I something I wrote is wrong, please tell me, I'd be happy to know how to get around some of the issues I mentionned.

 

Best regards

 

Message 11 of 20
(4,045 Views)

Hi peper2001,

Thanks for the detailed explanation but I am a beginer in AF and have no idea how SMO works. At the moment I am using JKI SM and studying AF but  I really need some tutorials on JKI SM and SMO. I f you have any? Please share. 

0 Kudos
Message 12 of 20
(4,032 Views)

Hi,

 

I think JKI has some short tutorials on their websites (or blog maybe) for both JKI SM and SMO. Also you can find one video on youtube with a tutorial to get you started with SMO.

 

Another thing that helped me also is the SMO life cycle diagram:

https://forums.ni.com/t5/JKI-State-Machine-Objects/SMO-Process-Lifecycle/gpm-p/3666656?profile.langu...

 

Best regards,

 

 

Message 13 of 20
(4,029 Views)

There is also this SMO State Lifecycle.:

https://forums.ni.com/t5/JKI-State-Machine-Objects/State-Machine-Objects-Lifecycle/gpm-p/3536742 

 

I think it is mostly the same information as the SMO Process lifecycle linked above.

0 Kudos
Message 14 of 20
(4,011 Views)

Any tutorial for JKI SM

0 Kudos
Message 15 of 20
(4,003 Views)

I've attached some slides I've made for introducing JKI State Machines and SMOs.

Message 16 of 20
(3,998 Views)

Thanks a lot.

0 Kudos
Message 17 of 20
(3,981 Views)

@peper2001 wrote:

I have been using both AF and SMO for different projects.


Are you familiar with any other frameworks to make comparisons with, such as DQMH or Messenger Library?  DQMH would be similar to SMO in it's User-Event communication system, but follows NI's "Producer Consumer" template for message handling.  Messenger Library uses a quite different communication design, but its message-handler template is descended from the JKI state-machine.  

0 Kudos
Message 18 of 20
(3,975 Views)

Hello DrJDPowel,

 

I havent had the chance to really try DQMH, yet. But it indeed seems quite popular.

 

Thanks for pointing out your Messenger Library, I'll sure give it a try!

 

Regards,

 

 

0 Kudos
Message 19 of 20
(3,973 Views)

Hi ciozi137

Thanks for that it very helps for me.

0 Kudos
Message 20 of 20
(3,952 Views)