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

org.graylog2.utilities.IPSubnetConverter Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog2.utilities;

import com.github.joschi.jadconfig.Converter;
import com.github.joschi.jadconfig.ParameterException;
import com.google.common.base.Joiner;
import com.google.common.base.Splitter;
import org.jboss.netty.handler.ipfilter.IpSubnet;

import java.net.UnknownHostException;
import java.util.HashSet;
import java.util.Set;

/**
 * Converts a comma separated list of IP addresses / sub nets to set of {@link IpSubnet}.
 */
public class IPSubnetConverter implements Converter> {
    @Override
    public Set convertFrom(String value) {
        final Set converted = new HashSet<>();
        if (value != null) {
            Iterable subnets = Splitter.on(',').trimResults().split(value);
            for (String subnet : subnets) {
                try {
                    converted.add(new IpSubnet(subnet));
                } catch (UnknownHostException e) {
                    throw new ParameterException("Invalid subnet: " + subnet);
                }
            }
        }
        return converted;
    }

    @Override
    public String convertTo(Set value) {
        if (value == null) {
            throw new ParameterException("Couldn't convert IP subnets  to string.");
        }
        return Joiner.on(",").skipNulls().join(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy