2003/11/18 10:47:27
[org.ibex.core.git] / src / org / xwt / js / Trap.java
diff --git a/src/org/xwt/js/Trap.java b/src/org/xwt/js/Trap.java
new file mode 100644 (file)
index 0000000..2986079
--- /dev/null
@@ -0,0 +1,60 @@
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
+package org.xwt.js;
+
+import java.util.*;
+import org.xwt.util.*;
+import java.io.*;
+
+/**
+ *  This class encapsulates a single trap placed on a given node. The
+ *  traps for a given property name on a given box are maintained as a
+ *  linked list stack, with the most recently placed trap at the head
+ *  of the list.
+ */
+class Trap {
+
+    JS trapee = null;          ///< the box on which this trap was placed
+    Object name = null;        ///< the property that the trap was placed on
+
+    JSFunction f = null;       ///< the function for this trap
+    Trap next = null;          ///< the next trap down the trap stack
+
+    Trap(JS b, String n, JSFunction f, Trap nx) { trapee = b; name = n; this.f = f; this.next = nx; }
+
+    private static final JSFunction putInvoker = new JSFunction("putInvoker", 0, null);
+    private static final JSFunction getInvoker = new JSFunction("getInvoker", 0, null);
+    static {
+        putInvoker.add(-1, ByteCodes.PUT, null);
+        getInvoker.add(-1, ByteCodes.GET, null);
+    }
+    
+    void invoke(Object key, Object value) {
+        Interpreter i = new Interpreter(putInvoker, false, null);
+        i.stack.push(this);
+        i.stack.push(key);
+        i.stack.push(value);
+        i.resume();
+    }
+
+    Object invoke(Object key) {
+        Interpreter i = new Interpreter(getInvoker, false, null);
+        i.stack.push(this);
+        i.stack.push(key);
+        i.resume();
+        return i.stack.pop();
+    }
+
+    // FIXME: review; is necessary?
+    static class TrapScope extends JSScope {
+        Trap t;
+        Object val = null;
+        boolean cascadeHappened = false;
+        public TrapScope(JSScope parent, Trap t, Object val) { super(parent); this.t = t; this.val = val; }
+        public Object get(Object key) {
+            if (key.equals("trapee")) return t.trapee;
+            if (key.equals("trapname")) return t.name;
+            return super.get(key);
+        }
+    }
+}
+