vm/src/test/java/org/apidesign/vm4brwsr/Classes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 05 Dec 2012 09:28:31 +0100
branchreflection
changeset 264 ed0c92c81ea4
parent 261 5d1e20215d12
child 265 20c55abd6748
permissions -rw-r--r--
Implementation of Class.getMethods
jaroslav@222
     1
/**
jaroslav@222
     2
 * Back 2 Browser Bytecode Translator
jaroslav@222
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@222
     4
 *
jaroslav@222
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@222
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@222
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@222
     8
 *
jaroslav@222
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@222
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@222
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@222
    12
 * GNU General Public License for more details.
jaroslav@222
    13
 *
jaroslav@222
    14
 * You should have received a copy of the GNU General Public License
jaroslav@222
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@222
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@222
    17
 */
jaroslav@222
    18
package org.apidesign.vm4brwsr;
jaroslav@222
    19
jaroslav@222
    20
import java.io.IOException;
jaroslav@237
    21
import java.lang.annotation.Annotation;
jaroslav@261
    22
import java.lang.reflect.Method;
jaroslav@222
    23
import java.net.MalformedURLException;
jaroslav@264
    24
import org.apidesign.bck2brwsr.core.JavaScriptBody;
jaroslav@222
    25
jaroslav@222
    26
/**
jaroslav@222
    27
 *
jaroslav@222
    28
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@222
    29
 */
jaroslav@235
    30
@ClassesMarker(number = 10)
jaroslav@237
    31
@ClassesNamer(name = "my text")
jaroslav@222
    32
public class Classes {
jaroslav@222
    33
    public static boolean equalsClassesOfExceptions() {
jaroslav@222
    34
        return MalformedURLException.class.getSuperclass() == IOException.class;
jaroslav@222
    35
    }
jaroslav@222
    36
    public static boolean differenceInClasses() {
jaroslav@222
    37
        Class<?> c1 = MalformedURLException.class;
jaroslav@222
    38
        Class<?> c2 = IOException.class;
jaroslav@222
    39
        return c1 != c2;
jaroslav@222
    40
    }
jaroslav@222
    41
    
jaroslav@225
    42
    public static String classForInstance() {
jaroslav@225
    43
        return new IOException().getClass().getName().toString();
jaroslav@225
    44
    }
jaroslav@225
    45
    
jaroslav@261
    46
    @ClassesMarker(number = 1)
jaroslav@222
    47
    public static String name() {
jaroslav@223
    48
        return IOException.class.getName().toString();
jaroslav@222
    49
    }
jaroslav@222
    50
    public static String simpleName() {
jaroslav@222
    51
        return IOException.class.getSimpleName();
jaroslav@222
    52
    }
jaroslav@222
    53
    public static String canonicalName() {
jaroslav@222
    54
        return IOException.class.getCanonicalName();
jaroslav@222
    55
    }
jaroslav@231
    56
    public static boolean newInstance() throws Exception {
jaroslav@231
    57
        IOException ioe = IOException.class.newInstance();
jaroslav@231
    58
        if (ioe instanceof IOException) {
jaroslav@231
    59
            return ioe.getClass() == IOException.class;
jaroslav@231
    60
        }
jaroslav@231
    61
        throw new IllegalStateException("Not a subtype: " + ioe);
jaroslav@222
    62
    }
jaroslav@235
    63
    public static int getMarker() {
jaroslav@235
    64
        if (!Classes.class.isAnnotationPresent(ClassesMarker.class)) {
jaroslav@235
    65
            return -2;
jaroslav@235
    66
        }
jaroslav@235
    67
        ClassesMarker cm = Classes.class.getAnnotation(ClassesMarker.class);
jaroslav@235
    68
        return cm == null ? -1 : cm.number();
jaroslav@235
    69
    }
jaroslav@237
    70
    public static String getNamer(boolean direct) {
jaroslav@237
    71
        if (direct) {
jaroslav@237
    72
            ClassesNamer cm = Classes.class.getAnnotation(ClassesNamer.class);
jaroslav@237
    73
            return cm == null ? null : cm.name();
jaroslav@237
    74
        }
jaroslav@237
    75
        for (Annotation a : Classes.class.getAnnotations()) {
jaroslav@237
    76
            if (a instanceof ClassesNamer) {
jaroslav@237
    77
                return ((ClassesNamer)a).name();
jaroslav@237
    78
            }
jaroslav@237
    79
        }
jaroslav@237
    80
        return null;
jaroslav@237
    81
    }
jaroslav@261
    82
    
jaroslav@264
    83
    @JavaScriptBody(args = "msg", body = "throw msg;")
jaroslav@264
    84
    private static native void thrw(String msg);
jaroslav@264
    85
    
jaroslav@261
    86
    public static Object reflectiveMethodCall(boolean direct) throws Exception {
jaroslav@264
    87
        Method find = null;
jaroslav@264
    88
        StringBuilder sb = new StringBuilder();
jaroslav@261
    89
        if (!direct) {
jaroslav@261
    90
            final Class<? extends Annotation> v = ClassesMarker.class;
jaroslav@264
    91
            for (Method m : Classes.class.getMethods()) {
jaroslav@264
    92
                sb.append("\n").append(m.getName());
jaroslav@264
    93
                if (m.getName().equals("name")) {
jaroslav@264
    94
                    find = m;
jaroslav@261
    95
                    break;
jaroslav@261
    96
                }
jaroslav@264
    97
//                if (single.getAnnotation(v) != null) {
jaroslav@264
    98
//                    m = single;
jaroslav@264
    99
//                    break;
jaroslav@264
   100
//                }
jaroslav@261
   101
            }
jaroslav@264
   102
        } else {
jaroslav@264
   103
            find = Classes.class.getMethod("name");
jaroslav@261
   104
        }
jaroslav@264
   105
        if (find == null) {
jaroslav@264
   106
            thrw(sb.toString());
jaroslav@264
   107
            throw new NullPointerException(sb.toString());
jaroslav@264
   108
        }
jaroslav@264
   109
        return find.invoke(null);
jaroslav@261
   110
    }
jaroslav@222
   111
}