rt/emul/compact/src/main/java/java/lang/System.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 10 Dec 2013 17:14:15 +0100
changeset 1416 a0a31f8f7dc1
parent 1410 7a021349afec
child 1439 6c04b26f9a9a
child 1483 cecf27be3802
permissions -rw-r--r--
Tim wanted functional System.out, so let's make it do something useful
     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 int identityHashCode(Object obj) {
    46         return obj.defaultHashCode();
    47     }
    48 
    49     public static String getProperty(String name) {
    50         if ("os.name".equals(name)) {
    51             return userAgent();
    52         }
    53         return null;
    54     }
    55     
    56     @JavaScriptBody(args = {}, body = "return (typeof navigator !== 'undefined') ? navigator.userAgent : 'unknown';")
    57     private static native String userAgent();
    58     
    59     public static String getProperty(String key, String def) {
    60         return def;
    61     }
    62     
    63     public static Properties getProperties() {
    64         throw new SecurityException();
    65     }
    66     
    67     public static void setProperties(Properties p) {
    68         throw new SecurityException();
    69     }
    70     
    71     /**
    72      * Returns the system-dependent line separator string.  It always
    73      * returns the same value - the initial value of the {@linkplain
    74      * #getProperty(String) system property} {@code line.separator}.
    75      *
    76      * <p>On UNIX systems, it returns {@code "\n"}; on Microsoft
    77      * Windows systems it returns {@code "\r\n"}.
    78      */
    79     public static String lineSeparator() {
    80         return "\n";
    81     }
    82 
    83     @JavaScriptBody(args = { "exitCode" }, body = "window.close();")
    84     public static void exit(int exitCode) {
    85     }
    86     
    87     public final static InputStream in;
    88 
    89     public final static PrintStream out;
    90 
    91     public final static PrintStream err;
    92     
    93     public static void setOut(PrintStream out) {
    94         throw new SecurityException();
    95     }
    96 
    97     public static void setIn(InputStream in) {
    98         throw new SecurityException();
    99     }
   100 
   101     public static void setErr(PrintStream err) {
   102         throw new SecurityException();
   103     }
   104     
   105     static {
   106         in = new ByteArrayInputStream(new byte[0]);
   107         out = new PrintStream(new BufferedOutputStream(new SystemStream("log")));
   108         err = new PrintStream(new BufferedOutputStream(new SystemStream("warn")));
   109     }
   110 
   111     private static final class SystemStream extends OutputStream {
   112         private final String method;
   113 
   114         public SystemStream(String method) {
   115             this.method = method;
   116         }
   117 
   118         @Override
   119         public void write(byte b[], int off, int len) throws IOException {
   120             write(method, new String(b, off, len, "UTF-8"));
   121         }
   122 
   123         @JavaScriptBody(args = { "method", "b" }, body = "if (typeof console !== 'undefined') console[method](b.toString());")
   124         private static native void write(String method, String b);
   125 
   126         @Override
   127         public void write(int b) throws IOException {
   128             write(new byte[] { (byte)b });
   129         }
   130     } // end of SystemStream
   131 }