keycloak-scim/services/src/main/java/org/keycloak/transaction/JtaTransactionWrapper.java

164 lines
4.5 KiB
Java
Raw Normal View History

2016-08-07 15:41:52 +00:00
/*
* Copyright 2016 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2016-08-08 16:32:36 +00:00
package org.keycloak.transaction;
2016-08-07 15:41:52 +00:00
import org.jboss.logging.Logger;
import org.keycloak.models.KeycloakSessionFactory;
2016-08-07 15:41:52 +00:00
import org.keycloak.models.KeycloakTransaction;
import org.keycloak.provider.ExceptionConverter;
2016-08-07 15:41:52 +00:00
import javax.transaction.RollbackException;
2016-08-07 15:41:52 +00:00
import javax.transaction.Status;
import javax.transaction.Transaction;
import javax.transaction.TransactionManager;
2020-12-14 09:55:56 +00:00
import java.util.Objects;
2016-08-07 15:41:52 +00:00
/**
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1 $
*/
public class JtaTransactionWrapper implements KeycloakTransaction {
private static final Logger logger = Logger.getLogger(JtaTransactionWrapper.class);
2016-08-07 15:41:52 +00:00
protected TransactionManager tm;
protected Transaction ut;
protected Transaction suspended;
protected Exception ended;
protected KeycloakSessionFactory factory;
2016-08-07 15:41:52 +00:00
public JtaTransactionWrapper(KeycloakSessionFactory factory, TransactionManager tm) {
2016-08-07 15:41:52 +00:00
this.tm = tm;
this.factory = factory;
2016-08-07 15:41:52 +00:00
try {
2016-08-07 15:41:52 +00:00
suspended = tm.suspend();
logger.debug("new JtaTransactionWrapper");
logger.debugv("was existing? {0}", suspended != null);
2016-08-07 15:41:52 +00:00
tm.begin();
ut = tm.getTransaction();
//ended = new Exception();
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public void handleException(Throwable e) {
if (e instanceof RollbackException) {
e = e.getCause() != null ? e.getCause() : e;
}
2020-12-14 09:55:56 +00:00
final Throwable finalE = e;
factory.getProviderFactoriesStream(ExceptionConverter.class)
.map(factory -> ((ExceptionConverter) factory).convert(finalE))
.filter(Objects::nonNull)
.forEach(throwable -> {
if (throwable instanceof RuntimeException) {
throw (RuntimeException)throwable;
} else {
throw new RuntimeException(throwable);
}
});
if (e instanceof RuntimeException) {
throw (RuntimeException)e;
} else {
throw new RuntimeException(e);
}
}
2016-08-07 15:41:52 +00:00
@Override
public void begin() {
}
@Override
public void commit() {
try {
logger.debug("JtaTransactionWrapper commit");
tm.commit();
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
handleException(e);
} finally {
end();
2016-08-07 15:41:52 +00:00
}
}
@Override
public void rollback() {
try {
logger.debug("JtaTransactionWrapper rollback");
tm.rollback();
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
handleException(e);
2016-08-07 15:41:52 +00:00
} finally {
end();
}
}
@Override
public void setRollbackOnly() {
try {
tm.setRollbackOnly();
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
handleException(e);
2016-08-07 15:41:52 +00:00
}
}
@Override
public boolean getRollbackOnly() {
try {
return tm.getStatus() == Status.STATUS_MARKED_ROLLBACK;
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
handleException(e);
2016-08-07 15:41:52 +00:00
}
return false;
2016-08-07 15:41:52 +00:00
}
@Override
public boolean isActive() {
try {
return tm.getStatus() == Status.STATUS_ACTIVE;
2016-08-07 15:41:52 +00:00
} catch (Exception e) {
handleException(e);
2016-08-07 15:41:52 +00:00
}
return false;
2016-08-07 15:41:52 +00:00
}
/*
@Override
protected void finalize() throws Throwable {
if (ended != null) {
logger.error("TX didn't close at position", ended);
}
}
*/
2016-08-07 15:41:52 +00:00
protected void end() {
ended = null;
logger.debug("JtaTransactionWrapper end");
2016-08-07 15:41:52 +00:00
if (suspended != null) {
try {
logger.debug("JtaTransactionWrapper resuming suspended");
2016-08-07 15:41:52 +00:00
tm.resume(suspended);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
}