if (connector == null)
{
throw new JobExecutionException(QuartzMessages.noConnectorFound(connectorName).getMessage());
}
final AbstractMessageReceiver receiver = (AbstractMessageReceiver) connector.lookupReceiver(receiverKey);
if (receiver == null)
{
throw new JobExecutionException(
QuartzMessages.noReceiverInConnector(receiverKey, connectorName).getMessage());
}
final EndpointPollingJobConfig jobConfig = (EndpointPollingJobConfig) jobDataMap.get(QuartzConnector.PROPERTY_JOB_CONFIG);
if (jobConfig == null)
{
throw new JobExecutionException(
QuartzMessages.missingJobDetail(QuartzConnector.PROPERTY_JOB_CONFIG).getMessage());
}
try
{
logger.debug("Attempting to receive event on: " + jobConfig.getEndpointRef());
ExecutionTemplate<MuleEvent> executionTemplate;
final AtomicBoolean pollGlobalEndpoint = new AtomicBoolean(false);
//TODO MULE-5050 work around because the builder is no longer idempotent, we now cache the endpoint instance
InboundEndpoint endpoint = muleContext.getRegistry().lookupObject(jobConfig.getEndpointRef() + ".quartz-job");
if (endpoint == null)
{
final EndpointBuilder epBuilder = muleContext.getRegistry().lookupEndpointBuilder(jobConfig.getEndpointRef());
pollGlobalEndpoint.set(epBuilder != null);
if (pollGlobalEndpoint.get())
{
// referencing a global endpoint, fetch configuration from it
endpoint = epBuilder.buildInboundEndpoint();
//TODO MULE-5050 work around because the builder is no longer idempotent, we now cache the endpoint instance
muleContext.getRegistry().registerObject(jobConfig.getEndpointRef() + ".quartz-job", endpoint);
executionTemplate = TransactionalErrorHandlingExecutionTemplate.createMainExecutionTemplate(muleContext, endpoint.getTransactionConfig(), receiver.getFlowConstruct().getExceptionListener());
}
else
{
// a simple inline endpoint
executionTemplate = TransactionalErrorHandlingExecutionTemplate.createMainExecutionTemplate(muleContext, new MuleTransactionConfig(), receiver.getFlowConstruct().getExceptionListener());
}
}
else
{
executionTemplate = TransactionalErrorHandlingExecutionTemplate.createMainExecutionTemplate(muleContext, endpoint.getTransactionConfig(), receiver.getFlowConstruct().getExceptionListener());
}
final InboundEndpoint finalEndpoint = endpoint;
ExecutionCallback<MuleEvent> cb = new ExecutionCallback<MuleEvent>()
{
@Override
public MuleEvent process() throws Exception
{
Transaction tx = TransactionCoordination.getInstance().getTransaction();
if (tx != null)
{
tx.begin();
}
MuleMessage result = null;
if (pollGlobalEndpoint.get())
{
result = finalEndpoint.getConnector().request(finalEndpoint, jobConfig.getTimeout());
}
else
{
result = request();
}
if (result != null)
{
if (logger.isDebugEnabled())
{
logger.debug("Received event on: " + jobConfig.getEndpointRef());
}
if (pollGlobalEndpoint.get())
{
result.applyTransformers(null, finalEndpoint.getTransformers());
}
//we need to do this because
result = (MuleMessage) ((ThreadSafeAccess) result).newThreadCopy();
//Add the context properties to the message.
result.addProperties(jobDataMap, PropertyScope.INVOCATION);
receiver.routeMessage(result);
}
// nowhere to return
return null;
}
private MuleMessage request() throws MuleException, Exception
{
String endpointUri = jobConfig.getEndpointRef();
MuleContext context = receiver.getEndpoint().getMuleContext();
InboundEndpoint inboundEndpoint = context.getEndpointFactory().getInboundEndpoint(endpointUri);
int timeout = jobConfig.getTimeout();
return inboundEndpoint.request(timeout);
}