/** * @file * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de) * @copyright Simplified BSD * * @cond * This program is free software: you can redistribute it and/or modify * it under the terms of the FreeBSD license as published by the FreeBSD * project. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the FreeBSD license along with this * program. If not, see . * @endcond */ #ifndef SCXMLDOTWRITER_H_AOP0OHXX #define SCXMLDOTWRITER_H_AOP0OHXX #include "uscxml/Interpreter.h" #include #include #include #include namespace uscxml { class Interpreter; /** * This writer, added as a monitor will output .dot files. * * # create a set of pdfs form the dot files * $ dot -Tpdf -O *.dot * or * $ find . -name "*.dot" -exec dot -Tpdf -O {} \; * * # create a movie from the pdfs * $ dot -Tgif -O *.dot * or * $ find . -name "*.dot" -exec dot -Tgif -O {} \; * * $ ffmpeg -r 3 -i .%06d.dot.gif -r 25 movie.mpg * $ convert -delay 20 *.gif animated.gif * * # unflatten can be used to create more compact graphs * find . -name "*.dot" -exec unflatten -f -l2 -o {}.flat.dot {} \; */ class USCXML_API SCXMLDotWriter : public InterpreterMonitor { public: struct ElemDetails { std::string name; std::string details; std::string content; }; SCXMLDotWriter(); ~SCXMLDotWriter(); virtual void onStableConfiguration(Interpreter interpreter); virtual void afterCompletion(Interpreter interpreter); virtual void beforeTakingTransition(Interpreter interpreter, const Arabica::DOM::Element& transition); virtual void beforeMicroStep(Interpreter interpreter); static void toDot(const std::string& filename, Interpreter interpreter, const Arabica::DOM::Element& transition = Arabica::DOM::Element()); std::string getDetailedLabel(const Arabica::DOM::Element& elem, int indentation = 0); std::string colorForIndent(int indent); std::string idForNode(const Arabica::DOM::Node& node); std::string nameForNode(const Arabica::DOM::Node& node); std::string getPrefix(); static std::string dotEscape(const std::string& text); protected: SCXMLDotWriter(Interpreter interpreter, const Arabica::DOM::Element& transition); void writeSCXMLElement(std::ostream& os, const Arabica::DOM::Element& elem); void writeStateElement(std::ostream& os, const Arabica::DOM::Element& elem); void writeTransitionElement(std::ostream& os, const Arabica::DOM::Element& elem); int _iteration; std::set _knownIds; int _indentation; // these are only set in ephemeral instances per monitor call Arabica::DOM::Element _transition; Interpreter _interpreter; }; } #endif /* end of include guard: SCXMLDOTWRITER_H_AOP0OHXX */