blob: 59b0d7b12f9287acd818e71dd098fdc5b8d958c7 [file] [log] [blame]
// Copyright 2008, 2010 The Apache Software Foundation
//
// 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 org.apache.tapestry5.ioc.internal.services;
import java.lang.reflect.Method;
import org.apache.tapestry5.ioc.Invocation;
/**
* Base class for {@link org.apache.tapestry5.ioc.Invocation}, which is extended with a dynamically generated class
* generated for each individual class and method.
*/
@SuppressWarnings("all")
public abstract class AbstractInvocation implements Invocation
{
private final MethodInfo methodInfo;
private final Method method;
private Throwable thrown;
private Object result;
private int adviceIndex = 0;
protected AbstractInvocation(MethodInfo methodInfo)
{
this.methodInfo = methodInfo;
method = methodInfo.getMethod();
}
@Override
public String toString()
{
return String.format("Invocation[%s]", method);
}
public String getMethodName()
{
return method.getName();
}
public Class getResultType()
{
return method.getReturnType();
}
public int getParameterCount()
{
return method.getParameterTypes().length;
}
public Class getParameterType(int index)
{
return method.getParameterTypes()[index];
}
public boolean isFail()
{
return thrown != null;
}
public void rethrow()
{
if (thrown != null)
throw new RuntimeException(thrown);
}
public <T extends Throwable> T getThrown(Class<T> throwableClass)
{
assert throwableClass != null;
if (throwableClass.isInstance(thrown))
return throwableClass.cast(thrown);
return null;
}
public void overrideThrown(Exception thrown)
{
assert thrown != null;
for (Class t : method.getExceptionTypes())
{
if (t.isInstance(thrown))
{
this.thrown = thrown;
return;
}
}
throw new IllegalArgumentException(String.format("Exception %s is not a declared exception of method %s.",
thrown.getClass().getName(), method));
}
public Object getResult()
{
return result;
}
public void overrideResult(Object newResult)
{
result = newResult;
thrown = null;
}
public void proceed()
{
if (adviceIndex >= methodInfo.getAdviceCount())
{
invokeDelegateMethod();
return;
}
methodInfo.getAdvice(adviceIndex++).advise(this);
}
/**
* This method is filled in, in the dynamically generated subclass.
*/
protected abstract void invokeDelegateMethod();
}