1 //===-- Support/DotGraphTraits.h - Customize .dot output --------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines a template class that can be used to customize dot output
11 // graphs generated by the GraphWriter.h file. The default implementation of
12 // this file will produce a simple, but not very polished graph. By
13 // specializing this template, lots of customization opportunities are possible.
15 //===----------------------------------------------------------------------===//
17 #ifndef SUPPORT_DOTGRAPHTRAITS_H
18 #define SUPPORT_DOTGRAPHTRAITS_H
24 /// DefaultDOTGraphTraits - This class provides the default implementations of
25 /// all of the DOTGraphTraits methods. If a specialization does not need to
26 /// override all methods here it should inherit so that it can get the default
29 struct DefaultDOTGraphTraits {
30 /// getGraphName - Return the label for the graph as a whole. Printed at the
33 static std::string getGraphName(const void *Graph) { return ""; }
35 /// getGraphProperties - Return any custom properties that should be included
36 /// in the top level graph structure for dot.
38 static std::string getGraphProperties(const void *Graph) {
42 /// getNodeLabel - Given a node and a pointer to the top level graph, return
43 /// the label to print in the node.
44 static std::string getNodeLabel(const void *Node, const void *Graph) {
48 /// If you want to specify custom node attributes, this is the place to do so
50 static std::string getNodeAttributes(const void *Node) { return ""; }
52 /// If you want to override the dot attributes printed for a particular edge,
53 /// override this method.
54 template<typename EdgeIter>
55 static std::string getEdgeAttributes(const void *Node, EdgeIter EI) {
59 /// getEdgeSourceLabel - If you want to label the edge source itself,
60 /// implement this method.
61 template<typename EdgeIter>
62 static std::string getEdgeSourceLabel(const void *Node, EdgeIter I) {
66 /// edgeTargetsEdgeSource - This method returns true if this outgoing edge
67 /// should actually target another edge source, not a node. If this method is
68 /// implemented, getEdgeTarget should be implemented.
69 template<typename EdgeIter>
70 static bool edgeTargetsEdgeSource(const void *Node, EdgeIter I) {
74 /// getEdgeTarget - If edgeTargetsEdgeSource returns true, this method is
75 /// called to determine which outgoing edge of Node is the target of this
77 template<typename EdgeIter>
78 static EdgeIter getEdgeTarget(const void *Node, EdgeIter I) {
82 /// addCustomGraphFeatures - If a graph is made up of more than just
83 /// straight-forward nodes and edges, this is the place to put all of the
84 /// custom stuff necessary. The GraphWriter object, instantiated with your
85 /// GraphType is passed in as an argument. You may call arbitrary methods on
86 /// it to add things to the output graph.
88 template<typename GraphWriter>
89 static void addCustomGraphFeatures(const void *Graph, GraphWriter &GW) {}
93 /// DOTGraphTraits - Template class that can be specialized to customize how
94 /// graphs are converted to 'dot' graphs. When specializing, you may inherit
95 /// from DefaultDOTGraphTraits if you don't need to override everything.
97 template <typename Ty>
98 class DOTGraphTraits : public DefaultDOTGraphTraits {};
100 } // End llvm namespace