java/sql-dk/src/main/java/info/globalcode/sql/dk/InfoLister.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 246 277c18b48762
permissions -rw-r--r--
fix license version: GNU GPLv3
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
250
aae5009bd0af fix license version: GNU GPLv3
František Kučera <franta-hg@frantovo.cz>
parents: 246
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
16
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     8
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
     9
 * 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
    10
 * 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
    11
 * 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
    12
 * GNU General Public License for more details.
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    13
 *
5b8fcd35d4d6 license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    14
 * 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
    15
 * 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
    16
 */
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
package info.globalcode.sql.dk;
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
203
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
    19
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
    20
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
    21
import info.globalcode.sql.dk.configuration.ConfigurationException;
26
4ec8e5534eb9 configuration basics
František Kučera <franta-hg@frantovo.cz>
parents: 20
diff changeset
    22
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
    23
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
    24
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
    25
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
    26
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
    27
import info.globalcode.sql.dk.configuration.PropertyDeclaration;
203
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
    28
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
    29
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
    30
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
    31
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
    32
import info.globalcode.sql.dk.formatting.Formatter;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    33
import info.globalcode.sql.dk.formatting.FormatterContext;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
    34
import info.globalcode.sql.dk.formatting.FormatterException;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    35
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
    36
import java.io.ByteArrayOutputStream;
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
    37
import java.io.InputStreamReader;
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
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
    39
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
    40
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
    41
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
    42
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
    43
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
    44
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
    45
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
    46
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
    47
import java.util.EnumSet;
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
    48
import java.util.HashMap;
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
    49
import java.util.HashSet;
66
6e28893eaada option --list-databases list configured databases
František Kučera <franta-hg@frantovo.cz>
parents: 65
diff changeset
    50
import java.util.List;
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
    51
import java.util.Map;
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()) {
246
277c18b48762 support custom relation names in the XML formatter (added --relation CLI option)
František Kučera <franta-hg@frantovo.cz>
parents: 238
diff changeset
   174
				fd.getInstance(new FormatterContext(testStream, new Properties(0), null));
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
   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
216
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   193
			// currently only for debugging purposes
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   194
			// TODO: introduce --info-lister-property or generic filtering capability in printTable() ?
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   195
			boolean printDeclaredIn = options.getFormatterProperties().getBoolean("InfoLister:print:declared_in", false);
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   196
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   197
			List<HeaderField> headerFields = new ArrayList<>();
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   198
			headerFields.add(new HeaderField("name", SQLType.VARCHAR));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   199
			headerFields.add(new HeaderField("type", SQLType.VARCHAR));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   200
			headerFields.add(new HeaderField("default", SQLType.VARCHAR));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   201
			headerFields.add(new HeaderField("description", SQLType.VARCHAR));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   202
			if (printDeclaredIn) {
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   203
				headerFields.add(new HeaderField("declared_in", SQLType.VARCHAR));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   204
			}
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   205
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   206
			ColumnsHeader header = constructHeader(headerFields.toArray(new HeaderField[0]));
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   207
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   208
			Map<String, Object[]> data = new HashMap<>();
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   209
			Class<Formatter> formatterClass = (Class<Formatter>) Class.forName(fd.getClassName());
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   210
			List<Class<? extends Formatter>> hierarchy = Functions.getClassHierarchy(formatterClass, Formatter.class);
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   211
			Collections.reverse(hierarchy);
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   212
			hierarchy.stream().forEach((c) -> {
220
0bc544b38cfa bash-completion: --formatter-property names
František Kučera <franta-hg@frantovo.cz>
parents: 216
diff changeset
   213
				for (PropertyDeclaration p : Functions.getPropertyDeclarations(c)) {
216
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   214
					data.put(p.name(), propertyDeclarationToRow(p, c, printDeclaredIn));
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   215
				}
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   216
			});
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   217
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   218
			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
   219
			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
   220
214
1fb3c7953d8a property annotations: first woking version of --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 212
diff changeset
   221
			printTable(formatter, header, "-- formatter properties", parameters, new ArrayList<>(data.values()));
212
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   222
		} 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
   223
			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
   224
		}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   225
	}
d154d6012cbe property annotations: first version (inherited properties are not working yet)
František Kučera <franta-hg@frantovo.cz>
parents: 211
diff changeset
   226
216
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   227
	private static Object[] propertyDeclarationToRow(PropertyDeclaration p, Class formatterClass, boolean printDeclaredIn) {
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   228
		List list = new ArrayList();
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   229
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   230
		list.add(p.name());
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   231
		list.add(CommonProperties.getSimpleTypeName(p.type()));
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   232
		list.add(p.defaultValue());
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   233
		list.add(p.description());
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   234
		if (printDeclaredIn) {
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   235
			list.add(formatterClass.getName());
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   236
		}
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   237
0eb9aec16bf4 --list-formatter-properties: optional column declared_in
František Kučera <franta-hg@frantovo.cz>
parents: 215
diff changeset
   238
		return list.toArray();
211
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   239
	}
b5148f646278 property annotations: dummy InfoLister table
František Kučera <franta-hg@frantovo.cz>
parents: 210
diff changeset
   240
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   241
	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
   242
		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
   243
		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
   244
		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
   245
			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
   246
		}
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   247
		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
   248
		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
   249
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   250
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   251
	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
   252
		ColumnsHeader header = constructHeader(
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   253
				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
   254
				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
   255
				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
   256
		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
   257
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   258
		final List<DatabaseDefinition> configuredDatabases = configurationProvider.getConfiguration().getDatabases();
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   259
		if (configuredDatabases.isEmpty()) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   260
			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
   261
		} else {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   262
			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
   263
				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
   264
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   265
				final TunnelDefinition tunnel = dd.getTunnel();
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   266
				if (tunnel != null) {
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   267
					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
   268
					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
   269
						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
   270
					}
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   271
				}
504c4ba56d1c connection tunnelling: configuration and logging
František Kučera <franta-hg@frantovo.cz>
parents: 201
diff changeset
   272
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   273
			}
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   274
		}
72
fc9fc1f26b88 formatted output for: --list-formatters --list-databases
František Kučera <franta-hg@frantovo.cz>
parents: 70
diff changeset
   275
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   276
		printTable(formatter, header, "-- configured databases", null, data);
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   277
	}
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   278
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   279
	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
   280
		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
   281
				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
   282
				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
   283
				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
   284
				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
   285
				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
   286
		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
   287
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   288
		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
   289
		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
   290
			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
   291
				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
   292
				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
   293
				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
   294
				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
   295
				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
   296
			});
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   297
		}
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   298
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   299
		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
   300
	}
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
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   302
	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
   303
		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
   304
			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
   305
					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
   306
					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
   307
					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
   308
					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
   309
					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
   310
			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
   311
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
			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
   313
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
			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
   315
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
			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
   317
				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
   318
			} 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
   319
				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
   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
				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
   322
					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
   323
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
					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
   325
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
					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
   327
						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
   328
						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
   329
							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
   330
							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
   331
							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
   332
							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
   333
							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
   334
						});
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
						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
   336
					}
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   337
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
   338
					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
   339
						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
   340
							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
   341
								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
   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
								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
   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
							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
   348
						}
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
					}
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
				} 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
   352
					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
   353
				}
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
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
				List<Parameter> parameters = new ArrayList<>();
197
7a2f535017e4 fix typo: databgase → database
František Kučera <franta-hg@frantovo.cz>
parents: 196
diff changeset
   356
				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
   357
				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
   358
				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
   359
				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
   360
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   361
				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
   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
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
	}
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
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
	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
   368
		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
   369
		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
   370
			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
   371
				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
   372
					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
   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
			} 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
   375
				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
   376
			}
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
   377
		}
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
   378
		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
   379
	}
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   380
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   381
	/**
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   382
	 * 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
   383
	 */
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   384
	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
   385
	/**
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   386
	 * 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
   387
	 * much smaller.
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   388
	 */
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   389
	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
   390
	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
   391
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   392
	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
   393
		ColumnsHeader header = constructHeader(
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   394
				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
   395
				new HeaderField("configured", SQLType.BOOLEAN),
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   396
				new HeaderField("connected", SQLType.BOOLEAN),
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   397
				new HeaderField("product_name", SQLType.VARCHAR),
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   398
				new HeaderField("product_version", SQLType.VARCHAR));
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   399
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   400
		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
   401
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   402
		ExecutorService es = Executors.newFixedThreadPool(TESTING_THREAD_COUNT);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   403
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   404
		final Formatter currentFormatter = formatter;
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   405
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   406
		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
   407
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   408
		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
   409
			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
   410
		}
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
   411
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
   412
		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
   413
			es.submit(() -> {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   414
				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
   415
				synchronized (currentFormatter) {
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   416
					printRow(currentFormatter, row);
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   417
				}
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   418
			}
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   419
			);
74
a8444f6a54f3 allow multiple databases connection test in --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 73
diff changeset
   420
		}
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   421
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   422
		es.shutdown();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   423
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   424
		try {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   425
			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
   426
			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
   427
			if (finished) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   428
				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
   429
			} else {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   430
				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
   431
			}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   432
		} catch (InterruptedException e) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   433
			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
   434
		}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   435
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   436
		printFooter(currentFormatter);
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   437
	}
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   438
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
   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
	 * 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
   441
	 * {@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
   442
	 *
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
	 * @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
   444
	 */
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
	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
   446
		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
   447
			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
   448
			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
   449
			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
   450
				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
   451
			} 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
   452
				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
   453
			}
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
		} 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
   455
			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
   456
			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
   457
			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
   458
			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
   459
		}
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
   460
	}
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
   461
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   462
	private Object[] testConnection(String dbName) {
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   463
		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
   464
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   465
		boolean succesfullyConnected = false;
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   466
		boolean succesfullyConfigured = false;
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   467
		String productName = null;
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   468
		String productVersion = null;
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   469
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   470
		try {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   471
			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
   472
			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
   473
			succesfullyConfigured = true;
106
e9c3583580c8 use database properties
František Kučera <franta-hg@frantovo.cz>
parents: 104
diff changeset
   474
			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
   475
				succesfullyConnected = dc.test();
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   476
				productName = dc.getProductName();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   477
				productVersion = dc.getProductVersion();
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   478
			}
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
   479
			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
   480
		} catch (ConfigurationException | SQLException | RuntimeException e) {
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   481
			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
   482
		}
73
d32fd50d3c2c formatted output for: --test-connection
František Kučera <franta-hg@frantovo.cz>
parents: 72
diff changeset
   483
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   484
		return new Object[]{dbName, succesfullyConfigured, succesfullyConnected, productName, productVersion};
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   485
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   486
210
f8aa3686d512 InfoLister: private methods + formatter for formatter properties
František Kučera <franta-hg@frantovo.cz>
parents: 209
diff changeset
   487
	private void printResource(String fileName) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   488
		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
   489
			while (true) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   490
				String line = reader.readLine();
17
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   491
				if (line == null) {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   492
					break;
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   493
				} else {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   494
					println(line);
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   495
				}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   496
			}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   497
		} catch (Exception e) {
18
7900bb1666f6 version info: option --version
František Kučera <franta-hg@frantovo.cz>
parents: 17
diff changeset
   498
			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
   499
		}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   500
	}
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   501
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   502
	private void println(String line) {
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   503
		out.println(line);
d8ab8aece6f2 license option: --license
František Kučera <franta-hg@frantovo.cz>
parents: 16
diff changeset
   504
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   505
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   506
	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
   507
		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
   508
	}
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
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
	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
   511
		printHeader(formatter, header, sql, parameters);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   512
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
   513
		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
   514
			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
   515
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   516
				@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
   517
				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
   518
					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
   519
					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
   520
					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
   521
				}
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   522
			});
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   523
		}
d3db5a72a089 InfoLister: sort rows in --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 200
diff changeset
   524
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   525
		for (Object[] row : data) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   526
			printRow(formatter, row);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   527
		}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   528
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   529
		printFooter(formatter);
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   530
	}
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   531
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   532
	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
   533
		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
   534
		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
   535
			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
   536
			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
   537
				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
   538
			}
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
   539
		}
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
   540
		formatter.writeStartResultSet(header);
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   541
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   542
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   543
	private void printRow(Formatter formatter, Object[] row) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   544
		formatter.writeStartRow();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   545
		for (Object cell : row) {
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   546
			formatter.writeColumnValue(cell);
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   547
		}
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   548
		formatter.writeEndRow();
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   549
	}
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   550
183
1bb5abfb0655 parallelized DB connection testing
František Kučera <franta-hg@frantovo.cz>
parents: 161
diff changeset
   551
	private void printFooter(Formatter formatter) {
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   552
		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
   553
		formatter.writeEndStatement();
69
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
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   556
	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
   557
		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
   558
		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
   559
		FormatterDefinition fd = configurationProvider.getConfiguration().getFormatter(formatterName);
246
277c18b48762 support custom relation names in the XML formatter (added --relation CLI option)
František Kučera <franta-hg@frantovo.cz>
parents: 238
diff changeset
   560
		FormatterContext context = new FormatterContext(out, options.getFormatterProperties(), options.getRelationNames());
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   561
		return fd.getInstance(context);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   562
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   563
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   564
	private ColumnsHeader constructHeader(HeaderField... fields) throws FormatterException {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   565
		try {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   566
			RowSetMetaDataImpl metaData = new RowSetMetaDataImpl();
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   567
			metaData.setColumnCount(fields.length);
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
			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
   570
				HeaderField hf = fields[i];
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   571
				int sqlIndex = i + 1;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   572
				metaData.setColumnName(sqlIndex, hf.name);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   573
				metaData.setColumnLabel(sqlIndex, hf.name);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   574
				metaData.setColumnType(sqlIndex, hf.type.getCode());
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   575
				metaData.setColumnTypeName(sqlIndex, hf.type.name());
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
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   578
			return new ColumnsHeader(metaData);
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   579
		} catch (SQLException e) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   580
			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
   581
		}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   582
	}
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
	private static class HeaderField {
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
		String name;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   587
		SQLType type;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   588
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   589
		public HeaderField(String name, SQLType type) {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   590
			this.name = name;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   591
			this.type = type;
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   592
		}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   593
	}
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   594
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   595
	public enum InfoType {
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   596
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   597
		HELP {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   598
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   599
			public void showInfo(InfoLister infoLister) {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   600
				infoLister.printResource(Constants.HELP_FILE);
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   601
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   602
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   603
		VERSION {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   604
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   605
			public void showInfo(InfoLister infoLister) {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   606
				infoLister.printResource(Constants.VERSION_FILE);
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   607
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   608
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   609
		LICENSE {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   610
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   611
			public void showInfo(InfoLister infoLister) {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   612
				infoLister.printResource(Constants.LICENSE_FILE);
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   613
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   614
		},
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   615
		JAVA_PROPERTIES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   616
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   617
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   618
				infoLister.listJavaProperties();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   619
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   620
		},
200
2e351d7c26c4 InfoLister: new listings: --list-java-properties and --list-environment-variables
František Kučera <franta-hg@frantovo.cz>
parents: 197
diff changeset
   621
		ENVIRONMENT_VARIABLES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   622
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   623
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   624
				infoLister.listEnvironmentVariables();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   625
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   626
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   627
		FORMATTERS {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   628
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   629
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   630
				infoLister.listFormatters();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   631
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   632
		},
209
8dfe037b3274 property annotations: grounds for --list-formatter-properties
František Kučera <franta-hg@frantovo.cz>
parents: 203
diff changeset
   633
		FORMATTER_PROPERTIES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   634
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   635
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   636
				infoLister.listFormatterProperties();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   637
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   638
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   639
		TYPES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   640
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   641
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   642
				infoLister.listTypes();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   643
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   644
		},
158
770b5009ec42 InfoLister: print list of available JDBC drivers: --list-jdbc-drivers
František Kučera <franta-hg@frantovo.cz>
parents: 155
diff changeset
   645
		JDBC_DRIVERS {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   646
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   647
			public void showInfo(InfoLister infoLister) throws ConfigurationException, FormatterException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   648
				infoLister.listJdbcDrivers();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   649
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   650
		},
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
   651
		JDBC_PROPERTIES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   652
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   653
			public void showInfo(InfoLister infoLister) throws ConfigurationException, FormatterException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   654
				infoLister.listJdbcProperties();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   655
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   656
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   657
		DATABASES {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   658
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   659
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   660
				infoLister.listDatabases();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   661
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   662
		},
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   663
		CONNECTION {
229
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   664
			@Override
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   665
			public void showInfo(InfoLister infoLister) throws FormatterException, ConfigurationException {
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   666
				infoLister.testConnections();
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   667
			}
7699133f5a01 InfoLister/test: show also database server name and version
František Kučera <franta-hg@frantovo.cz>
parents: 220
diff changeset
   668
		};
69
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   669
0befec5034c2 InfoLister, InfoType: switch → enum
František Kučera <franta-hg@frantovo.cz>
parents: 67
diff changeset
   670
		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
   671
	}
14
189b1260b942 show info basics
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
   672
}