OpenASIP 2.2
Loading...
Searching...
No Matches
GraphNode.cc
Go to the documentation of this file.
1/*
2 Copyright (c) 2002-2009 Tampere University.
3
4 This file is part of TTA-Based Codesign Environment (TCE).
5
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the "Software"),
8 to deal in the Software without restriction, including without limitation
9 the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 and/or sell copies of the Software, and to permit persons to whom the
11 Software is furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23 */
24/**
25 * @file GraphNode.cc
26 *
27 * Prototype of graph-based program representation: implementation of graph
28 * node.
29 *
30 * @author Vladimir Guzma 2006 (vladimir.guzma-no.spam-tut.fi)
31 * @note rating: red
32 */
33
34#include "GraphNode.hh"
35#include "Conversion.hh"
36
37GraphNode::GraphNode() : nodeID_(idCounter_++) {}
38
40
41/**
42 * Clones node. Needed for dynamic binding, when copying
43 * instances through the base class.
44 *
45 * @return Dynamically allocated copy of the node.
46 */
49 return new GraphNode(*this);
50}
51
52/**
53 * Returns a node description as a string.
54 *
55 * Used for printing graph into .dot file. This is used for a label in
56 * the default dotString() implementation.
57 *
58 * @return The node ID as a string.
59 */
60std::string
64
65/**
66 * Returns the string that should be placed in the node's properties section
67 * in the GraphViz Dot string.
68 *
69 * This can be overridden in the derived class to add different properties
70 * (e.g., colors, etc.) to different type of nodes. The default
71 * implementation only sets the label property.
72 *
73 * @return String describing the Dot properties of the Node.
74 */
75std::string
77 return std::string("label=\"") + toString() + "\"";
78}
79
80
static std::string toString(const T &source)
virtual ~GraphNode()
Definition GraphNode.cc:39
virtual std::string dotString() const
Definition GraphNode.cc:76
int nodeID() const
virtual std::string toString() const
Definition GraphNode.cc:61
static int idCounter_
Definition GraphNode.hh:64
virtual GraphNode * clone() const
Definition GraphNode.cc:48