java/sql-dk/src/info/globalcode/sql/dk/InfoLister.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.io.PrintStream;
import java.util.EnumSet;

/**
 * Displays info like help, version etc.
 *
 * @author Ing. František Kučera (frantovo.cz)
 */
public class InfoLister {

	public void showInfo(CLIOptions options, PrintStream out) {
		EnumSet<CLIOptions.INFO_TYPE> infoTypes = options.getShowInfo();
		for (CLIOptions.INFO_TYPE infoType : infoTypes) {
			switch (infoType) {
				/**
				 * TODO: implement show info
				 */
				case FORMATTERS:
					out.println("TODO: list available formatters");
					break;
				case HELP:
					out.println("TODO: show some help");
					break;
				case LICENSE:
					out.println("TODO: show license");
					break;
				case TYPES:
					out.println("TODO: list supported types");
					break;
				case VERSION:
					out.println("TODO: show version");
					break;
				case DATABASES:
					out.println("TODO: list databases");
					break;
				case CONNECTION:
					out.println("TODO: test database connection: " + options.getDatabaseNameToTest());
					break;
				default:
					throw new IllegalArgumentException("Unsupported INFO_TYPE: " + infoType);
			}
		}
	}
}