blob: 58d68bcbc3627edb16474a5889bf3f987c258d48 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.launching;
import java.io.IOException;
import java.net.ConnectException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Random;
/**
* Utility class to find a port to debug on.
* <p>
* Clients are not intended to subclass or instantiate this class.
* </p>
*/
public class SocketUtil {
private static final Random fgRandom= new Random(System.currentTimeMillis());
/**
* Returns a free port number on the specified host within the given range,
* or -1 if none found.
*
* @param host name or IP addres of host on which to find a free port
* @param searchFrom the port number from which to start searching
* @param searchTo the port number at which to stop searching
* @return a free port in the specified range, or -1 of none found
* @deprecated Use <code>findFreePort()</code> instead. It is possible that this
* method can return a port that is already in use since the implementation does
* not bind to the given port to ensure that it is free.
*/
public static int findUnusedLocalPort(String host, int searchFrom, int searchTo) {
for (int i= 0; i < 10; i++) {
Socket s= null;
int port= getRandomPort(searchFrom, searchTo);
try {
s= new Socket(host, port);
} catch (ConnectException e) {
return port;
} catch (IOException e) {
} finally {
if (s != null) {
try {
s.close();
} catch (IOException ioe) {
}
}
}
}
return -1;
}
private static int getRandomPort(int low, int high) {
return (int)(fgRandom.nextFloat() * (high-low)) + low;
}
/**
* Returns a free port number on localhost, or -1 if unable to find a free port.
*
* @return a free port number on localhost, or -1 if unable to find a free port
* @since 3.0
*/
public static int findFreePort() {
ServerSocket socket= null;
try {
socket= new ServerSocket(0);
return socket.getLocalPort();
} catch (IOException e) {
} finally {
if (socket != null) {
try {
socket.close();
} catch (IOException e) {
}
}
}
return -1;
}
}