2002/05/28 21:30:03
[org.ibex.core.git] / src / org / xwt / Platform.java
1 // Copyright 2002 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 HTTP.ProxyInfo cachedProxyInfo = null;
38
39     // VM Detection Logic /////////////////////////////////////////////////////////////////////
40
41     /** do-nothing method that forces <clinit> to run */
42     public static void forceLoad() { }
43
44     // If you create a new subclass of Platform, you should add logic
45     // here to detect it. Do not reference your class directly -- use
46     // reflection.
47
48     static {
49         System.out.println("Detecting JVM...");
50         try {
51             String vendor = System.getProperty("java.vendor", "");
52             String version = System.getProperty("java.version", "");
53             String os_name = System.getProperty("os.name", "");
54             String platform_class = null;
55             
56             //if (os_name.startsWith("Mac OS X")) platform_class = "MacOSX";
57             if (vendor.startsWith("Free Software Foundation")) {
58                 if (os_name.startsWith("Window")) platform_class = "Win32";
59                 else platform_class = "POSIX";
60             } else if (version.startsWith("1.1") && vendor.startsWith("Netscape")) platform_class = "Netscape";
61             else if (version.startsWith("1.1") && vendor.startsWith("Microsoft")) platform_class = "Microsoft";
62             else if (version.startsWith("1.4")) platform_class = "Java14";
63             else if (!version.startsWith("1.0") && !version.startsWith("1.1")) platform_class = "Java12";
64
65             if (platform_class != null) {
66                 platform = (Platform)Class.forName("org.xwt.plat." + platform_class).newInstance();
67                 platform.init();
68             }
69
70             if (Log.on) Log.log(Platform.class, "XWT VM detection:   vendor = " + vendor);
71             if (Log.on) Log.log(Platform.class, "                   version = " + version);
72             if (Log.on) Log.log(Platform.class, "                        os = " + os_name);
73
74             if (platform_class == null) {
75                 if (Log.on) Log.log(Platform.class, "Unable to detect JVM");
76                 System.exit(-1);
77             }
78
79             if (Log.on) Log.log(Platform.class, "                  platform = " + platform.getDescriptiveName());
80             if (Log.on) Log.log(Platform.class, "                     class = " + platform.getClass().getName());
81
82         } catch (Exception e) {
83             if (Log.on) Log.log(Platform.class, "Exception while trying to detect JVM");
84             if (Log.on) Log.log(Platform.class, e);
85             System.exit(-1);
86         }
87
88     }
89
90
91     // Methods to be Overridden ////////////////////////////////////////////////////////////////////
92
93     /** a string describing the VM */
94     protected String getDescriptiveName() { return "Generic Java 1.1 VM"; }
95
96     /** this initializes the platform; code in here can invoke methods on Platform since Platform.platform has already been set */
97     protected void init() { }
98
99     /** creates and returns a doublebuffer 'belonging' to <tt>owner</tt>; we need to associate DoubleBuffers to surfaces
100      *  due to AWT 1.1 requirements (definately for Navigator, possibly also for MSJVM).
101      */
102     protected DoubleBuffer _createDoubleBuffer(int w, int h, Surface owner) { return null; }
103     
104     /** creates and returns a new surface */
105     protected Surface _createSurface(Box b, boolean framed) { return null; }
106
107     /** creates a socket object */
108     protected Socket _getSocket(String host, int port, boolean ssl, boolean negotiate) throws IOException {
109         return ssl ? new TinySSL(host, port, negotiate) : new Socket(java.net.InetAddress.getByName(host), port);
110     }
111
112     /** creates and returns a picture */
113     protected Picture _createPicture(int[] b, int w, int h) { return null; }
114     
115     /** should return true if it is safe to supress full-surface dirties immediately after a window resize */
116     protected boolean _supressDirtyOnResize() { return false; }
117
118     /** the human-readable name of the key mapped to XWT's 'alt' key */
119     protected String _altKeyName() { return "alt"; }
120
121     /** opens a connection to the resource identified by URL u, and returns an InputStream */
122     protected InputStream _urlToInputStream(URL u) throws IOException { return u.openStream(); }
123
124     /** returns the contents of the clipboard */    
125     protected String _getClipBoard() { return null; }
126
127     /** sets the contents of the clipboard */
128     protected void _setClipBoard(String s) { }
129
130     /** returns the width of the screen, in pixels */
131     protected int _getScreenWidth() { return 640; }
132
133     /** returns the height of the screen, in pixels */
134     protected int _getScreenHeight() { return 480; }
135
136     /** returns the width of a string in a platform-specific font */
137     protected int _stringWidth(String font, String text) { return 10 * text.length(); }
138
139     /** returns the maximum ascent of all glyphs in a given platform-specific font */
140     protected int _getMaxAscent(String font) { return 10; }
141
142     /** returns the maximum descent of all glyphs in a given platform-specific font */
143     protected int _getMaxDescent(String font) { return 2; }
144
145     /** returns a list of all platform-specific fonts available */
146     protected String[] _listFonts() { return new String[] { }; }
147
148     /** returns the maximum number of threads that the XWT engine can create without adversely affecting the host OS */
149     protected int _maxThreads() { return 25; }
150
151     /** creates a weak reference */
152     protected org.xwt.Weak _getWeak(final Object o) {
153         return new org.xwt.Weak() {
154                 public Object get() { return o; }
155             };
156     }
157     
158     /** quits XWT */
159     protected void _exit() { System.exit(0); }
160
161     /** used to notify the user of very serious failures; usually used when logging is not working or unavailable */
162     protected void _criticalAbort(String message) { System.exit(-1); }
163
164     /** used to notify the user of very serious failures; usually used when logging is not working or unavailable */
165     protected String _getDefaultFont() { return "sansserif10"; }
166
167     /** if true, org.xwt.Surface will generate a Click automatically after a press and a release */
168     protected boolean _needsAutoClick() { return false; }
169
170     /** if true, org.xwt.Surface will generate a DoubleClick automatically after recieving two clicks in a short period of time */
171     protected boolean _needsAutoDoubleClick() { return false; }
172
173     protected void _newBrowserWindow(String url) {
174         if (Log.on) Log.log(this, "Platform " + platform.getClass().getName() + " cannot open browser windows");
175         return;
176     }
177
178     /** Returns null if XWT should always use direct connection; otherwise returns a ProxyInfo object with proxy settings */
179     protected synchronized HTTP.ProxyInfo _detectProxy() { return null; }
180
181     /** displays a platform-specific "open file" dialog and returns the chosen filename, or null if the user hit cancel */
182     protected String _fileDialog(String suggestedFileName, boolean write) { return null; }
183
184     /** returns true iff the platform has a case-sensitive filesystem */
185     protected boolean _isCaseSensitive() { return true; }
186
187
188     // Static methods -- thunk to the instance /////////////////////////////////////////////////////////////////////////
189
190     /** if true, org.xwt.Surface should generate Click messages automatically when a Release happens after a Press and the mouse has not moved much */
191     public static boolean needsAutoClick() { return platform._needsAutoClick(); }
192
193     /** if true, org.xwt.Surface should generate DoubleClick messages automatically when needed */
194     public static boolean needsAutoDoubleClick() { return platform._needsAutoDoubleClick(); }
195
196     /** should return true if it is safe to supress full-surface dirties immediately after a window resize */
197     public static String getDefaultFont() { return platform._getDefaultFont(); }
198
199     /** should return true if it is safe to supress full-surface dirties immediately after a window resize */
200     public static boolean supressDirtyOnResize() { return platform._supressDirtyOnResize(); }
201
202     /** returns the width of a string in a platform-specific font */
203     public static int stringWidth(String font, String text) { return platform._stringWidth(font, text); }
204
205     /** returns the maximum ascent of all glyphs in a given platform-specific font */
206     public static int getMaxAscent(String font) { return platform._getMaxAscent(font); }
207
208     /** returns the maximum descent of all glyphs in a given platform-specific font. Three pixel minimum ensures space for underline. */
209     public static int getMaxDescent(String font) { return Math.max(3, platform._getMaxDescent(font)); }
210
211     /** returns the maximum number of threads that the XWT engine can create without adversely affecting the host OS */
212     public static int maxThreads() { return platform._maxThreads(); }
213
214     /** returns a list of all platform-specific fonts available */
215     public static String[] listFonts() { return platform._listFonts(); }
216
217     /** creates a weak reference */
218     public static org.xwt.Weak getWeak(Object o) { return platform._getWeak(o); }
219
220     /** opens a connection to the resource identified by URL u, and returns an InputStream */
221     public static InputStream urlToInputStream(URL u) throws IOException { return platform._urlToInputStream(u); }
222
223     /** returns the contents of the clipboard */    
224     public static Object getClipBoard() { return clipboardReadEnabled ? platform._getClipBoard() : null; }
225
226     /** sets the contents of the clipboard */
227     public static void setClipBoard(String s) { platform._setClipBoard(s); }
228
229     /** creates a socket object, with or without ssl encryption */
230     public static Socket getSocket(String host, int port, boolean ssl, boolean negotiate) throws IOException {
231         return platform._getSocket(host, port, ssl, negotiate);
232     }
233
234     /** returns the width of the screen, in pixels */
235     public static int getScreenWidth() { return platform._getScreenWidth(); }
236
237     /** returns the height of the screen, in pixels */
238     public static int getScreenHeight() { return platform._getScreenHeight(); }
239
240     /** creates and returns a doublebuffer 'belonging' to <tt>owner</tt> */
241     public static DoubleBuffer createDoubleBuffer(int w, int h, Surface s) { return platform._createDoubleBuffer(w, h, s); }
242
243     /** creates and returns a picture */
244     public static Picture createPicture(int[] data, int w, int h) { return platform._createPicture(data, w, h); }
245
246     /** creates and returns a picture */
247     public static Picture createPicture(ImageDecoder i) { return platform._createPicture(i.getData(), i.getWidth(), i.getHeight()); }
248
249     /** returns true iff the platform has a case-sensitive filesystem */
250     public static boolean isCaseSensitive() { return platform._isCaseSensitive(); }
251
252     /** displays a platform-specific "open file" dialog and returns the chosen filename, or null if the user hit cancel */
253     public static String fileDialog(String suggestedFileName, boolean write) {
254         if (!ThreadMessage.suspendThread()) return null;
255         try {
256             return platform._fileDialog(suggestedFileName, write);
257         } finally {
258             ThreadMessage.resumeThread();
259         }
260     }
261
262     /** opens a new browser window */
263     public static void newBrowserWindow(String url) {
264         if (!(url.startsWith("https://") || url.startsWith("http://") || url.startsWith("ftp://") || url.startsWith("mailto:"))) {
265             if (Log.on) Log.log(Platform.class, "xwt.newBrowserWindow() only supports http and https urls");
266             return;
267         }
268         if (Log.on) Log.log(Platform.class, "newBrowserWindow, url = " + url);
269         platform._newBrowserWindow(url);
270     }
271
272     /** quits XWT */
273     public static void exit() {
274         Log.log(Platform.class, "exiting via Platform.exit()");
275         platform._exit();
276     }
277
278     /** the human-readable name of the key mapped to XWT's 'alt' key */
279     public static String altKeyName() { return platform._altKeyName(); }
280
281     /** used to notify the user of very serious failures; usually used when logging is not working or unavailable */
282     public static void criticalAbort(String message) {
283         if (Log.on) Log.log(Platform.class, "Critical Abort:");
284         if (Log.on) Log.log(Platform.class, message);
285         platform._criticalAbort(message);
286     }
287
288     /** this method invokes the platform _createSurface() method and then enforces a few post-call invariants */
289     public static Surface createSurface(Box b, boolean framed, boolean refreshable) {
290         Surface ret = platform._createSurface(b, framed);
291         ret.setInvisible(b.invisible);
292         b.set(Box.size, 0, ret.width);
293         b.set(Box.size, 1, ret.height);
294
295         Object titlebar = b.get("titlebar", null, true);
296         if (titlebar != null) ret.setTitleBarText(titlebar.toString());
297
298         Object icon = b.get("icon", null, true);
299         if (icon != null && !"".equals(icon)) {
300             Picture pic = Box.getPicture(icon.toString());
301             if (pic != null) ret.setIcon(pic);
302             else if (Log.on) Log.log(Platform.class, "unable to load icon " + icon);
303         }
304
305         ret.setLimits(b.dmin(0), b.dmin(1), b.dmax(0), b.dmax(1));
306
307         if (refreshable) {
308             Surface.refreshableSurfaceWasCreated = true;
309             Surface.allSurfaces.addElement(ret);
310             ret.dirty(0, 0, ret.width, ret.height);
311             ret.Refresh();
312         }
313         return ret;
314     }
315
316     /** detects proxy settings */
317     public static synchronized HTTP.ProxyInfo detectProxy() {
318
319         if (cachedProxyInfo != null) return cachedProxyInfo;
320         if (alreadyDetectedProxy) return null;
321         alreadyDetectedProxy = true;
322
323         if (Log.on) Log.log(Platform.class, "attempting xwt-proxy DNS proxy detection");
324         cachedProxyInfo = HTTP.ProxyInfo.detectProxyViaManual();
325         if (cachedProxyInfo != null) return cachedProxyInfo;
326
327         if (Log.on) Log.log(Platform.class, "attempting " + platform.getClass().getName() + " proxy detection");
328         cachedProxyInfo = platform._detectProxy();
329         if (cachedProxyInfo != null) return cachedProxyInfo;
330
331         if (Log.on) Log.log(Platform.class, "attempting WPAD proxy detection");
332         cachedProxyInfo = HTTP.ProxyInfo.detectProxyViaWPAD();
333         if (cachedProxyInfo != null) return cachedProxyInfo;
334
335         return cachedProxyInfo;
336     }
337
338     // Helpful font parsing stuff //////////////////////////////////////////////////////
339
340     public static class ParsedFont {
341         public ParsedFont() { }
342         public ParsedFont(String s) { parse(s); }
343         public int size = 10;
344         public String name = "";
345
346         public boolean italic = false;
347         public boolean bold = false;
348         public boolean underline = false;
349         public boolean dotted_underline = false;
350
351         private static int stoi(Object o) {
352             if (o == null) return 0;
353             if (o instanceof Integer) return ((Integer)o).intValue();
354             
355             String s = o.toString(); 
356             try { return Integer.parseInt(s.indexOf('.') == -1 ? s : s.substring(0, s.indexOf('.'))); }
357             catch (NumberFormatException e) { return 0; }
358         }
359
360         public void parse(String font) {
361             int i = 0;
362             while(i < font.length() && !Character.isDigit(font.charAt(i)) && font.charAt(i) != '*') i++;
363             name = font.substring(0, i).toLowerCase().replace('_', ' ');
364             size = 10;
365             italic = false;
366             bold = false;
367             underline = false;
368             dotted_underline = false;
369             if (i != font.length()) {
370                 if (font.charAt(i) == '*') {
371                     size = 0;
372                     i++;
373                 } else {
374                     int j = i;
375                     while (j < font.length() && Character.isDigit(font.charAt(j))) j++;
376                     if (i != j) size = stoi(font.substring(i, j));
377                     i = j;
378                 }
379                 while(i < font.length()) {
380                     switch (font.charAt(i)) {
381                     case 'b': bold = true; break;
382                     case 'i': italic = true; break;
383                     case 'd': dotted_underline = true; break;
384                     case 'u': underline = true; break;
385                     }
386                     i++;
387                 }
388             }
389         }
390
391     }
392
393 }
394
395