org.mule.client.DefaultLocalMuleClient Maven / Gradle / Ivy
/*
* $Id: DefaultLocalMuleClient.java 23497 2011-12-18 11:46:14Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.client;
import org.mule.DefaultMuleEvent;
import org.mule.DefaultMuleMessage;
import org.mule.MessageExchangePattern;
import org.mule.api.MuleContext;
import org.mule.api.MuleEvent;
import org.mule.api.MuleException;
import org.mule.api.MuleMessage;
import org.mule.api.client.LocalMuleClient;
import org.mule.api.construct.FlowConstruct;
import org.mule.api.endpoint.EndpointCache;
import org.mule.api.endpoint.EndpointException;
import org.mule.api.endpoint.InboundEndpoint;
import org.mule.api.endpoint.OutboundEndpoint;
import org.mule.api.exception.MessagingExceptionHandler;
import org.mule.api.lifecycle.LifecycleState;
import org.mule.api.processor.MessageProcessorChain;
import org.mule.api.routing.MessageInfoMapping;
import org.mule.api.transport.ReceiveException;
import org.mule.endpoint.SimpleEndpointCache;
import org.mule.exception.DefaultMessagingExceptionStrategy;
import org.mule.management.stats.FlowConstructStatistics;
import java.util.Map;
public class DefaultLocalMuleClient implements LocalMuleClient
{
protected final MuleContext muleContext;
private final EndpointCache endpointCache;
public DefaultLocalMuleClient(MuleContext muleContext)
{
this.muleContext = muleContext;
this.endpointCache = new SimpleEndpointCache(muleContext);
}
public MuleMessage process(OutboundEndpoint endpoint,
Object payload,
Map messageProperties) throws MuleException
{
return process(endpoint, new DefaultMuleMessage(payload, messageProperties, muleContext));
}
public MuleMessage process(OutboundEndpoint endpoint, MuleMessage message) throws MuleException
{
return returnMessage(endpoint.process(createMuleEvent(message, endpoint)));
}
public MuleMessage request(InboundEndpoint endpoint, long timeout) throws MuleException
{
try
{
return endpoint.request(timeout);
}
catch (Exception e)
{
throw new ReceiveException(endpoint, timeout, e);
}
}
public void dispatch(String url, Object payload, Map messageProperties)
throws MuleException
{
dispatch(url, new DefaultMuleMessage(payload, messageProperties, muleContext));
}
public MuleMessage send(String url, Object payload, Map messageProperties)
throws MuleException
{
return send(url, new DefaultMuleMessage(payload, messageProperties, muleContext));
}
public MuleMessage send(String url, MuleMessage message) throws MuleException
{
OutboundEndpoint endpoint = endpointCache.getOutboundEndpoint(url, MessageExchangePattern.REQUEST_RESPONSE, null);
return returnMessage(endpoint.process(createMuleEvent(message, endpoint)));
}
public MuleMessage send(String url, Object payload, Map messageProperties, long timeout)
throws MuleException
{
return send(url, new DefaultMuleMessage(payload, messageProperties, muleContext), timeout);
}
public MuleMessage send(String url, MuleMessage message, long timeout) throws MuleException
{
OutboundEndpoint endpoint = endpointCache.getOutboundEndpoint(url, MessageExchangePattern.REQUEST_RESPONSE, timeout);
return returnMessage(endpoint.process(createMuleEvent(message, endpoint)));
}
public void dispatch(String url, MuleMessage message) throws MuleException
{
OutboundEndpoint endpoint = endpointCache.getOutboundEndpoint(url, MessageExchangePattern.ONE_WAY, null);
endpoint.process(createMuleEvent(message, endpoint));
}
public MuleMessage request(String url, long timeout) throws MuleException
{
InboundEndpoint endpoint = endpointCache.getInboundEndpoint(url, MessageExchangePattern.ONE_WAY);
try
{
return endpoint.request(timeout);
}
catch (Exception e)
{
throw new ReceiveException(endpoint, timeout, e);
}
}
public MuleMessage process(String uri,
MessageExchangePattern mep,
Object payload,
Map messageProperties) throws MuleException
{
return process(uri, mep, new DefaultMuleMessage(payload, messageProperties, muleContext));
}
public MuleMessage process(String uri, MessageExchangePattern mep, MuleMessage message)
throws MuleException
{
OutboundEndpoint endpoint = endpointCache.getOutboundEndpoint(uri, mep, null);
return returnMessage(endpoint.process(createMuleEvent(message, endpoint)));
}
protected MuleEvent createMuleEvent(MuleMessage message, OutboundEndpoint endpoint)
throws EndpointException
{
return new DefaultMuleEvent(message, endpoint.getExchangePattern(), new MuleClientFlowConstruct(
muleContext));
}
protected MuleMessage returnMessage(MuleEvent event)
{
if (event != null)
{
return event.getMessage();
}
else
{
return null;
}
}
/**
* Placeholder class which makes the default exception handler available.
*/
static public class MuleClientFlowConstruct implements FlowConstruct
{
MuleContext muleContext;
public MuleClientFlowConstruct(MuleContext muleContext)
{
this.muleContext = muleContext;
}
public String getName()
{
return "MuleClient";
}
public MessagingExceptionHandler getExceptionListener()
{
return new DefaultMessagingExceptionStrategy(muleContext);
}
public LifecycleState getLifecycleState()
{
return null;
}
public FlowConstructStatistics getStatistics()
{
return null;
}
public MuleContext getMuleContext()
{
return muleContext;
}
public MessageInfoMapping getMessageInfoMapping()
{
return null;
}
public MessageProcessorChain getMessageProcessorChain()
{
return null;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy