javap/src/main/java/org/apidesign/javap/Vector.java
author Martin Soch <Martin.Soch@oracle.com>
Wed, 06 Feb 2013 17:03:26 +0100
brancharithmetic
changeset 689 f87c33d2fa7b
parent 378 ccb1544a88bc
permissions -rw-r--r--
merge with trunk
     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.javap;
    19 
    20 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 import org.apidesign.bck2brwsr.core.JavaScriptPrototype;
    22 
    23 /** A JavaScript ready replacement for java.util.Vector
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 @JavaScriptPrototype(prototype = "new Array" )
    28 final class Vector {
    29     private Object[] arr;
    30     
    31     Vector() {
    32     }
    33 
    34     Vector(int i) {
    35     }
    36 
    37     void add(Object objectType) {
    38         addElement(objectType);
    39     }
    40     @JavaScriptBody(args = { "obj" }, body = 
    41         "this.push(obj);"
    42     )
    43     void addElement(Object obj) {
    44         final int s = size();
    45         setSize(s + 1);
    46         setElementAt(obj, s);
    47     }
    48 
    49     @JavaScriptBody(args = { }, body = 
    50         "return this.length;"
    51     )
    52     int size() {
    53         return arr == null ? 0 : arr.length;
    54     }
    55 
    56     @JavaScriptBody(args = { "newArr" }, body =
    57         "for (var i = 0; i < this.length; i++) {\n"
    58       + "  newArr[i] = this[i];\n"
    59       + "}\n")
    60     void copyInto(Object[] newArr) {
    61         if (arr == null) {
    62             return;
    63         }
    64         int min = Math.min(newArr.length, arr.length);
    65         for (int i = 0; i < min; i++) {
    66             newArr[i] = arr[i];
    67         }
    68     }
    69 
    70     @JavaScriptBody(args = { "index" }, body =
    71         "return this[index];"
    72     )
    73     Object elementAt(int index) {
    74         return arr[index];
    75     }
    76 
    77     private void setSize(int len) {
    78         Object[] newArr = new Object[len];
    79         copyInto(newArr);
    80         arr = newArr;
    81     }
    82 
    83     @JavaScriptBody(args = { "val", "index" }, body = 
    84         "this[index] = val;"
    85     )
    86     void setElementAt(Object val, int index) {
    87         arr[index] = val;
    88     }
    89 }