checkpoint
authoradam <adam@megacz.com>
Thu, 30 Mar 2006 19:33:32 +0000 (14:33 -0500)
committeradam <adam@megacz.com>
Thu, 30 Mar 2006 19:33:32 +0000 (14:33 -0500)
darcs-hash:20060330193332-5007d-3012776ca736d0766a550ff016cf5f8c1d485dbf.gz

src/edu/berkeley/sbp/Input.java
src/edu/berkeley/sbp/misc/CartesianInput.java
src/edu/berkeley/sbp/misc/CartesianLocation.java [deleted file]
src/edu/berkeley/sbp/misc/MetaGrammar.java
src/edu/berkeley/sbp/tib/Tib.java

index eeb3cc1..be41cbe 100644 (file)
@@ -10,14 +10,46 @@ import edu.berkeley.sbp.util.*;
 public interface Input<Token> {
 
     /** returns the token just beyond the current location and advances beyond it */
-    public Token    next() throws IOException;
+    public Token           next() throws IOException;
 
     /** returns the location the input stream is currently at */
-    public Location getLocation();
+    public Location<Token> getLocation();
 
-    /** a location *between tokens* in the input stream */
-    public static interface Location {
+    /** a location <i>between tokens<i> in the input stream */
+    public static interface Location<Tok> extends Comparable<Location> {
         public String toString();
+
+        /** an implementation of Location for a cartesian grid (row, col) */
+        public static class Cartesian<Tok> implements Location<Tok>, Comparable<Location> {
+            protected final int row;
+            protected final int col;
+            public String toString() { return row+":"+col; }
+            public int getCol() { return col; }
+            public int getRow() { return row; }
+            public Cartesian(int col, int row) { this.row = row; this.col = col; }
+            public int compareTo(Location loc) throws ClassCastException {
+                if (!(loc instanceof Cartesian)) throw new ClassCastException();
+                Cartesian<Tok> c = (Cartesian<Tok>)loc;
+                if (row < c.row) return -1;
+                if (row > c.row) return  1;
+                if (col < c.col) return -1;
+                if (col > c.col) return  1;
+                return 0;
+            }
+        }
+    }
+
+    public static class Region<Loc extends Location> /* implements Topology<Location<Tok>> */ {
+        public final Loc start;
+        public final Loc end;
+        public Region(Loc a, Loc b) {
+            switch(a.compareTo(b)) {
+                case -1:
+                case  0: start=a; end=b; return;
+                case  1: start=b; end=a; return;
+                default: throw new Error("impossible");
+            }
+        }
     }
 }
 
index a78df9a..3af71f1 100644 (file)
@@ -13,12 +13,12 @@ public abstract class CartesianInput<Token> implements Input<Token> {
     public abstract boolean isCR();
 
     long then = 0;
-    private CartesianLocation location = new CartesianLocation(1, 0);
+    private Input.Location.Cartesian location = new Input.Location.Cartesian(0, 1);
     public  Input.Location    getLocation() { return location; }
 
     public Token next(int numstates, int resets, int waits) throws IOException {
-        int line  = location.line;
-        int col   = location.col;
+        int line  = location.getRow();
+        int col   = location.getCol();
         Token t = next();
         if (t==null) return null;
         String s = "  line "+line+", col " + col;
@@ -35,7 +35,7 @@ public abstract class CartesianInput<Token> implements Input<Token> {
         } else {
             col++;
         }
-        location = new CartesianLocation(line, col);
+        location = new Input.Location.Cartesian(col, line);
         return t;
     }
 }
diff --git a/src/edu/berkeley/sbp/misc/CartesianLocation.java b/src/edu/berkeley/sbp/misc/CartesianLocation.java
deleted file mode 100644 (file)
index b5d7bb7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package edu.berkeley.sbp.misc;
-import java.io.*;
-import java.util.*;
-import java.lang.reflect.*;
-import java.lang.ref.*;
-import edu.berkeley.sbp.*;
-import edu.berkeley.sbp.util.*;
-
-public class CartesianLocation implements Input.Location {
-    public final int line;
-    public final int col;
-    public String toString()                     { return line + ":" + col; }
-    public CartesianLocation(int line, int col)  { this.line = line; this.col = col; }
-}
index 5ea468d..59b6a21 100644 (file)
@@ -528,6 +528,7 @@ public class MetaGrammar extends StringWalker {
 
 
 
+
         // DO NOT EDIT STUFF BELOW: IT IS AUTOMATICALLY GENERATED
 new edu.berkeley.sbp.Tree(null, "grammar", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "=", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "s", new edu.berkeley.sbp.Tree[] { })}),
         new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "psx", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "ps", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "!", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "nonTerminal", new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, null, new edu.berkeley.sbp.Tree[] { new edu.berkeley.sbp.Tree(null, "w", new edu.berkeley.sbp.Tree[] { }),
@@ -1190,3 +1191,4 @@ new edu.berkeley.sbp.Tree(null, "grammar", new edu.berkeley.sbp.Tree[] { new edu
 
 
 
+
index 93f2ce1..4805d1e 100644 (file)
@@ -42,7 +42,7 @@ public class Tib implements Input<Character> {
 
     int _row = 1;
     int _col = 0;
-    public Input.Location getLocation() { return new CartesianLocation(_row, _col); }
+    public Input.Location getLocation() { return new Input.Location.Cartesian(_col, _row); }
     private BufferedReader br;
 
     char left = CharRange.left;