/* * * SchemaCrawler * http://sourceforge.net/projects/schemacrawler * Copyright (c) 2000-2012, 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.tools.executable; import java.io.IOException; import java.net.URL; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.ServiceLoader; import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; import schemacrawler.schemacrawler.SchemaCrawlerException; /** * Parses the command line. * * @author Sualeh Fatehi */ public final class CommandRegistry { private static final Logger LOGGER = Logger.getLogger(CommandRegistry.class .getName()); private static Map<String, CommandProvider> loadCommandRegistry() throws SchemaCrawlerException { final Map<String, CommandProvider> commandRegistry = new HashMap<String, CommandProvider>(); try { final ClassLoader classLoader = CommandRegistry.class.getClassLoader(); final URL commandRegistryUrl = classLoader .getResource("tools.command.properties"); final Properties commandRegistryProperties = new Properties(); commandRegistryProperties.load(commandRegistryUrl.openStream()); final List<String> commands = (List<String>) Collections .list(commandRegistryProperties.propertyNames()); for (final String command: commands) { final String executableClassName = commandRegistryProperties .getProperty(command); commandRegistry.put(command, new ExecutableCommandProvider(command, executableClassName)); } if (commandRegistry.isEmpty()) { throw new SchemaCrawlerException("Could not load base command registry"); } } catch (final IOException e) { throw new SchemaCrawlerException("Could not load base command registry", e); } try { final ServiceLoader<CommandProvider> serviceLoader = ServiceLoader .load(CommandProvider.class); for (final CommandProvider commandRegistryEntry: serviceLoader) { final String executableCommand = commandRegistryEntry.getCommand(); LOGGER.log(Level.FINER, "Loading executable, " + executableCommand + "=" + commandRegistryEntry.getClass().getName()); commandRegistry.put(executableCommand, commandRegistryEntry); } } catch (final Exception e) { throw new SchemaCrawlerException("Could not load extended command registry", e); } return commandRegistry; } private final Map<String, CommandProvider> commandRegistry; public CommandRegistry() throws SchemaCrawlerException { commandRegistry = loadCommandRegistry(); } public String getHelpResource(final String command) { final String helpResource; if (commandRegistry.containsKey(command)) { helpResource = commandRegistry.get(command).getHelpResource(); } else { helpResource = null; } return helpResource; } public boolean hasCommand(final String command) { return commandRegistry.containsKey(command); } public String[] lookupAvailableCommands() { final Set<String> availableCommandsList = commandRegistry.keySet(); final String[] availableCommands = availableCommandsList .toArray(new String[availableCommandsList.size()]); Arrays.sort(availableCommands); return availableCommands; } Executable newExecutable(final String command) throws SchemaCrawlerException { final CommandProvider commandRegistryEntry; if (commandRegistry.containsKey(command)) { commandRegistryEntry = commandRegistry.get(command); } else { commandRegistryEntry = new ExecutableCommandProvider(command, "schemacrawler.tools.text.operation.OperationExecutable"); } return commandRegistryEntry.newExecutable(); } }