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