/** * The MIT License * Copyright (c) 2014 JMXTrans Team * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.jmxtrans.utils; import java.util.Map; import javax.annotation.Nonnull; import javax.annotation.Nullable; /** * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a> */ public final class ConfigurationUtils { private ConfigurationUtils() { } /** * Convert value of this setting to a Java <b>int</b>. * * If the setting is not found or is not an int, an exception is thrown. * * @param settings the map of settings * @param name name of the setting / property * @return int value of the setting / property * @throws IllegalArgumentException if setting is not found or is not an integer. */ public static int getInt(@Nonnull Map<String, String> settings, @Nonnull String name) throws IllegalArgumentException { String value = getString(settings, name); try { return Integer.parseInt(value); } catch (NumberFormatException e) { throw new IllegalArgumentException("Setting '" + name + "=" + value + "' is not an integer on " + settings); } } /** * Convert value of this setting to a Java <b>int</b>. * * If the property is not found, the <code>defaultValue</code> is returned. If the property is not an int, an exception is thrown. * * @param settings the map of settings * @param name name of the property * @param defaultValue default value if the property is not defined. * @return int value of the property or <code>defaultValue</code> if the property is not defined. * @throws IllegalArgumentException if setting is not is not an integer. */ public static int getInt(@Nonnull Map<String, String> settings, @Nonnull String name, int defaultValue) throws IllegalArgumentException { if (settings.containsKey(name)) { String value = settings.get(name); try { return Integer.parseInt(value); } catch (NumberFormatException e) { throw new IllegalArgumentException("Setting '" + name + "=" + value + "' is not an integer on " + settings); } } else { return defaultValue; } } /** * Convert value of this setting to a Java <b>long</b>. * * If the property is not found, the <code>defaultValue</code> is returned. If the property is not a long, an exception is thrown. * * @param settings the map of settings * @param name name of the property * @param defaultValue default value if the property is not defined. * @return int value of the property or <code>defaultValue</code> if the property is not defined. * @throws IllegalArgumentException if setting is not is not a long. */ public static long getLong(@Nonnull Map<String, String> settings, @Nonnull String name, @Nonnull long defaultValue) throws IllegalArgumentException { if (settings.containsKey(name)) { String value = settings.get(name); try { return Long.parseLong(value); } catch (NumberFormatException e) { throw new IllegalArgumentException("Setting '" + name + "=" + value + "' is not a long on " + settings); } } else { return defaultValue; } } /** * Convert value of this setting to a Java <b>boolean</b> (via {@link Boolean#parseBoolean(String)}). * * If the property is not found, the <code>defaultValue</code> is returned. * * @param settings the map of settings * @param name name of the property * @param defaultValue default value if the property is not defined. * @return int value of the property or <code>defaultValue</code> if the property is not defined. */ public static boolean getBoolean(@Nonnull Map<String, String> settings, @Nonnull String name, boolean defaultValue) { if (settings.containsKey(name)) { String value = settings.get(name); return Boolean.parseBoolean(value); } else { return defaultValue; } } /** * Convert value of this setting to a Java <b>int</b>. * * If the setting is not found, an exception is thrown. * * @param settings the map of settings * @param name name of the property * @return value of the property * @throws IllegalArgumentException if setting is not found. */ @Nullable public static String getString(@Nonnull Map<String, String> settings, @Nonnull String name) throws IllegalArgumentException { if (!settings.containsKey(name)) { throw new IllegalArgumentException("No setting '" + name + "' found"); } return settings.get(name); } /** * Return the value of the given property. * * If the property is not found, the <code>defaultValue</code> is returned. * * @param settings the map of settings * @param name name of the property * @param defaultValue default value if the property is not defined. * @return value of the property or <code>defaultValue</code> if the property is not defined. */ @Nullable public static String getString(@Nonnull Map<String, String> settings, @Nonnull String name, @Nullable String defaultValue) { if (settings.containsKey(name)) { return settings.get(name); } else { return defaultValue; } } }