All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.fatehi.commandlineparser.CommandLineArgumentsParser Maven / Gradle / Ivy

/*
========================================================================
SchemaCrawler
http://www.schemacrawler.com
Copyright (c) 2000-2016, Sualeh Fatehi .
All rights reserved.
------------------------------------------------------------------------

SchemaCrawler 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.

SchemaCrawler and the accompanying materials are made available under
the terms of the Eclipse Public License v1.0, GNU General Public License
v3 or GNU Lesser General Public License v3.

You may elect to redistribute this code under any of these licenses.

The Eclipse Public License is available at:
http://www.eclipse.org/legal/epl-v10.html

The GNU General Public License v3 and the GNU Lesser General Public
License v3 are available at:
http://www.gnu.org/licenses/

========================================================================
*/

package us.fatehi.commandlineparser;


import static java.util.Objects.requireNonNull;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Deque;
import java.util.List;

import schemacrawler.schemacrawler.Config;

/**
 * Command-line options parser. Not POSIX compliant. Follows these POSIX
 * rules:
 * 
    *
  • Arguments are options if they begin with a hyphen delimiter * ('-').
  • *
  • Certain options require an argument. For example, the '-o' * command of the ld command requires an argument—an output file name. *
  • *
  • Options typically precede other non-option arguments.
  • *
  • Options may be supplied in any order, or appear multiple times. * The interpretation is left up to the particular application program. *
  • *
* Does not honor these POSIX rules: *
    *
  • Multiple options may follow a hyphen delimiter in a single token * if the options do not take arguments. Thus, '-abc' is equivalent to * '-a -b -c'.
  • *
  • Option names are single alphanumeric characters (as for isalnum; * see Classification of Characters).
  • *
  • An option and its argument may or may not appear as separate * tokens. (In other words, the whitespace separating them is optional.) * Thus, '-o foo' and '-ofoo' are equivalent.
  • *
  • The argument '--' terminates all options; any following arguments * are treated as non-option arguments, even if they begin with a * hyphen.
  • *
  • A token consisting of a single hyphen character is interpreted as * an ordinary non-option argument. By convention, it is used to specify * input from or output to the standard input and output streams.
  • *
*/ public class CommandLineArgumentsParser { private static final String DASH = "-"; private final String[] args; private final Config optionsMap; private final List nonOptionArguments; public CommandLineArgumentsParser(final String[] args) { this.args = requireNonNull(args); optionsMap = new Config(); nonOptionArguments = new ArrayList<>(); } public List getNonOptionArguments() { return nonOptionArguments; } public Config getOptionsMap() { return optionsMap; } /** * Extract the options and non-option arguments from the given list of * command-line arguments. */ public void parse() { final Deque argsList = new ArrayDeque<>(Arrays.asList(args)); while (true) { final String currentArg = argsList.pollFirst(); if (currentArg == null) { if (argsList.isEmpty()) { break; } else { continue; } } if (currentArg.startsWith(DASH)) { // Handle -arg=value if (currentArg.contains("=")) { final String[] split = currentArg.split("=", 2); final String option = split[0].replaceAll("^-+", ""); final String value; if (split.length == 2) { value = split[1]; } else { value = null; } optionsMap.put(option, value); } else { // Look at the next argument, and if is an option, that means // there is no value for the current option final String option = currentArg.replaceAll("^-+", ""); final String value = argsList.peekFirst(); if (value != null && value.startsWith(DASH)) { optionsMap.put(option, null); } else { optionsMap.put(option, argsList.pollFirst()); } } } else { nonOptionArguments.add(currentArg); } } } @Override public String toString() { return Arrays.toString(args); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy