com.redhat.victims.Settings.java Source code

Java tutorial

Introduction

Here is the source code for com.redhat.victims.Settings.java

Source

package com.redhat.victims;

/*
 * #%L
 * This file is part of victims-enforcer.
 * %%
 * Copyright (C) 2013 The Victims Project
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero 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 Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * #L%
 */

import org.apache.maven.plugin.logging.Log;

import java.util.*;
import java.util.Map.Entry;

/**
 * Configuration settings are defined and stored by this class. All settings of
 * the VictimsRule are validated and initialized with defaults from this class.
 *
 * @author gm
 */
public final class Settings {

    /*
     * Different modes of operation for the plugin
     */
    public static final String MODE_WARNING = "warning";
    public static final String MODE_FATAL = "fatal";
    public static final String MODE_DISABLED = "disabled";
    /*
     * Allow developers to disable automatic updates or
     * only update once per day.
     */
    public static final String UPDATES_DISABLED = "offline";
    public static final String UPDATES_DAILY = "daily";
    public static final String UPDATES_WEEKLY = "weekly";
    public static final String UPDATES_AUTO = "auto";

    /** System property used to disable update mechanism from the command line */
    public static final String UPDATES_OVERRIDE = "victims.skip.update";

    /*
     * Different settings that can be configured. These need to map back to the
     * names of each of the private members in the rule definition in order to
     * be configurable in the pom.xml @see VictimsRule
     */

    public static final String METADATA = "metadata";
    public static final String FINGERPRINT = "fingerprint";
    public static final String UPDATE_DATABASE = "updates";

    /**
     * Reasonably sensible defaults
     */
    public static final Map<String, String> defaults;

    static {
        Map<String, String> mappings = new HashMap<String, String>();

        mappings.put(METADATA, MODE_WARNING);
        mappings.put(FINGERPRINT, MODE_FATAL);
        mappings.put(UPDATE_DATABASE, UPDATES_AUTO);

        defaults = Collections.unmodifiableMap(mappings);
    }
    /**
     * Map containing configuration values
     */
    private Map<String, String> settings;

    /**
     * Generic interface used validate settings in the configuration
     */
    private interface Validator {

        public void validate() throws VictimsException;
    }

    private Validator[] required = {

            (new Validator() {

                public void validate() throws VictimsException {

                    List<String> modes = new ArrayList<String>();
                    modes.add(MODE_FATAL);
                    modes.add(MODE_WARNING);
                    modes.add(MODE_DISABLED);

                    List<String> modeSettings = new ArrayList<String>();
                    modeSettings.add(METADATA);
                    modeSettings.add(FINGERPRINT);

                    for (String item : modeSettings) {
                        String value = settings.get(item);
                        if (value == null) {
                            throw new VictimsException(TextUI.fmt(Resources.ERR_SETTING_MISSING, item));
                        }

                        if (!modes.contains(value)) {
                            String err = TextUI.fmt(Resources.ERR_INVALID_MODE, value, item, modes.toString());
                            throw new VictimsException(err);
                        }
                    }
                }
            }) };

    /**
     * Creates a new empty settings instance
     */
    public Settings() {
        settings = new HashMap<String, String>();
    }

    /**
     * Add new setting for the specified key.
     * @param k The key to add to the settings.
     * @param v The value to associate with the supplied key.
     */
    public void set(String k, String v) {
        settings.put(k, v);
    }

    /**
     * Retrieve a setting via specified key.
     * @parma k The key to lookup in they configuration settings.
     * @return Value for setting.
     */
    public String get(String k) {
        return settings.get(k);
    }

    /**
     * Use the supplied log to display the current settings.
     * @param log Log to send output to.
     */
    public void show(Log log) {
        StringBuilder info = new StringBuilder();
        info.append(TextUI.box(TextUI.fmt(Resources.INFO_SETTINGS_HEADING)));
        for (Entry<String, String> kv : settings.entrySet()) {
            info.append(String.format("%-12s = %s\n", kv.getKey(), kv.getValue()));
        }
        log.info(info.toString());

    }

    /**
     * Validate the current settings against a list of
     * internal validation rules.
     * @throws VictimsException When validation fails.
     */
    public void validate() throws VictimsException {
        for (Validator v : required) {
            v.validate();
        }
    }

}