org.jboss.as.ejb3.tx.BMTInterceptor Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright (c) 2010, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.ejb3.tx;
import javax.ejb.EJBException;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;
import org.jboss.as.ejb3.component.EJBComponent;
import org.jboss.invocation.Interceptor;
import org.jboss.invocation.InterceptorContext;
import org.jboss.logging.Logger;
/**
* Suspend an incoming tx.
*
* @author Bill Burke
* @author Ole Husgaard
* @author Carlo de Wolf
*/
public abstract class BMTInterceptor implements Interceptor {
private static final Logger log = Logger.getLogger(BMTInterceptor.class);
private final EJBComponent component;
public BMTInterceptor(final EJBComponent component) {
this.component = component;
}
protected abstract Object handleInvocation(InterceptorContext invocation) throws Exception;
@Override
public Object processInvocation(final InterceptorContext context) throws Exception {
TransactionManager tm = component.getTransactionManager();
Transaction oldTx = tm.suspend();
try {
return handleInvocation(context);
} finally {
if (oldTx != null) tm.resume(oldTx);
}
}
/**
* Checks if the passed exception is an application exception. If yes, then throws back the
* exception as-is. Else, wraps the exception in a {@link javax.ejb.EJBException} and throws the EJBException
*
* @param ex The exception to handle
* @throws Exception Either the passed exception or an EJBException
*/
protected Exception handleException(final InterceptorContext invocation, Throwable ex) throws Exception {
ApplicationExceptionDetails ae = component.getApplicationException(ex.getClass(), invocation.getMethod());
// it's an application exception, so just throw it back as-is
if (ae != null) {
throw (Exception)ex;
}
if (ex instanceof EJBException) {
throw (EJBException) ex;
} else if(ex instanceof Exception){
throw new EJBException((Exception)ex);
} else {
throw new EJBException(new RuntimeException(ex));
}
}
public EJBComponent getComponent() {
return component;
}
}