vm/src/test/java/org/apidesign/vm4brwsr/VMLazy.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 04 Dec 2012 09:16:53 +0100
changeset 248 0bfcb6585290
parent 214 a0f4460130b9
permissions -rw-r--r--
Using the same mangling scheme as JNI
     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.vm4brwsr;
    19 
    20 import java.io.ByteArrayInputStream;
    21 import java.io.IOException;
    22 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    23 
    24 /**
    25  *
    26  * @author Jaroslav Tulach <jtulach@netbeans.org>
    27  */
    28 class VMLazy extends ByteCodeToJavaScript {
    29     private final Object vm;
    30     private final Object global;
    31     
    32     private VMLazy(Object global, Object vm, Appendable out) {
    33         super(out);
    34         this.vm = vm;
    35         this.global = global;
    36     }
    37     
    38     static String toJavaScript(Object global, Object vm, byte[] is) throws IOException {
    39         StringBuilder sb = new StringBuilder();
    40         new VMLazy(global, vm, sb).compile(new ByteArrayInputStream(is));
    41         return sb.toString().toString();
    42     }
    43 
    44     @JavaScriptBody(args = { "self", "n" }, 
    45         body=
    46           "var cls = n.replace__Ljava_lang_String_2CC(n,'/','_').toString();"
    47         + "var glb = self.fld_global;"
    48         + "var vm = self.fld_vm;"
    49         + "if (glb[cls]) return false;"
    50         + "glb[cls] = function() {"
    51         + "  return vm.loadClass(n,cls);"
    52         + "};"
    53         + "return true;"
    54     )
    55     @Override
    56     protected boolean requireReference(String internalClassName) {
    57         throw new UnsupportedOperationException();
    58     }
    59 
    60     @Override
    61     protected void requireScript(String resourcePath) {
    62     }
    63 
    64     @Override
    65     protected String assignClass(String className) {
    66         return "arguments[0][arguments[1]]=";
    67     }
    68 }