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

org.apache.camel.cdi.transaction.JtaTransactionPolicy Maven / Gradle / Ivy

There is a newer version: 3.22.2
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.camel.cdi.transaction;

import javax.annotation.Resource;
import javax.transaction.TransactionManager;

import org.apache.camel.Processor;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.builder.ErrorHandlerBuilder;
import org.apache.camel.builder.ErrorHandlerBuilderRef;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.spi.TransactedPolicy;
import org.apache.camel.util.ObjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Sets a proper error handler. This class is based on
 * {@link org.apache.camel.spring.spi.SpringTransactionPolicy}.
 * 

* This class requires the resource {@link TransactionManager} to be available * through JNDI url "java:/TransactionManager" */ public abstract class JtaTransactionPolicy implements TransactedPolicy { private static final Logger LOG = LoggerFactory.getLogger(JtaTransactionPolicy.class); public interface Runnable { void run() throws Throwable; } @Resource(lookup = "java:/TransactionManager") protected TransactionManager transactionManager; @Override public void beforeWrap(RouteContext routeContext, ProcessorDefinition definition) { // do not inherit since we create our own // (otherwise the default error handler would be used two times // because we inherit it on our own but only in case of a // non-transactional error handler) definition.setInheritErrorHandler(false); } public abstract void run(Runnable runnable) throws Throwable; @Override public Processor wrap(RouteContext routeContext, Processor processor) { JtaTransactionErrorHandler answer; // the goal is to configure the error handler builder on the route as a // transacted error handler, // either its already a transacted or if not we replace it with a // transacted one that we configure here // and wrap the processor in the transacted error handler as we can have // transacted routes that change // propagation behavior, eg: from A required -> B -> requiresNew C // (advanced use-case) // if we should not support this we do not need to wrap the processor as // we only need one transacted error handler // find the existing error handler builder ErrorHandlerBuilder builder = (ErrorHandlerBuilder) routeContext.getRoute().getErrorHandlerBuilder(); // check if its a ref if so then do a lookup if (builder instanceof ErrorHandlerBuilderRef) { // its a reference to a error handler so lookup the reference ErrorHandlerBuilderRef builderRef = (ErrorHandlerBuilderRef) builder; String ref = builderRef.getRef(); // only lookup if there was explicit an error handler builder configured // otherwise its just the "default" that has not explicit been configured // and if so then we can safely replace that with our transacted error handler if (ErrorHandlerBuilderRef.isErrorHandlerBuilderConfigured(ref)) { LOG.debug("Looking up ErrorHandlerBuilder with ref: {}", ref); builder = (ErrorHandlerBuilder) ErrorHandlerBuilderRef.lookupErrorHandlerBuilder(routeContext, ref); } } JtaTransactionErrorHandlerBuilder txBuilder; if ((builder != null) && builder.supportTransacted()) { if (!(builder instanceof JtaTransactionErrorHandlerBuilder)) { throw new RuntimeCamelException("The given transactional error handler builder '" + builder + "' is not of type '" + JtaTransactionErrorHandlerBuilder.class.getName() + "' which is required in this environment!"); } LOG.debug("The ErrorHandlerBuilder configured is a JtaTransactionErrorHandlerBuilder: {}", builder); txBuilder = (JtaTransactionErrorHandlerBuilder) builder.cloneBuilder(); } else { LOG.debug( "No or no transactional ErrorHandlerBuilder configured, will use default JtaTransactionErrorHandlerBuilder settings"); txBuilder = new JtaTransactionErrorHandlerBuilder(); } txBuilder.setTransactionPolicy(this); // use error handlers from the configured builder if (builder != null) { txBuilder.setErrorHandlers(routeContext, builder.getErrorHandlers(routeContext)); } answer = createTransactionErrorHandler(routeContext, processor, txBuilder); answer.setExceptionPolicy(txBuilder.getExceptionPolicyStrategy()); // configure our answer based on the existing error handler txBuilder.configure(routeContext, answer); // set the route to use our transacted error handler builder routeContext.getRoute().setErrorHandlerBuilder(txBuilder); // return with wrapped transacted error handler return answer; } protected JtaTransactionErrorHandler createTransactionErrorHandler(RouteContext routeContext, Processor processor, ErrorHandlerBuilder builder) { JtaTransactionErrorHandler answer; try { answer = (JtaTransactionErrorHandler) builder.createErrorHandler(routeContext, processor); } catch (Exception e) { throw ObjectHelper.wrapRuntimeCamelException(e); } return answer; } @Override public String toString() { return getClass().getName(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy