Skip to content

Commit

Permalink
Pick random debug port when the configured one is taken
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Oct 3, 2023
1 parent 7c26158 commit ba0c261
Showing 1 changed file with 31 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,26 +369,50 @@ protected void prepare() throws Exception {
port = Integer.parseInt(debug);
}
}
int originalPort = port;
if (port <= 0) {
port = getRandomPort();
}

if (debug != null && debug.equalsIgnoreCase("client")) {
args.add("-agentlib:jdwp=transport=dt_socket,address=" + debugHost + ":" + port + ",server=n,suspend=" + suspend);
} else if (debug == null || !debug.equalsIgnoreCase("false")) {
// make sure the debug port is not used, we don't want to just fail if something else is using it
// we don't check this on restarts, as the previous process is still running
// if the debug port is used, we want to make an effort to pick another one
// if we can't find an open port, we don't fail the process launch, we just don't enable debugging
// Furthermore, we don't check this on restarts, as the previous process is still running
boolean warnAboutChange = false;
if (debugPortOk == null) {
try (Socket socket = new Socket(getInetAddress(debugHost), port)) {
error("Port " + port + " in use, not starting in debug mode");
debugPortOk = false;
} catch (IOException e) {
debugPortOk = true;
int tries = 0;
while (true) {
boolean isPortUsed;
try (Socket socket = new Socket(getInetAddress(debugHost), port)) {
// we can make a connection, that means the port is in use
isPortUsed = true;
warnAboutChange = warnAboutChange || (originalPort != 0); // we only want to warn if the user had not configured a random port
} catch (IOException e) {
// no connection made, so the port is not in use
isPortUsed = false;
}
if (!isPortUsed) {
debugPortOk = true;
break;
}
if (++tries >= 5) {
debugPortOk = false;
break;
} else {
port = getRandomPort();
}
}
}
if (debugPortOk) {
if (warnAboutChange) {
warn("Changed debug port to " + port + " because of a port conflict");
}
args.add("-agentlib:jdwp=transport=dt_socket,address=" + debugHost + ":" + port + ",server=y,suspend="
+ suspend);
} else {
error("Port " + port + " in use, not starting in debug mode");
}
}

Expand Down

0 comments on commit ba0c261

Please sign in to comment.