vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 18 Dec 2012 16:04:37 +0100
branchlauncher
changeset 353 fd38bdad7fb5
parent 303 c12342170235
child 354 002b7c3d5157
permissions -rw-r--r--
Reasonable TYPE for primitive types
     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 equalsClassesOfExceptions() {
    42         return MalformedURLException.class.getSuperclass() == IOException.class;
    43     }
    44     public static boolean differenceInClasses() {
    45         Class<?> c1 = MalformedURLException.class;
    46         Class<?> c2 = IOException.class;
    47         return c1 != c2;
    48     }
    49     
    50     public static String classForInstance() {
    51         return new IOException().getClass().getName().toString();
    52     }
    53     
    54     @ClassesMarker(number = 1)
    55     public static String name() {
    56         return IOException.class.getName().toString();
    57     }
    58     public static String simpleName() {
    59         return IOException.class.getSimpleName();
    60     }
    61     public static String canonicalName() {
    62         return IOException.class.getCanonicalName();
    63     }
    64     public static boolean newInstance() throws Exception {
    65         IOException ioe = IOException.class.newInstance();
    66         if (ioe instanceof IOException) {
    67             return ioe.getClass() == IOException.class;
    68         }
    69         throw new IllegalStateException("Not a subtype: " + ioe);
    70     }
    71     public static int getMarker() {
    72         if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
    73             return -2;
    74         }
    75         ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
    76         return cm == null ? -1 : cm.number();
    77     }
    78     public static String getNamer(boolean direct) {
    79         if (direct) {
    80             ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
    81             return cm == null ? null : cm.name();
    82         }
    83         for (Annotation a : Classes.class.getAnnotations()) {
    84             if (a instanceof ClassesNamer) {
    85                 return ((ClassesNamer)a).name();
    86             }
    87         }
    88         return null;
    89     }
    90     
    91     public static String intType() {
    92         return Integer.TYPE.getName();
    93     }
    94     
    95     @JavaScriptBody(args = "msg", body = "throw msg;")
    96     private static native void thrw(String msg);
    97     
    98     public static Object reflectiveMethodCall(boolean direct, String mn) throws Exception {
    99         Method find = null;
   100         StringBuilder sb = new StringBuilder();
   101         if (!direct) {
   102             final Class<? extends Annotation> v = ClassesMarker.class;
   103             for (Method m : Classes.class.getMethods()) {
   104                 sb.append("\n").append(m.getName());
   105                 if (mn != null) {
   106                     if (m.getName().equals(mn)) {
   107                         find = m;
   108                         break;
   109                     }
   110                 } else {
   111                     if (m.getAnnotation(v) != null) {
   112                         find = m;
   113                         break;
   114                     }
   115                 }
   116             }
   117         } else {
   118             find = Classes.class.getMethod(mn);
   119         }
   120         if (find == null) {
   121             thrw(sb.toString());
   122             throw new NullPointerException(sb.toString());
   123         }
   124         return find.invoke(null);
   125     }
   126 }