$search
Classes | |
class | Edge |
class | Graph |
class | Node |
Functions | |
def | generate_dotcode |
def | generate_namespaces |
def | safe_dotcode_name |
Variables | |
string | INIT_DOTCODE |
string | NODE_NODE_GRAPH = "node_node" |
string | NODE_TOPIC_ALL_GRAPH = "node_topic_all" |
string | NODE_TOPIC_GRAPH = "node_topic" |
list | ORIENTATIONS = ['LR', 'TB', 'RL', 'BT'] |
list | QUIET_NAMES = ['/diag_agg', '/runtime_logger', '/pr2_dashboard', '/rviz', '/rosout', '/cpu_monitor', '/monitor','/hd_monitor', '/rxloggerlevel', '/clock'] |
def rxgraphplus::dotcode::generate_dotcode | ( | g, | ||
ns_filter, | ||||
graph_mode, | ||||
orientation, | ||||
config, | ||||
quiet = False | ||||
) |
@param g: Graph instance @param ns_filter: namespace filter (must be canonicalized with trailing '/') @type ns_filter: string @param graph_mode str: NODE_NODE_GRAPH | NODE_TOPIC_GRAPH | NODE_TOPIC_ALL_GRAPH @type graph_mode: str @param orientation: rankdir value (see ORIENTATIONS dict) @return: dotcode generated from graph singleton @rtype: str
Definition at line 248 of file dotcode.py.
def rxgraphplus::dotcode::generate_namespaces | ( | g, | ||
graph_mode, | ||||
quiet = False | ||||
) |
Determine the namespaces of the nodes being displayed
Definition at line 292 of file dotcode.py.
def rxgraphplus::dotcode::safe_dotcode_name | ( | name | ) |
encode the name for dotcode symbol-safe syntax
Definition at line 19 of file dotcode.py.
""" digraph G { initializing [label="initializing..."]; } """
Definition at line 7 of file dotcode.py.
string rxgraphplus::dotcode::NODE_NODE_GRAPH = "node_node" |
Definition at line 12 of file dotcode.py.
string rxgraphplus::dotcode::NODE_TOPIC_ALL_GRAPH = "node_topic_all" |
Definition at line 16 of file dotcode.py.
string rxgraphplus::dotcode::NODE_TOPIC_GRAPH = "node_topic" |
Definition at line 14 of file dotcode.py.
list rxgraphplus::dotcode::ORIENTATIONS = ['LR', 'TB', 'RL', 'BT'] |
Definition at line 5 of file dotcode.py.
list rxgraphplus::dotcode::QUIET_NAMES = ['/diag_agg', '/runtime_logger', '/pr2_dashboard', '/rviz', '/rosout', '/cpu_monitor', '/monitor','/hd_monitor', '/rxloggerlevel', '/clock'] |
Definition at line 31 of file dotcode.py.