X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FXWT.java;h=c266690290a3c584cdb26ac52a184ca2ec45987f;hb=135c3ede7ad5aaad2edd4280a6dfcbe8e8c67678;hp=1789743d290c2c6c5ff30ea04eae9fa9935ef5e5;hpb=d00ba4135b6fa226f96606ebea2d5e10b879e36d;p=org.ibex.core.git diff --git a/src/org/xwt/XWT.java b/src/org/xwt/XWT.java index 1789743..c266690 100644 --- a/src/org/xwt/XWT.java +++ b/src/org/xwt/XWT.java @@ -7,11 +7,16 @@ import java.text.*; import java.util.*; import org.xwt.util.*; import org.mozilla.javascript.*; +import org.bouncycastle.util.encoders.Base64; /** Singleton class that provides all functionality in the xwt.* namespace */ public final class XWT extends JSObject { public static final XWT singleton = new XWT(); + + /** 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(); + public String getClassName() { return "XWT"; } private XWT() { setSeal(true); } @@ -34,12 +39,22 @@ public final class XWT extends JSObject { else if (name.equals("newBox")) return newBox; else if (name.equals("soap")) return soap; else if (name.equals("xmlrpc")) return xmlrpc; + else if (name.equals("origin")) return Main.origin; else if (name.equals("clipboard")) return Platform.getClipBoard(); else if (name.equals("altKeyName")) return Platform.altKeyName(); else if (name.equals("screenWidth")) return new Integer(Platform.getScreenWidth()); else if (name.equals("screenHeight")) return new Integer(Platform.getScreenHeight()); else if (name.equals("static")) return Static.getStatic(""); else if (name.equals("theme")) return theme; + else if (name.equals("openFile")) return openFile; + else if (name.equals("saveFile")) return saveFile; + else if (name.equals("saveFileAs")) return saveFileAs; + else if (name.equals("utfEncode")) return utfEncode; + else if (name.equals("fileSeparator")) return File.separator; + else if (name.equals("homeDir")) return System.getProperty("user.home"); + else if (name.equals("tempDir")) return System.getProperty("java.io.tempdir"); + else if (name.equals("recursivePrintObject")) return recursivePrintObject; + else if (name.equals("parseHTML")) return parseHTML; else if (name.equals("button")) { if (Surface.button1 && !Surface.button2 && !Surface.button3) return new Integer(1); else if (!Surface.button1 && Surface.button2 && !Surface.button3) return new Integer(1); @@ -48,6 +63,13 @@ public final class XWT extends JSObject { } else if (name.equals("println")) return println; else if (name.equals("math")) return org.xwt.util.JSObject.defaultObjects.get("Math", null); + else if (name.equals("loadArchive")) return loadArchive; + else if (name.equals("prefetchImage")) return prefetchImage; + else if (name.equals("prefs")) return prefs; + else if (name.equals("encodeURI")) return JSObject.defaultObjects.get("encodeURI", null); + else if (name.equals("encodeURIComponent")) return JSObject.defaultObjects.get("encodeURIComponent", null); + else if (name.equals("decodeURI")) return JSObject.defaultObjects.get("decodeURI", null); + else if (name.equals("decodeURIComponent")) return JSObject.defaultObjects.get("decodeURIComponent", null); else return super.get(name, start); } @@ -55,19 +77,103 @@ public final class XWT extends JSObject { if (name == null) return; else if (name.equals("thread") && value != null && value instanceof Function) ThreadMessage.newthread((Function)value); else if (name.equals("clipboard")) Platform.setClipBoard(value.toString()); + + // FIXME: undocumented, possibly insecure + else if (name.equals("proxyAuthorization")) { + Proxy.Authorization.authorization = value.toString(); + Proxy.Authorization.waitingForUser.release(); + } + else super.put(name, start, value); } - // JSFunction Instances /////////////////////////////////////////////////////////////////// + // Prefs Object ////////////////////////////////////////////////////////////////////////// + + static Scriptable prefsRPC = new XMLRPC("http://megacz:mypassword@localhost/RPC2", "prefs"); + + private static final JSObject prefs = new JSObject(false, true) { + public Object get(String name, Scriptable start) { + if (name.equals("get")) return prefsGet; + else if (name.equals("list")) return prefsList; + else if (name.equals("put")) return prefsPut; + else return null; + } + }; + + private static final JSObject.JSFunction prefsGet = new JSObject.JSFunction() { + public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { + if (args.length != 1 || args[0] == null) return null; + try { + return ((Function)prefsRPC.get("get", null)).call(cx, null, null, new Object[] { args[0] }); + } catch (JavaScriptException jse) { + Object val = jse.getValue(); + if (val instanceof JSObject && new Integer(1).equals(((JSObject)val).get("faultCode"))) + return null; + throw jse; + } catch (Exception e) { + // FIXME + throw new JavaScriptException(e.toString()); + } + } + }; + + private static final JSObject.JSFunction prefsPut = new JSObject.JSFunction() { + public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { + if (args.length < 2 || args[0] == null) return null; + try { + return ((Function)prefsRPC.get("put", null)).call(cx, null, null, new Object[] { args[0].toString(), args[1] }); + } catch (JavaScriptException jse) { + Object val = jse.getValue(); + if (val instanceof JSObject && new Integer(1).equals(((JSObject)val).get("faultCode"))) + return null; + throw jse; + } catch (Exception e) { + // FIXME + throw new JavaScriptException(e.toString()); + } + } + }; + + private static final JSObject.JSFunction prefsList = new JSObject.JSFunction() { + public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { + if (args.length < 2 || args[0] == null) return null; + try { + return ((Function)prefsRPC.get("list", null)).call(cx, null, null, new Object[] { args[0].toString(), args[1] }); + } catch (JavaScriptException jse) { + Object val = jse.getValue(); + if (val instanceof JSObject && new Integer(1).equals(((JSObject)val).get("faultCode"))) + return null; + throw jse; + } catch (Exception e) { + // FIXME + throw new JavaScriptException(e.toString()); + } + } + }; + + private static final JSObject.JSFunction prefsInvoke = new JSObject.JSFunction() { + public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { + if (args.length < 2 || args[0] == null) return null; + try { + return ((Function)prefs.get("invoke")).call(cx, null, null, new Object[] { args[0].toString(), args[1], "megacz", "mypassword" }); + } catch (JavaScriptException jse) { + Object val = jse.getValue(); + if (val instanceof JSObject && new Integer(1).equals(((JSObject)val).get("faultCode"))) + return null; + throw jse; + } catch (Exception e) { + // FIXME + throw new JavaScriptException(e.toString()); + } + } + }; + - /** Helper class for defining functions. */ - private static abstract class JSFunction extends JSObject implements Function { - JSFunction() { setSeal(true); } - public Scriptable construct(Context cx, Scriptable scope, java.lang.Object[] args) { return null; } - } - private static final JSFunction newBrowserWindow = new JSFunction() { + // JSFunction Instances /////////////////////////////////////////////////////////////////// + + private static final JSObject.JSFunction newBrowserWindow = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { if (args.length != 1 || args[0] == null) return null; Platform.newBrowserWindow(args[0].toString()); @@ -75,23 +181,26 @@ public final class XWT extends JSObject { } }; - private static final JSFunction yield = new JSFunction() { + public static final JSObject.JSFunction yield = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { sleep.call(cx, null, null, null); return null; } }; - private static final JSFunction println = new JSFunction() { + private static final JSObject.JSFunction println = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { if (args.length == 1) - if (Log.on) - Log.log(cx.interpreterSourceFile, args[0] == null ? "null" : args[0].toString()); + if (Log.on) { + String source = cx.interpreterSourceFile; + if (source.endsWith("._")) source = source.substring(0, source.length() - 2); + Log.log(source, args[0] == null ? "null" : args[0].toString()); + } return null; } }; - private static final JSFunction date = new JSFunction() { + private static final JSObject.JSFunction date = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { try { return Context.enter().newObject(org.xwt.util.JSObject.defaultObjects, "Date", args); } catch (Exception e) { @@ -102,7 +211,7 @@ public final class XWT extends JSObject { } }; - private static final JSFunction regexp = new JSFunction() { + private static final JSObject.JSFunction regexp = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { try { return Context.enter().newObject(org.xwt.util.JSObject.defaultObjects, "RegExp", args); } catch (Exception e) { @@ -113,29 +222,41 @@ public final class XWT extends JSObject { } }; - private static final JSFunction listfonts = new JSFunction() { + private static final JSObject.JSFunction listfonts = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { return Context.enter().newArray(org.xwt.util.JSObject.defaultObjects, Platform.listFonts()); } }; - private static final JSFunction theme = new JSFunction() { + private static final JSObject.JSFunction theme = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { if (args.length != 2) return null; if (args[0] == null || args[1] == null) return null; - Template.retheme(args[0].toString(), args[1].toString()); + + for(int i=1; i 2) return null; if (args[0] == null || (args.length == 2 && args[1] == null)) return null; @@ -159,7 +280,7 @@ public final class XWT extends JSObject { }; - private static final JSFunction textheight = new JSFunction() { + private static final JSObject.JSFunction textheight = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { if (args.length > 1) return null; if (args.length == 1 && args[0] == null) return null; @@ -170,14 +291,25 @@ public final class XWT extends JSObject { } }; - private static final JSFunction newBox = new JSFunction() { + private static final JSObject.JSFunction newBox = new JSObject.JSFunction() { public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException { - Box ret = new Box(args.length == 0 || args[0] == null ? "box" : args[0].toString(), Template.defaultImportList); + + if (args.length > 0) + if (Log.on) Log.log(XWT.class, "DEPRECATED: xwt.newBox() with multiple arguments is deprecated; use xwt.newBox().apply() " + + Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine); + + Function callback = null; + for(int i=1; i"); + + } else if (o instanceof NativeArray) { + Log.log(cx.interpreterSourceFile, indent + name + ""); + NativeArray na = (NativeArray)o; + for(int i=0; i"); + Scriptable s = (Scriptable)o; + Object[] keys = s.getIds(); + for(int i=0; i 1 && args[1] instanceof Function ? (Function)args[1] : null); + return null; + } + }; + }