io.quarkus.narayana.jta.runtime.NotifyingTransactionManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-narayana-jta Show documentation
Show all versions of quarkus-narayana-jta Show documentation
Offer JTA transaction support (included in Hibernate ORM)
package io.quarkus.narayana.jta.runtime;
import java.io.Serializable;
import jakarta.enterprise.context.BeforeDestroyed;
import jakarta.enterprise.context.Destroyed;
import jakarta.enterprise.context.Initialized;
import jakarta.enterprise.event.Event;
import jakarta.transaction.HeuristicMixedException;
import jakarta.transaction.HeuristicRollbackException;
import jakarta.transaction.InvalidTransactionException;
import jakarta.transaction.NotSupportedException;
import jakarta.transaction.RollbackException;
import jakarta.transaction.SystemException;
import jakarta.transaction.Transaction;
import jakarta.transaction.TransactionManager;
import jakarta.transaction.TransactionScoped;
import org.jboss.logging.Logger;
import io.quarkus.narayana.jta.runtime.TransactionScopedNotifier.TransactionId;
/**
* A delegating transaction manager which receives an instance of Narayana transaction manager
* and delegates all calls to it.
* On top of it the implementation adds the CDI events processing for {@link TransactionScoped}.
*/
public class NotifyingTransactionManager extends TransactionScopedNotifier implements TransactionManager, Serializable {
private static final long serialVersionUID = 1598L;
private static final Logger LOG = Logger.getLogger(NotifyingTransactionManager.class);
private transient com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionManagerImple delegate;
NotifyingTransactionManager() {
delegate = (com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionManagerImple) com.arjuna.ats.jta.TransactionManager
.transactionManager();
}
/**
* Overrides {@link TransactionManager#begin()} to
* additionally {@linkplain Event#fire(Object) fire} an {@link Object}
* representing the {@linkplain Initialized initialization}
* of the {@linkplain TransactionScoped transaction scope}.
*
* @see TransactionManager#begin()
*/
@Override
public void begin() throws NotSupportedException, SystemException {
delegate.begin();
initialized(getTransactionId());
}
/**
* Overrides {@link TransactionManager#commit()} to
* additionally {@linkplain Event#fire(Object) fire} an {@link Object}
* representing the {@linkplain BeforeDestroyed before destruction} and
* the {@linkplain Destroyed destruction}
* of the {@linkplain TransactionScoped transaction scope}.
*
* @see TransactionManager#commit()
*/
@Override
public void commit() throws RollbackException, HeuristicMixedException, HeuristicRollbackException, SecurityException,
IllegalStateException, SystemException {
TransactionId id = getTransactionId();
beforeDestroyed(id);
try {
delegate.commit();
} finally {
destroyed(id);
}
}
/**
* Overrides {@link TransactionManager#rollback()} to
* additionally {@linkplain Event#fire(Object) fire} an {@link Object}
* representing the {@linkplain BeforeDestroyed before destruction} and
* the {@linkplain Destroyed destruction}
* of the {@linkplain TransactionScoped transaction scope}.
*
* @see TransactionManager#rollback()
*/
@Override
public void rollback() throws IllegalStateException, SecurityException, SystemException {
TransactionId id = getTransactionId();
try {
beforeDestroyed(id);
} catch (Throwable t) {
LOG.error("Failed to fire @BeforeDestroyed(TransactionScoped.class)", t);
}
try {
delegate.rollback();
} finally {
//we don't need a catch block here, if this one fails we just let the exception propagate
destroyed(id);
}
}
/**
* {@inheritDoc}
*/
@Override
public int getStatus() throws SystemException {
return delegate.getStatus();
}
/**
* {@inheritDoc}
*/
@Override
public Transaction getTransaction() throws SystemException {
return delegate.getTransaction();
}
/**
* {@inheritDoc}
*/
@Override
public void resume(Transaction transaction) throws InvalidTransactionException, IllegalStateException, SystemException {
delegate.resume(transaction);
}
/**
* {@inheritDoc}
*/
@Override
public void setRollbackOnly() throws IllegalStateException, SystemException {
delegate.setRollbackOnly();
}
/**
* {@inheritDoc}
*/
@Override
public void setTransactionTimeout(int seconds) throws SystemException {
delegate.setTransactionTimeout(seconds);
}
/**
* Returns transaction timeout in seconds.
*
* @return transaction timeout set currently
* @throws SystemException on an undefined error
*/
public int getTransactionTimeout() throws SystemException {
return delegate.getTimeout();
}
/**
* {@inheritDoc}
*/
@Override
public Transaction suspend() throws SystemException {
return delegate.suspend();
}
}