2003/07/07 04:41:01
[org.ibex.core.git] / src / org / xwt / XWT.java
index 7da117e..8c9debb 100644 (file)
@@ -13,6 +13,8 @@ import org.bouncycastle.util.encoders.Base64;
 public final class XWT extends JS.Obj {
 
     public static final XWT singleton = new XWT();
+    private final JS xwtMath = new XWTMath();
+    private final JS xwtString = new XWTString();
 
     /** each key is a string representing a filename which the user has already given XWT permission to write to */
     private static Hashtable safeFiles = new Hashtable();
@@ -47,38 +49,39 @@ public final class XWT extends JS.Obj {
     }
 
     private XWT() {
-        put("maxdim", new Integer(Short.MAX_VALUE));
-        put("origin", Main.origin);
-        put("altKeyName", Platform.altKeyName());
-        put("screenWidth", new Integer(Platform.getScreenWidth()));
-        put("screenHeight", new Integer(Platform.getScreenHeight()));
-        put("fileSeparator", File.separator);
-        put("homeDir", System.getProperty("user.home"));
-        put("tempDir", System.getProperty("java.io.tempdir"));
-        put("math", org.xwt.js.Math.singleton);
-
-        put("newBrowserWindow", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("maxdim", new Integer(Short.MAX_VALUE));
+        super.put("origin", Main.origin);
+        super.put("altKeyName", Platform.altKeyName());
+        super.put("screenWidth", new Integer(Platform.getScreenWidth()));
+        super.put("screenHeight", new Integer(Platform.getScreenHeight()));
+        super.put("fileSeparator", File.separator);
+        super.put("homeDir", System.getProperty("user.home"));
+        super.put("tempDir", System.getProperty("java.io.tempdir"));
+        super.put("math", xwtMath);
+        super.put("string", xwtString);
+
+        super.put("newBrowserWindow", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1 || args.elementAt(0) == null) return null;
             Platform.newBrowserWindow(args.elementAt(0).toString());
             return null;
         }});
 
-        put("parseFloat", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("parseFloat", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1 || args.elementAt(0) == null) return null;
             return new Float(args.elementAt(0).toString());
         }});
 
-        put("parseInt", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("parseInt", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1 || args.elementAt(0) == null) return null;
             return new Float(args.elementAt(0).toString());
         }});
 
-        put("yield", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("yield", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             sleep(0);
             return null;
         }});
 
-        put("theme", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("theme", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
                 if (args.length() != 2) return null;
                 if (args.elementAt(0) == null || args.elementAt(1) == null) return null;
                 for(int i=1; i<args.length(); i++) {
@@ -96,38 +99,35 @@ public final class XWT extends JS.Obj {
                 return null;
         }});
             
-        put("println", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("println", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1) return null;
-            if (Log.on) Log.log(this, Context.getCurrentSourceNameAndLine() + " " +
-                                (args.elementAt(0) == null ? "**null**" : args.elementAt(0).toString()));
+            if (Log.on) Log.logJS(this, (args.elementAt(0) == null ? "**null**" : args.elementAt(0).toString()));
             return null;
         }});
 
-        put("date", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("date", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             Log.log(XWT.class, "date not implemented");
             //throw new Error("not implemented");
             return null;
         }});
 
-        put("regexp", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
-            //throw new Error("not implemented");
-            Log.log(XWT.class, "regexp not implemented");
-            return null;
+        super.put("regexp", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+            return new Regexp(args);
         }});
 
-        put("listfonts", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("listfonts", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             Object[] fonts = Platform.listFonts();
             JS.Array ret = new JS.Array();
             for(int i=0; i<fonts.length; i++) ret.addElement(fonts[i]);
             return ret;
         }});
 
-        put("xmlrpc", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("xmlrpc", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1 || args.elementAt(0) == null) return null;
             return new XMLRPC(args.elementAt(0).toString(), "");
         }});
 
-        put("soap", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("soap", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() == 1 && args.elementAt(0) != null) return new SOAP(args.elementAt(0).toString(), "", null, null);
             else if (args.length() == 2 && args.elementAt(0) != null && args.elementAt(1) != null)
                 return new SOAP(args.elementAt(0).toString(), "", args.elementAt(1).toString(), null);
@@ -136,7 +136,7 @@ public final class XWT extends JS.Obj {
             else return null;
         }});
 
-        put("textwidth", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("textwidth", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() < 1 || args.length() > 2) return null;
             if (args.elementAt(0) == null || (args.length() == 2 && args.elementAt(1) == null)) return null;
             String font = args.length() == 1 ? Platform.getDefaultFont() : args.elementAt(0).toString();
@@ -146,7 +146,7 @@ public final class XWT extends JS.Obj {
             else return new Integer(xwf.stringWidth(text));
         }});
 
-        put("textheight", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("textheight", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() > 1) return null;
             if (args.length() == 1 && args.elementAt(0) == null) return null;
             String font = args.length() == 0 || args.elementAt(0) == null ? Platform.getDefaultFont() : args.elementAt(0).toString();
@@ -155,7 +155,7 @@ public final class XWT extends JS.Obj {
             else return new Integer(xwf.getMaxAscent() + xwf.getMaxDescent());
         }});
         
-        put("newBox", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("newBox", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() > 0) Log.log(XWT.class, "DEPRECATED: xwt.newBox() with multiple arguments is deprecated; use xwt.newBox().apply()");
             JS.Callable callback = null;
             for(int i=1; i<args.length(); i++)
@@ -175,20 +175,20 @@ public final class XWT extends JS.Obj {
             return ret;
         }});
 
-        put("sleep", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("sleep", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args != null && (args.length() != 1 || args.elementAt(0) == null)) return null;
             int i = args == null ? 0 : SpecialBoxProperty.stoi(args.elementAt(0).toString());
             sleep(i);
             return null;
         }});
 
-        put("openFile", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("openFile", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 1) return null;
             String file = Platform.fileDialog(args.elementAt(0).toString(), false);
             return file == null ? null : new ByteStream(file);
         }});
 
-        put("saveFile", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("saveFile", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 2) return null;
             if (!(args.elementAt(1) instanceof ByteStream)) return null;
             String file = args.elementAt(0).toString();
@@ -207,7 +207,7 @@ public final class XWT extends JS.Obj {
             }
         }});
 
-        put("saveFileAs", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("saveFileAs", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args.length() != 2) return null;
             if (!(args.elementAt(1) instanceof ByteStream)) return null;
             String file = args.elementAt(0).toString();
@@ -224,12 +224,12 @@ public final class XWT extends JS.Obj {
             }
         }});
 
-        put("utfEncode", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("utfEncode", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
             if (args == null || args.length() != 1) return null;
             return new ByteStream(args.elementAt(0).toString().getBytes());
         }});
 
-        put("parseHTML", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+        super.put("parseHTML", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
                 if (args == null || args.length() != 1 || args.elementAt(0) == null) return null;
                 try {
                     if (args.elementAt(0) instanceof ByteStream) {
@@ -245,13 +245,13 @@ public final class XWT extends JS.Obj {
             }
         });
     
-    put("recursivePrintObject", new JS.Callable() { public Object call(JS.Array args) {
+    super.put("recursivePrintObject", new JS.Callable() { public Object call(JS.Array args) {
         if (args.length() != 1) return null;
         recurse("", "", args.elementAt(0));
         return null;
     }});
 
-    put("loadArchive", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+    super.put("loadArchive", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
         if (!ThreadMessage.suspendThread()) return null;
         try {
             if (args == null || args.length() < 1 || args.elementAt(0) == null) return null;
@@ -310,7 +310,7 @@ public final class XWT extends JS.Obj {
         return null;
     }});
 
-    put("prefetchImage", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
+    super.put("prefetchImage", new JS.Callable() { public Object call(JS.Array args) throws JS.Exn {
         if (args == null || args.length() < 1 || args.elementAt(0) == null) return null;
         Box.getImage(args.elementAt(0).toString(),
                      args.length() > 1 && args.elementAt(1) instanceof JS.Callable ? (JS.Callable)args.elementAt(1) : null);
@@ -322,16 +322,16 @@ public final class XWT extends JS.Obj {
         if (!name.equals("")) name += " : ";
 
         if (o == null) {
-            Log.log(Context.getCurrentSourceNameAndLine() , indent + name + "<null>");
+            Log.logJS(indent + name + "<null>");
 
         } else if (o instanceof JS.Array) {
-            Log.log(Context.getCurrentSourceNameAndLine() , indent + name + "<array>");
+            Log.logJS(indent + name + "<array>");
             JS.Array na = (JS.Array)o;
             for(int i=0; i<na.length(); i++)
                 recurse(indent + "  ", i + "", na.elementAt(i));
 
         } else if (o instanceof JS) {
-            Log.log(Context.getCurrentSourceNameAndLine() , indent + name + "<object>");
+            Log.logJS(indent + name + "<object>");
             JS s = (JS)o;
             Object[] keys = s.keys();
             for(int i=0; i<keys.length; i++)
@@ -340,30 +340,50 @@ public final class XWT extends JS.Obj {
                         s.get(((Integer)keys[i])) : s.get(keys[i].toString()));
 
         } else {
-            Log.log(Context.getCurrentSourceNameAndLine(), indent + name + o);
+            Log.logJS(indent + name + o);
 
         }
     }
 
 
     public static void sleep(int i) {
-        Thread thread = Thread.currentThread();
+        java.lang.Thread thread = java.lang.Thread.currentThread();
         if (!(thread instanceof ThreadMessage)) {
             if (Log.on) Log.log(XWT.class, "cannot sleep() or yield() in the foreground thread");
         } else {
             ThreadMessage mythread = (ThreadMessage)thread;
             mythread.done.release();
-            if (i > 0) try { Thread.sleep(i); } catch (Exception e) { }
+            if (i > 0) try { java.lang.Thread.sleep(i); } catch (Exception e) { }
             MessageQueue.add(mythread);
             mythread.go.block();
         }
     }
+    
+    private static class XWTMath extends JS.Obj {
+        public XWTMath() {
+            JS gs = new JS.GlobalScope();
+            put("isNaN",gs.get("isNaN"));
+            put("isFinite",gs.get("isFinite"));
+            put("NaN",gs.get("NaN"));
+            put("Infinity",gs.get("Infinity"));
+            setSeal(true);
+        }
+        public Object get(Object key) {
+            Object ret = super.get(key);
+            if(ret == null) ret = JS.Math.get(key);
+            return ret;
+        }
+    }
+    private static class XWTString extends JS.Obj {
+        public XWTString() {
+            JS gs = new JS.GlobalScope();
+            put("parseInt",gs.get("parseInt"));
+            put("parseFloat",gs.get("parseFloat"));
+            put("decodeURI",gs.get("decodeURI"));
+            put("decodeURIComponent",gs.get("decodeURIComponent"));
+            put("encodeURI",gs.get("encodeURI"));
+            put("encodeURIComponent",gs.get("encodeURIComponent"));
+            setSeal(true);
+        }
+    }
 }
-
-
-
-
-
-
-
-