checkpoint
[sbp.git] / src / edu / berkeley / sbp / Repeat.java
1 package edu.berkeley.sbp;
2 import edu.berkeley.sbp.util.*;
3 import edu.berkeley.sbp.*;
4 import edu.berkeley.sbp.*;
5 import java.io.*;
6 import java.util.*;
7 import java.lang.reflect.*;
8 import java.lang.ref.*;
9
10 /** currently this class exports only static methods to create repetitions; there are no public instance methods or constructors */
11 class Repeat extends Union {
12
13     public Repeat(final Element e, boolean zeroOkay, boolean manyOkay, Object tag) {
14         this(e, zeroOkay, manyOkay, null, false, tag); }
15     public Repeat(final Element e, boolean zeroOkay, boolean manyOkay, final Element separator, Object tag) {
16         this(e, zeroOkay, manyOkay, separator, false, tag); }
17     protected Repeat(final Element e, boolean zeroOkay, boolean manyOkay, final Element separator, boolean maximal, Object tag) {
18         super(e+(!manyOkay ? "?" : (zeroOkay ? (maximal ? "**" : "*") : (maximal ? "++" : "+")))+(separator==null?"":("/"+separator)), true);
19         if (zeroOkay && !manyOkay) {
20             add(new Sequence.Constant.Empty());
21             add(new Sequence.Singleton(e));
22             return;
23         }
24         if (zeroOkay) {
25             add(new Sequence.RewritingSequence(tag, new Element[] { }, null));
26             // FUGLY
27             add(new Sequence.Singleton(Sequence.many1(e, separator, tag)));
28         } else {
29             add(new Sequence.RewritingSequence(tag, new Element[] { e }, null));
30             if (separator==null)
31                 add(new Sequence.Unwrap(new Element[] { e,                 Repeat.this }, tag));
32             else
33                 add(new Sequence.Unwrap(new Element[] { e, separator,      Repeat.this }, tag, new boolean[] { false, true, false }));
34         }
35     }
36
37     public static class Maximal extends Repeat {
38         public Maximal(final Element e, boolean zeroOkay, boolean manyOkay, final Atom separator, Object tag) {
39             super(e, zeroOkay, manyOkay, separator, true, tag);
40             if (zeroOkay && separator != null)
41                 throw new RuntimeException("cannot create a maximal repetition of zero or more items with a separator (yet): " + this);
42             for(Sequence s : this)
43                 s.follow = new Invert(separator);
44         }
45         public Maximal(final Atom e, boolean zeroOkay, boolean manyOkay, Object tag) {
46             super(e, zeroOkay, manyOkay, null, true, tag);
47             for(Sequence s : this)
48                 s.follow = new Invert(e);
49         }
50     }
51
52
53     /** an atom which tracks the inverse of some other atom */
54     private static class Invert<T extends Input> extends Atom<T> {
55         private final Atom<T> a;
56         public Invert(Atom<T> a) { this.a = a; }
57         public Topology<T> top() { return a.complement(); }
58         public String toString() { return "~"+a; }
59     }
60 }