2003/12/29 03:51:28
[org.ibex.core.git] / src / org / xwt / Res.java
index ae2b50f..b529a4e 100644 (file)
@@ -1,3 +1,4 @@
+// FIXEME
 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt;
 
@@ -12,6 +13,15 @@ import org.bouncycastle.util.encoders.Base64;
 /** Base class for XWT resources */
 public abstract class Res extends JS {
 
+    /** return a resource for a given url */
+    public static final Res fromURL(String url) throws JSExn {
+        if (url.startsWith("http://")) return new Res.HTTP(url);
+        else if (url.startsWith("https://")) return new Res.HTTP(url);
+        else if (url.startsWith("data:")) return new Res.ByteArray(Base64.decode(url.substring(5)), null);
+        else if (url.startsWith("utf8:")) return new Res.ByteArray(url.substring(5).getBytes(), null);
+        throw new JSExn("invalid resource specifier " + url);
+    }
+
     // Base Class //////////////////////////////////////////////////////////////////////
 
     public String typeName() { return "resource"; }
@@ -19,7 +29,6 @@ public abstract class Res extends JS {
     /** so that we get the same subresource each time */
     private Hash refCache = null;
 
-    /** FIXME: needed? good idea? */
     public Template t = null;
 
     public final InputStream getInputStream() throws IOException { return getInputStream(""); }
@@ -27,10 +36,15 @@ public abstract class Res extends JS {
 
     public Res addExtension(String extension) { return new Ref(this, extension); }
 
-    public Object get(Object key) {
+    public Object get(Object key) throws JSExn {
         if ("".equals(key)) {
-            Template t = Template.getTemplate(addExtension(".xwt"));
-            return t == null ? null : t.getStatic();
+            try {
+                Template t = Template.getTemplate(addExtension(".xwt"));
+                return t == null ? null : t.getStatic(null);  /** FIXME VERY BAD! */
+            } catch (Exception e) {
+                Log.info(this, e);
+                return null;
+            }
         }
         Object ret = refCache == null ? null : refCache.get(key);
         if (ret != null) return ret;
@@ -50,7 +64,6 @@ public abstract class Res extends JS {
     /** if it makes sense to cache a resource, the resource must return a unique key */
     public String getCacheKey() throws NotCacheableException { throw notCacheable; }
 
-    // FIXME: general cleanup
     /** subclass from this if you want a CachedInputStream for each path */
     public static class CachedRes extends Res {
         private Res parent;
@@ -65,18 +78,13 @@ public abstract class Res extends JS {
         public InputStream getInputStream(String path) throws IOException {
             CachedInputStream cis = (CachedInputStream)cachedInputStreams.get(path);
             if (cis == null) {
-                java.io.File f = null;
                 if (disk) {
-                    f = new java.io.File(System.getProperty("user.home") +
-                                         java.io.File.separatorChar + ".xwt" +
-                                         java.io.File.separatorChar + "caches" +
-                                         java.io.File.separatorChar +
-                                         new String(Base64.encode(key.getBytes())));
-                    Log.log(this, "caching resource in " + f);
-                    new java.io.File(f.getParent()).mkdirs();
+                    java.io.File f = LocalStorage.Cache.getCacheFileForKey(key);
                     if (f.exists()) return new FileInputStream(f);
+                    cis = new CachedInputStream(parent.getInputStream(path), f);
+                } else {
+                    cis = new CachedInputStream(parent.getInputStream(path));
                 }
-                cis = new CachedInputStream(parent.getInputStream(path), f);
                 cachedInputStreams.put(path, cis);
             }
             return cis.getInputStream();
@@ -103,7 +111,7 @@ public abstract class Res extends JS {
         public String toString() { return "byte[]"; }
         public String getCacheKey() throws NotCacheableException { return cacheKey; }
         public InputStream getInputStream(String path) throws IOException {
-            if (!"".equals(path)) throw new JSExn("can't get subresources of a byte[] resource");
+            if (!"".equals(path)) throw new IOException("can't get subresources of a byte[] resource");
             return new ByteArrayInputStream(bytes);
         }
     }
@@ -133,7 +141,7 @@ public abstract class Res extends JS {
             ZipInputStream zis = new ZipInputStream(pis);
             ZipEntry ze = zis.getNextEntry();
             while(ze != null && !ze.getName().equals(path)) ze = zis.getNextEntry();
-            if (ze == null) throw new JSExn("requested file (" + path + ") not found in archive");
+            if (ze == null) throw new IOException("requested file (" + path + ") not found in archive");
             return new KnownLength.KnownLengthInputStream(zis, (int)ze.getSize());
         }
     }
@@ -173,6 +181,29 @@ public abstract class Res extends JS {
         public InputStream getInputStream(String path) throws IOException { return parent.getInputStream("/" + key + path); }
     }
 
+    /** provides redirection of a specified key */
+    public static class Graft extends Res {
+        Res graftee;
+        Object replaced_key, replaced_val;
+        Graft(Res graftee, Object key, Object val) { this.graftee = graftee; this.replaced_key = key; this.replaced_val = val; }
+        public boolean equals(Object o) { return this == o || graftee.equals(o); }
+        public int hashCode() { return graftee.hashCode(); }
+        public InputStream getInputStream(String s) throws IOException { return graftee.getInputStream(s); }
+        public Object get(Object key) throws JSExn { return replaced_key.equals(key) ? replaced_val : graftee.get(key); }
+        public Object callMethod(Object name, Object a, Object b, Object c, Object[] rest, int nargs) throws JSExn {
+            if (replaced_key.equals(name)) {
+                if (replaced_val instanceof JS) return ((JS)replaced_val).call(a, b, c, rest, nargs);
+                else throw new JSExn("attempted to call non-function (class="+replaced_val.getClass()+")");
+            } else {
+                return graftee.callMethod(name, a, b, c, rest, nargs);
+            }
+        }
+        public Number coerceToNumber() { return graftee.coerceToNumber(); }
+        public String coerceToString() { return graftee.coerceToString(); }
+        public boolean coerceToBoolean() { return graftee.coerceToBoolean(); }
+        public String typeName() { return graftee.typeName(); }
+    }
+
     /** shadow resource which replaces the graft */
     public static class ProgressWatcher extends Res {
         final Res watchee;
@@ -192,7 +223,7 @@ public abstract class Res extends JS {
                     public int read(byte[] b, int off, int len) throws IOException {
                         int ret = super.read(b, off, len);
                         if (ret != 1) bytesDownloaded += ret;
-                        Scheduler.add(new Scheduler.Task() { public void perform() {
+                        Scheduler.add(new Scheduler.Task() { public void perform() throws Exception {
                             callback.call(N(bytesDownloaded),
                                           N(is instanceof KnownLength ? ((KnownLength)is).getLength() : 0), null, null, 2);
                         } });