JAL-3274 resource path correction, code tidying (constants etc)
[jalview.git] / src / jalview / util / Platform.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.util;
22
23 import jalview.javascript.json.JSON;
24
25 import java.awt.Toolkit;
26 import java.awt.event.MouseEvent;
27 import java.io.BufferedReader;
28 import java.io.File;
29 import java.io.FileOutputStream;
30 import java.io.FileReader;
31 import java.io.IOException;
32 import java.io.InputStream;
33 import java.io.InputStreamReader;
34 import java.io.Reader;
35 import java.net.URL;
36 import java.util.Properties;
37
38 import javax.swing.SwingUtilities;
39
40 import org.json.simple.parser.JSONParser;
41 import org.json.simple.parser.ParseException;
42
43 /**
44  * System platform information used by Applet and Application
45  * 
46  * @author Jim Procter
47  */
48 public class Platform
49 {
50
51   private static boolean isJS = /** @j2sNative true || */
52           false;
53
54   private static Boolean isNoJSMac = null, isNoJSWin = null, isMac = null,
55           isWin = null;
56
57   private static Boolean isHeadless = null;
58
59   /**
60    * added to group mouse events into Windows and nonWindows (mac, unix, linux)
61    * 
62    * @return
63    */
64   public static boolean isMac()
65   {
66     return (isMac == null
67             ? (isMac = (System.getProperty("os.name").indexOf("Mac") >= 0))
68             : isMac);
69   }
70
71   /**
72    * added to group mouse events into Windows and nonWindows (mac, unix, linux)
73    * 
74    * @return
75    */
76   public static boolean isWin()
77   {
78     return (isWin == null
79             ? (isWin = (System.getProperty("os.name").indexOf("Win") >= 0))
80             : isWin);
81   }
82
83   /**
84    * 
85    * @return true if HTML5 JavaScript
86    */
87   public static boolean isJS()
88   {
89     return isJS;
90   }
91
92   /**
93    * sorry folks - Macs really are different
94    * 
95    * BH: disabled for SwingJS -- will need to check key-press issues
96    * 
97    * @return true if we do things in a special way.
98    */
99   public static boolean isAMacAndNotJS()
100   {
101     return (isNoJSMac == null ? (isNoJSMac = !isJS && isMac()) : isNoJSMac);
102   }
103
104   /**
105    * Check if we are on a Microsoft plaform...
106    * 
107    * @return true if we have to cope with another platform variation
108    */
109   public static boolean isWindowsAndNotJS()
110   {
111     return (isNoJSWin == null ? (isNoJSWin = !isJS && isWin()) : isNoJSWin);
112   }
113
114   /**
115    * 
116    * @return true if we are running in non-interactive no UI mode
117    */
118   public static boolean isHeadless()
119   {
120     if (isHeadless == null)
121     {
122       isHeadless = "true".equals(System.getProperty("java.awt.headless"));
123     }
124     return isHeadless;
125   }
126
127   /**
128    * 
129    * @return nominal maximum command line length for this platform
130    */
131   public static int getMaxCommandLineLength()
132   {
133     // TODO: determine nominal limits for most platforms.
134     return 2046; // this is the max length for a windows NT system.
135   }
136
137   /**
138    * Answers the input with every backslash replaced with a double backslash (an
139    * 'escaped' single backslash)
140    * 
141    * @param s
142    * @return
143    */
144   public static String escapeBackslashes(String s)
145   {
146     return s == null ? null : s.replace("\\", "\\\\");
147   }
148
149   /**
150    * Answers true if the mouse event has Meta-down (Command key on Mac) or
151    * Ctrl-down (on other o/s). Note this answers _false_ if the Ctrl key is
152    * pressed instead of the Meta/Cmd key on Mac. To test for Ctrl-pressed on
153    * Mac, you can use e.isPopupTrigger().
154    * 
155    * @param e
156    * @return
157    */
158   public static boolean isControlDown(MouseEvent e)
159   {
160     return isControlDown(e, isMac());
161   }
162
163   /**
164    * Overloaded version of method (to allow unit testing)
165    * 
166    * @param e
167    * @param aMac
168    * @return
169    */
170   protected static boolean isControlDown(MouseEvent e, boolean aMac)
171   {
172     if (!aMac)
173     {
174       return e.isControlDown();
175
176       // Jalview 2.11 code below: above is as amended for JalviewJS
177       // /*
178       // * answer false for right mouse button
179       // */
180       // if (e.isPopupTrigger())
181       // {
182       // return false;
183       // }
184       // return
185       // (jalview.util.ShortcutKeyMaskExWrapper.getMenuShortcutKeyMaskEx() //
186       // .getMenuShortcutKeyMaskEx()
187       // & jalview.util.ShortcutKeyMaskExWrapper
188       // .getModifiersEx(e)) != 0; // getModifiers()) != 0;
189     }
190     // answer false for right mouse button
191     // shortcut key will be META for a Mac
192     return !e.isPopupTrigger()
193             && (Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()
194                     & e.getModifiers()) != 0;
195     // could we use e.isMetaDown() here?
196   }
197
198   // BH: I don't know about that previous method. Here is what SwingJS uses.
199   // Notice the distinction in mouse events. (BUTTON3_MASK == META)
200   //
201   // private static boolean isPopupTrigger(int id, int mods, boolean isWin) {
202   // boolean rt = ((mods & InputEvent.BUTTON3_MASK) != 0);
203   // if (isWin) {
204   // if (id != MouseEvent.MOUSE_RELEASED)
205   // return false;
206   ////
207   //// // Oddly, Windows returns InputEvent.META_DOWN_MASK on release, though
208   //// // BUTTON3_DOWN_MASK for pressed. So here we just accept both.
209   ////
210   //// actually, we can use XXX_MASK, not XXX_DOWN_MASK and avoid this issue,
211   // because
212   //// J2S adds the appropriate extended (0x3FC0) and simple (0x3F) modifiers.
213   ////
214   // return rt;
215   // } else {
216   // // mac, linux, unix
217   // if (id != MouseEvent.MOUSE_PRESSED)
218   // return false;
219   // boolean lt = ((mods & InputEvent.BUTTON1_MASK) != 0);
220   // boolean ctrl = ((mods & InputEvent.CTRL_MASK) != 0);
221   // return rt || (ctrl && lt);
222   // }
223   // }
224   //
225
226   /**
227    * Windows (not Mac, Linux, or Unix) and right button to test for the
228    * right-mouse pressed event in Windows that would have opened a menu or a
229    * Mac.
230    * 
231    * @param e
232    * @return
233    */
234   public static boolean isWinRightButton(MouseEvent e)
235   {
236     // was !isAMac(), but that is true also for Linux and Unix and JS,
237
238     return isWin() && SwingUtilities.isRightMouseButton(e);
239   }
240
241   /**
242    * Windows (not Mac, Linux, or Unix) and middle button -- for mouse wheeling
243    * without pressing the button.
244    * 
245    * @param e
246    * @return
247    */
248   public static boolean isWinMiddleButton(MouseEvent e)
249   {
250     // was !isAMac(), but that is true also for Linux and Unix and JS
251     return isWin() && SwingUtilities.isMiddleMouseButton(e);
252   }
253
254   public static boolean allowMnemonics()
255   {
256     return !isMac();
257   }
258
259   public final static int TIME_RESET = 0;
260
261   public final static int TIME_MARK = 1;
262
263   public static final int TIME_SET = 2;
264
265   public static final int TIME_GET = 3;
266
267   public static long time, mark, set, duration;
268
269   public static void timeCheck(String msg, int mode)
270   {
271     long t = System.currentTimeMillis();
272     switch (mode)
273     {
274     case TIME_RESET:
275       time = mark = t;
276       if (msg != null)
277       {
278         System.err.println("Platform: timer reset\t\t\t" + msg);
279       }
280       break;
281     case TIME_MARK:
282       if (set > 0)
283       {
284         duration += (t - set);
285       }
286       else
287       {
288         if (time == 0)
289         {
290           time = mark = t;
291         }
292         if (msg != null)
293         {
294           System.err.println("Platform: timer mark\t" + ((t - time) / 1000f)
295                   + "\t" + ((t - mark) / 1000f) + "\t" + msg);
296         }
297         mark = t;
298       }
299       break;
300     case TIME_SET:
301       set = t;
302       break;
303     case TIME_GET:
304       if (msg != null)
305       {
306         System.err.println("Platform: timer dur\t" + ((t - time) / 1000f)
307                 + "\t" + ((duration) / 1000f) + "\t" + msg);
308       }
309       set = 0;
310       break;
311     }
312   }
313
314   public static void cacheFileData(String path, Object data)
315   {
316     if (!isJS() || data == null)
317     {
318       return;
319     }
320     /**
321      * @j2sNative
322      * 
323      *            swingjs.JSUtil.cacheFileData$S$O(path, data);
324      * 
325      */
326   }
327
328   public static void cacheFileData(File file)
329   {
330     byte[] data;
331     if (!isJS() || (data = Platform.getFileBytes(file)) == null)
332     {
333       return;
334     }
335     cacheFileData(file.toString(), data);
336   }
337
338   public static byte[] getFileBytes(File f)
339   {
340     return /** @j2sNative f && swingjs.JSUtil.getFileBytes$O(f) || */
341     null;
342   }
343
344   public static byte[] getFileAsBytes(String fileStr)
345   {
346     byte[] bytes = null;
347     // BH 2018 hack for no support for access-origin
348     /**
349      * @j2sNative bytes = swingjs.JSUtil.getFileAsBytes$O(fileStr)
350      */
351     cacheFileData(fileStr, bytes);
352     return bytes;
353   }
354
355   @SuppressWarnings("unused")
356   public static String getFileAsString(String url)
357   {
358     String ret = null;
359     /**
360      * @j2sNative
361      * 
362      *            ret = swingjs.JSUtil.getFileAsString$S(url);
363      * 
364      * 
365      */
366     cacheFileData(url, ret);
367     return ret;
368   }
369
370   public static boolean setFileBytes(File f, String urlstring)
371   {
372     if (!isJS())
373     {
374       return false;
375     }
376     @SuppressWarnings("unused")
377     byte[] bytes = getFileAsBytes(urlstring);
378     // TODO temporary doubling of ç§˜bytes and _bytes;
379     // just remove _bytes when new transpiler has been installed
380     /**
381      * @j2sNative f.\u79d8bytes = f._bytes = bytes;
382      */
383     return true;
384   }
385
386   public static void addJ2SBinaryType(String ext)
387   {
388     /**
389      * @j2sNative
390      * 
391      *            J2S._binaryTypes.push("." + ext + "?");
392      * 
393      */
394   }
395
396   /**
397    * Encode the URI using JavaScript encodeURIComponent
398    * 
399    * @param value
400    * @return encoded value
401    */
402   public static String encodeURI(String value)
403   {
404     /**
405      * @j2sNative value = encodeURIComponent(value);
406      */
407     return value;
408   }
409
410   /**
411    * Open the URL using a simple window call if this is JavaScript
412    * 
413    * @param url
414    * @return true if window has been opened
415    */
416   public static boolean openURL(String url)
417   {
418     if (!isJS())
419     {
420       return false;
421     }
422     /**
423      * @j2sNative
424      * 
425      * 
426      *            window.open(url);
427      */
428     return true;
429   }
430
431   public static String getUniqueAppletID()
432   {
433     @SuppressWarnings("unused")
434     ThreadGroup g = Thread.currentThread().getThreadGroup();
435     /**
436      * @j2sNative return g.getHtmlApplet$()._uniqueId;
437      *
438      */
439     return null;
440
441   }
442
443   /**
444    * Read the Info block for this applet.
445    * 
446    * @param prefix
447    *          "jalview_"
448    * @param p
449    * @return unique id for this applet
450    */
451   public static void readInfoProperties(String prefix, Properties p)
452   {
453     if (!isJS())
454     {
455       return;
456     }
457     @SuppressWarnings("unused")
458     ThreadGroup g = Thread.currentThread().getThreadGroup();
459     String id = getUniqueAppletID();
460     String key = "", value = "";
461     /**
462      * @j2sNative var info = g.getHtmlApplet$().__Info || {}; for (var key in
463      *            info) { if (key.indexOf(prefix) == 0) { value = "" +
464      *            info[key];
465      */
466
467     System.out.println(
468             "Platform id=" + id + " reading Info." + key + " = " + value);
469     p.put(id + "_" + key, value);
470
471     /**
472      * @j2sNative
473      * 
474      * 
475      *            } }
476      */
477   }
478
479   public static void setAjaxJSON(URL url)
480   {
481     if (isJS())
482     {
483       JSON.setAjax(url);
484     }
485   }
486
487   public static Object parseJSON(InputStream response)
488           throws IOException, ParseException
489   {
490     if (isJS())
491     {
492       return JSON.parse(response);
493     }
494
495     BufferedReader br = null;
496     try
497     {
498       br = new BufferedReader(new InputStreamReader(response, "UTF-8"));
499       return new JSONParser().parse(br);
500     } finally
501     {
502       if (br != null)
503       {
504         try
505         {
506           br.close();
507         } catch (IOException e)
508         {
509           // ignore
510         }
511       }
512     }
513   }
514
515   public static Object parseJSON(String json) throws ParseException
516   {
517     return (isJS() ? JSON.parse(json)
518             : new JSONParser().parse(json));
519   }
520
521   public static Object parseJSON(Reader r)
522           throws IOException, ParseException
523   {
524     if (r == null)
525     {
526       return null;
527     }
528
529     if (!isJS())
530     {
531       return new JSONParser().parse(r);
532     }
533     // Using a file reader is not currently supported in SwingJS JavaScript
534
535     if (r instanceof FileReader)
536     {
537       throw new IOException(
538               "StringJS does not support FileReader parsing for JSON -- but it could...");
539     }
540     return JSON.parse(r);
541
542   }
543
544   /**
545    * Dump the input stream to an output file.
546    * 
547    * @param is
548    * @param outFile
549    * @throws IOException
550    *           if the file cannot be created or there is a problem reading the
551    *           input stream.
552    */
553   public static void streamToFile(InputStream is, File outFile)
554           throws IOException
555   {
556     FileOutputStream fio = new FileOutputStream(outFile);
557     try
558     {
559       if (isJS()
560               && /**
561                   * @j2sNative outFile.setBytes$O && outFile.setBytes$O(is) &&
562                   */
563               true)
564       {
565         return;
566       }
567       byte[] bb = new byte[32 * 1024];
568       int l;
569       while ((l = is.read(bb)) > 0)
570       {
571         fio.write(bb, 0, l);
572       }
573     } finally
574     {
575       fio.close();
576     }
577   }
578
579   /**
580    * Add a known domain that implements access-control-allow-origin:*
581    * 
582    * These should be reviewed periodically.
583    * 
584    * @param domain
585    *          for a service that is not allowing ajax
586    * 
587    * @author hansonr@stolaf.edu
588    * 
589    */
590   public static void addJ2SDirectDatabaseCall(String domain)
591   {
592
593     if (isJS())
594     {
595       System.out.println(
596             "Platform adding known access-control-allow-origin * for domain "
597                     + domain);
598       /**
599        * @j2sNative
600        * 
601        *            J2S.addDirectDatabaseCall(domain);
602        */
603     }
604
605   }
606
607   public static void getURLCommandArguments()
608   {
609
610     /**
611      * Retrieve the first query field as command arguments to Jalview. Include
612      * only if prior to "?j2s" or "&j2s" or "#". Assign the applet's __Info.args
613      * element to this value.
614      * 
615      * @j2sNative var a =
616      *            decodeURI((document.location.href.replace("&","?").split("?j2s")[0]
617      *            + "?").split("?")[1].split("#")[0]); a &&
618      *            (J2S.thisApplet.__Info.args = a.split(" "));
619      */
620
621   }
622
623   /**
624    * A (case sensitive) file path comparator that ignores the difference between /
625    * and \
626    * 
627    * @param path1
628    * @param path2
629    * @return
630    */
631   public static boolean pathEquals(String path1, String path2)
632   {
633     if (path1 == null)
634     {
635       return path2 == null;
636     }
637     if (path2 == null)
638     {
639       return false;
640     }
641     String p1 = path1.replace('\\', '/');
642     String p2 = path2.replace('\\', '/');
643     return p1.equals(p2);
644   }
645 }