All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.test.integration.transactions.PersistentTestXAResource Maven / Gradle / Ivy

There is a newer version: 35.0.0.Beta1
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright (c) 2020, 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.jboss.as.test.integration.transactions;

import java.util.Collection;
import javax.transaction.xa.XAException;
import javax.transaction.xa.XAResource;
import javax.transaction.xa.Xid;

import org.jboss.logging.Logger;

/**
 * 

* Enhancement of the {@link TestXAResource} which saves prepared {@link Xid} to file system. * and delete it from the file on call commit/rollback/forget. *

*

* Such a {@link Xid} may be reported back to Narayana during periodic recovery when {@link XAResource#recover(int)} * is called. *

*/ public class PersistentTestXAResource extends TestXAResource implements XAResource { private static final Logger log = Logger.getLogger(PersistentTestXAResource.class); private XidsPersister xidsPersister = new XidsPersister(PersistentTestXAResource.class.getSimpleName()); public PersistentTestXAResource() { super(); } public PersistentTestXAResource(TransactionCheckerSingleton checker) { super(checker); } public PersistentTestXAResource(TestAction testAction) { super(testAction); } public PersistentTestXAResource(TestAction testAction, TransactionCheckerSingleton checker) { super(testAction, checker); } @Override public int prepare(Xid xid) throws XAException { int prepareResult = super.prepare(xid); xidsPersister.writeToDisk(super.getPreparedXids()); log.debugf("Prepared xid [%s] was persisted", xid); return prepareResult; } @Override public void commit(Xid xid, boolean onePhase) throws XAException { super.commit(xid, onePhase); xidsPersister.writeToDisk(super.getPreparedXids()); } @Override public void rollback(Xid xid) throws XAException { super.rollback(xid); xidsPersister.writeToDisk(super.getPreparedXids()); } @Override public void forget(Xid xid) throws XAException { super.forget(xid); xidsPersister.writeToDisk(super.getPreparedXids()); } @Override public Xid[] recover(int flag) throws XAException { Collection recoveredXids = xidsPersister.recoverFromDisk(); log.debugf("Recover call with flag %d returned %s", recoveredXids); return recoveredXids.toArray(new Xid[]{}); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy