rt/emul/mini/src/main/java/org/apidesign/bck2brwsr/emul/lang/System.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Apr 2016 07:59:10 +0200
changeset 1940 e568ae8ef9af
parent 1515 d6d1fc565854
child 1958 aa2e9630b6d5
permissions -rw-r--r--
Export externally referenced class and its methods
jaroslav@560
     1
/**
jaroslav@560
     2
 * Back 2 Browser Bytecode Translator
jaroslav@560
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@560
     4
 *
jaroslav@560
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@560
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@560
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@560
     8
 *
jaroslav@560
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@560
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@560
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@560
    12
 * GNU General Public License for more details.
jaroslav@560
    13
 *
jaroslav@560
    14
 * You should have received a copy of the GNU General Public License
jaroslav@560
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@560
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@560
    17
 */
jaroslav@560
    18
package org.apidesign.bck2brwsr.emul.lang;
jaroslav@560
    19
jaroslav@1515
    20
import java.io.Closeable;
jaroslav@1515
    21
import java.io.IOException;
jaroslav@694
    22
import java.lang.reflect.Method;
jaroslav@1940
    23
import org.apidesign.bck2brwsr.core.Exported;
jaroslav@568
    24
import org.apidesign.bck2brwsr.core.JavaScriptBody;
jaroslav@568
    25
jaroslav@560
    26
/**
jaroslav@560
    27
 *
jaroslav@560
    28
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@560
    29
 */
jaroslav@1940
    30
@Exported
jaroslav@560
    31
public class System {
jaroslav@560
    32
    private System() {
jaroslav@560
    33
    }
jaroslav@560
    34
jaroslav@568
    35
    @JavaScriptBody(args = { "value", "srcBegin", "dst", "dstBegin", "count" }, body = 
jaroslav@568
    36
        "if (srcBegin < dstBegin) {\n" +
jaroslav@568
    37
        "    while (count-- > 0) {\n" +
jaroslav@568
    38
        "        dst[dstBegin + count] = value[srcBegin + count];\n" +
jaroslav@568
    39
        "    }\n" +
jaroslav@568
    40
        "} else {\n" +
jaroslav@568
    41
        "    while (count-- > 0) {\n" +
jaroslav@568
    42
        "        dst[dstBegin++] = value[srcBegin++];\n" +
jaroslav@568
    43
        "    }\n" +
jaroslav@568
    44
        "}"
jaroslav@568
    45
    )
jaroslav@694
    46
    public static void arraycopy(Object src, int srcBegin, Object dst, int dstBegin, int count) {
jaroslav@694
    47
        try {
jaroslav@694
    48
            Class<?> system = Class.forName("java.lang.System");
jaroslav@694
    49
            Method m = system.getMethod("arraycopy", Object.class, int.class, Object.class, int.class, int.class);
jaroslav@694
    50
            m.invoke(null, src, srcBegin, dst, dstBegin, count);
jaroslav@694
    51
        } catch (Exception ex) {
jaroslav@694
    52
            throw new IllegalStateException(ex);
jaroslav@694
    53
        }
jaroslav@694
    54
    }
jaroslav@595
    55
jaroslav@595
    56
    @JavaScriptBody(args = { "arr", "expectedSize" }, body = 
jaroslav@1476
    57
        "while (expectedSize > arr.length) { arr.push(0); }; return arr;"
jaroslav@595
    58
    )
jaroslav@595
    59
    public static native byte[] expandArray(byte[] arr, int expectedSize);
jaroslav@599
    60
jaroslav@835
    61
    @JavaScriptBody(args = { "arr", "expectedSize" }, body = 
jaroslav@1476
    62
        "while (expectedSize > arr.length) { arr.push(0); }; return arr;"
jaroslav@835
    63
    )
jaroslav@835
    64
    public static native char[] expandArray(char[] arr, int expectedSize);
jaroslav@835
    65
jaroslav@704
    66
    @JavaScriptBody(args = {}, body = "return new Date().getTime();")
lubomir@755
    67
    private static native double currentTimeMillisDouble();
lubomir@755
    68
lubomir@755
    69
    public static long currentTimeMillis() {
lubomir@755
    70
        return (long) currentTimeMillisDouble();
lubomir@755
    71
    }
lubomir@755
    72
jaroslav@636
    73
    public static long nanoTime() {
jaroslav@668
    74
        return 1000000L * currentTimeMillis();
jaroslav@636
    75
    }
jaroslav@604
    76
    @JavaScriptBody(args = { "obj" }, body="return vm.java_lang_Object(false).hashCode__I.call(obj);")
jaroslav@604
    77
    public static native int identityHashCode(Object obj);
jaroslav@1421
    78
    
jaroslav@1515
    79
    public static Closeable activate() {
jaroslav@1515
    80
        return DUMMY;
jaroslav@1515
    81
    }
jaroslav@1515
    82
    private static final Closeable DUMMY = new Closeable() {
jaroslav@1515
    83
        @Override
jaroslav@1515
    84
        public void close() throws IOException {
jaroslav@1515
    85
        }
jaroslav@1515
    86
    };
jaroslav@1515
    87
    
jaroslav@1940
    88
    @Exported
jaroslav@1421
    89
    private static Object convArray(Object o) {
jaroslav@1421
    90
        if (o instanceof Object[]) {
jaroslav@1421
    91
            Object[] arr = (Object[]) o;
jaroslav@1421
    92
            final int l = arr.length;
jaroslav@1421
    93
            Object[] ret = new Object[l];
jaroslav@1421
    94
            for (int i = 0; i < l; i++) {
jaroslav@1421
    95
                ret[i] = convArray(arr[i]);
jaroslav@1421
    96
            }
jaroslav@1421
    97
            return ret;
jaroslav@1421
    98
        }
jaroslav@1421
    99
        return o;
jaroslav@1421
   100
    }
jaroslav@560
   101
}