org.gradle.util.ports.FixedAvailablePortAllocator.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.util.ports
import org.gradle.internal.Pair
class FixedAvailablePortAllocator extends AbstractAvailablePortAllocator {
static final String WORKER_ID_SYS_PROPERTY = "org.gradle.test.worker"
static final String AGENT_NUM_SYS_PROPERTY = "org.gradle.ci.agentNum"
static final String TOTAL_AGENTS_SYS_PROPERTY = "org.gradle.ci.agentCount"
static final int DEFAULT_RANGE_SIZE = 100
private static FixedAvailablePortAllocator instance
final int workerId
final int agentNum
final int totalAgents
final int rangeCountPerAgent
final int rangeSize
FixedAvailablePortAllocator(int workerId, int agentNum, int totalAgents) {
this.agentNum = agentNum
this.workerId = workerId
this.totalAgents = totalAgents
this.rangeSize = DEFAULT_RANGE_SIZE
this.rangeCountPerAgent = (MAX_PRIVATE_PORT - MIN_PRIVATE_PORT) / (rangeSize * totalAgents)
}
public static FixedAvailablePortAllocator getInstance() {
if (instance == null) {
int totalAgents = Integer.getInteger(TOTAL_AGENTS_SYS_PROPERTY, 1)
int agentNum = Integer.getInteger(AGENT_NUM_SYS_PROPERTY, 1)
int workerId = Integer.getInteger(WORKER_ID_SYS_PROPERTY, -1)
instance = new FixedAvailablePortAllocator(workerId, agentNum, totalAgents)
}
return instance
}
@Override
protected Pair getNextPortRange(int rangeNumber) {
if (rangeNumber >= 1) {
throw new NoSuchElementException("All available ports in the fixed port range for agent ${agentNum}, worker ${workerId} have been exhausted.")
}
if (agentNum > totalAgents) {
throw new IllegalArgumentException("Agent number was set to ${agentNum} but totalAgents was set to ${totalAgents}.")
}
int rangeIndex = (agentNum - 1) * rangeCountPerAgent
if (workerId != -1) {
rangeIndex += (workerId - 1) % rangeCountPerAgent
}
int startPort = MIN_PRIVATE_PORT + (rangeIndex * rangeSize)
int endPort = startPort + rangeSize - 1
return Pair.of(startPort, endPort)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy