unrolling forests without recursion
[sbp.git] / src / edu / berkeley / sbp / Input.java
1 package edu.berkeley.sbp;
2 import java.io.*;
3 import java.util.*;
4 import java.lang.reflect.*;
5 import java.lang.ref.*;
6 import edu.berkeley.sbp.*;
7 import edu.berkeley.sbp.util.*;
8
9 /** a stream of tokens to be parsed */
10 public interface Input<Token> {
11
12     /** returns the token just beyond the current location and advances beyond it */
13     public Token           next() throws IOException;
14
15     /** returns the location the input stream is currently at */
16     public Location<Token> getLocation();
17
18     /** a location <i>between tokens<i> in the input stream */
19     public static interface Location<Tok> extends Comparable<Location> {
20         public String toString();
21     }
22
23     public static class Region<Loc extends Location> /* implements Topology<Location<Tok>> */ {
24         public final Loc start;
25         public final Loc end;
26         public Region(Loc a, Loc b) {
27             switch(a.compareTo(b)) {
28                 case -1:
29                 case  0: start=a; end=b; return;
30                 case  1: start=b; end=a; return;
31                 default: throw new Error("impossible");
32             }
33         }
34     }
35 }
36
37