X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FUnion.java;h=70a3e45753a8e4912a2edf343a8131922d5cd592;hp=4de0bb4969c58512982b7977fda60c9c6eaeac05;hb=5d18f5606c9296e6b0c5749f05fc68f358ace2f6;hpb=1a249057cbfd2180910e46672eafee3af46ae470 diff --git a/src/edu/berkeley/sbp/Union.java b/src/edu/berkeley/sbp/Union.java index 4de0bb4..70a3e45 100644 --- a/src/edu/berkeley/sbp/Union.java +++ b/src/edu/berkeley/sbp/Union.java @@ -10,6 +10,21 @@ import java.lang.ref.*; /** an element which can produce one of several alternatives */ public class Union extends Element implements Iterable { + /** + * Since every cycle in a non-degenerate grammar contains at + * least one Union, every instance of this class must be able to + * display itself in both "long form" (list of the long forms of + * its alternatives) and "short form" (some abbreviation). + * + * @param shortForm the "short form" display; usually + * @param synthetic if true, this Union's "long form" is "obvious" and should not be displayed when printing the grammar + */ + public Union(String shortForm) { this(shortForm, false); } + public Union(String shortForm, boolean synthetic) { + this.shortForm = shortForm; + this.synthetic = synthetic; + } + /** display form for the Union (ie not including the RHS) */ final String shortForm; @@ -25,77 +40,47 @@ public class Union extends Element implements Iterable { /** adds an alternative */ public void add(Sequence s) { alternatives.add(s); + + // FIXME: does this make sense? for(Sequence n : s.needs) add(n); for(Sequence n : s.hates) add(n); } - /** - * Since every cycle in a non-degenerate grammar contains at - * least one Union, every instance of this class must be able to - * display itself in both "long form" (list of the long forms of - * its alternatives) and "short form" (some abbreviation). - * - * @param shortForm the "short form" display; usually - * @param synthetic if true, this Union's "long form" is "obvious" and should not be displayed when printing the grammar - */ - public Union(String shortForm) { this(shortForm, false); } - public Union(String shortForm, boolean synthetic) { - this.shortForm = shortForm; - this.synthetic = synthetic; - } + // Epsilon Form ////////////////////////////////////////////////////////////////////////////// + // FIXME public static Union epsilon = new Union("()"); static { epsilon.add(Sequence.empty); } + // FIXME private Forest.Ref epsilonForm = null; Forest epsilonForm() { if (epsilonForm != null) return epsilonForm; epsilonForm = new Forest.Ref(); - for(Sequence s : this) - if (s.possiblyEpsilon(null)) + for(Sequence s : this) { + // FIXME FIXME FIXME + if (new Walk.Cache().possiblyEpsilon(s)) epsilonForm.merge(s.epsilonForm()); + } return epsilonForm; } // Display ////////////////////////////////////////////////////////////////////////////// public String toString() { return shortForm; } - private static String pad(int i,String s) { return s.length() >= i ? s : pad(i-1,s)+" "; } - public void toString(StringBuffer sb) { - if (synthetic) return; + public StringBuffer toString(StringBuffer sb) { + if (synthetic) return sb; boolean first = true; if (alternatives.size()==0) { - sb.append(pad(15, shortForm) + "::= "); + sb.append(StringUtil.pad(15, shortForm) + " = "); } else for(Sequence s : this) { - sb.append(pad(15, first ? shortForm : "") + (first ? "::= " : " | ")); + sb.append(StringUtil.pad(15, first ? shortForm : "") + (first ? " = " : " | ")); first = false; sb.append(s.toString()); sb.append('\n'); } sb.append('\n'); - } - - // SubUnion ////////////////////////////////////////////////////////////////////////////// - - /** FIXME this is kind of a hack */ - public class Subset extends Union { - private final Set exclude; - public Subset(String shortForm, Set exclude) { super(shortForm, true); this.exclude = exclude; } - public Iterator iterator() { - final Iterator it = Union.this.iterator(); - return new Iterator() { - private Sequence next = it.hasNext() ? it.next() : null; - public boolean hasNext() { return next != null; } - public Sequence next() { - Sequence ret = next; - do { - next = it.hasNext() ? it.next() : null; - } while (next != null && (next instanceof Sequence) && exclude.contains((Sequence)next)); - return ret; - } - public void remove() { throw new Error(); } - }; - } + return sb; } }