X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FElement.java;h=a37e96036d65206b6be4f5e56c9970ef168f2d0b;hp=c94adbdcc6f80a3ed43822c8b632b1fef16dc0b5;hb=fcc038ff693cf2b3e91efcd348ea3a3b7fbb1829;hpb=fd97655ce34c3aff1a47bfb2f45775ac711923b1 diff --git a/src/edu/berkeley/sbp/Element.java b/src/edu/berkeley/sbp/Element.java index c94adbd..a37e960 100644 --- a/src/edu/berkeley/sbp/Element.java +++ b/src/edu/berkeley/sbp/Element.java @@ -1,24 +1,46 @@ +// (C) 2006-2007 all rights reserved; see LICENSE file for BSD-style license + package edu.berkeley.sbp; -import edu.berkeley.sbp.util.*; -import edu.berkeley.sbp.*; -import edu.berkeley.sbp.*; -import java.io.*; import java.util.*; -import java.lang.reflect.*; -import java.lang.ref.*; -/** the root superclass for all components of the grammar (terminals, nonterminals, literals, etc) */ -public abstract class Element { +/** + * + * the root superclass for all components of the grammar (terminals, + * nonterminals, literals, etc) + * + */ +public abstract class Element implements SequenceOrElement { + + /** sorry, you can't make up new, custom elements */ + Element() { } - /** if this element always matches exactly one token, return a topology covering exactly those possible tokens, otherwise null */ - abstract Topology toAtom(); + /** a more verbose version of toString() for displaying whole grammars */ + abstract StringBuffer toString(StringBuffer sb); - Forest epsilonForm() { throw new Error("no epsilon form: " + this); } - final boolean possiblyEpsilon(Walk.Cache cache) { - Boolean ret = cache==null ? null : cache.possiblyEpsilon.get(this); - if (ret != null) return ret.booleanValue(); - ret = new Walk.PossiblyEpsilon().walk(this) ? Boolean.TRUE : Boolean.FALSE; - if (cache != null) cache.possiblyEpsilon.put(this, ret); - return ret; + /** a slow and inefficient epsilon-ness checker used when constructing parse trees (see Union.epsilonForm()) */ + public static boolean possiblyEpsilon(SequenceOrElement e) { + if (e instanceof Atom) return false; + if (e instanceof Sequence) { + Sequence s = (Sequence)e; + for(Sequence.Pos p = s.firstp(); !p.isLast(); p = p.next()) + if (!possiblyEpsilon(p.element())) + return false; + return true; + } + if (e instanceof Union) { + Union u = (Union)e; + if (u.visiting) return true; + try { + u.visiting = true; + for(Sequence s : u) + if (possiblyEpsilon(s)) + return true; + return false; + } finally { + u.visiting = false; + } + } + throw new Error(); } + boolean visiting = false; }