java/sql-dk/src/info/globalcode/sql/dk/InfoLister.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 15 Aug 2015 11:52:38 +0200
branchv_0
changeset 212 d154d6012cbe
parent 211 b5148f646278
child 214 1fb3c7953d8a
permissions -rw-r--r--
property annotations: first version (inherited properties are not working yet)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     1
/**
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     2
 * SQL-DK
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     4
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     8
 * (at your option) any later version.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     9
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    13
 * GNU General Public License for more details.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    14
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    15
 * You should have received a copy of the GNU General Public License
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    17
 */
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
package info.globalcode.sql.dk;
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
203
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
    20
import info.globalcode.sql.dk.configuration.CommandArgument;
67
10c9b9e54622 option --list-formatters – list configured and built-in formatters
František Kučera <franta-hg@frantovo.cz>
parents: 66
diff changeset
    21
import info.globalcode.sql.dk.configuration.Configuration;
65
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    22
import info.globalcode.sql.dk.configuration.ConfigurationException;
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents: 20
diff changeset
    23
import info.globalcode.sql.dk.configuration.ConfigurationProvider;
65
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    24
import info.globalcode.sql.dk.configuration.DatabaseDefinition;
67
10c9b9e54622 option --list-formatters – list configured and built-in formatters
František Kučera <franta-hg@frantovo.cz>
parents: 66
diff changeset
    25
import info.globalcode.sql.dk.configuration.FormatterDefinition;
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
    26
import info.globalcode.sql.dk.configuration.Properties;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    27
import info.globalcode.sql.dk.configuration.Property;
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
    28
import info.globalcode.sql.dk.configuration.PropertyDeclaration;
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
    29
import info.globalcode.sql.dk.configuration.PropertyDeclarations;
203
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
    30
import info.globalcode.sql.dk.configuration.TunnelDefinition;
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    31
import info.globalcode.sql.dk.formatting.ColumnsHeader;
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
    32
import info.globalcode.sql.dk.formatting.CommonProperties;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    33
import info.globalcode.sql.dk.formatting.FakeSqlArray;
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    34
import info.globalcode.sql.dk.formatting.Formatter;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    35
import info.globalcode.sql.dk.formatting.FormatterContext;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    36
import info.globalcode.sql.dk.formatting.FormatterException;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    37
import java.io.BufferedReader;
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
    38
import java.io.ByteArrayOutputStream;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    39
import java.io.InputStreamReader;
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
import java.io.PrintStream;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    41
import java.sql.Array;
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
    42
import java.sql.Driver;
196
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
    43
import java.sql.DriverManager;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    44
import java.sql.DriverPropertyInfo;
65
f05be87239ad option --test-connection – tests connection to given database
František Kučera <franta-hg@frantovo.cz>
parents: 26
diff changeset
    45
import java.sql.SQLException;
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    46
import java.util.ArrayList;
201
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
    47
import java.util.Collections;
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
    48
import java.util.Comparator;
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    49
import java.util.EnumSet;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    50
import java.util.HashSet;
66
6e28893eaada option --list-databases list configured databases
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
    51
import java.util.List;
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
    52
import java.util.Map.Entry;
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
    53
import java.util.ServiceLoader;
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    54
import java.util.Set;
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    55
import java.util.concurrent.ExecutorService;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    56
import java.util.concurrent.Executors;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    57
import java.util.concurrent.TimeUnit;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    58
import java.util.logging.Level;
196
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
    59
import java.util.logging.LogRecord;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    60
import java.util.logging.Logger;
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    61
import javax.sql.rowset.RowSetMetaDataImpl;
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    62
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    63
/**
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    64
 * Displays info like help, version etc.
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    65
 *
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    66
 * @author Ing. František Kučera (frantovo.cz)
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    67
 */
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    68
public class InfoLister {
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    69
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    70
	private static final Logger log = Logger.getLogger(InfoLister.class.getName());
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    71
	/**
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    72
	 * Fake database name for output formatting
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    73
	 */
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    74
	public static final String CONFIG_DB_NAME = "sqldk_configuration";
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    75
	private final PrintStream out;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    76
	private final ConfigurationProvider configurationProvider;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
    77
	private final CLIOptions options;
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    78
	private Formatter formatter;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    79
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    80
	public InfoLister(PrintStream out, ConfigurationProvider configurationProvider, CLIOptions options) {
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    81
		this.out = out;
20
e225bdcd260e refactor, configuration
František Kučera <franta-hg@frantovo.cz>
parents: 19
diff changeset
    82
		this.configurationProvider = configurationProvider;
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    83
		this.options = options;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    84
	}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    85
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    86
	public void showInfo() throws ConfigurationException, FormatterException {
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    87
		EnumSet<InfoType> commands = options.getShowInfo();
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    88
139
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    89
		boolean formattinNeeded = false;
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
    90
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    91
		for (InfoType infoType : commands) {
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    92
			switch (infoType) {
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    93
				case CONNECTION:
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
    94
				case JDBC_DRIVERS:
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
    95
				case JDBC_PROPERTIES:
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    96
				case DATABASES:
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    97
				case FORMATTERS:
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
    98
				case FORMATTER_PROPERTIES:
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
    99
				case TYPES:
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   100
				case JAVA_PROPERTIES:
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   101
				case ENVIRONMENT_VARIABLES:
139
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   102
					formattinNeeded = true;
101
97b0d9069133 Formatter is now AutoCloseable – so have chance to do some clean up and close the stream, if some error occurs (e.g. lost connection during result set reading)
František Kučera <franta-hg@frantovo.cz>
parents: 93
diff changeset
   103
					break;
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   104
			}
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   105
		}
139
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   106
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   107
		if (formattinNeeded) {
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   108
			try (Formatter f = getFormatter()) {
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   109
				formatter = f;
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   110
				formatter.writeStartBatch();
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   111
				DatabaseDefinition dd = new DatabaseDefinition();
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   112
				dd.setName(CONFIG_DB_NAME);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   113
				formatter.writeStartDatabase(dd);
139
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   114
				showInfos(commands);
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   115
				formatter.writeEndDatabase();
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   116
				formatter.writeEndBatch();
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   117
				formatter.close();
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   118
			}
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   119
		} else {
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   120
			showInfos(commands);
5c0e344c3b60 fix InfoLister: squared infos
František Kučera <franta-hg@frantovo.cz>
parents: 106
diff changeset
   121
		}
101
97b0d9069133 Formatter is now AutoCloseable – so have chance to do some clean up and close the stream, if some error occurs (e.g. lost connection during result set reading)
František Kučera <franta-hg@frantovo.cz>
parents: 93
diff changeset
   122
	}
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   123
101
97b0d9069133 Formatter is now AutoCloseable – so have chance to do some clean up and close the stream, if some error occurs (e.g. lost connection during result set reading)
František Kučera <franta-hg@frantovo.cz>
parents: 93
diff changeset
   124
	private void showInfos(EnumSet<InfoType> commands) throws ConfigurationException, FormatterException {
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   125
		for (InfoType infoType : commands) {
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   126
			infoType.showInfo(this);
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   127
		}
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   128
	}
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   129
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   130
	private void listJavaProperties() throws FormatterException, ConfigurationException {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   131
		ColumnsHeader header = constructHeader(new HeaderField("name", SQLType.VARCHAR), new HeaderField("value", SQLType.VARCHAR));
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   132
		List<Object[]> data = new ArrayList<>();
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   133
		for (Entry<Object, Object> e : System.getProperties().entrySet()) {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   134
			data.add(new Object[]{e.getKey(), e.getValue()});
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   135
		}
201
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   136
		printTable(formatter, header, "-- Java system properties", null, data, 0);
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   137
	}
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   138
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   139
	private void listEnvironmentVariables() throws FormatterException, ConfigurationException {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   140
		ColumnsHeader header = constructHeader(new HeaderField("name", SQLType.VARCHAR), new HeaderField("value", SQLType.VARCHAR));
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   141
		List<Object[]> data = new ArrayList<>();
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   142
		for (Entry<String, String> e : System.getenv().entrySet()) {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   143
			data.add(new Object[]{e.getKey(), e.getValue()});
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   144
		}
201
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   145
		printTable(formatter, header, "-- environment variables", null, data, 0);
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   146
	}
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   147
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   148
	private void listFormatters() throws ConfigurationException, FormatterException {
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   149
		ColumnsHeader header = constructHeader(
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   150
				new HeaderField("name", SQLType.VARCHAR),
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   151
				new HeaderField("built_in", SQLType.BOOLEAN),
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   152
				new HeaderField("default", SQLType.BOOLEAN),
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   153
				new HeaderField("class_name", SQLType.VARCHAR),
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   154
				new HeaderField("valid", SQLType.BOOLEAN));
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   155
		List<Object[]> data = new ArrayList<>();
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   156
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   157
		String defaultFormatter = configurationProvider.getConfiguration().getDefaultFormatter();
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   158
		defaultFormatter = defaultFormatter == null ? Configuration.DEFAULT_FORMATTER : defaultFormatter;
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   159
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   160
		for (FormatterDefinition fd : configurationProvider.getConfiguration().getBuildInFormatters()) {
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   161
			data.add(new Object[]{fd.getName(), true, defaultFormatter.equals(fd.getName()), fd.getClassName(), isInstantiable(fd)});
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   162
		}
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   163
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   164
		for (FormatterDefinition fd : configurationProvider.getConfiguration().getFormatters()) {
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   165
			data.add(new Object[]{fd.getName(), false, defaultFormatter.equals(fd.getName()), fd.getClassName(), isInstantiable(fd)});
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   166
		}
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   167
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   168
		printTable(formatter, header, "-- configured and built-in output formatters", null, data);
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   169
	}
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   170
160
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   171
	private boolean isInstantiable(FormatterDefinition fd) {
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   172
		try {
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   173
			try (ByteArrayOutputStream testStream = new ByteArrayOutputStream()) {
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   174
				fd.getInstance(new FormatterContext(testStream, new Properties(0)));
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   175
				return true;
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   176
			}
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   177
		} catch (Exception e) {
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   178
			log.log(Level.SEVERE, "Unable to create an instance of formatter: " + fd.getName(), e);
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   179
			return false;
84ea4a819fb2 InfoLister: option --list-formatters also tests, if formatter class can be instantiated (thus is valid)
František Kučera <franta-hg@frantovo.cz>
parents: 159
diff changeset
   180
		}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   181
	}
67
10c9b9e54622 option --list-formatters – list configured and built-in formatters
František Kučera <franta-hg@frantovo.cz>
parents: 66
diff changeset
   182
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   183
	private void listFormatterProperties() throws FormatterException, ConfigurationException {
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   184
		for (String formatterName : options.getFormatterNamesToListProperties()) {
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   185
			listFormatterProperties(formatterName);
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   186
		}
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   187
	}
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   188
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   189
	private void listFormatterProperties(String formatterName) throws FormatterException, ConfigurationException {
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   190
		FormatterDefinition fd = configurationProvider.getConfiguration().getFormatter(formatterName);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   191
		try {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   192
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   193
			ColumnsHeader header = constructHeader(
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   194
					new HeaderField("name", SQLType.VARCHAR),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   195
					new HeaderField("type", SQLType.VARCHAR),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   196
					new HeaderField("default", SQLType.VARCHAR),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   197
					new HeaderField("description", SQLType.VARCHAR)
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   198
			);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   199
			List<Object[]> data = new ArrayList<>();
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   200
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   201
			Class<Formatter> formatterClass = (Class<Formatter>) Class.forName(fd.getClassName());
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   202
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   203
			// TOOD: formatterClass.getDeclaredAnnotation(PropertyDeclarations.class); and separate inherited properties
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   204
			// Repeated PropertyDeclaration wrapped in PropertyDeclarations
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   205
			PropertyDeclarations properties = formatterClass.getAnnotation(PropertyDeclarations.class);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   206
			if (properties == null) {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   207
				log.log(Level.WARNING, "Formatter „{0}“  has no declared properties", formatterName);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   208
			} else {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   209
				for (PropertyDeclaration p : properties.value()) {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   210
					data.add(propertyDeclarationToRow(p));
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   211
				}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   212
			}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   213
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   214
			// Single PropertyDeclaration
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   215
			PropertyDeclaration property = formatterClass.getAnnotation(PropertyDeclaration.class);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   216
			if (property != null) {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   217
				data.add(propertyDeclarationToRow(property));
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   218
			}
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   219
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   220
			List<Parameter> parameters = new ArrayList<>();
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   221
			parameters.add(new NamedParameter("formatter", formatterName, SQLType.VARCHAR));
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   222
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   223
			printTable(formatter, header, "-- formatter properties", parameters, data);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   224
		} catch (ClassNotFoundException e) {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   225
			throw new ConfigurationException("Unable to find class " + fd.getClassName() + " of formatter" + fd.getName(), e);
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   226
		}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   227
	}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   228
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   229
	private static Object[] propertyDeclarationToRow(PropertyDeclaration p) {
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   230
		return new Object[]{
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   231
			p.name(),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   232
			CommonProperties.getSimpleTypeName(p.type()),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   233
			p.defaultValue(),
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   234
			p.description()
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   235
		};
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   236
	}
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   237
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   238
	private void listTypes() throws FormatterException, ConfigurationException {
70
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   239
		ColumnsHeader header = constructHeader(new HeaderField("name", SQLType.VARCHAR), new HeaderField("code", SQLType.INTEGER));
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   240
		List<Object[]> data = new ArrayList<>();
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   241
		for (SQLType sqlType : SQLType.values()) {
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   242
			data.add(new Object[]{sqlType.name(), sqlType.getCode()});
02c8eaa425e8 use formatter also for printing info! --list-types
František Kučera <franta-hg@frantovo.cz>
parents: 69
diff changeset
   243
		}
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   244
		printTable(formatter, header, "-- data types", null, data);
93
5a4dbe6f962c Type names in --types option are case insensitive
František Kučera <franta-hg@frantovo.cz>
parents: 91
diff changeset
   245
		log.log(Level.INFO, "Type names in --types option are case insensitive");
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   246
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   247
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   248
	private void listDatabases() throws ConfigurationException, FormatterException {
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   249
		ColumnsHeader header = constructHeader(
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   250
				new HeaderField("database_name", SQLType.VARCHAR),
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   251
				new HeaderField("user_name", SQLType.VARCHAR),
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   252
				new HeaderField("database_url", SQLType.VARCHAR));
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   253
		List<Object[]> data = new ArrayList<>();
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   254
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   255
		final List<DatabaseDefinition> configuredDatabases = configurationProvider.getConfiguration().getDatabases();
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   256
		if (configuredDatabases.isEmpty()) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   257
			log.log(Level.WARNING, "No databases are configured.");
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   258
		} else {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   259
			for (DatabaseDefinition dd : configuredDatabases) {
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   260
				data.add(new Object[]{dd.getName(), dd.getUserName(), dd.getUrl()});
203
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   261
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   262
				final TunnelDefinition tunnel = dd.getTunnel();
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   263
				if (tunnel != null) {
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   264
					log.log(Level.INFO, "Tunnel command: {0}", tunnel.getCommand());
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   265
					for (CommandArgument ca : Functions.notNull(tunnel.getArguments())) {
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   266
						log.log(Level.INFO, "\targument: {0}/{1}", new Object[]{ca.getType(), ca.getValue()});
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   267
					}
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   268
				}
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   269
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   270
			}
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   271
		}
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   272
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   273
		printTable(formatter, header, "-- configured databases", null, data);
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   274
	}
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   275
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   276
	private void listJdbcDrivers() throws FormatterException, ConfigurationException {
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   277
		ColumnsHeader header = constructHeader(
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   278
				new HeaderField("class", SQLType.VARCHAR),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   279
				new HeaderField("version", SQLType.VARCHAR),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   280
				new HeaderField("major", SQLType.INTEGER),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   281
				new HeaderField("minor", SQLType.INTEGER),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   282
				new HeaderField("jdbc_compliant", SQLType.BOOLEAN));
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   283
		List<Object[]> data = new ArrayList<>();
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   284
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   285
		final ServiceLoader<Driver> drivers = ServiceLoader.load(Driver.class);
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   286
		for (Driver d : drivers) {
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   287
			data.add(new Object[]{
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   288
				d.getClass().getName(),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   289
				d.getMajorVersion() + "." + d.getMinorVersion(),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   290
				d.getMajorVersion(),
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   291
				d.getMinorVersion(),
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   292
				d.jdbcCompliant()
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   293
			});
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   294
		}
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   295
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   296
		printTable(formatter, header, "-- discovered JDBC drivers (available on the CLASSPATH)", null, data);
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   297
	}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   298
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   299
	private void listJdbcProperties() throws FormatterException, ConfigurationException {
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   300
		for (String dbName : options.getDatabaseNamesToListProperties()) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   301
			ColumnsHeader header = constructHeader(
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   302
					new HeaderField("property_name", SQLType.VARCHAR),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   303
					new HeaderField("required", SQLType.BOOLEAN),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   304
					new HeaderField("choices", SQLType.ARRAY),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   305
					new HeaderField("configured_value", SQLType.VARCHAR),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   306
					new HeaderField("description", SQLType.VARCHAR));
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   307
			List<Object[]> data = new ArrayList<>();
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   308
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   309
			DatabaseDefinition dd = configurationProvider.getConfiguration().getDatabase(dbName);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   310
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   311
			Driver driver = findDriver(dd);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   312
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   313
			if (driver == null) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   314
				log.log(Level.WARNING, "No JDBC driver was found for DB: {0} with URL: {1}", new Object[]{dd.getName(), dd.getUrl()});
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   315
			} else {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   316
				log.log(Level.INFO, "For DB: {0} was found JDBC driver: {1}", new Object[]{dd.getName(), driver.getClass().getName()});
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   317
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   318
				try {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   319
					DriverPropertyInfo[] propertyInfos = driver.getPropertyInfo(dd.getUrl(), dd.getProperties().getJavaProperties());
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   320
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   321
					Set<String> standardProperties = new HashSet<>();
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   322
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   323
					for (DriverPropertyInfo pi : propertyInfos) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   324
						Array choices = new FakeSqlArray(pi.choices, SQLType.VARCHAR);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   325
						data.add(new Object[]{
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   326
							pi.name,
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   327
							pi.required,
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   328
							choices.getArray() == null ? "" : choices,
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   329
							pi.value == null ? "" : pi.value,
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   330
							pi.description
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   331
						});
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   332
						standardProperties.add(pi.name);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   333
					}
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   334
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   335
					for (Property p : dd.getProperties()) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   336
						if (!standardProperties.contains(p.getName())) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   337
							data.add(new Object[]{
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   338
								p.getName(),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   339
								"",
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   340
								"",
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   341
								p.getValue(),
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   342
								""
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   343
							});
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   344
							log.log(Level.WARNING, "Your configuration contains property „{0}“ not declared by the JDBC driver.", p.getName());
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   345
						}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   346
					}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   347
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   348
				} catch (SQLException e) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   349
					log.log(Level.WARNING, "Error during getting property infos.", e);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   350
				}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   351
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   352
				List<Parameter> parameters = new ArrayList<>();
197
7a2f535017e4 fix typo: databgase → database
František Kučera <franta-hg@frantovo.cz>
parents: 196
diff changeset
   353
				parameters.add(new NamedParameter("database", dbName, SQLType.VARCHAR));
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   354
				parameters.add(new NamedParameter("driver_class", driver.getClass().getName(), SQLType.VARCHAR));
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   355
				parameters.add(new NamedParameter("driver_major_version", driver.getMajorVersion(), SQLType.INTEGER));
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   356
				parameters.add(new NamedParameter("driver_minor_version", driver.getMinorVersion(), SQLType.INTEGER));
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   357
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   358
				printTable(formatter, header, "-- configured and configurable JDBC driver properties", parameters, data);
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   359
			}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   360
		}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   361
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   362
	}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   363
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   364
	private Driver findDriver(DatabaseDefinition dd) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   365
		final ServiceLoader<Driver> drivers = ServiceLoader.load(Driver.class);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   366
		for (Driver d : drivers) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   367
			try {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   368
				if (d.acceptsURL(dd.getUrl())) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   369
					return d;
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   370
				}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   371
			} catch (SQLException e) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   372
				log.log(Level.WARNING, "Error during finding JDBC driver for: " + dd.getName(), e);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   373
			}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   374
		}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   375
		return null;
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   376
	}
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   377
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   378
	/**
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   379
	 * Parallelism for connection testing – maximum concurrent database connections.
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   380
	 */
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   381
	private static final int TESTING_THREAD_COUNT = 64;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   382
	/**
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   383
	 * Time limit for all connection testing threads – particular timeouts per connection will be
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   384
	 * much smaller.
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   385
	 */
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   386
	private static final long TESTING_AWAIT_LIMIT = 1;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   387
	private static final TimeUnit TESTING_AWAIT_UNIT = TimeUnit.DAYS;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   388
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   389
	private void testConnections() throws FormatterException, ConfigurationException {
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   390
		ColumnsHeader header = constructHeader(
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   391
				new HeaderField("database_name", SQLType.VARCHAR),
74
a8444f6a54f3 allow multiple databases connection test in --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 73
diff changeset
   392
				new HeaderField("configured", SQLType.BOOLEAN),
a8444f6a54f3 allow multiple databases connection test in --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 73
diff changeset
   393
				new HeaderField("connected", SQLType.BOOLEAN));
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   394
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   395
		log.log(Level.FINE, "Testing DB connections in {0} threads", TESTING_THREAD_COUNT);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   396
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   397
		ExecutorService es = Executors.newFixedThreadPool(TESTING_THREAD_COUNT);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   398
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   399
		final Formatter currentFormatter = formatter;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   400
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   401
		printHeader(currentFormatter, header, "-- database configuration and connectivity test", null);
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   402
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   403
		for (final String dbName : options.getDatabaseNamesToTest()) {
196
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   404
			preloadDriver(dbName);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   405
		}
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   406
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   407
		for (final String dbName : options.getDatabaseNamesToTest()) {
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   408
			es.submit(() -> {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   409
				final Object[] row = testConnection(dbName);
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   410
				synchronized (currentFormatter) {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   411
					printRow(currentFormatter, row);
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   412
				}
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   413
			}
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   414
			);
74
a8444f6a54f3 allow multiple databases connection test in --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 73
diff changeset
   415
		}
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   416
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   417
		es.shutdown();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   418
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   419
		try {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   420
			log.log(Level.FINEST, "Waiting for test results: {0} {1}", new Object[]{TESTING_AWAIT_LIMIT, TESTING_AWAIT_UNIT.name()});
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   421
			boolean finished = es.awaitTermination(TESTING_AWAIT_LIMIT, TESTING_AWAIT_UNIT);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   422
			if (finished) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   423
				log.log(Level.FINEST, "All testing threads finished in time limit.");
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   424
			} else {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   425
				throw new FormatterException("Exceeded total time limit for test threads – this should never happen");
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   426
			}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   427
		} catch (InterruptedException e) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   428
			throw new FormatterException("Interrupted while waiting for test results", e);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   429
		}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   430
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   431
		printFooter(currentFormatter);
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   432
	}
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   433
196
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   434
	/**
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   435
	 * JDBC driver classes should be preloaded in single thread to avoid deadlocks while doing
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   436
	 * {@linkplain DriverManager#registerDriver(java.sql.Driver)} during parallel connections.
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   437
	 *
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   438
	 * @param dbName
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   439
	 */
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   440
	private void preloadDriver(String dbName) {
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   441
		try {
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   442
			DatabaseDefinition dd = configurationProvider.getConfiguration().getDatabase(dbName);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   443
			Driver driver = findDriver(dd);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   444
			if (driver == null) {
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   445
				log.log(Level.WARNING, "No Driver found for DB: {0}", dbName);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   446
			} else {
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   447
				log.log(Level.FINEST, "Driver preloading for DB: {0} was successfull", dbName);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   448
			}
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   449
		} catch (Exception e) {
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   450
			LogRecord r = new LogRecord(Level.WARNING, "Failed to preload the Driver for DB: {0}");
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   451
			r.setParameters(new Object[]{dbName});
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   452
			r.setThrown(e);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   453
			log.log(r);
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   454
		}
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   455
	}
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   456
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   457
	private Object[] testConnection(String dbName) {
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   458
		log.log(Level.FINE, "Testing connection to database: {0}", dbName);
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   459
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   460
		boolean succesfullyConnected = false;
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   461
		boolean succesfullyConfigured = false;
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   462
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   463
		try {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   464
			DatabaseDefinition dd = configurationProvider.getConfiguration().getDatabase(dbName);
75
43aa4625ab7e throw ConfigurationException instead of returning null, if database or formatter of given name is not configured
František Kučera <franta-hg@frantovo.cz>
parents: 74
diff changeset
   465
			log.log(Level.FINE, "Database definition was loaded from configuration");
43aa4625ab7e throw ConfigurationException instead of returning null, if database or formatter of given name is not configured
František Kučera <franta-hg@frantovo.cz>
parents: 74
diff changeset
   466
			succesfullyConfigured = true;
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 104
diff changeset
   467
			try (DatabaseConnection dc = dd.connect(options.getDatabaseProperties())) {
75
43aa4625ab7e throw ConfigurationException instead of returning null, if database or formatter of given name is not configured
František Kučera <franta-hg@frantovo.cz>
parents: 74
diff changeset
   468
				succesfullyConnected = dc.test();
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   469
			}
75
43aa4625ab7e throw ConfigurationException instead of returning null, if database or formatter of given name is not configured
František Kučera <franta-hg@frantovo.cz>
parents: 74
diff changeset
   470
			log.log(Level.FINE, "Database connection test was successful");
196
76da38d49e81 parallel connection testing: avoid deadlocks – preload drivers + better exception handling and logging
František Kučera <franta-hg@frantovo.cz>
parents: 183
diff changeset
   471
		} catch (ConfigurationException | SQLException | RuntimeException e) {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   472
			log.log(Level.SEVERE, "Error during testing connection " + dbName, e);
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   473
		}
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   474
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   475
		return new Object[]{dbName, succesfullyConfigured, succesfullyConnected};
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   476
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   477
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   478
	private void printResource(String fileName) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   479
		try (BufferedReader reader = new BufferedReader(new InputStreamReader(getClass().getClassLoader().getResourceAsStream(fileName)))) {
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   480
			while (true) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   481
				String line = reader.readLine();
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   482
				if (line == null) {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   483
					break;
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   484
				} else {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   485
					println(line);
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   486
				}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   487
			}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   488
		} catch (Exception e) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   489
			log.log(Level.SEVERE, "Unable to print this info. Please see our website for it: " + Constants.WEBSITE, e);
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   490
		}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   491
	}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   492
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   493
	private void println(String line) {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   494
		out.println(line);
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   495
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   496
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   497
	private void printTable(Formatter formatter, ColumnsHeader header, String sql, List<Parameter> parameters, List<Object[]> data) throws ConfigurationException, FormatterException {
201
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   498
		printTable(formatter, header, sql, parameters, data, null);
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   499
	}
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   500
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   501
	private void printTable(Formatter formatter, ColumnsHeader header, String sql, List<Parameter> parameters, List<Object[]> data, final Integer sortByColumn) throws ConfigurationException, FormatterException {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   502
		printHeader(formatter, header, sql, parameters);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   503
201
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   504
		if (sortByColumn != null) {
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   505
			Collections.sort(data, new Comparator<Object[]>() {
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   506
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   507
				@Override
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   508
				public int compare(Object[] o1, Object[] o2) {
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   509
					String s1 = String.valueOf(o1[sortByColumn]);
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   510
					String s2 = String.valueOf(o2[sortByColumn]);
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   511
					return s1.compareTo(s2);
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   512
				}
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   513
			});
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   514
		}
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   515
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   516
		for (Object[] row : data) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   517
			printRow(formatter, row);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   518
		}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   519
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   520
		printFooter(formatter);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   521
	}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   522
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   523
	private void printHeader(Formatter formatter, ColumnsHeader header, String sql, List<Parameter> parameters) {
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   524
		formatter.writeStartStatement();
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   525
		if (sql != null) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   526
			formatter.writeQuery(sql);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   527
			if (parameters != null) {
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   528
				formatter.writeParameters(parameters);
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   529
			}
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   530
		}
142
da1e38386d84 Formatters: structural change – new level „statement“ → query and parameters are no more duplicated into each result set or updates result
František Kučera <franta-hg@frantovo.cz>
parents: 139
diff changeset
   531
		formatter.writeStartResultSet(header);
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   532
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   533
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   534
	private void printRow(Formatter formatter, Object[] row) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   535
		formatter.writeStartRow();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   536
		for (Object cell : row) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   537
			formatter.writeColumnValue(cell);
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   538
		}
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   539
		formatter.writeEndRow();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   540
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   541
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   542
	private void printFooter(Formatter formatter) {
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   543
		formatter.writeEndResultSet();
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   544
		formatter.writeEndStatement();
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   545
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   546
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   547
	private Formatter getFormatter() throws ConfigurationException, FormatterException {
89
98d18e9a357b InfoLister (configuration listings) will use TabularPrefetchingFormatter as default
František Kučera <franta-hg@frantovo.cz>
parents: 75
diff changeset
   548
		String formatterName = options.getFormatterName();
98d18e9a357b InfoLister (configuration listings) will use TabularPrefetchingFormatter as default
František Kučera <franta-hg@frantovo.cz>
parents: 75
diff changeset
   549
		formatterName = formatterName == null ? Configuration.DEFAULT_FORMATTER_PREFETCHING : formatterName;
98d18e9a357b InfoLister (configuration listings) will use TabularPrefetchingFormatter as default
František Kučera <franta-hg@frantovo.cz>
parents: 75
diff changeset
   550
		FormatterDefinition fd = configurationProvider.getConfiguration().getFormatter(formatterName);
104
245f1b88a3e6 formatter/database properties
František Kučera <franta-hg@frantovo.cz>
parents: 101
diff changeset
   551
		FormatterContext context = new FormatterContext(out, options.getFormatterProperties());
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   552
		return fd.getInstance(context);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   553
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   554
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   555
	private ColumnsHeader constructHeader(HeaderField... fields) throws FormatterException {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   556
		try {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   557
			RowSetMetaDataImpl metaData = new RowSetMetaDataImpl();
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   558
			metaData.setColumnCount(fields.length);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   559
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   560
			for (int i = 0; i < fields.length; i++) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   561
				HeaderField hf = fields[i];
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   562
				int sqlIndex = i + 1;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   563
				metaData.setColumnName(sqlIndex, hf.name);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   564
				metaData.setColumnLabel(sqlIndex, hf.name);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   565
				metaData.setColumnType(sqlIndex, hf.type.getCode());
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   566
				metaData.setColumnTypeName(sqlIndex, hf.type.name());
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   567
			}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   568
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   569
			return new ColumnsHeader(metaData);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   570
		} catch (SQLException e) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   571
			throw new FormatterException("Error while constructing table headers", e);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   572
		}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   573
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   574
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   575
	private static class HeaderField {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   576
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   577
		String name;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   578
		SQLType type;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   579
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   580
		public HeaderField(String name, SQLType type) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   581
			this.name = name;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   582
			this.type = type;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   583
		}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   584
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   585
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   586
	public enum InfoType {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   587
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   588
		HELP {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   589
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   590
					public void showInfo(InfoLister infoLister) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   591
						infoLister.printResource(Constants.HELP_FILE);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   592
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   593
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   594
		VERSION {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   595
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   596
					public void showInfo(InfoLister infoLister) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   597
						infoLister.printResource(Constants.VERSION_FILE);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   598
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   599
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   600
		LICENSE {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   601
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   602
					public void showInfo(InfoLister infoLister) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   603
						infoLister.printResource(Constants.LICENSE_FILE);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   604
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   605
				},
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   606
		JAVA_PROPERTIES {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   607
					@Override
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   608
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   609
						infoLister.listJavaProperties();
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   610
					}
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   611
				},
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   612
		ENVIRONMENT_VARIABLES {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   613
					@Override
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   614
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   615
						infoLister.listEnvironmentVariables();
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   616
					}
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   617
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   618
		FORMATTERS {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   619
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   620
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   621
						infoLister.listFormatters();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   622
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   623
				},
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   624
		FORMATTER_PROPERTIES {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   625
					@Override
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   626
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   627
						infoLister.listFormatterProperties();
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   628
					}
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   629
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   630
		TYPES {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   631
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   632
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   633
						infoLister.listTypes();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   634
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   635
				},
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   636
		JDBC_DRIVERS {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   637
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   638
					public void showInfo(InfoLister infoLister) throws ConfigurationException, FormatterException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   639
						infoLister.listJdbcDrivers();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   640
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   641
				},
159
9632b23df30c InfoLister: list configured and configurable JDBC driver properties – option: --list-jdbc-properties
František Kučera <franta-hg@frantovo.cz>
parents: 158
diff changeset
   642
		JDBC_PROPERTIES {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   643
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   644
					public void showInfo(InfoLister infoLister) throws ConfigurationException, FormatterException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   645
						infoLister.listJdbcProperties();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   646
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   647
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   648
		DATABASES {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   649
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   650
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   651
						infoLister.listDatabases();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   652
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   653
				},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   654
		CONNECTION {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   655
					@Override
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   656
					public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   657
						infoLister.testConnections();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   658
					}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   659
				};
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   660
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   661
		public abstract void showInfo(InfoLister infoLister) throws ConfigurationException, FormatterException;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   662
	}
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   663
}