/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file 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.wildfly.clustering.ee.infinispan; import java.util.concurrent.atomic.AtomicInteger; import javax.transaction.HeuristicMixedException; import javax.transaction.HeuristicRollbackException; import javax.transaction.RollbackException; import javax.transaction.Status; import javax.transaction.SystemException; import javax.transaction.Transaction; import org.infinispan.commons.CacheException; /** * Abstract {@link TransactionBatch} that associates and exposes the underlying transaction. * @author Paul Ferraro */ public class InfinispanBatch implements TransactionBatch { private final Transaction tx; private final AtomicInteger count = new AtomicInteger(0); private volatile boolean active = true; public InfinispanBatch(Transaction tx) { this.tx = tx; } @Override public Transaction getTransaction() { return this.tx; } @Override public TransactionBatch interpose() { this.count.incrementAndGet(); return this; } @Override public void discard() { // Allow additional cache operations prior to close, rather than call tx.setRollbackOnly() this.active = false; } @Override public State getState() { try { switch (this.tx.getStatus()) { case Status.STATUS_ACTIVE: { if (this.active) { return State.ACTIVE; } // Otherwise fall through } case Status.STATUS_MARKED_ROLLBACK: { return State.DISCARDED; } default: { return State.CLOSED; } } } catch (SystemException e) { throw new CacheException(e); } } @Override public void close() { if (this.count.getAndDecrement() == 0) { try { switch (this.tx.getStatus()) { case Status.STATUS_ACTIVE: { if (this.active) { try { this.tx.commit(); break; } catch (RollbackException e) { throw new IllegalStateException(e); } catch (HeuristicMixedException | HeuristicRollbackException e) { throw new CacheException(e); } } // Otherwise fall through } case Status.STATUS_MARKED_ROLLBACK: { this.tx.rollback(); break; } } } catch (SystemException e) { throw new CacheException(e); } } } }