Actor Framework Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Messaging/Sequence Diagram Tool

I am curious how everyone is documenting the expected behavior of their Actor Framework messaging.  A quick google search pulled up the following site which seems really efficient and useful:

http://www.websequencediagrams.com/

Any other tools that someone would suggest?  Visio seems overkill for UML...

CLA, CTA
0 Kudos
Message 1 of 9
(7,028 Views)

Documentation? Um, er, ah...

A tool I like that I don't use very well (or often) is StarUML: http://www.staruml.com/

They have a Collaboration diagram.

-Kurt

0 Kudos
Message 2 of 9
(4,364 Views)

When designing a system, I usually scribble some blocks and a couple of lists in my notebook. Does that count as documentation? A few comments on various block diagrams, and sometimes a README.txt for the project, are good enough implementation notes to myself and other developers.

I've tried to formally document OOP designs using StarUML and MS Visio before, but the tools are too clunky to justify the effort unless it's demanded by a client. I will say that the link you shared is pretty nice and seems like it'd be worth use, but they want $99/mo to unlock half the blocks you'd need to make a proper sequence diagram.

0 Kudos
Message 3 of 9
(4,364 Views)

Do you use direct point-to-point messaging, hierarchical messaging, or a mix of both?  Either way is fine but I feel like I have to do more documenting with point-to-point messaging because the messages don't follow a well-defined path.

I use StarUML to create a few sketches--sequence, state, class, etc--but I don't try to make them comprehensive and the saved drawing file isn't "official."  I'll pick a few of the trickier messages sequences and show them using a sequence diagram.  Then I copy the image to the block diagram.  Once a developer understands the roles of each actor it shouldn't (if the design is adequate) be too hard to figure out the the rest of them.

0 Kudos
Message 4 of 9
(4,364 Views)

I also like StarUML. Combined with G# and G# StarUML plugin it can even generate a class diagram from your project's classes. I find it really good for documenting.

0 Kudos
Message 5 of 9
(4,364 Views)

A class diagram isn't informative about messaging sequences, though. Does the plugin generate sequence diagrams automatically?

0 Kudos
Message 6 of 9
(4,364 Views)

No, it doesn't. You are right it is not informative about the messaging, I use it only for documenting the classes. I see now, I was a bit off-topic, sorry.

0 Kudos
Message 7 of 9
(4,364 Views)

Documentation vs. Zero Coupling:

..

If all the parts of the whole program are Zero Coupled AF and therefore know nothing about each other, then the documentation is the only glue that makes it whole: True / False?  Is there a way in a zero coupled system to look just at the code and figure out what the system is supposed to do?

..

I am trying to get a grasp on AF and Zero Coupling, an explaination of how to recognize someone else's code is an AF system and troubleshoot it would be a great help.  At some point AF code will land in the hands of a person not familiar with AF for maintenance/upgrade.  Once I understand how to work with AF, I will feel much more comfortable to write my own AF.  I hope there are lots of examples in LabVIEW12.

..

It seems to me that as coupling goes down documentation must go up.  As a potential customer for LabVIEW developers who might use AF, how much documentation should I require for acceptance of the finished project, and how would I specify that?

..

Thank you for your help.

0 Kudos
Message 8 of 9
(4,364 Views)

If all the parts of the whole program are Zero Coupled AF and therefore know nothing about each other, then the documentation is the only glue that makes it whole: True / False? 

Neither--the question is flawed.  There are lots of different kinds of coupling:  static, interface, behavioral, etc.  There *must* be some kind of coupling between any two components that interact.  IIRC zero coupling in the context of the document AQ wrote is referring to an actor callee that is not statically coupled to the actor caller.  The caller may still be statically coupled to the callee.  There are many ways to create two interacting actors that are not statically dependent on each other; however, there has to be some code somewhere that sets up the relationship between them.  It's not practical to write an application where all parts of the program have no static dependencies on each other.

To look at it another way, if the documentation was the only glue that made it whole (wrt static coupling,) you would have to write your app so that it reads the documentation and uses it to set up the relationships between the components.  At that point it's probably no longer fair to categorize it simply as "documentation."

It seems to me that as coupling goes down documentation must go up.

Not necessarily.  Documentation is useful for information that cannot be easily determined by looking at the code--complex relationship trees, message chains, etc.  If I have to open vis from several different parts of the application to understand some aspect of the application I'm interested in, then that is a good candidate for documentation.  Any reduced coupling solution has a section of code that sets up the initial relationships that must be established for the application to work.  Having all the setup code in one place can reduce the need for documentation.

As a potential customer for LabVIEW developers who might use AF, how much documentation should I require for acceptance of the finished project, and how would I specify that?

As a potential customer, you should specify the amount of documentation that you require to meet your needs.  If you allow your application to be developed using the AF, then you are implicitly agreeing to reducing the size of the developer pool you can draw on to work on the code.  IMO, it's unreasonable to expect an average (as of July 2012) LV developer to be able to look at AF code and understand the big picture.  They may be able to make small changes successfully, but they would have difficulty maintaining the architecture and over time it would degrade into a big ball of mud.  It's equally unreasonable, imo, to expect a developer to provide enough documentation to explain the AF (and OOP) to developers who aren't familiar with it.

Message 9 of 9
(4,364 Views)