java/sql-dk/src/main/java/info/globalcode/sql/dk/configuration/Configuration.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 248 7f81cfa150d0
permissions -rw-r--r--
fix license version: GNU GPLv3
franta-hg@20
     1
/**
franta-hg@20
     2
 * SQL-DK
franta-hg@20
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@20
     4
 *
franta-hg@20
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@20
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@250
     7
 * the Free Software Foundation, version 3 of the License.
franta-hg@20
     8
 *
franta-hg@20
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@20
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@20
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@20
    12
 * GNU General Public License for more details.
franta-hg@20
    13
 *
franta-hg@20
    14
 * You should have received a copy of the GNU General Public License
franta-hg@20
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@20
    16
 */
franta-hg@26
    17
package info.globalcode.sql.dk.configuration;
franta-hg@26
    18
franta-hg@30
    19
import static info.globalcode.sql.dk.Xmlns.CONFIGURATION;
franta-hg@29
    20
import static info.globalcode.sql.dk.Functions.findByName;
franta-hg@224
    21
import info.globalcode.sql.dk.formatting.BarChartFormatter;
franta-hg@248
    22
import info.globalcode.sql.dk.formatting.RecfileFormatter;
franta-hg@29
    23
import info.globalcode.sql.dk.formatting.SilentFormatter;
franta-hg@60
    24
import info.globalcode.sql.dk.formatting.SingleValueFormatter;
franta-hg@32
    25
import info.globalcode.sql.dk.formatting.TabularFormatter;
franta-hg@88
    26
import info.globalcode.sql.dk.formatting.TabularPrefetchingFormatter;
franta-hg@123
    27
import info.globalcode.sql.dk.formatting.TabularWrappingFormatter;
franta-hg@174
    28
import info.globalcode.sql.dk.formatting.TeXFormatter;
franta-hg@128
    29
import info.globalcode.sql.dk.formatting.XhtmlFormatter;
franta-hg@29
    30
import info.globalcode.sql.dk.formatting.XmlFormatter;
franta-hg@26
    31
import java.util.ArrayList;
franta-hg@29
    32
import java.util.Collection;
franta-hg@29
    33
import java.util.Collections;
franta-hg@26
    34
import java.util.List;
franta-hg@29
    35
import javax.xml.bind.annotation.XmlElement;
franta-hg@26
    36
import javax.xml.bind.annotation.XmlRootElement;
franta-hg@67
    37
import javax.xml.bind.annotation.XmlTransient;
franta-hg@20
    38
franta-hg@20
    39
/**
franta-hg@155
    40
 * Object representation of user configuration loaded from XML.
franta-hg@20
    41
 *
franta-hg@20
    42
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@20
    43
 */
franta-hg@30
    44
@XmlRootElement(name = "configuration", namespace = CONFIGURATION)
franta-hg@20
    45
public class Configuration {
franta-hg@26
    46
franta-hg@26
    47
	private List<DatabaseDefinition> databases = new ArrayList<>();
franta-hg@26
    48
	private List<FormatterDefinition> formatters = new ArrayList<>();
franta-hg@32
    49
	/**
franta-hg@32
    50
	 * is used if no formatter is specified on CLI nor in user configuration
franta-hg@32
    51
	 */
franta-hg@32
    52
	public static final String DEFAULT_FORMATTER = TabularFormatter.NAME;
franta-hg@89
    53
	/**
franta-hg@89
    54
	 * Can be used as default if prefetching is ok – for configuration listings (config is alread in
franta-hg@89
    55
	 * memory, so this does not matter)
franta-hg@89
    56
	 */
franta-hg@89
    57
	public static final String DEFAULT_FORMATTER_PREFETCHING = TabularPrefetchingFormatter.NAME;
franta-hg@29
    58
	private String defaultFormatter;
franta-hg@29
    59
	/**
franta-hg@29
    60
	 * Default list of formatters. Is used if particular name is not found in user configuration.
franta-hg@29
    61
	 */
franta-hg@29
    62
	private static final Collection<FormatterDefinition> buildInFormatters;
franta-hg@26
    63
franta-hg@29
    64
	static {
franta-hg@29
    65
		Collection<FormatterDefinition> l = new ArrayList<>();
franta-hg@29
    66
		l.add(new FormatterDefinition(SilentFormatter.NAME, SilentFormatter.class.getName()));
franta-hg@60
    67
		l.add(new FormatterDefinition(SingleValueFormatter.NAME, SingleValueFormatter.class.getName()));
franta-hg@248
    68
		l.add(new FormatterDefinition(RecfileFormatter.NAME, RecfileFormatter.class.getName()));
franta-hg@29
    69
		l.add(new FormatterDefinition(XmlFormatter.NAME, XmlFormatter.class.getName()));
franta-hg@128
    70
		l.add(new FormatterDefinition(XhtmlFormatter.NAME, XhtmlFormatter.class.getName()));
franta-hg@32
    71
		l.add(new FormatterDefinition(TabularFormatter.NAME, TabularFormatter.class.getName()));
franta-hg@88
    72
		l.add(new FormatterDefinition(TabularPrefetchingFormatter.NAME, TabularPrefetchingFormatter.class.getName()));
franta-hg@123
    73
		l.add(new FormatterDefinition(TabularWrappingFormatter.NAME, TabularWrappingFormatter.class.getName()));
franta-hg@174
    74
		l.add(new FormatterDefinition(TeXFormatter.NAME, TeXFormatter.class.getName()));
franta-hg@224
    75
		//l.add(new FormatterDefinition(DsvFormatter.NAME, DsvFormatter.class.getName()));
franta-hg@224
    76
		//l.add(new FormatterDefinition(SystemCommandExecutor.NAME, SystemCommandExecutor.class.getName()));
franta-hg@224
    77
		l.add(new FormatterDefinition(BarChartFormatter.NAME, BarChartFormatter.class.getName()));
franta-hg@29
    78
		buildInFormatters = Collections.unmodifiableCollection(l);
franta-hg@29
    79
	}
franta-hg@29
    80
franta-hg@30
    81
	@XmlElement(name = "database", namespace = CONFIGURATION)
franta-hg@26
    82
	public List<DatabaseDefinition> getDatabases() {
franta-hg@26
    83
		return databases;
franta-hg@26
    84
	}
franta-hg@26
    85
franta-hg@26
    86
	public void setDatabases(List<DatabaseDefinition> databases) {
franta-hg@26
    87
		this.databases = databases;
franta-hg@26
    88
	}
franta-hg@26
    89
franta-hg@75
    90
	/**
franta-hg@202
    91
	 * @param name
franta-hg@224
    92
	 * @return
franta-hg@75
    93
	 * @throws ConfigurationException if no database with this name is configured
franta-hg@75
    94
	 */
franta-hg@75
    95
	public DatabaseDefinition getDatabase(String name) throws ConfigurationException {
franta-hg@75
    96
		DatabaseDefinition dd = findByName(databases, name);
franta-hg@75
    97
		if (dd == null) {
franta-hg@75
    98
			throw new ConfigurationException("Database is not configured: " + name);
franta-hg@75
    99
		} else {
franta-hg@75
   100
			return dd;
franta-hg@75
   101
		}
franta-hg@29
   102
	}
franta-hg@29
   103
franta-hg@80
   104
	/**
franta-hg@80
   105
	 * @return only configured formatters
franta-hg@80
   106
	 * @see #getBuildInFormatters()
franta-hg@80
   107
	 * @see #getAllFormatters()
franta-hg@80
   108
	 */
franta-hg@30
   109
	@XmlElement(name = "formatter", namespace = CONFIGURATION)
franta-hg@26
   110
	public List<FormatterDefinition> getFormatters() {
franta-hg@26
   111
		return formatters;
franta-hg@26
   112
	}
franta-hg@26
   113
franta-hg@26
   114
	public void setFormatters(List<FormatterDefinition> formatters) {
franta-hg@26
   115
		this.formatters = formatters;
franta-hg@26
   116
	}
franta-hg@29
   117
franta-hg@32
   118
	/**
franta-hg@32
   119
	 * @param name name of desired formatter. Looking for this name in user configuration, then in
franta-hg@32
   120
	 * buil-in formatters. If null, default from configuration or (if not configured) built-in
franta-hg@32
   121
	 * default is used.
franta-hg@75
   122
	 * @return formatter definition
franta-hg@75
   123
	 * @throws ConfigurationException if no formatter with this name was found
franta-hg@32
   124
	 */
franta-hg@75
   125
	public FormatterDefinition getFormatter(String name) throws ConfigurationException {
franta-hg@32
   126
		if (name == null) {
franta-hg@75
   127
			return defaultFormatter == null ? getFormatter(DEFAULT_FORMATTER) : getFormatter(defaultFormatter);
franta-hg@32
   128
		} else {
franta-hg@32
   129
			FormatterDefinition fd = findByName(formatters, name);
franta-hg@75
   130
			fd = fd == null ? findByName(buildInFormatters, name) : fd;
franta-hg@75
   131
			if (fd == null) {
franta-hg@75
   132
				throw new ConfigurationException("Formatter is not configured: " + name);
franta-hg@75
   133
			} else {
franta-hg@75
   134
				return fd;
franta-hg@75
   135
			}
franta-hg@32
   136
		}
franta-hg@29
   137
	}
franta-hg@29
   138
franta-hg@80
   139
	/**
franta-hg@80
   140
	 * @return only built-in formatters
franta-hg@80
   141
	 * @see #getAllFormatters()
franta-hg@80
   142
	 * @see #getFormatters()
franta-hg@80
   143
	 */
franta-hg@67
   144
	@XmlTransient
franta-hg@67
   145
	public Collection<FormatterDefinition> getBuildInFormatters() {
franta-hg@67
   146
		return buildInFormatters;
franta-hg@67
   147
	}
franta-hg@67
   148
franta-hg@29
   149
	/**
franta-hg@80
   150
	 * @return built-in + configured formatters
franta-hg@80
   151
	 * @see #getFormatters()
franta-hg@80
   152
	 */
franta-hg@80
   153
	@XmlTransient
franta-hg@80
   154
	public Collection<FormatterDefinition> getAllFormatters() {
franta-hg@80
   155
		Collection<FormatterDefinition> allFormatters = new ArrayList<>();
franta-hg@80
   156
		allFormatters.addAll(buildInFormatters);
franta-hg@80
   157
		allFormatters.addAll(formatters);
franta-hg@80
   158
		return allFormatters;
franta-hg@80
   159
	}
franta-hg@80
   160
franta-hg@80
   161
	/**
franta-hg@29
   162
	 * @return name of default formatter, is used if name is not specified on CLI
franta-hg@29
   163
	 */
franta-hg@30
   164
	@XmlElement(name = "defaultFormatter", namespace = CONFIGURATION)
franta-hg@29
   165
	public String getDefaultFormatter() {
franta-hg@29
   166
		return defaultFormatter;
franta-hg@29
   167
	}
franta-hg@29
   168
franta-hg@29
   169
	public void setDefaultFormatter(String defaultFormatter) {
franta-hg@29
   170
		this.defaultFormatter = defaultFormatter;
franta-hg@29
   171
	}
franta-hg@20
   172
}