java/sql-dk/src/info/globalcode/sql/dk/configuration/Configuration.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 10 Jan 2014 23:21:28 +0100
branchv_0
changeset 155 eb3676c6929b
parent 128 67f5ff139da0
child 174 3c6d560a1d14
permissions -rw-r--r--
more JavaDoc
     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.SingleValueFormatter;
    24 import info.globalcode.sql.dk.formatting.TabularFormatter;
    25 import info.globalcode.sql.dk.formatting.TabularPrefetchingFormatter;
    26 import info.globalcode.sql.dk.formatting.TabularWrappingFormatter;
    27 import info.globalcode.sql.dk.formatting.XhtmlFormatter;
    28 import info.globalcode.sql.dk.formatting.XmlFormatter;
    29 import java.util.ArrayList;
    30 import java.util.Collection;
    31 import java.util.Collections;
    32 import java.util.List;
    33 import javax.xml.bind.annotation.XmlElement;
    34 import javax.xml.bind.annotation.XmlRootElement;
    35 import javax.xml.bind.annotation.XmlTransient;
    36 
    37 /**
    38  * Object representation of user configuration loaded from XML.
    39  *
    40  * @author Ing. František Kučera (frantovo.cz)
    41  */
    42 @XmlRootElement(name = "configuration", namespace = CONFIGURATION)
    43 public class Configuration {
    44 
    45 	private List<DatabaseDefinition> databases = new ArrayList<>();
    46 	private List<FormatterDefinition> formatters = new ArrayList<>();
    47 	/**
    48 	 * is used if no formatter is specified on CLI nor in user configuration
    49 	 */
    50 	public static final String DEFAULT_FORMATTER = TabularFormatter.NAME;
    51 	/**
    52 	 * Can be used as default if prefetching is ok – for configuration listings (config is alread in
    53 	 * memory, so this does not matter)
    54 	 */
    55 	public static final String DEFAULT_FORMATTER_PREFETCHING = TabularPrefetchingFormatter.NAME;
    56 	private String defaultFormatter;
    57 	/**
    58 	 * Default list of formatters. Is used if particular name is not found in user configuration.
    59 	 */
    60 	private static final Collection<FormatterDefinition> buildInFormatters;
    61 
    62 	static {
    63 		Collection<FormatterDefinition> l = new ArrayList<>();
    64 		l.add(new FormatterDefinition(SilentFormatter.NAME, SilentFormatter.class.getName()));
    65 		l.add(new FormatterDefinition(SingleValueFormatter.NAME, SingleValueFormatter.class.getName()));
    66 		l.add(new FormatterDefinition(XmlFormatter.NAME, XmlFormatter.class.getName()));
    67 		l.add(new FormatterDefinition(XhtmlFormatter.NAME, XhtmlFormatter.class.getName()));
    68 		l.add(new FormatterDefinition(TabularFormatter.NAME, TabularFormatter.class.getName()));
    69 		l.add(new FormatterDefinition(TabularPrefetchingFormatter.NAME, TabularPrefetchingFormatter.class.getName()));
    70 		l.add(new FormatterDefinition(TabularWrappingFormatter.NAME, TabularWrappingFormatter.class.getName()));
    71 		buildInFormatters = Collections.unmodifiableCollection(l);
    72 	}
    73 
    74 	@XmlElement(name = "database", namespace = CONFIGURATION)
    75 	public List<DatabaseDefinition> getDatabases() {
    76 		return databases;
    77 	}
    78 
    79 	public void setDatabases(List<DatabaseDefinition> databases) {
    80 		this.databases = databases;
    81 	}
    82 
    83 	/**
    84 	 * @throws ConfigurationException if no database with this name is configured
    85 	 */
    86 	public DatabaseDefinition getDatabase(String name) throws ConfigurationException {
    87 		DatabaseDefinition dd = findByName(databases, name);
    88 		if (dd == null) {
    89 			throw new ConfigurationException("Database is not configured: " + name);
    90 		} else {
    91 			return dd;
    92 		}
    93 	}
    94 
    95 	/**
    96 	 * @return only configured formatters
    97 	 * @see #getBuildInFormatters()
    98 	 * @see #getAllFormatters()
    99 	 */
   100 	@XmlElement(name = "formatter", namespace = CONFIGURATION)
   101 	public List<FormatterDefinition> getFormatters() {
   102 		return formatters;
   103 	}
   104 
   105 	public void setFormatters(List<FormatterDefinition> formatters) {
   106 		this.formatters = formatters;
   107 	}
   108 
   109 	/**
   110 	 * @param name name of desired formatter. Looking for this name in user configuration, then in
   111 	 * buil-in formatters. If null, default from configuration or (if not configured) built-in
   112 	 * default is used.
   113 	 * @return formatter definition
   114 	 * @throws ConfigurationException if no formatter with this name was found
   115 	 */
   116 	public FormatterDefinition getFormatter(String name) throws ConfigurationException {
   117 		if (name == null) {
   118 			return defaultFormatter == null ? getFormatter(DEFAULT_FORMATTER) : getFormatter(defaultFormatter);
   119 		} else {
   120 			FormatterDefinition fd = findByName(formatters, name);
   121 			fd = fd == null ? findByName(buildInFormatters, name) : fd;
   122 			if (fd == null) {
   123 				throw new ConfigurationException("Formatter is not configured: " + name);
   124 			} else {
   125 				return fd;
   126 			}
   127 		}
   128 	}
   129 
   130 	/**
   131 	 * @return only built-in formatters
   132 	 * @see #getAllFormatters()
   133 	 * @see #getFormatters()
   134 	 */
   135 	@XmlTransient
   136 	public Collection<FormatterDefinition> getBuildInFormatters() {
   137 		return buildInFormatters;
   138 	}
   139 
   140 	/**
   141 	 * @return built-in + configured formatters
   142 	 * @see #getFormatters()
   143 	 */
   144 	@XmlTransient
   145 	public Collection<FormatterDefinition> getAllFormatters() {
   146 		Collection<FormatterDefinition> allFormatters = new ArrayList<>();
   147 		allFormatters.addAll(buildInFormatters);
   148 		allFormatters.addAll(formatters);
   149 		return allFormatters;
   150 	}
   151 
   152 	/**
   153 	 * @return name of default formatter, is used if name is not specified on CLI
   154 	 */
   155 	@XmlElement(name = "defaultFormatter", namespace = CONFIGURATION)
   156 	public String getDefaultFormatter() {
   157 		return defaultFormatter;
   158 	}
   159 
   160 	public void setDefaultFormatter(String defaultFormatter) {
   161 		this.defaultFormatter = defaultFormatter;
   162 	}
   163 }