java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Dec 2013 20:38:50 +0100
branchv_0
changeset 26 4ec8e5534eb9
parent 21 d42ed0d10a10
child 33 04db6ccd6c48
permissions -rw-r--r--
configuration basics
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@13
    23
import java.util.logging.Level;
franta-hg@13
    24
import java.util.logging.Logger;
franta-hg@13
    25
franta-hg@1
    26
/**
franta-hg@1
    27
 *
franta-hg@1
    28
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
    29
 */
franta-hg@20
    30
public class CLIStarter implements ConfigurationProvider {
franta-hg@1
    31
franta-hg@13
    32
	private static final Logger log = Logger.getLogger(CLIStarter.class.getName());
franta-hg@20
    33
	private CLIOptions options;
franta-hg@20
    34
	private Configuration configuration;
franta-hg@13
    35
franta-hg@1
    36
	public static void main(String[] args) {
franta-hg@21
    37
franta-hg@21
    38
		if (args.length == 0) {
franta-hg@21
    39
			args = new String[]{CLIParser.Tokens.INFO_HELP};
franta-hg@21
    40
		}
franta-hg@21
    41
franta-hg@13
    42
		try {
franta-hg@13
    43
			CLIParser parser = new CLIParser();
franta-hg@13
    44
			CLIOptions options = parser.parseOptions(args);
franta-hg@14
    45
			options.validate();
franta-hg@20
    46
			CLIStarter starter = new CLIStarter(options);
franta-hg@21
    47
			starter.installDefaultConfiguration();
franta-hg@20
    48
			starter.process();
franta-hg@13
    49
		} catch (CLIParserException e) {
franta-hg@14
    50
			log.log(Level.SEVERE, "Unable to parse CLI options", e);
franta-hg@14
    51
		} catch (InvalidOptionsException e) {
franta-hg@14
    52
			log.log(Level.SEVERE, "Invalid CLI options", e);
franta-hg@13
    53
		}
franta-hg@4
    54
	}
franta-hg@20
    55
franta-hg@20
    56
	public CLIStarter(CLIOptions options) {
franta-hg@20
    57
		this.options = options;
franta-hg@20
    58
	}
franta-hg@20
    59
franta-hg@20
    60
	private void process() {
franta-hg@20
    61
		/** Show info */
franta-hg@20
    62
		if (!options.getShowInfo().isEmpty()) {
franta-hg@20
    63
			InfoLister infoLister = new InfoLister(System.err, this);
franta-hg@20
    64
			infoLister.showInfo(options);
franta-hg@20
    65
		}
franta-hg@20
    66
franta-hg@20
    67
		MODE mode = options.getMode();
franta-hg@20
    68
		switch (mode) {
franta-hg@20
    69
			case QUERY_NOW:
franta-hg@20
    70
				break;
franta-hg@20
    71
			case PREPARE_BATCH:
franta-hg@20
    72
				break;
franta-hg@20
    73
			case EXECUTE_BATCH:
franta-hg@20
    74
				break;
franta-hg@20
    75
			case JUST_SHOW_INFO:
franta-hg@20
    76
				// already done above
franta-hg@20
    77
				break;
franta-hg@20
    78
			default:
franta-hg@20
    79
				log.log(Level.SEVERE, "Unsupported mode: {0}", mode);
franta-hg@20
    80
				break;
franta-hg@20
    81
		}
franta-hg@20
    82
	}
franta-hg@20
    83
franta-hg@20
    84
	@Override
franta-hg@20
    85
	public Configuration getConfiguration() {
franta-hg@20
    86
		if (configuration == null) {
franta-hg@20
    87
			configuration = loadConfiguration();
franta-hg@20
    88
		}
franta-hg@20
    89
		return configuration;
franta-hg@20
    90
	}
franta-hg@20
    91
franta-hg@20
    92
	private void installDefaultConfiguration() {
franta-hg@20
    93
		/**
franta-hg@20
    94
		 * TODO: check config folder/file and create it if missing
franta-hg@20
    95
		 */
franta-hg@20
    96
	}
franta-hg@20
    97
franta-hg@20
    98
	private Configuration loadConfiguration() {
franta-hg@20
    99
		/**
franta-hg@20
   100
		 * TODO: load configuration from XML
franta-hg@20
   101
		 */
franta-hg@20
   102
		return null;
franta-hg@20
   103
	}
franta-hg@1
   104
}