package org.jruby.javasupport;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Member;
import org.jruby.Ruby;
import org.jruby.RubyBoolean;
import org.jruby.RubyClass;
import org.jruby.RubyFixnum;
import org.jruby.RubyObject;
import org.jruby.RubyString;
import org.jruby.anno.JRubyMethod;
import org.jruby.runtime.builtin.IRubyObject;
public abstract class JavaAccessibleObject extends RubyObject {
protected JavaAccessibleObject(Ruby runtime, RubyClass rubyClass) {
super(runtime, rubyClass);
}
public static void registerRubyMethods(Ruby runtime, RubyClass result) {
result.defineAnnotatedMethods(JavaAccessibleObject.class);
}
public abstract AccessibleObject accessibleObject();
public boolean equals(final Object other) {
if ( this == other ) return true;
return other instanceof JavaAccessibleObject &&
this.accessibleObject().equals( ((JavaAccessibleObject) other).accessibleObject() );
}
boolean same(final JavaAccessibleObject that) {
if ( this == that ) return true;
return this.accessibleObject() == that.accessibleObject();
}
public int hashCode() {
return accessibleObject().hashCode();
}
@JRubyMethod
public RubyFixnum hash() {
return getRuntime().newFixnum(hashCode());
}
@JRubyMethod(name = {"==", "eql?"})
public RubyBoolean op_equal(final IRubyObject other) {
return RubyBoolean.newBoolean(getRuntime(), equals(other));
}
@JRubyMethod(name = "equal?")
public RubyBoolean same(final IRubyObject other) {
final boolean same = other instanceof JavaAccessibleObject && same((JavaAccessibleObject) other);
return same ? getRuntime().getTrue() : getRuntime().getFalse();
}
@JRubyMethod(name = "accessible?")
public RubyBoolean isAccessible() {
return RubyBoolean.newBoolean(getRuntime(), accessibleObject().isAccessible());
}
@JRubyMethod(name = "accessible=")
public IRubyObject setAccessible(IRubyObject object) {
accessibleObject().setAccessible(object.isTrue());
return object;
}
@SuppressWarnings("unchecked")
@JRubyMethod
public IRubyObject annotation(final IRubyObject annoClass) {
if ( ! ( annoClass instanceof JavaClass ) ) {
throw getRuntime().newTypeError(annoClass, getRuntime().getJavaSupport().getJavaClassClass());
}
final Class annotation = ((JavaClass) annoClass).javaClass();
return Java.getInstance(getRuntime(), accessibleObject().getAnnotation(annotation));
}
@JRubyMethod
public IRubyObject annotations() {
return Java.getInstance(getRuntime(), accessibleObject().getAnnotations());
}
@JRubyMethod(name = "annotations?")
public RubyBoolean annotations_p() {
return getRuntime().newBoolean(accessibleObject().getAnnotations().length > 0);
}
@JRubyMethod
public IRubyObject declared_annotations() {
return Java.getInstance(getRuntime(), accessibleObject().getDeclaredAnnotations());
}
@JRubyMethod(name = "declared_annotations?")
public RubyBoolean declared_annotations_p() {
return getRuntime().newBoolean(accessibleObject().getDeclaredAnnotations().length > 0);
}
@SuppressWarnings("unchecked")
@JRubyMethod(name = "annotation_present?")
public IRubyObject annotation_present_p(final IRubyObject annoClass) {
if ( ! ( annoClass instanceof JavaClass ) ) {
throw getRuntime().newTypeError(annoClass, getRuntime().getJavaSupport().getJavaClassClass());
}
final Class annotation = ((JavaClass) annoClass).javaClass();
return getRuntime().newBoolean( accessibleObject().isAnnotationPresent(annotation) );
}
@JRubyMethod
public IRubyObject declaring_class() {
Class<?> clazz = ((Member) accessibleObject()).getDeclaringClass();
if ( clazz != null ) return JavaClass.get(getRuntime(), clazz);
return getRuntime().getNil();
}
@JRubyMethod
public IRubyObject modifiers() {
return getRuntime().newFixnum(((Member) accessibleObject()).getModifiers());
}
@JRubyMethod
public IRubyObject name() {
return getRuntime().newString(((Member) accessibleObject()).getName());
}
@JRubyMethod(name = "synthetic?")
public IRubyObject synthetic_p() {
return getRuntime().newBoolean(((Member) accessibleObject()).isSynthetic());
}
@JRubyMethod(name = {"to_s", "to_string"})
public RubyString to_string() {
return getRuntime().newString( toString() );
}
@Override
public String toString() {
return accessibleObject().toString();
}
@Override
public <T> T toJava(Class<T> target) {
AccessibleObject accessibleObject = accessibleObject();
if (target.isAssignableFrom(accessibleObject.getClass())) {
return target.cast(accessibleObject);
}
return super.toJava(target);
}
}