org.mule.routing.FirstSuccessful Maven / Gradle / Ivy
/*
* $Id: FirstSuccessful.java 20471 2010-12-06 15:45:03Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.routing;
import org.mule.api.MessagingException;
import org.mule.api.MuleEvent;
import org.mule.api.MuleException;
import org.mule.api.MuleMessage;
import org.mule.api.lifecycle.InitialisationException;
import org.mule.api.processor.MessageProcessor;
import org.mule.api.routing.CouldNotRouteOutboundMessageException;
import org.mule.routing.filters.ExpressionFilter;
import org.mule.routing.outbound.AbstractOutboundRouter;
/**
* FirstSuccessful routes an event to the first target route that can accept it
* without throwing or returning an exception. If no such route can be found, an
* exception is thrown. Note that this works more reliable with synchronous targets,
* but no such restriction is imposed.
*/
public class FirstSuccessful extends AbstractOutboundRouter
{
protected String failureExpression;
protected ExpressionFilter failureExpressionFilter;
@Override
public void initialise() throws InitialisationException
{
super.initialise();
if (failureExpression != null)
{
failureExpressionFilter = new ExpressionFilter(failureExpression);
}
else
{
failureExpressionFilter = new ExpressionFilter("exception-type:");
}
failureExpressionFilter.setMuleContext(muleContext);
}
/**
* Route the given event to one of our targets
*/
@Override
public MuleEvent route(MuleEvent event) throws MessagingException
{
MuleEvent returnEvent = null;
boolean failed = true;
for (MessageProcessor mp : routes)
{
try
{
MuleMessage clonedMessage = cloneMessage(event.getMessage());
MuleEvent toProcess = createEventToRoute(event, clonedMessage, mp);
returnEvent = mp.process(toProcess);
if (returnEvent == null)
{
failed = false;
}
else
{
MuleMessage msg = returnEvent.getMessage();
failed = msg == null || failureExpressionFilter.accept(msg);
}
}
catch (Exception ex)
{
failed = true;
}
if (!failed)
{
break;
}
}
if (failed)
{
throw new CouldNotRouteOutboundMessageException(event, this);
}
return returnEvent;
}
public boolean isMatch(MuleMessage message) throws MuleException
{
return true;
}
/**
* Specifies an expression that when evaluated as determines if the processing of
* one a route was a failure or not.
*
* @param failureExpression
* @see ExpressionFilter
*/
public void setFailureExpression(String failureExpression)
{
this.failureExpression = failureExpression;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy