X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FSequence.java;h=2ba90968333b055a1348b0ab7c3d121d0b5eb215;hp=7071ecb5ba0a5f36ebc395572f4f37b2476a3e34;hb=fa858dc4acddd3e32126ff2558e0860315a84758;hpb=944848ba21df8673ba812a764fc641d7fbaea54c diff --git a/src/edu/berkeley/sbp/Sequence.java b/src/edu/berkeley/sbp/Sequence.java index 7071ecb..2ba9096 100644 --- a/src/edu/berkeley/sbp/Sequence.java +++ b/src/edu/berkeley/sbp/Sequence.java @@ -195,7 +195,8 @@ public abstract class Sequence extends Element implements Iterable { Sequence _clone() { return new Singleton(elements,idx); } } - public static class Unwrap extends Sequence { + public static Unwrap unwrap(Element[] e, Object tag, boolean[] drops) { return new Unwrap(e, tag, drops); } + static class Unwrap extends Sequence { private boolean[] drops; private final Object tag; public Unwrap(Element[] e, Object tag) { super(e); this.drops = null; this.tag = tag; } @@ -245,4 +246,34 @@ public abstract class Sequence extends Element implements Iterable { return sb; } } + + // Repeat ////////////////////////////////////////////////////////////////////////////// + + /** repeat zero or one times */ + public static Repeat maybe(Element e) { return new Repeat(e, true, false, null, false); } + public static Repeat maybe(Element e, Object tag) { return new Repeat(e, true, false, null, false, tag); } + /** repeat zero or more times */ + public static Repeat many0(Element e) { return new Repeat(e, true, true, null, false); } + public static Repeat many0(Element e, Object tag) { return new Repeat(e, true, true, null, false, tag); } + /** repeat zero or more times, separated by sep */ + public static Repeat many0(Element e, Element sep) { return new Repeat(e, true, true, sep, false); } + public static Repeat many0(Element e, Element sep, Object tag) { return new Repeat(e, true, true, sep, false, tag); } + /** repeat one or more times */ + public static Repeat many1(Element e) { return new Repeat(e, false, true, null, false); } + public static Repeat many1(Element e, Object tag) { return new Repeat(e, false, true, null, false, tag); } + /** repeat one or more times, separated by sep */ + public static Repeat many1(Element e, Element sep) { return new Repeat(e, false, true, sep, false); } + public static Repeat many1(Element e, Element sep, Object tag) { return new Repeat(e, false, true, sep, false, tag); } + + /** repeat zero or more times, matching a maximal sequence of atoms */ + public static Repeat maximal0(Element e) { return new Repeat(e, true, true, null, true); } + public static Repeat maximal0(Element e, Object tag) { return new Repeat(e, true, true, null, true, tag); } + /** repeat one or more times, matching a maximal sequence of atoms */ + public static Repeat maximal1(Element e) { return new Repeat(e, false, true, null, true); } + public static Repeat maximal1(Element e, Object tag) { return new Repeat(e, false, true, null, true, tag); } + /** repeat one or more times, separated by an atom sep, matching a maximal sequence */ + public static Repeat maximal1(Element e, Element sep) { return new Repeat(e, false, true, sep, true); } + public static Repeat maximal1(Element e, Element sep, Object tag) { return new Repeat(e, false, true, sep, true, tag); } + + }