org.jboss.as.test.integration.transactions.XidsPersister Maven / Gradle / Ivy
/*
* 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.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.nio.file.InvalidPathException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import javax.transaction.xa.Xid;
import org.jboss.logging.Logger;
/**
* An utility class which is capable to persist {@link TestXAResource} {@link Xid} records
* to the file under jboss.server.data.dir
.
* This capability is needed when server crash with recovery is tested.
*/
class XidsPersister {
private static final Logger log = Logger.getLogger(XidsPersister.class);
private String fileToPersit;
XidsPersister(String fileToPersit) {
this.fileToPersit = fileToPersit;
}
synchronized void writeToDisk(Collection xidsToSave) {
Path logFile = getLogFile();
FileOutputStream fos = null;
try {
fos = new FileOutputStream(logFile.toFile());
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(xidsToSave);
log.debugf("Xids %s were written as the new state of the file %s", xidsToSave, logFile);
} catch (IOException ioe) {
log.errorf(ioe, "Cannot write xids %s to persistent file %s", xidsToSave, logFile);
} finally {
try {
if (fos != null) fos.close();
} catch (IOException ioe) {
log.debugf(ioe,"Cannot close FileOutputStream for file %s", logFile);
}
}
}
@SuppressWarnings("unchecked")
synchronized Collection recoverFromDisk() {
Path logFile = getLogFile();
if (!logFile.toFile().exists()) {
log.debugf("There is no file %s with recovery data for the test XAResource, no data for recovery", logFile);
return new ArrayList<>();
}
log.debugf("There is found file %s for transaction recovery of the test XAResource", logFile);
FileInputStream fis = null;
try {
fis = new FileInputStream(logFile.toFile());
ObjectInputStream ois = new ObjectInputStream(fis);
Collection xids = (Collection) ois.readObject();
log.infof("Number of xids for recovery is %d.%nContent: %s", xids.size(), xids);
return xids;
} catch (Exception e) {
log.errorf(e, "Cannot load recovery data for test XAResource from file %s", logFile);
return new ArrayList<>();
} finally {
try {
if (fis != null) fis.close();
} catch (IOException ioe) {
log.debugf(ioe,"Cannot close FileInputStrem for file %s", logFile);
}
}
}
private Path getLogFile() {
try {
File dataDir = new File(System.getProperty("jboss.server.data.dir"));
dataDir.mkdirs();
return dataDir.toPath().resolve(this.fileToPersit);
} catch (InvalidPathException e) {
throw new IllegalStateException("Cannot resolve path of recovery file " + this.fileToPersit
+ " for storing test XAResource data persistently");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy