rt/emul/compact/src/main/java/java/lang/System.java
author Anton Epple <toni.epple@eppleton.de>
Tue, 11 Feb 2014 13:31:42 +0100
branchcanvas
changeset 1439 6c04b26f9a9a
parent 1290 3fc3e7c4fb5c
parent 1416 a0a31f8f7dc1
permissions -rw-r--r--
Merging latest changes from main line
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package java.lang;
    19 
    20 import java.io.BufferedOutputStream;
    21 import java.io.ByteArrayInputStream;
    22 import java.io.IOException;
    23 import java.io.InputStream;
    24 import java.io.OutputStream;
    25 import java.io.PrintStream;
    26 import java.util.Properties;
    27 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    28 
    29 /** Poor man's re-implementation of most important System methods.
    30  *
    31  * @author Jaroslav Tulach <jtulach@netbeans.org>
    32  */
    33 public class System {
    34     private System() {
    35     }
    36     
    37     public static void arraycopy(Object value, int srcBegin, Object dst, int dstBegin, int count) {
    38         org.apidesign.bck2brwsr.emul.lang.System.arraycopy(value, srcBegin, dst, dstBegin, count);
    39     }
    40     
    41     public static long currentTimeMillis() {
    42         return org.apidesign.bck2brwsr.emul.lang.System.currentTimeMillis();
    43     }
    44     
    45     public static long nanoTime() {
    46         return org.apidesign.bck2brwsr.emul.lang.System.nanoTime();
    47         
    48     }
    49     
    50     public static int identityHashCode(Object obj) {
    51         return obj.defaultHashCode();
    52     }
    53 
    54     public static String getProperty(String name) {
    55         if ("os.name".equals(name)) {
    56             return userAgent();
    57         }
    58         return null;
    59     }
    60     
    61     @JavaScriptBody(args = {}, body = "return (typeof navigator !== 'undefined') ? navigator.userAgent : 'unknown';")
    62     private static native String userAgent();
    63     
    64     public static String getProperty(String key, String def) {
    65         return def;
    66     }
    67     
    68     public static Properties getProperties() {
    69         throw new SecurityException();
    70     }
    71     
    72     public static void setProperties(Properties p) {
    73         throw new SecurityException();
    74     }
    75     
    76     /**
    77      * Returns the system-dependent line separator string.  It always
    78      * returns the same value - the initial value of the {@linkplain
    79      * #getProperty(String) system property} {@code line.separator}.
    80      *
    81      * <p>On UNIX systems, it returns {@code "\n"}; on Microsoft
    82      * Windows systems it returns {@code "\r\n"}.
    83      */
    84     public static String lineSeparator() {
    85         return "\n";
    86     }
    87 
    88     @JavaScriptBody(args = { "exitCode" }, body = "window.close();")
    89     public static void exit(int exitCode) {
    90     }
    91     
    92     public final static InputStream in;
    93 
    94     public final static PrintStream out;
    95 
    96     public final static PrintStream err;
    97     
    98     public static void setOut(PrintStream out) {
    99         throw new SecurityException();
   100     }
   101 
   102     public static void setIn(InputStream in) {
   103         throw new SecurityException();
   104     }
   105 
   106     public static void setErr(PrintStream err) {
   107         throw new SecurityException();
   108     }
   109     
   110     static {
   111         in = new ByteArrayInputStream(new byte[0]);
   112         out = new PrintStream(new BufferedOutputStream(new SystemStream("log")));
   113         err = new PrintStream(new BufferedOutputStream(new SystemStream("warn")));
   114     }
   115 
   116     private static final class SystemStream extends OutputStream {
   117         private final String method;
   118 
   119         public SystemStream(String method) {
   120             this.method = method;
   121         }
   122 
   123         @Override
   124         public void write(byte b[], int off, int len) throws IOException {
   125             write(method, new String(b, off, len, "UTF-8"));
   126         }
   127 
   128         @JavaScriptBody(args = { "method", "b" }, body = "if (typeof console !== 'undefined') console[method](b.toString());")
   129         private static native void write(String method, String b);
   130 
   131         @Override
   132         public void write(int b) throws IOException {
   133             write(new byte[] { (byte)b });
   134         }
   135     } // end of SystemStream
   136 }