/** * 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.Exchange; import static org.apache.camel.util.ExchangeHelper.hasExceptionBeenHandledByErrorHandler; /** * An {@link AggregationStrategy} which are used when the option <tt>shareUnitOfWork</tt> is enabled * on EIPs such as multicast, splitter or recipientList. * <p/> * This strategy wraps the actual in use strategy to provide the logic needed for making shareUnitOfWork work. * <p/> * This strategy is <b>not</b> intended for end users to use. */ public final class ShareUnitOfWorkAggregationStrategy 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"; } }