2003/06/26 01:53:37
[org.ibex.core.git] / src / org / xwt / js / ArrayImpl.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] 
2
3 package org.xwt.js; 
4 import org.xwt.util.*; 
5 import java.io.*;
6 import java.util.*;
7
8 // FIXME: could use some cleaning up...
9
10 /** A JavaScript Array */
11 class ArrayImpl extends JS.Obj {
12     private Vec vec = new Vec();
13     public ArrayImpl() { }
14     public ArrayImpl(int size) { vec.setSize(size); }
15     private static int intVal(Object o) {
16         if (o instanceof Number) {
17             int intVal = ((Number)o).intValue();
18             if (intVal == ((Number)o).doubleValue()) return intVal;
19             return Integer.MIN_VALUE;
20         }
21         if (!(o instanceof String)) return Integer.MIN_VALUE;
22         String s = (String)o;
23         for(int i=0; i<s.length(); i++) if (s.charAt(i) < '0' || s.charAt(i) > '9') return Integer.MIN_VALUE;
24         return Integer.parseInt(s);
25     }
26     // we use _get instead of get solely to work around a GCJ bug
27     public Object _get(Object key) throws JS.Exn {
28         // FIXME: HACK!
29         if (key.equals("cascade")) return org.xwt.Trap.cascadeFunction;
30         if (key.equals("trapee")) return org.xwt.Trap.currentTrapee();
31         if (key.equals("length")) return new Long(vec.size());
32         if (key.equals("push")) return new JS.Callable() {
33             public Object call(JS.Array args) {
34                 for(int i=0;i<args.length();i++)
35                     vec.push(args.elementAt(i));
36                 return new Long(vec.size());
37             }
38         };
39         if (key.equals("pop")) return new JS.Callable() {
40             public Object call(JS.Array args) {
41                 return vec.pop(); // this'll return null on size()==0 
42             }
43         };
44                 
45         int i = intVal(key);
46         if (i == Integer.MIN_VALUE) return super.get(key);
47         try {
48             return vec.elementAt(i);
49         } catch (ArrayIndexOutOfBoundsException e) {
50             return null;
51         }
52     }
53     // we use _put instead of put solely to work around a GCJ bug
54     public void _put(Object key, Object val) {
55         if (key.equals("length")) vec.setSize(toNumber(val).intValue());
56         int i = intVal(key);
57         if (i == Integer.MIN_VALUE) super.put(key, val);
58         else {
59             if (i >= vec.size()) vec.setSize(i+1);
60             vec.setElementAt(val, i);
61         }
62     }
63     public Object[] keys() {
64         Object[] sup = super.keys();
65         Object[] ret = new Object[vec.size() + 1 + sup.length];
66         System.arraycopy(sup, 0, ret, vec.size(), sup.length);
67         for(int i=0; i<vec.size(); i++) ret[i] = new Integer(i);
68         ret[vec.size()] = "length";
69         return ret;
70     }
71     public void setSize(int i) { vec.setSize(i); }
72     public int length() { return vec.size(); }
73     public Object elementAt(int i) { return vec.elementAt(i); }
74     public void addElement(Object o) { vec.addElement(o); }
75     public void setElementAt(Object o, int i) { vec.setElementAt(o, i); }
76 }
77