aada999373cee2cb23da0b653ca5972127b01ee1
[org.ibex.core.git] / src / org / xwt / Platform.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 import java.lang.reflect.*;
5 import java.net.*;
6 import java.io.*;
7 import java.util.*;
8 import org.xwt.util.*;
9
10 /** 
11  *  Abstracts away the small irregularities in JVM implementations.
12  *
13  *  The default Platform class supports a vanilla JDK 1.1
14  *  JVM. Subclasses are provided for other VMs. Methods whose names
15  *  start with an underscore are meant to be overridden by
16  *  subclasses. If you create a subclass of Platform, you should put
17  *  it in the org.xwt.plat package, and add code to this file's static
18  *  block to detect the new platform.
19  */
20 public class Platform {
21
22     // Static Data /////////////////////////////////////////////////////////////////////////////////////
23
24     /**
25      *  set to true during the delivery of a KeyPressed:C-v/A-v or Press3; it is safe to use a
26      *  'global' here, since message delivery is single-threaded and non-preemptable
27      */
28     static boolean clipboardReadEnabled = false;
29
30     /** The appropriate Platform object for this JVM */
31     static Platform platform = null;
32
33     /** true if proxy autodetection has already been run */
34     static boolean alreadyDetectedProxy = false;
35
36     /** the result of proxy autodetection */
37     static org.xwt.HTTP.Proxy cachedProxyInfo = null;
38
39     /** the current build */
40     public static String build = "unknown";
41
42     // VM Detection Logic /////////////////////////////////////////////////////////////////////
43
44     /** do-nothing method that forces <clinit> to run */
45     public static void forceLoad() { }
46
47     // If you create a new subclass of Platform, you should add logic
48     // here to detect it. Do not reference your class directly -- use
49     // reflection.
50
51     static {
52         System.err.println("Detecting JVM...");
53         try {
54             String vendor = System.getProperty("java.vendor", "");
55             String version = System.getProperty("java.version", "");
56             String os_name = System.getProperty("os.name", "");
57             String os_version = System.getProperty("os.version", "");
58             String platform_class = null;
59             
60             if (os_name.startsWith("Darwin")) platform_class = "Darwin";
61             else if (vendor.startsWith("Free Software Foundation")) {
62                 if (os_name.startsWith("Window")) platform_class = "Win32";
63                 else platform_class = "X11";
64             } else if (version.startsWith("1.1") && vendor.startsWith("Netscape")) platform_class = "Netscape";
65             else if (version.startsWith("1.1") && vendor.startsWith("Microsoft")) platform_class = "Microsoft";
66             else if (!version.startsWith("1.0") && !version.startsWith("1.1")) platform_class = "Java2";
67
68             /*
69             // Disable 2d hardware acceleration on Jaguar
70             if (os_name.equals("Mac OS X") && os_version.startsWith("10.2")) System.setProperty("com.apple.hwaccel", "false");
71             */
72             System.setProperty("com.apple.hwaccel", "true");
73
74             if (platform_class != null) {
75                 platform = (Platform)Class.forName("org.xwt.plat." + platform_class).newInstance();
76                 platform.init();
77             }
78
79             try {
80                 build = (String)Class.forName("org.xwt.Build").getField("build").get(null);
81             } catch (ClassNotFoundException cnfe) {
82             } catch (Exception e) {
83                 if (Log.on) Log.log(Platform.class, "exception while detecting build:");
84                 if (Log.on) Log.log(Platform.class, e);
85             }
86             if (Log.on) Log.log(Platform.class, "XWT build: " + build);
87
88             if (Log.on) Log.log(Platform.class, "XWT VM detection:   vendor = " + vendor);
89             if (Log.on) Log.log(Platform.class, "                   version = " + version);
90             if (Log.on) Log.log(Platform.class, "                        os = " + os_name + " [version " + os_version + "]");
91
92             if (platform_class == null) {
93                 if (Log.on) Log.log(Platform.class, "Unable to detect JVM");
94                 new Platform().criticalAbort("Unable to detect JVM");
95             }
96
97             if (Log.on) Log.log(Platform.class, "                  platform = " + platform.getDescriptiveName());
98             if (Log.on) Log.log(Platform.class, "                     class = " + platform.getClass().getName());
99             platform.postInit();
100
101         } catch (Exception e) {
102             if (Log.on) Log.log(Platform.class, "Exception while trying to detect JVM");
103             if (Log.on) Log.log(Platform.class, e);
104             new Platform().criticalAbort("Unable to detect JVM");
105         }
106
107     }
108
109
110     // Methods to be Overridden ////////////////////////////////////////////////////////////////////
111
112     /** a string describing the VM */
113     protected String getDescriptiveName() { return "Generic Java 1.1 VM"; }
114
115     /** this initializes the platform; code in here can invoke methods on Platform since Platform.platform has already been set */
116     protected void init() { }
117     protected void postInit() { }
118
119     /** creates and returns a doublebuffer 'belonging' to <tt>owner</tt>; we need to associate PixelBuffers to surfaces
120      *  due to AWT 1.1 requirements (definately for Navigator, possibly also for MSJVM).
121      */
122     public static PixelBuffer createPixelBuffer(int w, int h, Surface s) { return platform._createPixelBuffer(w, h, s); }
123     protected PixelBuffer _createPixelBuffer(int w, int h, Surface owner) { return null; }
124     
125     /** creates and returns a picture */
126     public static Picture createPicture(int[] data, int w, int h) { return platform._createPicture(data, w, h); }
127     public static Picture createAlphaOnlyPicture(byte[] data, int w, int h) { return platform._createAlphaOnlyPicture(data, w, h); }
128     
129     protected Picture _createPicture(int[] b, int w, int h) { return null; }
130     protected Picture _createAlphaOnlyPicture(byte[] b, int w, int h) {
131         int[] b2 = new int[b.length];
132         for(int i=0;i<b.length;i++) b2[i] = (b[i]&0xff) << 24;
133         return _createPicture(b2,w,h);
134     }
135
136     /** should return true if it is safe to supress full-surface dirties immediately after a window resize */
137     public static boolean supressDirtyOnResize() { return platform._supressDirtyOnResize(); }
138     protected boolean _supressDirtyOnResize() { return false; }
139
140     /** the human-readable name of the key mapped to XWT's 'alt' key */
141     public static String altKeyName() { return platform._altKeyName(); }
142     protected String _altKeyName() { return "alt"; }
143
144     /** returns the contents of the clipboard */    
145     public static Object getClipBoard() { return clipboardReadEnabled ? platform._getClipBoard() : null; }
146     protected String _getClipBoard() { return null; }
147
148     /** sets the contents of the clipboard */
149     public static void setClipBoard(String s) { platform._setClipBoard(s); }
150     protected void _setClipBoard(String s) { }
151
152     /** returns the width of the screen, in pixels */
153     public static int getScreenWidth() { return platform._getScreenWidth(); }
154     protected int _getScreenWidth() { return 640; }
155
156     /** returns the height of the screen, in pixels */
157     public static int getScreenHeight() { return platform._getScreenHeight(); }
158     protected int _getScreenHeight() { return 480; }
159
160     /** used to notify the user of very serious failures; usually used when logging is not working or unavailable */
161     protected void _criticalAbort(String message) { System.exit(-1); }
162
163     /** if true, org.xwt.Surface will generate a Click automatically after a press and a release */
164     public static boolean needsAutoClick() { return platform._needsAutoClick(); }
165     protected boolean _needsAutoClick() { return false; }
166
167     /** if true, org.xwt.Surface will generate a DoubleClick automatically after recieving two clicks in a short period of time */
168     public static boolean needsAutoDoubleClick() { return platform._needsAutoDoubleClick(); }
169     protected boolean _needsAutoDoubleClick() { return false; }
170
171     /** returns true iff the platform has a case-sensitive filesystem */
172     public static boolean isCaseSensitive() { return platform._isCaseSensitive(); }
173     protected boolean _isCaseSensitive() { return true; }
174
175     /** returns an InputStream to the builtin xwar */
176     public static InputStream getBuiltinInputStream() { return platform._getBuiltinInputStream(); }
177     protected InputStream _getBuiltinInputStream() {
178         return this.getClass().getClassLoader().getResourceAsStream("org/xwt/builtin.jar");
179     }
180
181     /** returns the value of the environment variable key, or null if no such key exists */
182     public static String getEnv(String key) { return platform._getEnv(key); }
183     protected String _getEnv(String key) {
184         try {
185             String os = System.getProperty("os.name").toLowerCase();
186             Process p;
187             if (os.indexOf("windows 9") != -1 || os.indexOf("windows me") != -1) {
188                 // hack -- jdk1.2/1.3 on Win32 pop open an ugly DOS box; 1.4 does not
189                 if (platform.getClass().getName().endsWith("Java12")) return null;
190                 p = Runtime.getRuntime().exec("command.com /c set");
191             } else if (os.indexOf("windows") > -1) {
192                 // hack -- jdk1.2/1.3 on Win32 pop open an ugly DOS box; 1.4 does not
193                 if (platform.getClass().getName().endsWith("Java12")) return null;
194                 p = Runtime.getRuntime().exec("cmd.exe /c set");
195             } else {  
196                 p = Runtime.getRuntime().exec("env");
197             }
198             BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
199             String s;
200             while ((s = br.readLine()) != null)
201                 if (s.startsWith(key + "="))
202                     return s.substring(key.length() + 1);
203         } catch (Exception e) {
204             if (Log.on) Log.log(this, "Exception while reading from environment:");
205             if (Log.on) Log.log(this, e);
206         }
207         return null;
208     }
209
210     /** convert a JPEG into an Image */
211     public static synchronized Picture decodeJPEG(InputStream is, String name) { return platform._decodeJPEG(is, name); }
212     protected Picture _decodeJPEG(InputStream is, String name) { return null; }
213
214     /** displays a platform-specific "open file" dialog and returns the chosen filename, or null if the user hit cancel */
215     protected String _fileDialog(String suggestedFileName, boolean write) { return null; }
216     public static String fileDialog(String suggestedFileName, boolean write) throws org.xwt.js.JSExn {
217         return platform._fileDialog(suggestedFileName, write);
218     }
219
220     /** default implementation is Eric Albert's BrowserLauncher.java */
221     protected void _newBrowserWindow(String url) {
222         try {
223             Class c = Class.forName("edu.stanford.ejalbert.BrowserLauncher");
224             Method m = c.getMethod("openURL", new Class[] { String.class });
225             m.invoke(null, new String[] { url });
226         } catch (Exception e) {
227             Log.log(this, e);
228         }
229     }
230
231     /** opens a new browser window */
232     public static void newBrowserWindow(String url) {
233         if (!(url.startsWith("https://") || url.startsWith("http://") || url.startsWith("ftp://") || url.startsWith("mailto:"))) {
234             if (Log.on) Log.log(Platform.class, "xwt.newBrowserWindow() only supports http and https urls");
235             return;
236         }
237
238         // check the URL for well-formedness, as a defense against buffer overflow attacks
239         try {
240             String u = url;
241             if (u.startsWith("https")) u = "http" + u.substring(5);
242             new URL(u);
243         } catch (MalformedURLException e) {
244             if (Log.on) Log.log(Platform.class, "URL " + url + " is not well-formed");
245             if (Log.on) Log.log(Platform.class, e);
246         }
247
248         if (Log.on) Log.log(Platform.class, "newBrowserWindow, url = " + url);
249         platform._newBrowserWindow(url);
250     }
251
252     /** used to notify the user of very serious failures; usually used when logging is not working or unavailable */
253     public static void criticalAbort(String message) {
254         if (Log.on) Log.log(Platform.class, "Critical Abort:");
255         if (Log.on) Log.log(Platform.class, message);
256         platform._criticalAbort(message);
257     }
258
259     /** this method invokes the platform _createSurface() method and then enforces a few post-call invariants */
260     protected Surface _createSurface(Box b, boolean framed) { return null; }
261     public static Surface createSurface(Box b, boolean framed, boolean refreshable) {
262         Surface ret = platform._createSurface(b, framed);
263         ret.setInvisible(false);
264
265         ret.setLimits(b.minwidth, b.minheight, b.maxwidth, b.maxheight);
266
267         if (refreshable) {
268             Surface.allSurfaces.addElement(ret);
269             ret.dirty(0, 0, b.width, b.height);
270             ret.Refresh();
271         }
272         return ret;
273     }
274
275     /** detects proxy settings */
276     protected synchronized org.xwt.HTTP.Proxy _detectProxy() { return null; }
277     public static synchronized org.xwt.HTTP.Proxy detectProxy() {
278
279         if (cachedProxyInfo != null) return cachedProxyInfo;
280         if (alreadyDetectedProxy) return null;
281         alreadyDetectedProxy = true;
282
283         if (Log.on) Log.log(Platform.class, "attempting environment-variable DNS proxy detection");
284         cachedProxyInfo = org.xwt.HTTP.Proxy.detectProxyViaManual();
285         if (cachedProxyInfo != null) return cachedProxyInfo;
286
287         if (Log.on) Log.log(Platform.class, "attempting " + platform.getClass().getName() + " proxy detection");
288         cachedProxyInfo = platform._detectProxy();
289         if (cachedProxyInfo != null) return cachedProxyInfo;
290
291         return cachedProxyInfo;
292     }
293
294     /** returns a Scheduler instance; used to implement platform-specific schedulers */
295     protected Scheduler _getScheduler() { return new Scheduler(); }
296     public static Scheduler getScheduler() { return platform._getScheduler(); }
297     
298     public static void running() { platform._running(); }
299     public void _running() { new Semaphore().block(); }
300 }
301
302