Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for an easy language/command line utility to draw sequence and timing diagrams (could be 2 different tools). I've already found Mscgen for sequence diagram drawing and looks pretty good, but I'm studying other possibilities.

Thanks

share|improve this question
Why is graphviz in the title and tags? Do you want to draw those diagrams with graphviz? – marapet Jun 15 '11 at 21:59
I've found graphivz and it seemsagood option, I just didn't found the way to do it(sequence diagrams) – rnunes Jun 15 '11 at 22:25
mscgen seems the better choice to me for that task - see stackoverflow.com/questions/1491322/… for implementing a sequence diagram with graphviz. – marapet Jun 16 '11 at 19:19

5 Answers

up vote 6 down vote accepted

The best software I've found and I usually use to make sequence diagrams from plain text is SDEdit. It's a Java tool, so you can use it in any operating system. And it's free software!

With this tool, you write the following:

#![SD ticket order]
ext:External[pe]
user:Actor
/order:Order[x]
db:TicketDB
acc:Account

ext:user.order a ticket!
user:order.new()
order:return=db.reserve(date,count)
db:return=acc.debit(cost)
acc:return=db.bonus(date,count)

to obtain this:

SDEdit example

share|improve this answer

For sequence diagrams, you may take a look at websequencediagrams - it creates nice looking diagrams and has a lot of functionalities (examples page). It's not a command line utility, but it does have its web-API.

ditaa creates nice looking diagrams from ascii source. Written in java, it can be called on the command line to convert ascii text to diagrams.

share|improve this answer
1  
+1 Very cool tool. There's now a bunch of plugins for websequencediagrams too... – DNA Nov 15 '12 at 8:21
For an open source tool with similar syntax to websequencediagrams.com, you might want to have a look at PlantUML (plantuml.sourceforge.net/sequence.html). – user569825 Apr 7 at 11:48

For sequence diagrams, you also might want to look at UMLGraph.

share|improve this answer

For sequence diagrams you may also want to look at Visual Paradigm, quite a powerful tool.

share|improve this answer

EventStudio System Designer 5 might work for you. It generates sequence diagrams from text based input. Also handles multiple scenarios.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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