blob: 0666aa5bf364d9e36569f39d3fd82b7b88d15479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef SCXMLDOTWRITER_H_AOP0OHXX
#define SCXMLDOTWRITER_H_AOP0OHXX
#include <DOM/Document.hpp>
#include <fstream>
#include <set>
namespace uscxml {
class Interpreter;
class SCXMLDotWriter {
public:
struct ElemDetails {
std::string name;
std::string details;
std::string content;
};
SCXMLDotWriter(InterpreterImpl* interpreter);
~SCXMLDotWriter();
static void toDot(const std::string& filename, InterpreterImpl* interpreter);
void writeSCXMLElement(std::ostream& os, const Arabica::DOM::Element<std::string>& elem);
void writeStateElement(std::ostream& os, const Arabica::DOM::Element<std::string>& elem);
void writeTransitionElement(std::ostream& os, const Arabica::DOM::Element<std::string>& elem);
std::string getDetailedLabel(const Arabica::DOM::Element<std::string>& elem, int indentation = 0);
std::string colorForIndent(int indent);
std::string idForNode(const Arabica::DOM::Node<std::string>& node);
std::string nameForNode(const Arabica::DOM::Node<std::string>& node);
static std::string getPrefix();
static std::string dotEscape(const std::string& text);
std::set<std::string> _knownIds;
static int _indentation;
};
}
#endif /* end of include guard: SCXMLDOTWRITER_H_AOP0OHXX */
|