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

org.arquillian.droidium.container.task.FreePortTask Maven / Gradle / Ivy

/*
 * 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.task;

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

import org.arquillian.droidium.container.configuration.Validate;
import org.arquillian.spacelift.task.Task;

/**
 * Checks if some port is free or not to hook to.
 *
 * @author Stefan Miklosovic
 *
 */
public class FreePortTask extends Task {

    private int port = -1;

    /**
     * Sets port to check.
     *
     * @param port port to check
     * @throws IllegalArgumentException if {@code port} is null object or an empty string.
     * @throws NumberFormatException if {@code port} is not a number
     * @return this
     */
    public FreePortTask port(String port) {
        if (port == null || port.isEmpty()) {
            throw new IllegalArgumentException("Port to check can not be a null object nor an empty string");
        }
        try {
            this.port = Integer.parseInt(port);
            return this;
        } 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
     */
    private 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;
    }

    @Override
    protected Boolean process(Object input) throws Exception {
        return isPortFree(port);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy