Files
alfresco-community-repo/source/java/org/alfresco/traitextender/AJProxyTrait.java
Raluca Munteanu 6afb44e712 Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-04-26 13:45:01 +00:00

130 lines
5.2 KiB
Java

/*
* #%L
* Alfresco Repository
* %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited
* %%
* This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
package org.alfresco.traitextender;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import org.alfresco.traitextender.AJExtender.ExtensionBypass;
import org.alfresco.util.ParameterCheck;
/**
* Java {@link Proxy} {@link InvocationHandler} to be used in conjuction with
* asprctJ extended traits.<br>
* Method calls will be delegated to a given {@link Extensible} object method
* having the same signature within an {@link ExtensionBypass} context.
*
* @author Bogdan Horje
*/
public class AJProxyTrait implements InvocationHandler
{
/**
* {@link Trait} {@link Proxy} factory method.
*
* @param extensible the {@link Extensible} object that defines the given
* {@link Trait}
* @param traitAPI the trait interface part that the given
* {@link Extensible} object defines
* @return a {@link Proxy} object for the given trait API interface with an
* {@link AJProxyTrait} attached. All method calls performed on the
* returned proxy will be delegated to a given {@link Extensible}
* object method having the same signature within an
* {@link ExtensionBypass} context.
*/
@SuppressWarnings("unchecked")
public static <M extends Trait> M create(Object extensibleInterface, Class<M> traitAPI)
{
return (M) Proxy.newProxyInstance(AJProxyTrait.class.getClassLoader(),
new Class[] { traitAPI },
new AJProxyTrait(extensibleInterface));
}
private Object extensibleInterface;
private AJProxyTrait(Object extensibleInterface)
{
ParameterCheck.mandatory("extensible",
extensibleInterface);
this.extensibleInterface = extensibleInterface;
}
@Override
public Object invoke(Object proxy, Method method, final Object[] args) throws Throwable
{
final Method traitMethod = extensibleInterface.getClass().getMethod(method.getName(),
method.getParameterTypes());
if (AJExtender.isLocalProceeder(method))
{
return AJExtender.localProceed(args);
}
else
{
Class<?>[] exTypes = traitMethod.getExceptionTypes();
return AJExtender.run(new AJExtender.ExtensionBypass<Object>()
{
@Override
public Object run() throws Throwable
{
try
{
return traitMethod.invoke(extensibleInterface,
args);
}
catch (IllegalAccessException error)
{
throw new InvalidExtension(error);
}
catch (IllegalArgumentException error)
{
throw new InvalidExtension(error);
}
catch (InvocationTargetException error)
{
Throwable targetException = error.getTargetException();
throw targetException;
}
}
},
exTypes);
}
}
@Override
public String toString()
{
return "AJAutoTrait@" + System.identityHashCode(this) + " of " + extensibleInterface.getClass().getSimpleName() + "@"
+ System.identityHashCode(extensibleInterface);
}
}