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