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
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk;
    19 
    20 import info.globalcode.sql.dk.configuration.ConfigurationProvider;
    21 import info.globalcode.sql.dk.CLIOptions.MODE;
    22 import info.globalcode.sql.dk.configuration.Configuration;
    23 import java.util.logging.Level;
    24 import java.util.logging.Logger;
    25 
    26 /**
    27  *
    28  * @author Ing. František Kučera (frantovo.cz)
    29  */
    30 public class CLIStarter implements ConfigurationProvider {
    31 
    32 	private static final Logger log = Logger.getLogger(CLIStarter.class.getName());
    33 	private CLIOptions options;
    34 	private Configuration configuration;
    35 
    36 	public static void main(String[] args) {
    37 
    38 		if (args.length == 0) {
    39 			args = new String[]{CLIParser.Tokens.INFO_HELP};
    40 		}
    41 
    42 		try {
    43 			CLIParser parser = new CLIParser();
    44 			CLIOptions options = parser.parseOptions(args);
    45 			options.validate();
    46 			CLIStarter starter = new CLIStarter(options);
    47 			starter.installDefaultConfiguration();
    48 			starter.process();
    49 		} catch (CLIParserException e) {
    50 			log.log(Level.SEVERE, "Unable to parse CLI options", e);
    51 		} catch (InvalidOptionsException e) {
    52 			log.log(Level.SEVERE, "Invalid CLI options", e);
    53 		}
    54 	}
    55 
    56 	public CLIStarter(CLIOptions options) {
    57 		this.options = options;
    58 	}
    59 
    60 	private void process() {
    61 		/** Show info */
    62 		if (!options.getShowInfo().isEmpty()) {
    63 			InfoLister infoLister = new InfoLister(System.err, this);
    64 			infoLister.showInfo(options);
    65 		}
    66 
    67 		MODE mode = options.getMode();
    68 		switch (mode) {
    69 			case QUERY_NOW:
    70 				break;
    71 			case PREPARE_BATCH:
    72 				break;
    73 			case EXECUTE_BATCH:
    74 				break;
    75 			case JUST_SHOW_INFO:
    76 				// already done above
    77 				break;
    78 			default:
    79 				log.log(Level.SEVERE, "Unsupported mode: {0}", mode);
    80 				break;
    81 		}
    82 	}
    83 
    84 	@Override
    85 	public Configuration getConfiguration() {
    86 		if (configuration == null) {
    87 			configuration = loadConfiguration();
    88 		}
    89 		return configuration;
    90 	}
    91 
    92 	private void installDefaultConfiguration() {
    93 		/**
    94 		 * TODO: check config folder/file and create it if missing
    95 		 */
    96 	}
    97 
    98 	private Configuration loadConfiguration() {
    99 		/**
   100 		 * TODO: load configuration from XML
   101 		 */
   102 		return null;
   103 	}
   104 }