rt/emul/mini/src/main/java/org/apidesign/bck2brwsr/emul/lang/System.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 01 May 2014 13:43:36 +0200
branchclosure
changeset 1515 d6d1fc565854
parent 1513 ba912ef24b27
child 1940 e568ae8ef9af
permissions -rw-r--r--
Don't reference Fn
     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 org.apidesign.bck2brwsr.emul.lang;
    19 
    20 import java.io.Closeable;
    21 import java.io.IOException;
    22 import java.lang.reflect.Method;
    23 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class System {
    30     private System() {
    31     }
    32 
    33     @JavaScriptBody(args = { "value", "srcBegin", "dst", "dstBegin", "count" }, body = 
    34         "if (srcBegin < dstBegin) {\n" +
    35         "    while (count-- > 0) {\n" +
    36         "        dst[dstBegin + count] = value[srcBegin + count];\n" +
    37         "    }\n" +
    38         "} else {\n" +
    39         "    while (count-- > 0) {\n" +
    40         "        dst[dstBegin++] = value[srcBegin++];\n" +
    41         "    }\n" +
    42         "}"
    43     )
    44     public static void arraycopy(Object src, int srcBegin, Object dst, int dstBegin, int count) {
    45         try {
    46             Class<?> system = Class.forName("java.lang.System");
    47             Method m = system.getMethod("arraycopy", Object.class, int.class, Object.class, int.class, int.class);
    48             m.invoke(null, src, srcBegin, dst, dstBegin, count);
    49         } catch (Exception ex) {
    50             throw new IllegalStateException(ex);
    51         }
    52     }
    53 
    54     @JavaScriptBody(args = { "arr", "expectedSize" }, body = 
    55         "while (expectedSize > arr.length) { arr.push(0); }; return arr;"
    56     )
    57     public static native byte[] expandArray(byte[] arr, int expectedSize);
    58 
    59     @JavaScriptBody(args = { "arr", "expectedSize" }, body = 
    60         "while (expectedSize > arr.length) { arr.push(0); }; return arr;"
    61     )
    62     public static native char[] expandArray(char[] arr, int expectedSize);
    63 
    64     @JavaScriptBody(args = {}, body = "return new Date().getTime();")
    65     private static native double currentTimeMillisDouble();
    66 
    67     public static long currentTimeMillis() {
    68         return (long) currentTimeMillisDouble();
    69     }
    70 
    71     public static long nanoTime() {
    72         return 1000000L * currentTimeMillis();
    73     }
    74     @JavaScriptBody(args = { "obj" }, body="return vm.java_lang_Object(false).hashCode__I.call(obj);")
    75     public static native int identityHashCode(Object obj);
    76     
    77     public static Closeable activate() {
    78         return DUMMY;
    79     }
    80     private static final Closeable DUMMY = new Closeable() {
    81         @Override
    82         public void close() throws IOException {
    83         }
    84     };
    85     
    86     
    87     private static Object convArray(Object o) {
    88         if (o instanceof Object[]) {
    89             Object[] arr = (Object[]) o;
    90             final int l = arr.length;
    91             Object[] ret = new Object[l];
    92             for (int i = 0; i < l; i++) {
    93                 ret[i] = convArray(arr[i]);
    94             }
    95             return ret;
    96         }
    97         return o;
    98     }
    99 }