Java tutorial
/* * The MIT License * * Copyright 2015 Ahseya. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * values copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.github.horrorho.liquiddonkey.settings.commandline; import com.github.horrorho.liquiddonkey.iofunction.IOSupplier; import com.github.horrorho.liquiddonkey.settings.PropertiesFactory; import com.github.horrorho.liquiddonkey.settings.Property; import com.github.horrorho.liquiddonkey.settings.config.Config; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import net.jcip.annotations.Immutable; import net.jcip.annotations.ThreadSafe; import org.apache.commons.cli.HelpFormatter; import org.apache.commons.cli.ParseException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * CommandLineConfigFactory. * * @author ahseya */ @Immutable @ThreadSafe public final class CommandLineConfigFactory { public static CommandLineConfigFactory getInstance() { return instance; } private static final Logger logger = LoggerFactory.getLogger(CommandLineConfigFactory.class); private static final CommandLineConfigFactory instance = new CommandLineConfigFactory(); CommandLineConfigFactory() { } public Config fromArgs(String[] args) { logger.trace("<< fromArgs() < {}", (Object) args); try { PropertiesFactory factory = PropertiesFactory.create(); // Fallback defaults Properties properties = factory.fromDefaults(); // Jar defaults try { String resource = properties.get(Property.PROPERTIES_JAR.name()).toString(); IOSupplier<InputStream> supplier = () -> this.getClass().getResourceAsStream(resource); properties = factory.fromInputStream(properties, supplier); } catch (IOException ex) { logger.warn("-- fromArgs() > exception: ", ex); } // Command line args CommandLineOptions commandLineOptions = CommandLineOptions.from(properties); properties = CommandLinePropertiesFactory.create().from(properties, commandLineOptions, args); if (properties.containsKey(Property.COMMAND_LINE_HELP.name())) { HelpFormatter helpFormatter = new HelpFormatter(); helpFormatter.setOptionComparator(null); helpFormatter.printHelp(properties.getProperty(Property.APP_NAME.name()) + " [OPTION]... (<token> | <appleid> <password>) ", commandLineOptions.options()); return null; } if (properties.containsKey(Property.COMMAND_LINE_VERSION.name())) { System.out.println(properties.getProperty(Property.PROJECT_VERSION.name())); return null; } // Build config Config config = Config.from(properties); logger.trace(">> fromArgs() > {}", config); return config; } catch (ParseException | IllegalArgumentException | IllegalStateException ex) { logger.trace("-- fromArgs() > exception: ", ex); System.out.println(ex.getLocalizedMessage()); System.out.println("Try '--help' for more information."); return null; } } }