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

org.apache.camel.processor.aggregate.ShareUnitOfWorkAggregationStrategy Maven / Gradle / Ivy

There is a newer version: 4.6.0
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.processor.aggregate;

import org.apache.camel.CamelContext;
import org.apache.camel.CamelContextAware;
import org.apache.camel.Exchange;
import org.apache.camel.support.ServiceSupport;
import org.apache.camel.util.ServiceHelper;

import static org.apache.camel.util.ExchangeHelper.hasExceptionBeenHandledByErrorHandler;

/**
 * An {@link AggregationStrategy} which are used when the option shareUnitOfWork is enabled
 * on EIPs such as multicast, splitter or recipientList.
 * 

* This strategy wraps the actual in use strategy to provide the logic needed for making shareUnitOfWork work. *

* This strategy is not intended for end users to use. */ public final class ShareUnitOfWorkAggregationStrategy extends ServiceSupport implements AggregationStrategy, DelegateAggregationStrategy { private final AggregationStrategy strategy; public ShareUnitOfWorkAggregationStrategy(AggregationStrategy strategy) { this.strategy = strategy; } public AggregationStrategy getDelegate() { return strategy; } public Exchange aggregate(Exchange oldExchange, Exchange newExchange) { // aggregate using the actual strategy first Exchange answer = strategy.aggregate(oldExchange, newExchange); // ensure any errors is propagated from the new exchange to the answer propagateFailure(answer, newExchange); return answer; } protected void propagateFailure(Exchange answer, Exchange newExchange) { // if new exchange failed then propagate all the error related properties to the answer boolean exceptionHandled = hasExceptionBeenHandledByErrorHandler(newExchange); if (newExchange.isFailed() || newExchange.isRollbackOnly() || exceptionHandled) { if (newExchange.getException() != null) { answer.setException(newExchange.getException()); } if (newExchange.getProperty(Exchange.EXCEPTION_CAUGHT) != null) { answer.setProperty(Exchange.EXCEPTION_CAUGHT, newExchange.getProperty(Exchange.EXCEPTION_CAUGHT)); } if (newExchange.getProperty(Exchange.FAILURE_ENDPOINT) != null) { answer.setProperty(Exchange.FAILURE_ENDPOINT, newExchange.getProperty(Exchange.FAILURE_ENDPOINT)); } if (newExchange.getProperty(Exchange.FAILURE_ROUTE_ID) != null) { answer.setProperty(Exchange.FAILURE_ROUTE_ID, newExchange.getProperty(Exchange.FAILURE_ROUTE_ID)); } if (newExchange.getProperty(Exchange.ERRORHANDLER_HANDLED) != null) { answer.setProperty(Exchange.ERRORHANDLER_HANDLED, newExchange.getProperty(Exchange.ERRORHANDLER_HANDLED)); } if (newExchange.getProperty(Exchange.FAILURE_HANDLED) != null) { answer.setProperty(Exchange.FAILURE_HANDLED, newExchange.getProperty(Exchange.FAILURE_HANDLED)); } } } @Override public String toString() { return "ShareUnitOfWorkAggregationStrategy"; } @Override protected void doStart() throws Exception { ServiceHelper.startService(strategy); } @Override protected void doStop() throws Exception { ServiceHelper.stopAndShutdownServices(strategy); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy