All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.util.TimedSocket Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
/*
 * $Id: TimedSocket.java 19191 2010-08-25 21:05:23Z 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.util;

import java.io.IOException;
import java.io.InterruptedIOException;
import java.net.Socket;

/**
 * This class implements a timeout feature on socket connections.
 */
public final class TimedSocket
{
    private static final int WATCHDOG_FREQUENCY = 100;

    private TimedSocket()
    {
        // utility class only
    }

    /**
     * Creates a socket and waits until the given timeout is reached.
     * 
     * @param host
     * @param port
     * @param timeout in milliseconds
     * @return Connected socket or null.
     * @throws InterruptedIOException
     * @throws IOException
     */
    public static Socket createSocket(String host, int port, int timeout) throws IOException
    {
        SocketConnector connector = new SocketConnector(host, port);
        connector.start();

        int timer = 0;

        while (!connector.isConnected())
        {
            if (connector.hasException())
            {
                throw (connector.getException());
            }

            try
            {
                Thread.sleep(WATCHDOG_FREQUENCY);
            }
            catch (InterruptedException unexpectedInterruption)
            {
                throw new InterruptedIOException("Connection interruption: " + unexpectedInterruption.getMessage());
            }

            timer += WATCHDOG_FREQUENCY;

            if (timer >= timeout)
            {
                throw new InterruptedIOException("Connection timeout on " + host + ":" + port + " after " + timer + " milliseconds");
            }
        }

        return connector.getSocket();
    }

    static class SocketConnector extends Thread
    {
        private volatile Socket connectedSocket;
        private String host;
        private int port;
        private IOException exception;

        public SocketConnector(String host, int port)
        {
            this.host = host;
            this.port = port;
        }

        public void run()
        {
            try
            {
                connectedSocket = new Socket(host, port);
            }
            catch (IOException ioe)
            {
                exception = ioe;
            }
        }

        public boolean isConnected()
        {
            return connectedSocket != null;
        }

        public boolean hasException()
        {
            return exception != null;
        }

        public Socket getSocket()
        {
            return connectedSocket;
        }

        public IOException getException()
        {
            return exception;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy