conversionhandler.java

来自「Groovy动态语言 运行在JVM中的动态语言 可以方便的处理业务逻辑变化大的业」· Java 代码 · 共 116 行

JAVA
116
字号
package org.codehaus.groovy.runtime;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

/**
 * This class is a general adapter to map a call to an Java interface 
 * to a given delegate.
 * <p>
 * @author Ben Yu
 * @author <a href="mailto:blackdrag@gmx.org">Jochen Theodorou</a>
 */
public abstract class ConversionHandler implements InvocationHandler {
    private Object delegate;
    
    /**
     * Creates a ConversionHandler with an deleagte.
     * @param delegate the delegate
     * @throws IllegalArgumentException if the given delegate is null
     */
    public ConversionHandler(Object delegate) {
        if (delegate==null) throw new IllegalArgumentException("delegate must not be null");
        this.delegate = delegate;
    }
    
    /**
     * gets the delegate.
     * @return the delegate
     */
    public Object getDelegate(){
        return delegate;
    }
    
    /**
     * This method is a default implementation for the invoke method
     * given in Invocationhandler. Any call to an method with an
     * declaring class that is not Object is redirected to invokeCustom. 
     * Methods like tostring, equals and hashcode are called on the class
     * itself instead of the delegate. It is better to overwrite the 
     * invokeCustom method where the Object related methods are filtered out.
     * 
     * @see #invokeCustom(Object, Method, Object[])
     * @see InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])
     * 
     * @param proxy the proxy
     * @param method the method
     * @param args the arguments
     * @return the result of the invocation by method or delegate
     * @throws Throwable any exception caused by the delegate or the method
     */
    public Object invoke(Object proxy, Method method, Object[] args)
    throws Throwable {
        if(!isObjectMethod(method)){
            return invokeCustom(proxy,method,args);
        }
        try {
            return method.invoke(this, args);
        } catch (InvocationTargetException ite) {
            throw ite.getTargetException();
        }  
    }
    
    /**
     * This method is called for all Methods not defined on Object. 
     * The delegate should be called here.
     * 
     * @param proxy the proxy
     * @param method the method
     * @param args the arguments
     * @return the result of the invocation of the delegate
     * @throws Throwable any exception causes by the delegate
     * @see #invoke(Object, Method, Object[])
     * @see InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])
     * 
     */
    public abstract Object invokeCustom(Object proxy, Method method, Object[] args) throws Throwable;
    
    /**
     * Indicates whether some other object is "equal to" this one.
     * The delegate is used if the class of the parameter and the
     * current class are equal. In other cases the method will return 
     * false. The exact class is here used, if inheritance is needed,
     * this method must be overwritten. 
     *        
     * @see java.lang.Object#equals(java.lang.Object)
     */
    public boolean equals(Object obj) {
        if (obj!=null && obj.getClass()==this.getClass()){
            return (((ConversionHandler)obj).getDelegate()).equals(obj);
        } else {
            return false;
        }
    }

    /**
     * Returns a hash code value for the delegate. 
     * @see java.lang.Object#hashCode()
     */
    public int hashCode() {
        return delegate.hashCode();
    }
    
    /**
     * Returns a String version of the delegate.
     * @see java.lang.Object#toString()
     */
    public String toString() {
        return delegate.toString();
    }
    
    private static boolean isObjectMethod(Method mtd){
        return mtd.getDeclaringClass().equals(Object.class);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?