java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 16 Dec 2013 20:01:37 +0100
branchv_0
changeset 16 5b8fcd35d4d6
parent 15 bbd335b5410c
child 17 d8ab8aece6f2
permissions -rw-r--r--
license: GNU GPLv3+

/**
 * SQL-DK
 * Copyright © 2013 František Kučera (frantovo.cz)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package info.globalcode.sql.dk;

import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author Ing. František Kučera (frantovo.cz)
 */
public class CLIStarter {

	private static final Logger log = Logger.getLogger(CLIStarter.class.getName());

	public static void main(String[] args) {
		try {
			/** Parse options */
			CLIParser parser = new CLIParser();
			CLIOptions options = parser.parseOptions(args);

			options.validate();

			/** Show info */
			if (!options.getShowInfo().isEmpty()) {
				InfoLister infoLister = new InfoLister();
				infoLister.showInfo(options, System.err);
			}

		} catch (CLIParserException e) {
			log.log(Level.SEVERE, "Unable to parse CLI options", e);
		} catch (InvalidOptionsException e) {
			log.log(Level.SEVERE, "Invalid CLI options", e);
		}
	}
}