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