X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FTree.java;h=cdd3b8bee479a4dc71843a7e6d98af4b94953d70;hb=7d1d5b9e2969e687cc07592f5a212681f8d26479;hp=b8677669bd71709c84d29c4b4c28cd7b91eae2e5;hpb=0ab024f487647f99eb000345c29c2f8e9b52a200;p=sbp.git diff --git a/src/edu/berkeley/sbp/Tree.java b/src/edu/berkeley/sbp/Tree.java index b867766..cdd3b8b 100644 --- a/src/edu/berkeley/sbp/Tree.java +++ b/src/edu/berkeley/sbp/Tree.java @@ -7,10 +7,14 @@ import java.util.*; import java.lang.reflect.*; /** a tree (or node in a tree); see jargon.txt for details */ -public class Tree extends PrintableTree> implements Iterable> { +public class Tree + extends PrintableTree> + implements Iterable>, + GraphViz.ToGraphViz { final T head; Tree[] children; + Object[] labels; final Input.Location location; public T head() { return head; } @@ -18,16 +22,23 @@ public class Tree extends PrintableTree> implements Iterable> public Iterable> children() { return new ArrayIterator(children); } public Iterator> iterator() { return new ArrayIterator(children); } public Tree child(int i) { return children[i]; } + public Object label(int i) { return labels[i]; } - public Input.Location getLocation() { return location; } + public Input.Location getLocation() { return location; } public Tree(Input.Location loc, T head) { this(loc, head, null); } - public Tree(Input.Location loc, T head, Tree[] children) { + public Tree(Input.Location loc, T head, Tree[] children) { this(loc, head, children, null); } + public Tree(Input.Location loc, T head, Tree[] children, Object[] labels) { this.location = loc; this.head = head; + Tree[] children2 = children==null ? new Tree[0] : new Tree[children.length]; if (children != null) System.arraycopy(children, 0, children2, 0, children.length); this.children = children2; + + Object[] labels2 = labels==null ? new Object[0] : new Object[labels.length]; + if (labels != null) System.arraycopy(labels, 0, labels2, 0, labels.length); + this.labels = labels2; } protected String headToString() { return head==null?null:head.toString(); } @@ -35,4 +46,15 @@ public class Tree extends PrintableTree> implements Iterable> protected String left() { return "{"; } protected String right() { return "}"; } protected boolean ignoreSingleton() { return false; } + + public GraphViz.Node toGraphViz(GraphViz gv) { + if (gv.hasNode(this)) return gv.createNode(this); + GraphViz.Node n = gv.createNode(this); + n.label = head()==null ? "" : head().toString(); + //n.color = "red"; + for(Tree t : this) n.edge(t, null); + return n; + } + public boolean isTransparent() { return false; } + public boolean isHidden() { return false; } }