Package org.mule.exception

Source Code of org.mule.exception.AbstractSystemExceptionStrategy

/*
* $Id: AbstractSystemExceptionStrategy.java 22061 2011-06-01 13:19:29Z tcarlson $
* --------------------------------------------------------------------------------------
* 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.exception;

import org.mule.RequestContext;
import org.mule.api.ExceptionPayload;
import org.mule.api.MuleContext;
import org.mule.api.exception.SystemExceptionHandler;
import org.mule.api.transaction.RollbackMethod;
import org.mule.message.DefaultExceptionPayload;
import org.mule.transport.AbstractConnector;
import org.mule.transport.ConnectException;

/**
* Fire a notification, log exception, clean up transaction if any, and trigger reconnection strategy
* if this is a <code>ConnectException</code>.
*/
public class AbstractSystemExceptionStrategy extends AbstractExceptionStrategy implements SystemExceptionHandler
{
    public AbstractSystemExceptionStrategy(MuleContext muleContext, boolean rollbackByDefault)
    {
        super(muleContext, rollbackByDefault);
    }

    public void handleException(Exception ex, RollbackMethod rollbackMethod)
    {
        fireNotification(ex);

        logException(ex);
       
        if (isRollback(ex))
        {
            logger.debug("Rolling back transaction");
            rollback(rollbackMethod);
        }
        else
        {
            logger.debug("Committing transaction");
            commit();
        }

        ExceptionPayload exceptionPayload = new DefaultExceptionPayload(ex);
        if (RequestContext.getEvent() != null)
        {
            RequestContext.setExceptionPayload(exceptionPayload);
        }
       
        if (ex instanceof ConnectException)
        {
            handleReconnection((ConnectException) ex);
        }
    }

    public void handleException(Exception ex)
    {
        handleException(ex, null);
    }
   
    protected void handleReconnection(ConnectException ex)
    {
        AbstractConnector connector = (AbstractConnector) ex.getFailed();

        // Make sure the connector is not already being reconnected by another receiver thread.
        if (connector.isConnecting())
        {
            return;
        }
           
        logger.info("Exception caught is a ConnectException, attempting to reconnect...");
       
        // Disconnect
        try
        {
            logger.debug("Disconnecting " + connector.getName());
            connector.stop();
            connector.disconnect();
        }
        catch (Exception e1)
        {
            logger.error(e1.getMessage());
        }

        // Reconnect (retry policy will go into effect here if configured)
        try
        {
            logger.debug("Reconnecting " + connector.getName());
            connector.connect();
            connector.start();
        }
        catch (Exception e2)
        {
            logger.error(e2.getMessage());
        }
    }
}

TOP

Related Classes of org.mule.exception.AbstractSystemExceptionStrategy

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.