vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 03 Feb 2013 08:01:48 +0100
branchreflection
changeset 649 4b16b7e23cab
parent 418 c0bbf144c2c6
child 652 f095ea52f417
permissions -rw-r--r--
Verify the reflection works on interfaces
     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     private static final Class<?> PRELOAD = Runnable.class;
    42     
    43     public static boolean isInterface(String s) throws ClassNotFoundException {
    44         return Class.forName(s).isInterface();
    45     }
    46     
    47     public static boolean equalsClassesOfExceptions() {
    48         return MalformedURLException.class.getSuperclass() == IOException.class;
    49     }
    50     public static boolean differenceInClasses() {
    51         Class<?> c1 = MalformedURLException.class;
    52         Class<?> c2 = IOException.class;
    53         return c1 != c2;
    54     }
    55     
    56     public static String classForInstance() {
    57         return new IOException().getClass().getName().toString();
    58     }
    59     
    60     @ClassesMarker(number = 1)
    61     public static String name() {
    62         return IOException.class.getName().toString();
    63     }
    64     public static String simpleName() {
    65         return IOException.class.getSimpleName();
    66     }
    67     public static String canonicalName() {
    68         return IOException.class.getCanonicalName();
    69     }
    70     public static boolean newInstance() throws Exception {
    71         IOException ioe = IOException.class.newInstance();
    72         if (ioe instanceof IOException) {
    73             return ioe.getClass() == IOException.class;
    74         }
    75         throw new IllegalStateException("Not a subtype: " + ioe);
    76     }
    77     public static String newInstanceNoPubConstructor() throws Exception {
    78         try {
    79             Float f = Float.class.newInstance();
    80             return "wrong, can't instantiate: " + f;
    81         } catch (Exception ex) {
    82             return (ex.getClass().getName() + ":" + ex.getMessage()).toString().toString();
    83         }
    84     }
    85     public static int getMarker() {
    86         if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
    87             return -2;
    88         }
    89         ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
    90         return cm == null ? -1 : cm.number();
    91     }
    92     public static String getNamer(boolean direct) {
    93         if (direct) {
    94             ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
    95             return cm == null ? null : cm.name();
    96         }
    97         for (Annotation a : Classes.class.getAnnotations()) {
    98             if (a instanceof ClassesNamer) {
    99                 return ((ClassesNamer)a).name();
   100             }
   101         }
   102         return null;
   103     }
   104     
   105     public static String intType() {
   106         return Integer.TYPE.getName();
   107     }
   108     
   109     public static int primitive() {
   110         return 1;
   111     }
   112     public static boolean primitiveB() {
   113         return true;
   114     }
   115     
   116     public static String primitiveType(String method) throws Exception {
   117         return reflectiveMethodCall(false, method).getClass().getName();
   118     }
   119     
   120     @JavaScriptBody(args = "msg", body = "throw msg;")
   121     private static native void thrw(String msg);
   122     
   123     public static Object reflectiveMethodCall(boolean direct, String mn) throws Exception {
   124         Method find = null;
   125         StringBuilder sb = new StringBuilder();
   126         if (!direct) {
   127             final Class<? extends Annotation> v = ClassesMarker.class;
   128             for (Method m : Classes.class.getMethods()) {
   129                 sb.append("\n").append(m.getName());
   130                 if (mn != null) {
   131                     if (m.getName().equals(mn)) {
   132                         find = m;
   133                         break;
   134                     }
   135                 } else {
   136                     if (m.getAnnotation(v) != null) {
   137                         find = m;
   138                         break;
   139                     }
   140                 }
   141             }
   142         } else {
   143             find = Classes.class.getMethod(mn);
   144         }
   145         if (find == null) {
   146             thrw(sb.toString());
   147             throw new NullPointerException(sb.toString());
   148         }
   149         return find.invoke(null);
   150     }
   151     
   152     public static int reflectiveSum(int a, int b) throws Exception {
   153         Method m = StaticMethod.class.getMethod("sum", int.class, int.class);
   154         return (int) m.invoke(null, a, b);
   155     }
   156 }