it works!!!!
[org.ibex.core.git] / src / org / ibex / plat / GCJ.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.plat;
3
4 import org.ibex.*;
5 import org.ibex.util.*;
6 import java.io.*;
7 import java.security.*;
8 import java.security.cert.*;
9
10 /** common superclass for all platforms that use GCJ to compile a native binary */
11 public abstract class GCJ extends Platform {
12
13     // static references to these classes ensure that the linker will include them
14     public static Object c1 = new gnu.java.locale.Calendar();
15         //    public static Object[][] c1c = new gnu.java.locale.Calendar().getContents();
16     public static Object c2 = new java.util.GregorianCalendar();
17     public static Object c3n = new gnu.gcj.convert.Input_ASCII();
18     public static Object c4 = new gnu.gcj.convert.Input_UTF8();
19     public static Object c5 = new gnu.gcj.convert.Input_8859_1();
20     public static Object c6 = new gnu.java.locale.LocaleInformation();
21     public static Object c7 = new gnu.gcj.convert.Output_ASCII();
22     //public static Object c8 = new gnu.java.locale.Calendar_en();
23     //public static Object c9 = new gnu.java.locale.Calendar_en_US();
24     public static Object c10 = new gnu.gcj.protocol.http.Handler();
25     public static Object c11 = new gnu.gcj.protocol.jar.Handler();
26     public static Object c12 = new java.security.cert.Certificate("foo") { 
27             public byte[] getEncoded() throws CertificateEncodingException { return null; }
28             public void verify(PublicKey key) { }
29             public void verify(PublicKey key, String sigProvider) { }
30             public String toString() { return "foocert"; }
31             public PublicKey getPublicKey() { return null; }
32         };
33
34
35     protected native InputStream _getBuiltinInputStream();
36
37     protected native void _decodeJPEG(InputStream is, Picture p);
38
39     // FEATURE: This could be optimized (a lot) by using a custom hashtable
40     public final static class Retainer {
41         private static Hash table = new Hash();
42         private final static class Key {
43             private Object o;
44             public Key(Object o) { this.o = o; }
45             public int hashCode() { return o == null ? 0 : o.hashCode(); }
46             public boolean equals(Object o2) { return (o2 instanceof Key) && ((Key)o2).o == o; }
47         }
48         private final static class Entry {
49             private int refCount;
50             public Entry() { inc(); }
51             public void inc() { refCount++; }
52             public boolean dec() { return --refCount == 0; }
53         }
54         public static synchronized void retain(Object o) {
55             Key k = new Key(o);
56             Entry r = (Entry) table.get(k);
57             if(r == null) table.put(k,new Entry());
58             else r.inc();
59         }
60         public static synchronized void release(Object o) {
61             Key k = new Key(o);
62             Entry e = (Entry) table.get(k);
63             if(e == null) throw new Error("Retainer::Release on unknown object");
64             if(e.dec()) { table.remove(k); }
65         }
66     }
67 }