2003/09/24 07:33:33
[org.ibex.core.git] / src / org / xwt / plat / Java2.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt.plat;
3
4 import java.awt.*;
5 import java.awt.event.*;
6 import java.awt.image.*;
7 import java.awt.datatransfer.*;
8 import java.net.*;
9 import java.io.*;
10 import java.util.*;
11 import org.xwt.util.*;
12 import org.xwt.*;
13 import java.lang.reflect.*;
14
15
16 /** Platform class for most reasonable Java1.2+ Java2s */
17 public class Java2 extends AWT {
18
19     private boolean isJava14 = false;
20     protected boolean _supressDirtyOnResize() {
21         return false;
22         //return (isJava14 && !System.getProperty("os.name", "").equals("Mac OS X"))? false : true;
23     }
24
25     public Java2() {
26         // disable the focus manager so we can intercept the tab key
27         String versionString = System.getProperty("java.version", "");
28         int secondDecimal = versionString.substring(versionString.indexOf('.') + 1).indexOf('.');
29         if (secondDecimal != -1) versionString = versionString.substring(0, secondDecimal);
30         /*
31         double version = Double.parseDouble(versionString);
32         if (version >= 1.4) {
33             isJava14 = true;
34             try {
35                 Toolkit t = java.awt.Toolkit.getDefaultToolkit();
36                 Method m = java.awt.Toolkit.class.getMethod("setDynamicLayout", new Class[] { Boolean.class });
37                 m.invoke(t, new Object[] { Boolean.TRUE });
38             } catch (Exception e) {
39                 Log.log(this, "Exception while trying to enable AWT Dynamic Layout");
40                 Log.log(this, e);
41             }
42         }
43         */
44         javax.swing.FocusManager.setCurrentManager(new javax.swing.FocusManager() {
45                 public void processKeyEvent(Component focusedComponent, KeyEvent anEvent) { }
46                 public void focusPreviousComponent(Component aComponent) { }
47                 public void focusNextComponent(Component aComponent) { }
48             });
49     }
50
51     /** this is done with reflection in case a new version of the plugin comes out that doesn't let us pull the sun.plugin.* trick */
52     protected synchronized org.xwt.HTTP.Proxy _detectProxy() {
53         return (org.xwt.HTTP.Proxy)java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {
54                 public Object run() {
55                     try {
56                         org.xwt.HTTP.Proxy pi = new org.xwt.HTTP.Proxy();
57                         
58                         Class PluginProxyHandler = Class.forName("sun.plugin.protocol.PluginProxyHandler");
59                         Method getDefaultProxyHandler = PluginProxyHandler.getMethod("getDefaultProxyHandler", new Class[] { });
60                         Object proxyHandler = getDefaultProxyHandler.invoke(null, new Object[] { });
61                         
62                         Class ProxyHandler = Class.forName("sun.plugin.protocol.ProxyHandler");
63                         Method getProxyInfo = ProxyHandler.getMethod("getProxyInfo", new Class[] { URL.class });
64                         Object proxyInfo = getProxyInfo.invoke(proxyHandler, new Object[] { new URL("http://www.xwt.org") });
65                         
66                         Class ProxyInfo = Class.forName("sun.plugin.protocol.ProxyInfo");
67                         
68                         if (((Boolean)ProxyInfo.getMethod("isSocksUsed", new Class[] { }).invoke(proxyInfo, new Object[] { })).booleanValue()) {
69                             pi.socksProxyHost =
70                                 (String)ProxyInfo.getMethod("getSocksProxy", new Class[] { }).invoke(proxyInfo, new Object[] { });
71                             pi.socksProxyPort =
72                                 ((Integer)ProxyInfo.getMethod("getSocksPort", new Class[] { }).invoke(proxyInfo, new Object[] { })).intValue();
73                         }
74                         
75                         if (((Boolean)ProxyInfo.getMethod("isProxyUsed", new Class[] { }).invoke(proxyInfo, new Object[] { })).booleanValue()) {
76                             pi.httpProxyHost =
77                                 (String)ProxyInfo.getMethod("getProxy", new Class[] { }).invoke(proxyInfo, new Object[] { });
78                             pi.httpProxyPort =
79                                 ((Integer)ProxyInfo.getMethod("getPort", new Class[] { }).invoke(proxyInfo, new Object[] { })).intValue();
80                         }
81                         
82                         if (pi.httpProxyHost != null || pi.socksProxyHost != null) return pi;
83                         else return null;
84
85                     } catch (Throwable e) {
86                         if (Log.on) Log.log(this, "exception while querying sun.plugin.protocol.PluginProxyHandler: " + e);
87                         return null;
88                     }
89                 }});
90     }
91
92     protected Socket __getSocket(String host, int port, boolean ssl, boolean negotiate) throws IOException {
93         return super._getSocket(host, port, ssl, negotiate);
94     }
95     protected Socket _getSocket(final String host, final int port, final boolean ssl, final boolean negotiate) throws IOException {
96         return (Socket)java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {
97                 public Object run() {
98                     try {
99                         return __getSocket(host, port, ssl, negotiate);
100                     } catch (Exception e) {
101                         if (Log.on) Log.log(Java2.class, "Error attempting to create socket");
102                         if (Log.on) Log.log(Java2.class, e);
103                         return null;
104                     }
105                 }
106             });
107     }
108     
109     protected PixelBuffer _createPixelBuffer(int w, int h, Surface owner) { return new Java2PixelBuffer(w, h); }
110     protected Surface _createSurface(final Box root, final boolean framed) {
111         return (Surface)java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {
112                 public Object run() {
113                     if (isJava14) {
114                         try {
115                              // weaken the binding here to avoid link errors on 1.3.x
116                              Class java14SurfaceClass = Class.forName(Java2.class.getName() + "$Java14Surface");
117                              Constructor ctor = java14SurfaceClass.getConstructor(new Class[] { Box.class, Boolean.TYPE });
118                              return (Surface)ctor.newInstance(new Object[] { root, new Boolean(framed) });
119                         } catch (Exception e) {
120                             Log.log(this, e);
121                             throw new LinkageError("error: " + e);
122                         }
123                     } else {
124                         return new Java2Surface(root, framed);
125                     }
126                 }
127             });
128     }
129
130     // Inner Classes //////////////////////////////////////////////////////////////////
131
132     private static Cursor invisibleCursor =
133         Toolkit.getDefaultToolkit().createCustomCursor(new BufferedImage(2, 2, BufferedImage.TYPE_INT_ARGB),
134                                                        new Point(1, 1), "invisible");
135
136     protected static class Java2Surface extends AWTSurface {
137         
138         public Java2Surface(Box root, boolean framed) { super(root, framed); }
139
140         protected void _setMinimized(boolean b) {
141             if (frame == null) Log.log(this, "JDK 1.2 can only minimize frames, not windows");
142             else if (b) frame.setState(java.awt.Frame.ICONIFIED);
143             else frame.setState(java.awt.Frame.NORMAL);
144         }
145
146         public void syncCursor() {
147             if (cursor.equals("invisible")) window.setCursor(invisibleCursor);
148             else super.syncCursor();
149         }
150     }
151
152     protected static class Java14Surface extends Java2Surface implements WindowStateListener {
153         public Java14Surface(Box root, boolean framed) {
154             super(root, true);
155             // JDK1.4 doesn't like java.lang.Window's...
156             if (!framed) ((Frame)window).setUndecorated(true);
157             window.addWindowStateListener(this);
158             window.setVisible(true);
159         }
160
161         protected void makeVisible() { }
162         
163         protected void _setMaximized(boolean m) {
164             if (frame == null) {
165                 if (Log.on) Log.log(this, "JDK 1.4 can only maximize frames, not windows");
166                 return;
167             }
168             frame.setExtendedState(m ? Frame.MAXIMIZED_BOTH : (minimized ? Frame.ICONIFIED : Frame.NORMAL));
169         }
170         protected void _setMinimized(boolean m) {
171             if (frame == null) {
172                 if (Log.on) Log.log(this, "JDK 1.4 can only minimize frames, not windows");
173                 return;
174             }
175             frame.setExtendedState(m ? Frame.ICONIFIED : (maximized ? Frame.MAXIMIZED_BOTH : Frame.NORMAL));
176         }
177         public void windowStateChanged(WindowEvent e) {
178             if (e.getOldState() != e.getNewState()) {
179                 if ((e.getNewState() & Frame.MAXIMIZED_BOTH) != 0) Maximized(true);
180                 else if (((e.getOldState() & Frame.MAXIMIZED_BOTH) != 0) && (e.getNewState() & Frame.MAXIMIZED_BOTH) == 0)
181                     Maximized(false);
182             }
183         }
184     }
185
186     protected static class Java2PixelBuffer extends AWTPixelBuffer {
187         private static ColorModel cm = Toolkit.getDefaultToolkit().getColorModel();
188         private static Hashtable emptyHashtable = new Hashtable();
189         private static short[] sbank = null;
190         private static int[] ibank = null;
191         private static byte[] bbank = null;
192         private static int bank_start = 0;
193         
194         public void drawPicture(Picture source, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2) {
195             _doDrawImage(g, ((AWTPicture)source).i, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
196         }
197         
198         public Java2PixelBuffer(int w, int h) {
199             SampleModel sm = cm.createCompatibleSampleModel(w, h);
200             int numSamples = w * h * sm.getNumDataElements();
201             DataBuffer buf = null;
202             if (sm.getDataType() == DataBuffer.TYPE_USHORT) {
203                 if (sbank == null || numSamples > 512 * 512 / 3) {
204                     buf = new DataBufferUShort(numSamples);
205                 } else {
206                     if (numSamples > sbank.length - bank_start) {
207                         bank_start = 0;
208                         sbank = new short[512 * 512];
209                     }
210                     buf = new DataBufferUShort(sbank, numSamples, bank_start);
211                     bank_start += numSamples;
212                 }
213             } else if (sm.getDataType() == DataBuffer.TYPE_BYTE) {
214                 if (bbank == null || numSamples > 512 * 512 / 3) {
215                     buf = new DataBufferByte(numSamples);
216                 } else {
217                     if (numSamples > bbank.length - bank_start) {
218                         bank_start = 0;
219                         bbank = new byte[512 * 512];
220                     }
221                     buf = new DataBufferByte(bbank, numSamples, bank_start);
222                     bank_start += numSamples;
223                 }
224             } else if (sm.getDataType() == DataBuffer.TYPE_INT) {
225                 if (ibank == null || numSamples > 512 * 512 / 3) {
226                     buf = new DataBufferInt(numSamples);
227                 } else {
228                     if (numSamples > ibank.length - bank_start) {
229                         bank_start = 0;
230                         ibank = new int[512 * 512];
231                     }
232                     buf = new DataBufferInt(ibank, numSamples, bank_start);
233                     bank_start += numSamples;
234                 }
235             }
236             i = new BufferedImage(cm, Raster.createWritableRaster(sm, buf, null), false,  emptyHashtable);
237             g = i.getGraphics();
238         }
239     }
240
241     /** used to avoid garbage creation with getClipBounds() */
242     private static Rectangle clipBounds = new Rectangle();
243     
244     protected static void _doDrawImage(Graphics g, Image i, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver o) {
245         if (dx1 == dx2 || dy1 == dy2) return;
246         g.drawImage(i, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, o);
247     }
248
249     private String __getClipBoard() { return super._getClipBoard(); }
250     protected String _getClipBoard() {
251         return (String)java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {
252                 public Object run() { return __getClipBoard();  }
253             });
254     }
255
256     private void __setClipBoard(String s) { super._setClipBoard(s); }
257     protected void _setClipBoard(final String s) {
258         java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {
259                 public Object run() {
260                     __setClipBoard(s);
261                     return null;
262                 }
263             });
264     }
265
266     protected String getDescriptiveName() { return isJava14 ? "Java 1.4+ JVM" : "Java 1.2+ JVM"; }
267
268 }