vote up 2 vote down star

Hi -

I'm looking for a tool that will reverse engineer into a sequence diagram BUT also provides the ability to filter out calls to certain libraries.

For example, the Netbeans IDE does a fantastic job of this but it includes all calls to String or Integer which clutter up the diagram to the point it is unusable.

Any help is greatly appreciated!!!!!!!

FYI: The language in question is Java.

flag

60% accept rate
You used so many tags that you haven't made clear what language you want to reverse engineer from! Java? – Ray Hayes Sep 17 '08 at 20:17
Ahhh ... yes, Java. – ghostrocket Sep 17 '08 at 20:26

5 Answers

vote up 3 vote down check

I think jtracert is what you are looking for. It generates a sequence diagram from a running Java program. Also, because its output is a text description of the diagram (in the formats of several popular SD tools), you can use grep to filter for only the classes you are interested in.

link|flag
vote up 0 vote down

A friend of me directed me to SEQUENCE (http://www.xanthan.com/ajm/sequencev7/sequence.jar). I cannot find any other documentation than within the jar itself.

It does not parse Java source code directly, but uses a text-based representation of the sequence to generate the sequence diagram. You could either write this representation by hand or do some source code preprocessing magic to generate this text format.

I am yet to be impressed by any reverse-engineering trickery when it comes to sequence diagrams, but perhaps others have better experiences?

link|flag
hmm. that URL redirects me to a herbal supplement website. it doesn't seem that was intended? – ghostrocket Sep 17 '08 at 21:25
vote up 0 vote down

Contact me through my homepage link if you're interested in such a tool. Perhaps not the kind of answer you'd expect on stackoverflow, but I cannot disclose anything yet so I can't post a link. But I will definitely be able to help you out on this one.

Btw, generating sequence diagrams from running code is the way to go. Generating them from source code is pretty poinless.

link|flag
vote up 1 vote down

Enterprise architect from Sparx claims to be able to reverse engineer java code including generating sequence diagrams - see this section of the user guide

It looks like it can record a debugging session and then you generate the sequence diagram from that

I've not tried it (though have used EA as a modelling tool) so ymmv!

There is a free 30day evaluation download available

link|flag
vote up 0 vote down

Take a look at http://www.maintainj.com

It don't know, whether it can filter library calls, but it has a reasonable graphical front end and seems to trace even very large applications.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.