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

com.hazelcast.azure.PortRange Maven / Gradle / Ivy

There is a newer version: 5.0-BETA-1
Show newest version
/*
 * Copyright 2020 Hazelcast Inc.
 *
 * Licensed under the Hazelcast Community License (the "License"); you may not use
 * this file except in compliance with the License. You may obtain a copy of the
 * License at
 *
 * http://hazelcast.com/hazelcast-community-license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */

package com.hazelcast.azure;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * Represents the range of IPv4 Ports.
 */
final class PortRange {
    private static final Pattern PORT_NUMBER_REGEX = Pattern.compile("^(\\d+)$");
    private static final Pattern PORT_RANGE_REGEX = Pattern.compile("^(\\d+)-(\\d+)$");

    private static final int MIN_PORT = 0;
    private static final int MAX_PORT = 65535;

    private final int fromPort;
    private final int toPort;

    /**
     * Creates {@link PortRange} from the {@code spec} String.
     *
     * @param spec port number (e.g "5701") or port range (e.g. "5701-5708")
     * @throws IllegalArgumentException if the specified spec is not a valid port or port range
     */
    PortRange(String spec) {
        Matcher portNumberMatcher = PORT_NUMBER_REGEX.matcher(spec);
        Matcher portRangeMatcher = PORT_RANGE_REGEX.matcher(spec);
        if (portNumberMatcher.find()) {
            int port = Integer.parseInt(spec);
            this.fromPort = port;
            this.toPort = port;
        } else if (portRangeMatcher.find()) {
            this.fromPort = Integer.parseInt(portRangeMatcher.group(1));
            this.toPort = Integer.parseInt(portRangeMatcher.group(2));
        } else {
            throw new IllegalArgumentException(String.format("Invalid port range specification: '%s'", spec));
        }

        validatePorts();
    }

    private void validatePorts() {
        if (fromPort < MIN_PORT || fromPort > MAX_PORT) {
            throw new IllegalArgumentException(
                    String.format("Specified port (%s) outside of port range (%s-%s)", fromPort, MIN_PORT, MAX_PORT));
        }
        if (toPort < MIN_PORT || toPort > MAX_PORT) {
            throw new IllegalArgumentException(
                    String.format("Specified port (%s) outside of port range (%s-%s)", toPort, MIN_PORT, MAX_PORT));
        }
        if (fromPort > toPort) {
            throw new IllegalArgumentException(String.format("Port %s is greater than %s", fromPort, toPort));
        }
    }

    int getFromPort() {
        return fromPort;
    }

    int getToPort() {
        return toPort;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy