org.jbpm.persistence.jta.ContainerManagedTransactionDisposeCommand Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2017 Red Hat, Inc. and/or its affiliates.
*
* 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.
*/
package org.jbpm.persistence.jta;
import org.drools.persistence.api.TransactionManager;
import org.drools.persistence.api.TransactionSynchronization;
import org.kie.api.command.ExecutableCommand;
import org.kie.api.runtime.Context;
import org.kie.api.runtime.EnvironmentName;
import org.kie.api.runtime.KieSession;
import org.kie.internal.command.RegistryContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Dispose command that is dedicated to be used in container managed environments instead of
* default way of disposing ksession
*
* ksession.dispose()
.
*
* If transaction is active it will delegate the actual disposal to afterCompletion
* phase of transaction instead of executing it directly. Although when there is no active
* transaction or no transaction at all it will dispose ksession immediately.
*
* It relies on TransactionManager
being available in ksession's environment:
*
* ksession.getEnvironment().get(EnvironmentName.TRANSACTION_MANAGER)
*/
public class ContainerManagedTransactionDisposeCommand implements ExecutableCommand {
private static final long serialVersionUID = 1L;
private static final Logger logger = LoggerFactory.getLogger(ContainerManagedTransactionDisposeCommand.class);
@Override
public Void execute(Context context ) {
final KieSession ksession = ((RegistryContext) context).lookup( KieSession.class );
logger.debug("Trying to dispose KieSession ({}). Checking for active transactions.", ksession);
TransactionManager tm = (TransactionManager) ksession.getEnvironment().get(EnvironmentName.TRANSACTION_MANAGER);
int txStatus = TransactionManager.STATUS_NO_TRANSACTION;
if (tm != null) {
txStatus = tm.getStatus();
}
if (txStatus == TransactionManager.STATUS_NO_TRANSACTION) {
logger.debug("No active transaction: disposing KieSession ({}) directly", ksession);
ksession.dispose();
logger.debug("KieSession disposed {}", ksession);
} else {
try {
logger.debug("Active transaction: registering KieSession ({}) for dispose", ksession);
tm.registerTransactionSynchronization(new TransactionSynchronization() {
@Override
public void beforeCompletion() {
// not used here
}
@Override
public void afterCompletion(int arg0) {
ksession.dispose();
logger.debug("KieSession disposed {}", ksession);
}
});
} catch (Exception e) {
logger.error("Error while registering transaction synchronization for cmt dispose: {}", e.getMessage(), e);
}
}
return null;
}
}