slow down spinner
[sbp.git] / src / edu / berkeley / sbp / Sequence.java
1 // Copyright 2006 all rights reserved; see LICENSE file for BSD-style license
2
3 package edu.berkeley.sbp;
4 import edu.berkeley.sbp.util.*;
5 import edu.berkeley.sbp.*;
6 import edu.berkeley.sbp.*;
7 import java.io.*;
8 import java.util.*;
9 import java.lang.reflect.*;
10 import java.lang.ref.*;
11
12 /** <font color=green>juxtaposition; zero or more adjacent Elements; can specify a rewriting</font> */
13 public abstract class Sequence implements Iterable<Element>, SequenceOrElement {
14
15     protected final Element[] elements;
16
17     boolean needed_or_hated = false;
18     boolean in_a_union = false;
19
20     final HashSet<Sequence> needs  = new HashSet<Sequence>();
21     final HashSet<Sequence> hates  = new HashSet<Sequence>();
22
23     // FIXME: these are ugly -- migrate into Cache
24     HashMap<Sequence,Boolean> canNeed = new HashMap<Sequence,Boolean>();
25     HashMap<Sequence,Boolean> canKill = new HashMap<Sequence,Boolean>();
26
27     final Position          firstp;
28
29     Atom follow = null;
30
31     // Static Constructors //////////////////////////////////////////////////////////////////////////////
32
33     /** create a sequence of one element */
34     public static Sequence create(Element e) { return create(new Element[] { e }, 0); }
35
36     /** create a sequence which drops the result of all but one of its element */
37     public static Sequence create(Element[] e, int which) { return new Singleton(e, which); }
38
39     /** create a sequence which always evaluates to a constant result  */
40     public static Sequence create(Element[] e, Object result) { return new Constant(e, result); }
41
42     /**
43      *  create a sequence (general form)
44      *  @param head   the head of the output tree
45      *  @param e      the elements to match
46      *  @param drop   only elements of <tt>e</tt> whose corresponding <tt>boolean</tt> in <tt>drops</tt>
47      *                is <i>false</i> will be included in the output tree
48      *  @param foster if true, all children of the last child (ie
49      *                grandchildren) are promoted to children of this
50      *                node; this is very useful for matching repetitions
51      **/
52     public static Sequence create(Object head, Element[] e, boolean[] drop, boolean foster) {
53         return foster
54             ? new Unwrap(e, head, drop)
55             : new RewritingSequence(head, e, drop);
56     }
57
58     /** return a new sequence identical to this one, but with a positive conjunct <tt>s</tt> */
59     public Sequence and(Sequence s) {
60         if (s.in_a_union)
61             throw new RuntimeException("you may not use a sequence as a conjunct if it belongs to a Union");
62         Sequence ret = dup();
63         ret.needs.add(s);
64         s.needed_or_hated=true;
65         return ret;
66     }
67
68     /** return a new sequence identical to this one, but with a negative conjunct <tt>s</tt> */
69     public Sequence andnot(Sequence s) {
70         if (s.in_a_union)
71             throw new RuntimeException("you may not use a sequence as a conjunct if it belongs to a Union");
72         Sequence ret = dup();
73         ret.hates.add(s);
74         s.needed_or_hated=true;
75         return ret;
76     }
77
78     /** return a new sequence identical to this one, but with a follow-set restricted to <tt>a</tt> */
79     public Sequence followedBy(Atom a) { Sequence ret = dup(); ret.follow = a; return ret; }
80
81     ////////////////////////////////////////////////////////////////////////////////
82
83     abstract Sequence _clone();
84     private Sequence dup() {
85         Sequence ret = _clone();
86         for(Sequence s : needs) { ret.needs.add(s); }
87         for(Sequence s : hates) { ret.hates.add(s); }
88         ret.follow = follow;
89         return ret;
90     }
91
92     Iterable<Sequence> needs() { return needs; }
93     Iterable<Sequence> hates() { return hates; }
94
95     Position firstp() { return firstp; }
96     Position lastp() { return firstp().last(); }
97
98     public Iterator<Element> iterator()    { return new ArrayIterator<Element>(elements); }
99     protected Sequence(Element[] elements) {
100         this.elements = elements;
101         for(int i=0; i<elements.length; i++)
102             if (elements[i]==null)
103                 throw new RuntimeException("cannot have nulls in a sequence: " + this);
104         this.firstp = new Position(0, null);
105     }
106
107     // DO NOT MESS WITH THE FOLLOWING LINE!!!
108     private Forest.Many epsilonForm = null;
109     Forest epsilonForm(Input.Region loc) {
110         if (epsilonForm!=null) return epsilonForm;
111         epsilonForm = new Forest.Many();
112         epsilonForm.merge(firstp().rewrite(loc, false));
113         return epsilonForm;
114     }
115
116     protected abstract <T> Forest<T> postReduce(Input.Region loc, Forest<T>[] args, Position p);
117
118
119     // Position //////////////////////////////////////////////////////////////////////////////
120
121     /** the imaginary position before or after an element of a sequence; corresponds to an "LR item" */
122     class Position implements IntegerMappable {
123
124         public int ord = -1;
125
126         private Forest zero = null;
127         public Forest zero(Input.Region reg) {
128             if (zero != null) return zero;
129             if (pos > 0) throw new RuntimeException("Position.zero(): pos>0");
130             return zero = rewrite(reg);
131         }
132
133                 final int      pos;
134         private final Position next;
135         private final Position prev;
136                 final Forest[] holder;
137         
138         private Position(int pos, Position prev) {
139             this.pos      = pos;
140             this.next     = pos==elements.length ? null : new Position(pos+1, this);
141             this.holder   = new Forest[elements.length];
142             this.prev     = prev;
143         }
144
145         boolean isFirst() { return pos==0; }
146
147         /** the element immediately after this Position, or null if this is the last Position */
148         public Element  element() { return pos>=elements.length ? null : elements[pos]; }
149
150         /** the element which produces the sequence to which this Position belongs */
151         public Sequence owner() { return Sequence.this; }
152
153         /** the next Position (the Position after <tt>this.element()</tt>) */
154         public Position next() { return next; }
155
156         /** true iff this Position is the last one in the sequence */
157         public boolean isLast() { return next()==null; }
158         public Position last() { return isLast() ? this : next().last(); }
159         public Position prev() { return prev; }
160
161         // Position /////////////////////////////////////////////////////////////////////////////////
162
163         final <T> Forest<T> rewrite(Input.Region loc) { return rewrite(loc, true); }
164         private final <T> Forest<T> rewrite(Input.Region loc, boolean epsilonCheck) {
165             if (epsilonCheck && this==firstp()) return epsilonForm(loc);
166             for(int i=0; i<pos; i++) if (holder[i]==null) throw new Error("realbad " + i);
167             for(int i=pos; i<elements.length; i++) {
168                 if (holder[i]==null) holder[i] = elements[i].epsilonForm(loc);
169                 if (holder[i]==null) throw new Error("bad " + i);
170             }
171             return Sequence.this.postReduce(loc, holder, this);
172         }
173
174         public String   toString() {
175             StringBuffer ret = new StringBuffer();
176             ret.append("<{");
177             for(Position p = Sequence.this.firstp(); p != null; p = p.next()) {
178                 ret.append(' ');
179                 if (p==this) ret.append(" | ");
180                 if (p.element()!=null) ret.append(p.element());
181                 else                   ret.append(' ');
182             }
183             ret.append("}>");
184             return ret.toString();
185         }
186         private final int idx = master_position_idx++;
187         public int toInt() { return idx; }
188     }
189     private static int master_position_idx = 0;
190
191     // toString //////////////////////////////////////////////////////////////////////////////
192
193     public String toString() { return toString(new StringBuffer(), false).toString(); }
194     StringBuffer toString(StringBuffer sb) { return toString(sb, true); }
195     StringBuffer toString(StringBuffer sb, boolean spacing) {
196         for(int i=0; i<elements.length; i++) {
197             sb.append(elements[i]+"");
198             sb.append(' ');
199         }
200         if (follow != null) {
201             sb.append("-> ");
202             sb.append(follow);
203         }
204         for(Sequence s : needs) {
205             sb.append("& ");
206             sb.append(s);
207         }
208         for(Sequence s : hates) {
209             sb.append("&~ ");
210             sb.append(s);
211         }
212         return sb;
213     }
214
215
216     // Specialized Subclasses //////////////////////////////////////////////////////////////////////////////
217
218     static class Constant extends Sequence {
219         private final Object result;
220         public Constant(Element[] e, Object result) {
221             super(e);
222             if (result==null) throw new Error("constant sequences may not have result==null");
223             this.result = result;
224         }
225         Sequence _clone() { return new Constant(elements, result); }
226         public <T> Forest<T> postReduce(Input.Region loc, Forest<T>[] args, Position p) {
227             return (Forest<T>)Forest.create(loc, result, null, false);
228         }
229     }
230
231     static class Singleton extends Sequence {
232         private final int idx;
233         public Singleton(Element e) { this(new Element[] { e }, 0); }
234         public Singleton(Element[] e, int idx) { super(e); this.idx = idx; }
235         public <T> Forest<T> postReduce(Input.Region loc, Forest<T>[] args, Position p) { return args[idx]; }
236         Sequence _clone() { return new Singleton(elements,idx); }
237     }
238
239     static class Unwrap extends Sequence {
240         private boolean[] drops;
241         private final Object tag;
242         public Unwrap(Element[] e, Object tag)                  { this(e, tag, null); }
243         public Unwrap(Element[] e, Object tag, boolean[] drops) { super(e); this.drops = drops; this.tag = tag; }
244         Sequence _clone() { return new Unwrap(elements, tag, drops); }
245         public <T> Forest<T> postReduce(Input.Region loc, Forest<T>[] args, Position p) {
246             for(int i=0; i<args.length; i++) if (args[i]==null) throw new Error();
247             if (drops==null) return Forest.create(loc, (T)tag, args, true);
248             int count = 0;
249             for(int i=0; i<drops.length; i++) if (!drops[i]) count++;
250             Forest<T>[] args2 = new Forest[count];
251             int j = 0;
252             for(int i=0; i<args.length; i++) if (!drops[i]) args2[j++] = args[i];
253             return Forest.create(loc, (T)tag, args2, true);
254         }
255     }
256
257     static class RewritingSequence extends Sequence {
258         private Object tag;
259         private final boolean[] drops;
260         private int count = 0;
261         Sequence _clone() { return new RewritingSequence(tag, elements, drops); }
262         public RewritingSequence(Object tag, Element[] e) { this(tag, e, null); }
263         public RewritingSequence(Object tag, Element[] e, boolean[] drops) {
264             super(e);
265             if (tag==null) throw new Error();
266             this.tag = tag;
267             this.drops = drops == null ? new boolean[e.length] : drops;
268             for(int i=0; i<this.drops.length; i++) if (!this.drops[i]) count++;
269         }
270         public <T> Forest<T> postReduce(Input.Region loc, Forest<T>[] args, Position p) {
271             Forest<T>[] args2 = new Forest[count];
272             int j = 0;
273             for(int i=0; i<args.length; i++) if (!drops[i]) args2[j++] = args[i];
274             return Forest.create(loc, (T)tag, args2, false);
275         }
276         public StringBuffer toString(StringBuffer sb, boolean spacing) {
277             int len = sb.length();
278             if (tag != null)
279                 sb.append("\""+StringUtil.escapify(tag.toString(),"\"\r\n")+"\":: ");
280             super.toString(sb, spacing);
281             len = sb.length()-len;
282             if (spacing) for(int i=0; i<50-len; i++) sb.append(' ');
283             return sb;
284         }
285     }
286
287 }