/* * 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.SystemException; 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.tm.TransactionTimeoutConfiguration; /** * Suspend an incoming tx. * * @author <a href="mailto:bill@jboss.org">Bill Burke</a> * @author <a href="mailto:osh@sparre.dk">Ole Husgaard</a> * @author <a href="cdewolf@redhat.com">Carlo de Wolf</a> */ public abstract class BMTInterceptor implements Interceptor { 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(); int oldTimeout = getCurrentTransactionTimeout(component); try { Transaction oldTx = tm.suspend(); try { return handleInvocation(context); } finally { if (oldTx != null) tm.resume(oldTx); } } finally { tm.setTransactionTimeout(oldTimeout == -1 ? 0 : oldTimeout); } } /** * 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)); } } protected int getCurrentTransactionTimeout(final EJBComponent component) throws SystemException { final TransactionManager tm = component.getTransactionManager(); if (tm instanceof TransactionTimeoutConfiguration) { return ((TransactionTimeoutConfiguration) tm).getTransactionTimeout(); } return 0; } public EJBComponent getComponent() { return component; } }