java/sql-dk/src/info/globalcode/sql/dk/configuration/Configuration.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 22 Dec 2013 21:02:37 +0100
branchv_0
changeset 32 5e412dbd9362
parent 30 b7ea47b2d4ca
child 60 d4e88172a363
permissions -rw-r--r--
TabularFormatter: basics
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.configuration;
    19 
    20 import static info.globalcode.sql.dk.Xmlns.CONFIGURATION;
    21 import static info.globalcode.sql.dk.Functions.findByName;
    22 import info.globalcode.sql.dk.formatting.SilentFormatter;
    23 import info.globalcode.sql.dk.formatting.TabularFormatter;
    24 import info.globalcode.sql.dk.formatting.XmlFormatter;
    25 import java.util.ArrayList;
    26 import java.util.Collection;
    27 import java.util.Collections;
    28 import java.util.List;
    29 import javax.xml.bind.annotation.XmlElement;
    30 import javax.xml.bind.annotation.XmlRootElement;
    31 
    32 /**
    33  *
    34  * @author Ing. František Kučera (frantovo.cz)
    35  */
    36 @XmlRootElement(name = "configuration", namespace = CONFIGURATION)
    37 public class Configuration {
    38 
    39 	private List<DatabaseDefinition> databases = new ArrayList<>();
    40 	private List<FormatterDefinition> formatters = new ArrayList<>();
    41 	/**
    42 	 * is used if no formatter is specified on CLI nor in user configuration
    43 	 */
    44 	public static final String DEFAULT_FORMATTER = TabularFormatter.NAME;
    45 	private String defaultFormatter;
    46 	/**
    47 	 * Default list of formatters. Is used if particular name is not found in user configuration.
    48 	 */
    49 	private static final Collection<FormatterDefinition> buildInFormatters;
    50 
    51 	static {
    52 		Collection<FormatterDefinition> l = new ArrayList<>();
    53 		l.add(new FormatterDefinition(SilentFormatter.NAME, SilentFormatter.class.getName()));
    54 		l.add(new FormatterDefinition(XmlFormatter.NAME, XmlFormatter.class.getName()));
    55 		l.add(new FormatterDefinition(TabularFormatter.NAME, TabularFormatter.class.getName()));
    56 		buildInFormatters = Collections.unmodifiableCollection(l);
    57 	}
    58 
    59 	@XmlElement(name = "database", namespace = CONFIGURATION)
    60 	public List<DatabaseDefinition> getDatabases() {
    61 		return databases;
    62 	}
    63 
    64 	public void setDatabases(List<DatabaseDefinition> databases) {
    65 		this.databases = databases;
    66 	}
    67 
    68 	public DatabaseDefinition getDatabase(String name) {
    69 		return findByName(databases, name);
    70 	}
    71 
    72 	@XmlElement(name = "formatter", namespace = CONFIGURATION)
    73 	public List<FormatterDefinition> getFormatters() {
    74 		return formatters;
    75 	}
    76 
    77 	public void setFormatters(List<FormatterDefinition> formatters) {
    78 		this.formatters = formatters;
    79 	}
    80 
    81 	/**
    82 	 * @param name name of desired formatter. Looking for this name in user configuration, then in
    83 	 * buil-in formatters. If null, default from configuration or (if not configured) built-in
    84 	 * default is used.
    85 	 * @return formatter definition or null if none for this name is found
    86 	 */
    87 	public FormatterDefinition getFormatter(String name) {
    88 		if (name == null) {
    89 			if (defaultFormatter == null) {
    90 				return getFormatter(DEFAULT_FORMATTER);
    91 			} else {
    92 				return getFormatter(defaultFormatter);
    93 			}
    94 		} else {
    95 			FormatterDefinition fd = findByName(formatters, name);
    96 			return fd == null ? findByName(buildInFormatters, name) : fd;
    97 		}
    98 	}
    99 
   100 	/**
   101 	 * @return name of default formatter, is used if name is not specified on CLI
   102 	 */
   103 	@XmlElement(name = "defaultFormatter", namespace = CONFIGURATION)
   104 	public String getDefaultFormatter() {
   105 		return defaultFormatter;
   106 	}
   107 
   108 	public void setDefaultFormatter(String defaultFormatter) {
   109 		this.defaultFormatter = defaultFormatter;
   110 	}
   111 }