vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 07 Dec 2012 10:09:50 +0100
branchlazyvm
changeset 279 ee34358037b3
parent 264 ed0c92c81ea4
child 303 c12342170235
permissions -rw-r--r--
Using calling convention with 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.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import java.lang.annotation.Annotation;
    22 import java.lang.reflect.Method;
    23 import java.net.MalformedURLException;
    24 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 @ClassesMarker(number = 10)
    31 @ClassesNamer(name = "my text")
    32 public class Classes {
    33     public static boolean equalsClassesOfExceptions() {
    34         return MalformedURLException.class.getSuperclass() == IOException.class;
    35     }
    36     public static boolean differenceInClasses() {
    37         Class<?> c1 = MalformedURLException.class;
    38         Class<?> c2 = IOException.class;
    39         return c1 != c2;
    40     }
    41     
    42     public static String classForInstance() {
    43         return new IOException().getClass().getName().toString();
    44     }
    45     
    46     @ClassesMarker(number = 1)
    47     public static String name() {
    48         return IOException.class.getName().toString();
    49     }
    50     public static String simpleName() {
    51         return IOException.class.getSimpleName();
    52     }
    53     public static String canonicalName() {
    54         return IOException.class.getCanonicalName();
    55     }
    56     public static boolean newInstance() throws Exception {
    57         IOException ioe = IOException.class.newInstance();
    58         if (ioe instanceof IOException) {
    59             return ioe.getClass() == IOException.class;
    60         }
    61         throw new IllegalStateException("Not a subtype: " + ioe);
    62     }
    63     public static int getMarker() {
    64         if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
    65             return -2;
    66         }
    67         ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
    68         return cm == null ? -1 : cm.number();
    69     }
    70     public static String getNamer(boolean direct) {
    71         if (direct) {
    72             ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
    73             return cm == null ? null : cm.name();
    74         }
    75         for (Annotation a : Classes.class.getAnnotations()) {
    76             if (a instanceof ClassesNamer) {
    77                 return ((ClassesNamer)a).name();
    78             }
    79         }
    80         return null;
    81     }
    82     
    83     @JavaScriptBody(args = "msg", body = "throw msg;")
    84     private static native void thrw(String msg);
    85     
    86     public static Object reflectiveMethodCall(boolean direct, String mn) throws Exception {
    87         Method find = null;
    88         StringBuilder sb = new StringBuilder();
    89         if (!direct) {
    90             final Class<? extends Annotation> v = ClassesMarker.class;
    91             for (Method m : Classes.class.getMethods()) {
    92                 sb.append("\n").append(m.getName());
    93                 if (mn != null) {
    94                     if (m.getName().equals(mn)) {
    95                         find = m;
    96                         break;
    97                     }
    98                 } else {
    99                     if (m.getAnnotation(v) != null) {
   100                         find = m;
   101                         break;
   102                     }
   103                 }
   104             }
   105         } else {
   106             find = Classes.class.getMethod(mn);
   107         }
   108         if (find == null) {
   109             thrw(sb.toString());
   110             throw new NullPointerException(sb.toString());
   111         }
   112         return find.invoke(null);
   113     }
   114 }