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

org.arquillian.droidium.container.utils.NetUtils Maven / Gradle / Ivy

There is a newer version: 1.0.1.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
 * contributors by the @authors tag. See the copyright.txt in the
 * distribution for a full listing of individual contributors.
 *
 * 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.arquillian.droidium.container.utils;

import java.io.IOException;
import java.net.DatagramSocket;
import java.net.ServerSocket;
import java.net.Socket;

import org.arquillian.droidium.container.configuration.Validate;

/**
 * @author Stefan Miklosovic
 *
 */
public class NetUtils {

    public static boolean isPortFree(String port) {
        if (port == null || port.isEmpty()) {
            return false;
        }
        try {
            return isPortFree(Integer.parseInt(port));
        } catch (NumberFormatException ex) {
            throw new NumberFormatException("Port '" + port + "' is not a number.");
        }
    }

    /**
     * Checks if some port is free or not.
     *
     * @param port port to check the availability of
     * @return true if {@code port} is free, false otherwise
     */
    public static boolean isPortFree(int port) {
        if (!Validate.isPortValid(port)) {
            throw new IllegalArgumentException("Specified port " + port + " is not a valid port.");
        }

        ServerSocket ss = null;
        Socket s = null;
        DatagramSocket ds = null;
        try {
            ss = new ServerSocket(port);
            ds = new DatagramSocket(port);
            // has to be there for Macs
            s = new Socket("localhost", port);
            return true;
        } catch (IOException e) {
        } finally {
            if (ds != null) {
                try {
                    ds.close();
                } catch (Exception ex) {
                }
            }

            if (ss != null) {
                try {
                    ss.close();
                } catch (IOException e) {
                }
            }

            if (s != null) {
                try {
                    s.close();
                } catch (IOException e) {
                }
            }
        }

        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy