edu.cornell.med.icb.goby.util.dynoptions.DynamicOptionClient.java Source code

Java tutorial

Introduction

Here is the source code for edu.cornell.med.icb.goby.util.dynoptions.DynamicOptionClient.java

Source

/*
 * Copyright (C) 2009-2012 Institute for Computational Biomedicine,
 *                    Weill Medical College of Cornell University
 *
 *  This program 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.
 *
 *  This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package edu.cornell.med.icb.goby.util.dynoptions;

import org.apache.commons.lang.ArrayUtils;
import org.apache.log4j.Logger;

/**
 * Dynamic option clients are used by classes that need to obtain parameters from the command line without
 * adding extraneous methods.
 *
 * @author Fabien Campagne
 *         Date: 1/29/12
 *         Time: 5:00 PM
 */
public class DynamicOptionClient implements Comparable {
    String[] supportedKeys;
    private String[] helpMessages;
    String[] defaultValues;
    String[] values;
    Class enclosingClass;
    private static final Logger LOG = Logger.getLogger(DynamicOptionClient.class);

    public DynamicOptionClient(final Class enclosingClass, final String[] otherDefinitions,
            final String... optionDefinition) {

        this(enclosingClass, (String[]) ArrayUtils.addAll(otherDefinitions, optionDefinition));
    }

    /**
     * Define the set of dynamic options the client recognizes. A empty default string is substituted by null.
     *
     * @param enclosingClass   Enclosing class. Simple name will be used to parse options.
     * @param optionDefinition option definition in the format key:help:default-value
     */
    public DynamicOptionClient(final Class enclosingClass, final String... optionDefinition) {
        this.enclosingClass = enclosingClass;
        supportedKeys = new String[optionDefinition.length];
        helpMessages = new String[optionDefinition.length];
        defaultValues = new String[optionDefinition.length];
        values = new String[optionDefinition.length];
        int index = 0;
        for (final String def : optionDefinition) {
            final String[] tuple = def.split("[:]");
            if (tuple.length < 2) {
                throw new RuntimeException(
                        "option definition must have three elements separated by colon: key:help:default");
            }
            supportedKeys[index] = tuple[0];
            helpMessages[index] = tuple[1];
            defaultValues[index] = tuple.length >= 3 ? tuple[2] : null;
            if (defaultValues[index] != null && defaultValues[index].length() == 0) {
                // replace default emptry strings with null for getters work better.
                defaultValues[index] = null;
            }
            index++;
        }
        DynamicOptionRegistry.register(this);
    }

    /**
     * Determine if this client can accept this option.
     *
     * @param option Text description of the option, in the format classname:key:value
     * @return True when the client can accept the option.
     */
    public boolean acceptsOption(final String option) {
        LOG.trace(this.getClass().getName() + " trying to accept option " + option);
        final String[] tokens = option.split("[:=]");
        if (tokens.length != 3)
            return false;
        final String shortClassname = enclosingClass.getSimpleName();
        if (!tokens[0].equals(shortClassname)) {
            return false;
        }
        int keyIndex = 0;
        for (final String supportedId : supportedKeys) {
            if (tokens[1].equals(supportedId)) {
                values[keyIndex] = tokens[2];
                return true;
            }
            keyIndex++;
        }
        return false;

    }

    /**
     * Obtain the value corresponding to the key. The default value is returned if the key was not associated with a
     * value previously by calling acceptsOption.
     *
     * @param key option key.
     * @return Value/default value for option.
     */
    public String getString(final String key) {
        for (int keyIndex = 0; keyIndex < supportedKeys.length; keyIndex++) {
            if (key.equals(supportedKeys[keyIndex])) {

                final String value = values[keyIndex];
                return value != null ? value : defaultValues[keyIndex];
            }
        }
        return null;
    }

    /**
     * Obtain the Integer value corresponding to the key. The default value is returned if the key was not associated with a
     * value previously by calling acceptsOption.
     *
     * @param key option key.
     * @return Value/default value for option, or null if the value and the default were missing.
     */
    public Integer getInteger(final String key) {
        final String val = getString(key);
        if (val != null) {
            return Integer.parseInt(val);
        }
        return null;
    }

    /**
     * Obtain the Byte value corresponding to the key.
     *
     * @param key option key.
     * @return Value/default value for option, or null if the value and the default were missing.
     */
    public Byte getByte(final String key) {
        final String val = getString(key);
        if (val != null) {
            return Byte.parseByte(val);
        }
        return null;
    }

    /**
     * Obtain the Float value corresponding to the key.
     *
     * @param key option key.
     * @return Value/default value for option, or null if the value and the default were missing.
     */
    public Float getFloat(final String key) {
        final String val = getString(key);
        if (val != null) {
            return Float.parseFloat(val);
        }
        return null;
    }

    /**
     * Obtain the Double value corresponding to the key.
     *
     * @param key option key.
     * @return Value/default value for option, or null if the value and the default were missing.
     */
    public Double getDouble(final String key) {
        final String val = getString(key);
        if (val != null) {
            return Double.parseDouble(val);
        }
        return null;
    }

    /**
     * Obtain the Boolean value corresponding to the key.
     *
     * @param key option key.
     * @return Value/default value for option, or null if the value and the default were missing.
     */
    public Boolean getBoolean(final String key) {
        final String val = getString(key);
        if (val != null) {
            return Boolean.parseBoolean(val);
        }
        return null;
    }

    /**
     * Set a value for a parameter identified by a key.
     *
     * @param key   option key.
     * @param value option new value.
     */
    public void setValue(final String key, final Object value) {
        if (value == null) {
            return;
        }
        for (int keyIndex = 0; keyIndex < supportedKeys.length; keyIndex++) {
            if (key.equals(supportedKeys[keyIndex])) {

                values[keyIndex] = value.toString();
            }
        }
    }

    @Override
    public int compareTo(Object o) {
        if (!(o instanceof DynamicOptionClient)) {
            return 1;
        }
        DynamicOptionClient otherClient = (DynamicOptionClient) o;
        return enclosingClass.getCanonicalName()
                .compareTo(((DynamicOptionClient) o).enclosingClass.getCanonicalName());
    }

    public String[] getHelpMessages() {
        return helpMessages;
    }

    public String[] getKeys() {
        return supportedKeys;
    }

    public String[] getDefaultValues() {
        return defaultValues;
    }

    public String getClassname() {
        return enclosingClass.getSimpleName();
    }
}