X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=636ad4f08af8c101d3db45b78628422ec5fcfe02;hp=04e06be6d80646a17e87494cf363a586a5bf6a5d;hb=24219bdf084b45273e869cd19382d1640b396566;hpb=a8478f5ddfbfbc8d910d09f27163cbd55752d3b6 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 04e06be..636ad4f 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -1,12 +1,9 @@ -// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license +// Copyright 2006-2007 all rights reserved; see LICENSE file for BSD-style license package edu.berkeley.sbp; -import edu.berkeley.sbp.*; -import edu.berkeley.sbp.Sequence.Position; import edu.berkeley.sbp.util.*; import java.io.*; import java.util.*; -import java.lang.reflect.*; /** * @@ -20,26 +17,29 @@ public abstract class Forest implements GraphViz.ToGraphViz { public abstract Tree expand1() throws Ambiguous; /** expand this forest into a set of trees */ - public void expand(HashSet> ht) { expand(ht, new HashSet>(), null); } - - static Forest create(Input.Region loc, NodeType head, Forest[] children, boolean lift) { - if (loc == null) throw new Error(); - return new One(loc, head, children, lift); + public Iterable> expand() { + HashSet> ht = new HashSet>(); + expand(ht, new HashSet>(), null); + return ht; } - /** create a new forest */ - public static Forest create(Input.Region loc, NodeType head, Forest[] children) { - return Forest.create(loc, head, children, false); } + /** returns the input Region which this Forest was parsed from */ + public abstract Input.Region getRegion(); // Package-Private ////////////////////////////////////////////////////////////////////////////// + public static Forest create(Input.Region region, NodeType head, Forest[] children) { + return create(region, head, children, new boolean[children==null ? 0 : children.length]); } + public static Forest create(Input.Region region, NodeType head, Forest[] children, boolean[] lifts) { + if (region == null) throw new RuntimeException("invoked Forest.create(region=null) -- this should never happen"); + return new One(region, head, children, lifts); + } + abstract void expand(HashSet> ht, HashSet> ignore, Tree bogus); abstract void gather(HashSet> ignore); - abstract void edges(GraphViz.Node n); + abstract void edges(GraphViz.StateNode n); boolean ambiguous() { return false; } - abstract Input.Region getRegion(); - // One ////////////////////////////////////////////////////////////////////////////// /** A "single" forest with a head and child subforests */ @@ -50,23 +50,24 @@ public abstract class Forest implements GraphViz.ToGraphViz { private final Forest[] children; /** if true, the last child's children are considered children of this node */ - private final boolean lift; + private final boolean[] lifts; - Input.Region getRegion() { return location; } + public Input.Region getRegion() { return location; } - private One(Input.Region loc, NodeType head, Forest[] children, boolean lift) { + private One(Input.Region loc, NodeType head, Forest[] children, boolean[] lifts) { this.location = loc; this.head = head; + if (head==null) throw new RuntimeException("invoked Forest.create(,null,,,) -- this should never happen"); this.children = children==null ? emptyForestArray : new Forest[children.length]; if (children != null) System.arraycopy(children, 0, this.children, 0, children.length); if (children != null) for(int i=0; i expand1() throws Ambiguous { Tree[] ret = new Tree[children.length]; for(int i=0; i(location, head, ret, lift); + return new Tree(location, head, ret, lifts); } void gather(HashSet> hf) { @@ -77,9 +78,10 @@ public abstract class Forest implements GraphViz.ToGraphViz { if (ignore.contains(this)) { ht.add(bogus); return; } expand(0, new Tree[children.length], ht, ignore, bogus); } - private void expand(final int i, Tree[] ta, HashSet> ht, HashSet> ignore, Tree bogus) { + private void expand(final int i, Tree[] ta, HashSet> ht, HashSet> ignore, + Tree bogus) { if (i==children.length) { - ht.add(new Tree(location, head, ta, lift)); + ht.add(new Tree(location, head, ta, lifts)); } else { HashSet> ht2 = new HashSet>(); children[i].expand(ht2, ignore, bogus); @@ -95,20 +97,20 @@ public abstract class Forest implements GraphViz.ToGraphViz { public boolean isTransparent() { return false; } public boolean isHidden() { return false; } - public GraphViz.Node toGraphViz(GraphViz gv) { + public GraphViz.StateNode toGraphViz(GraphViz gv) { if (gv.hasNode(this)) return gv.createNode(this); - GraphViz.Node n = gv.createNode(this); + GraphViz.StateNode n = gv.createNode(this); n.label = headToString()==null?"":headToString(); n.directed = true; edges(n); return n; } boolean edges = false; // FIXME ?? - public void edges(GraphViz.Node n) { + public void edges(GraphViz.StateNode n) { if (edges) return; edges = true; for(int i=0; i implements GraphViz.ToGraphViz { /** An "ambiguity node"; this is immutable once it has been "looked at" */ static class Many extends Forest { - HashSet parents = new HashSet(); private FastSet> hp = new FastSet>(); private boolean touched = false; public Many() { } - Input.Region getRegion() { return hp.iterator().next().getRegion(); } // all should be identical + public Input.Region getRegion() { return hp.iterator().next().getRegion(); } // all should be identical public Tree expand1() throws Ambiguous { touched(); @@ -209,14 +210,14 @@ public abstract class Forest implements GraphViz.ToGraphViz { public boolean isTransparent() { return hp.size()==1; } public boolean isHidden() { return hp.size()==0; } - public void edges(GraphViz.Node n) { + public void edges(GraphViz.StateNode n) { if (hp.size()==1) { hp.iterator().next().edges(n); return; } for(Forest f : hp) f.edges(n); } - public GraphViz.Node toGraphViz(GraphViz gv) { + public GraphViz.StateNode toGraphViz(GraphViz gv) { if (hp.size()==1) return hp.iterator().next().toGraphViz(gv); if (gv.hasNode(this)) return gv.createNode(this); - GraphViz.Node n = gv.createNode(this); + GraphViz.StateNode n = gv.createNode(this); n.label = "?"; n.color = "red"; for(Forest f : hp) n.edge(f, null);