vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 20 Dec 2012 08:59:47 +0100
branchlauncher
changeset 355 eea0065bcc1a
parent 354 002b7c3d5157
child 397 2adac52f955e
permissions -rw-r--r--
Support for reflection on primitive types. All tests finish in the browser.
     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 String nameOfIO() {
    34         return nameFor(IOException.class);
    35     }
    36     
    37     private static String nameFor(Class<?> c) {
    38         return c.getName();
    39     }
    40     
    41     public static boolean isInterface(String s) throws ClassNotFoundException {
    42         return Class.forName(s).isInterface();
    43     }
    44     
    45     public static boolean equalsClassesOfExceptions() {
    46         return MalformedURLException.class.getSuperclass() == IOException.class;
    47     }
    48     public static boolean differenceInClasses() {
    49         Class<?> c1 = MalformedURLException.class;
    50         Class<?> c2 = IOException.class;
    51         return c1 != c2;
    52     }
    53     
    54     public static String classForInstance() {
    55         return new IOException().getClass().getName().toString();
    56     }
    57     
    58     @ClassesMarker(number = 1)
    59     public static String name() {
    60         return IOException.class.getName().toString();
    61     }
    62     public static String simpleName() {
    63         return IOException.class.getSimpleName();
    64     }
    65     public static String canonicalName() {
    66         return IOException.class.getCanonicalName();
    67     }
    68     public static boolean newInstance() throws Exception {
    69         IOException ioe = IOException.class.newInstance();
    70         if (ioe instanceof IOException) {
    71             return ioe.getClass() == IOException.class;
    72         }
    73         throw new IllegalStateException("Not a subtype: " + ioe);
    74     }
    75     public static int getMarker() {
    76         if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
    77             return -2;
    78         }
    79         ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
    80         return cm == null ? -1 : cm.number();
    81     }
    82     public static String getNamer(boolean direct) {
    83         if (direct) {
    84             ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
    85             return cm == null ? null : cm.name();
    86         }
    87         for (Annotation a : Classes.class.getAnnotations()) {
    88             if (a instanceof ClassesNamer) {
    89                 return ((ClassesNamer)a).name();
    90             }
    91         }
    92         return null;
    93     }
    94     
    95     public static String intType() {
    96         return Integer.TYPE.getName();
    97     }
    98     
    99     public static int primitive() {
   100         return 1;
   101     }
   102     public static boolean primitiveB() {
   103         return true;
   104     }
   105     
   106     public static String primitiveType(String method) throws Exception {
   107         return reflectiveMethodCall(false, method).getClass().getName();
   108     }
   109     
   110     @JavaScriptBody(args = "msg", body = "throw msg;")
   111     private static native void thrw(String msg);
   112     
   113     public static Object reflectiveMethodCall(boolean direct, String mn) throws Exception {
   114         Method find = null;
   115         StringBuilder sb = new StringBuilder();
   116         if (!direct) {
   117             final Class<? extends Annotation> v = ClassesMarker.class;
   118             for (Method m : Classes.class.getMethods()) {
   119                 sb.append("\n").append(m.getName());
   120                 if (mn != null) {
   121                     if (m.getName().equals(mn)) {
   122                         find = m;
   123                         break;
   124                     }
   125                 } else {
   126                     if (m.getAnnotation(v) != null) {
   127                         find = m;
   128                         break;
   129                     }
   130                 }
   131             }
   132         } else {
   133             find = Classes.class.getMethod(mn);
   134         }
   135         if (find == null) {
   136             thrw(sb.toString());
   137             throw new NullPointerException(sb.toString());
   138         }
   139         return find.invoke(null);
   140     }
   141 }