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