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

org.anarres.dhcp.v6.options.Dhcp6OptionsRegistry Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package org.anarres.dhcp.v6.options;

import com.google.common.collect.BiMap;
import com.google.common.collect.HashBiMap;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

/**
 * See http://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xhtml#options
 *
 * @author shevek
 */
public class Dhcp6OptionsRegistry {

    private static class Inner {

        private static final Dhcp6OptionsRegistry INSTANCE = new Dhcp6OptionsRegistry();

        private static final Class OPTION_CLASSES[] = {

        };

        static {
            for (Class optionType : OPTION_CLASSES) {
                INSTANCE.addOptionType(optionType);
            }
        }

    }

    @Nonnull
    public static Dhcp6OptionsRegistry getInstance() {
        return Inner.INSTANCE;
    }

    private final BiMap> optionTypes = HashBiMap.create();

    @Nonnull
    public static  T newInstance(@Nonnull Class type) {
        try {
            return type.newInstance();
        } catch (InstantiationException e) {
            throw new IllegalArgumentException("Cannot instantiate " + type, e);
        } catch (IllegalAccessException e) {
            throw new IllegalArgumentException("Cannot instantiate " + type, e);
        }
    }

    private short getTagFrom(@Nonnull Class type) {
        Dhcp6Option o = newInstance(type);
        return o.getTag();
    }

    public void addOptionType(@Nonnull Class type) {
        short tag = getTagFrom(type);
        if (optionTypes.put(tag, type) != null)
            throw new IllegalArgumentException("Duplicate tag: " + type);
    }

    @CheckForNull
    public Class getOptionType(short tag) {
        return optionTypes.get(tag);
    }

    @Nonnull
    public short getOptionTag(@Nonnull Class type) {
        Short tag = optionTypes.inverse().get(type);
        if (tag != null)
            return tag;
        // TODO: Warn about unregistered option.
        return getTagFrom(type);
    }

    @Override
    public String toString() {
        return getClass().getSimpleName() + "(" + optionTypes + ")";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy