/** * Copyright 2014 Sunny Gleason and original author or authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.kazuki.v0.internal.helper; import java.lang.reflect.InvocationHandler; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Proxy; public class MaskProxy<T, U extends T> implements InvocationHandler { private final Class<T> iface; private volatile U delegate; private volatile T proxyInstance; private final InvocationHandler finalHandler; public static final InvocationHandler UNSUPPORTED_OPERATION_HANDLER = new InvocationHandler() { public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { throw new UnsupportedOperationException(); } }; public Class<T> getInterface() { return iface; } public MaskProxy(Class<T> iface, U delegate) { this.iface = iface; this.delegate = delegate; this.finalHandler = UNSUPPORTED_OPERATION_HANDLER; } public U getAndSet(U newInstance) { U old = this.delegate; this.delegate = newInstance; return old; } @SuppressWarnings("unchecked") public T asProxyInstance() { if (this.proxyInstance == null) { this.proxyInstance = (T) Proxy.newProxyInstance(iface.getClassLoader(), new Class[] {iface}, this); } return this.proxyInstance; } public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { if (iface.getMethod(method.getName(), method.getParameterTypes()) == null) { return finalHandler.invoke(proxy, method, args); } try { return delegate.getClass().getMethod(method.getName(), method.getParameterTypes()) .invoke(delegate, args); } catch (NoSuchMethodException nsme) {} catch (IllegalArgumentException iae) {} catch (IllegalAccessException iae2) {} catch (InvocationTargetException ite) { throw ite.getTargetException(); } // allow SecurityException to go out unchecked return finalHandler.invoke(proxy, method, args); } }