/* * * SchemaCrawler * http://sourceforge.net/projects/schemacrawler * Copyright (c) 2000-2009, Sualeh Fatehi. * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * */ package schemacrawler.main; import java.util.ArrayList; import java.util.List; import schemacrawler.schemacrawler.Config; import schemacrawler.schemacrawler.Query; import schemacrawler.schemacrawler.SchemaCrawlerException; import schemacrawler.schemacrawler.SchemaCrawlerOptions; import schemacrawler.tools.Command; import schemacrawler.tools.Commands; import schemacrawler.tools.Executable; import schemacrawler.tools.OutputOptions; import schemacrawler.tools.datatext.DataTextFormatOptions; import schemacrawler.tools.datatext.DataToolsExecutable; import schemacrawler.tools.operation.Operation; import schemacrawler.tools.operation.OperationExecutable; import schemacrawler.tools.operation.OperationOptions; import schemacrawler.tools.schematext.SchemaCrawlerExecutable; import schemacrawler.tools.schematext.SchemaTextDetailType; import schemacrawler.tools.schematext.SchemaTextOptions; /** * Parses the command line. * * @author Sualeh Fatehi */ public final class ExecutableFactory { /** * An enumeration of available tools. */ private enum ToolType { /** Schema metadata to text. */ schema_text, /** Operation. */ operation, /** Data to text. */ data_text; } /** * Parses the command line. * * @param args * Command line arguments * @return Command line options * @throws SchemaCrawlerException */ static List<Executable<?>> createExecutables(final SchemaCrawlerCommandLine commandLine) throws SchemaCrawlerException { final Config config = commandLine.getConfig(); final OutputOptions masterOutputOptions = commandLine.getOutputOptions(); final Commands commands = commandLine.getCommands(); final List<Executable<?>> executables = new ArrayList<Executable<?>>(); for (int i = 0; i < commands.size(); i++) { final Command command = commands.get(i); final OutputOptions outputOptions = masterOutputOptions.duplicate(); if (i == 0) { // First command - no footer outputOptions.setNoFooter(true); } else if (i == commands.size() - 1) { // Last command - no header, or info outputOptions.setNoHeader(true); outputOptions.setNoInfo(true); outputOptions.setAppendOutput(true); } else { // Middle command - no header, footer, or info outputOptions.setNoHeader(true); outputOptions.setNoInfo(true); outputOptions.setNoFooter(true); outputOptions.setAppendOutput(true); } final Executable<?> executable; final ToolType toolType = determineToolType(command, config); switch (toolType) { case schema_text: final SchemaTextDetailType schemaTextDetailType = SchemaTextDetailType .valueOf(command.getName()); final SchemaTextOptions schemaTextOptions = new SchemaTextOptions(config, outputOptions, schemaTextDetailType); final SchemaCrawlerExecutable schemaCrawlerExecutable = new SchemaCrawlerExecutable(); schemaCrawlerExecutable.setToolOptions(schemaTextOptions); executable = schemaCrawlerExecutable; break; case operation: Operation operation; OperationOptions operationOptions; try { operation = Operation.valueOf(command.getName()); operationOptions = new OperationOptions(config, outputOptions, operation); } catch (final IllegalArgumentException e) { final String queryName = command.getName(); operationOptions = new OperationOptions(config, outputOptions, queryName); } final OperationExecutable operationExecutable = new OperationExecutable(); operationExecutable.setToolOptions(operationOptions); executable = operationExecutable; break; case data_text: final String queryName = command.getName(); final DataTextFormatOptions dataTextFormatOptions = new DataTextFormatOptions(config, outputOptions, queryName); final DataToolsExecutable dataToolsExecutable = new DataToolsExecutable(); dataToolsExecutable.setToolOptions(dataTextFormatOptions); executable = dataToolsExecutable; break; default: throw new IllegalArgumentException("Could not find the tool type"); } final SchemaCrawlerOptions schemaCrawlerOptions = commandLine .getSchemaCrawlerOptions(); executable.setSchemaCrawlerOptions(schemaCrawlerOptions); executables.add(executable); } return executables; } private static ToolType determineToolType(final Command command, final Config config) { ToolType toolType; if (!command.isQuery()) { toolType = ToolType.schema_text; } else { Operation operation; try { operation = Operation.valueOf(command.getName()); } catch (final IllegalArgumentException e) { operation = null; } if (operation == null) { final Query query = new Query(command.getName(), config.get(command .getName())); if (query.isQueryOver()) { toolType = ToolType.operation; } else { toolType = ToolType.data_text; } } else { toolType = ToolType.operation; } } return toolType; } private ExecutableFactory() { } }