java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 26 Dec 2013 00:58:00 +0100
branchv_0
changeset 63 3b9ec9c23a37
parent 56 29f45ab3b959
child 64 fcc499518dc7
permissions -rw-r--r--
validation: test if prefix/suffix are valid regular expressions
franta-hg@16
     1
/**
franta-hg@16
     2
 * SQL-DK
franta-hg@16
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@16
     4
 *
franta-hg@16
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@16
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@16
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@16
     8
 * (at your option) any later version.
franta-hg@16
     9
 *
franta-hg@16
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@16
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@16
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@16
    13
 * GNU General Public License for more details.
franta-hg@16
    14
 *
franta-hg@16
    15
 * You should have received a copy of the GNU General Public License
franta-hg@16
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@16
    17
 */
franta-hg@1
    18
package info.globalcode.sql.dk;
franta-hg@1
    19
franta-hg@26
    20
import info.globalcode.sql.dk.configuration.ConfigurationProvider;
franta-hg@20
    21
import info.globalcode.sql.dk.CLIOptions.MODE;
franta-hg@26
    22
import info.globalcode.sql.dk.configuration.Configuration;
franta-hg@33
    23
import info.globalcode.sql.dk.configuration.ConfigurationException;
franta-hg@34
    24
import info.globalcode.sql.dk.configuration.DatabaseDefinition;
franta-hg@34
    25
import info.globalcode.sql.dk.configuration.FormatterDefinition;
franta-hg@34
    26
import info.globalcode.sql.dk.formatting.Formatter;
franta-hg@34
    27
import info.globalcode.sql.dk.formatting.FormatterContext;
franta-hg@34
    28
import info.globalcode.sql.dk.formatting.FormatterException;
franta-hg@33
    29
import java.io.IOException;
franta-hg@34
    30
import java.sql.SQLException;
franta-hg@13
    31
import java.util.logging.Level;
franta-hg@63
    32
import java.util.logging.LogRecord;
franta-hg@13
    33
import java.util.logging.Logger;
franta-hg@33
    34
import javax.xml.bind.JAXBContext;
franta-hg@33
    35
import javax.xml.bind.Unmarshaller;
franta-hg@13
    36
franta-hg@1
    37
/**
franta-hg@1
    38
 *
franta-hg@1
    39
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
    40
 */
franta-hg@20
    41
public class CLIStarter implements ConfigurationProvider {
franta-hg@1
    42
franta-hg@13
    43
	private static final Logger log = Logger.getLogger(CLIStarter.class.getName());
franta-hg@56
    44
	private static final int EXIT_SUCCESS = 0;
franta-hg@56
    45
	private static final int EXIT_EXPECTED_ERROR = 3;
franta-hg@56
    46
	private static final int EXIT_SQL_ERROR = 4;
franta-hg@20
    47
	private CLIOptions options;
franta-hg@20
    48
	private Configuration configuration;
franta-hg@13
    49
franta-hg@1
    50
	public static void main(String[] args) {
franta-hg@55
    51
		log.log(Level.FINE, "Starting " + Constants.PROGRAM_NAME);
franta-hg@56
    52
		int exitCode = EXIT_EXPECTED_ERROR;
franta-hg@63
    53
franta-hg@21
    54
		if (args.length == 0) {
franta-hg@21
    55
			args = new String[]{CLIParser.Tokens.INFO_HELP};
franta-hg@21
    56
		}
franta-hg@21
    57
franta-hg@13
    58
		try {
franta-hg@13
    59
			CLIParser parser = new CLIParser();
franta-hg@13
    60
			CLIOptions options = parser.parseOptions(args);
franta-hg@14
    61
			options.validate();
franta-hg@20
    62
			CLIStarter starter = new CLIStarter(options);
franta-hg@21
    63
			starter.installDefaultConfiguration();
franta-hg@20
    64
			starter.process();
franta-hg@55
    65
			log.log(Level.FINE, "All done");
franta-hg@56
    66
			exitCode = EXIT_SUCCESS;
franta-hg@13
    67
		} catch (CLIParserException e) {
franta-hg@14
    68
			log.log(Level.SEVERE, "Unable to parse CLI options", e);
franta-hg@14
    69
		} catch (InvalidOptionsException e) {
franta-hg@14
    70
			log.log(Level.SEVERE, "Invalid CLI options", e);
franta-hg@48
    71
			for (InvalidOptionsException.OptionProblem p : e.getProblems()) {
franta-hg@63
    72
				LogRecord r = new LogRecord(Level.SEVERE, "Option problem: {0}");
franta-hg@63
    73
				r.setThrown(p.getException());
franta-hg@63
    74
				r.setParameters(new Object[]{p.getDescription()});
franta-hg@63
    75
				log.log(r);
franta-hg@48
    76
			}
franta-hg@34
    77
		} catch (ConfigurationException e) {
franta-hg@34
    78
			log.log(Level.SEVERE, "Configuration problem", e);
franta-hg@34
    79
		} catch (SQLException e) {
franta-hg@34
    80
			log.log(Level.SEVERE, "SQL problem", e);
franta-hg@56
    81
			exitCode = EXIT_SQL_ERROR;
franta-hg@34
    82
		} catch (FormatterException e) {
franta-hg@34
    83
			log.log(Level.SEVERE, "Formatting problem", e);
franta-hg@13
    84
		}
franta-hg@56
    85
franta-hg@56
    86
		System.exit(exitCode);
franta-hg@4
    87
	}
franta-hg@20
    88
franta-hg@20
    89
	public CLIStarter(CLIOptions options) {
franta-hg@20
    90
		this.options = options;
franta-hg@20
    91
	}
franta-hg@20
    92
franta-hg@34
    93
	private void process() throws ConfigurationException, SQLException, FormatterException {
franta-hg@20
    94
		/** Show info */
franta-hg@20
    95
		if (!options.getShowInfo().isEmpty()) {
franta-hg@20
    96
			InfoLister infoLister = new InfoLister(System.err, this);
franta-hg@20
    97
			infoLister.showInfo(options);
franta-hg@20
    98
		}
franta-hg@20
    99
franta-hg@20
   100
		MODE mode = options.getMode();
franta-hg@20
   101
		switch (mode) {
franta-hg@20
   102
			case QUERY_NOW:
franta-hg@34
   103
				processQueryNow();
franta-hg@20
   104
				break;
franta-hg@20
   105
			case PREPARE_BATCH:
franta-hg@34
   106
				processPrepareBatch();
franta-hg@20
   107
				break;
franta-hg@20
   108
			case EXECUTE_BATCH:
franta-hg@34
   109
				processExecuteBatch();
franta-hg@20
   110
				break;
franta-hg@20
   111
			case JUST_SHOW_INFO:
franta-hg@20
   112
				// already done above
franta-hg@20
   113
				break;
franta-hg@20
   114
			default:
franta-hg@20
   115
				log.log(Level.SEVERE, "Unsupported mode: {0}", mode);
franta-hg@20
   116
				break;
franta-hg@20
   117
		}
franta-hg@20
   118
	}
franta-hg@20
   119
franta-hg@34
   120
	private void processQueryNow() throws ConfigurationException, SQLException, FormatterException {
franta-hg@34
   121
		DatabaseDefinition dd = getConfiguration().getDatabase(options.getDatabaseName());
franta-hg@34
   122
		if (dd == null) {
franta-hg@34
   123
			throw new ConfigurationException("Database is not configured: " + options.getDatabaseName());
franta-hg@34
   124
		} else {
franta-hg@34
   125
			FormatterDefinition fd = configuration.getFormatter(options.getFormatterName());
franta-hg@34
   126
			if (fd == null) {
franta-hg@36
   127
				throw new ConfigurationException("Formatter is not configured: " + options.getFormatterName());
franta-hg@34
   128
			} else {
franta-hg@42
   129
				try (DatabaseConnection c = dd.connect()) {
franta-hg@55
   130
					log.log(Level.FINE, "Database connected");
franta-hg@42
   131
					Formatter f = fd.getInstance(new FormatterContext(options.getOutputStream()));
franta-hg@42
   132
					c.executeQuery(options.getSQLCommand(), f);
franta-hg@42
   133
				}
franta-hg@34
   134
			}
franta-hg@34
   135
		}
franta-hg@34
   136
	}
franta-hg@34
   137
franta-hg@34
   138
	private void processPrepareBatch() {
franta-hg@34
   139
	}
franta-hg@34
   140
franta-hg@34
   141
	private void processExecuteBatch() {
franta-hg@34
   142
	}
franta-hg@34
   143
franta-hg@20
   144
	@Override
franta-hg@33
   145
	public Configuration getConfiguration() throws ConfigurationException {
franta-hg@20
   146
		if (configuration == null) {
franta-hg@20
   147
			configuration = loadConfiguration();
franta-hg@20
   148
		}
franta-hg@20
   149
		return configuration;
franta-hg@20
   150
	}
franta-hg@20
   151
franta-hg@34
   152
	private void installDefaultConfiguration() throws ConfigurationException {
franta-hg@33
   153
		Constants.DIR.mkdir();
franta-hg@33
   154
franta-hg@33
   155
		if (Constants.CONFIG_FILE.exists()) {
franta-hg@55
   156
			log.log(Level.FINER, "Config file already exists: {0}", Constants.CONFIG_FILE);
franta-hg@33
   157
		} else {
franta-hg@33
   158
			try {
franta-hg@33
   159
				Functions.installResource(Constants.EXAMPLE_CONFIG_FILE, Constants.CONFIG_FILE);
franta-hg@55
   160
				log.log(Level.FINE, "Installing default config file: {0}", Constants.CONFIG_FILE);
franta-hg@33
   161
			} catch (IOException e) {
franta-hg@34
   162
				throw new ConfigurationException("Unable to write example configuration to " + Constants.CONFIG_FILE, e);
franta-hg@33
   163
			}
franta-hg@33
   164
		}
franta-hg@20
   165
	}
franta-hg@20
   166
franta-hg@33
   167
	private Configuration loadConfiguration() throws ConfigurationException {
franta-hg@33
   168
		try {
franta-hg@33
   169
			JAXBContext jaxb = JAXBContext.newInstance(Configuration.class);
franta-hg@33
   170
			Unmarshaller u = jaxb.createUnmarshaller();
franta-hg@33
   171
			return (Configuration) u.unmarshal(Constants.CONFIG_FILE);
franta-hg@33
   172
		} catch (Exception e) {
franta-hg@33
   173
			throw new ConfigurationException("Unable to load configuration from " + Constants.CONFIG_FILE, e);
franta-hg@33
   174
		}
franta-hg@20
   175
	}
franta-hg@1
   176
}