blob: 3c6cf6f46ac3e70f297411e7dace08630966cc07 [file] [log] [blame]
/* Parser.java - parse command line options
Copyright (C) 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath 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 2, or (at your option)
any later version.
GNU Classpath 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 GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package gnu.classpath.tools.getopt;
import java.io.PrintStream;
import java.text.BreakIterator;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Locale;
/**
* An instance of this class is used to parse command-line options. It does "GNU
* style" argument recognition and also automatically handles "--help" and
* "--version" processing. It can also be put in "long option only" mode. In
* this mode long options are recognized with a single dash (as well as a double
* dash) and strings of options like "-abc" are never parsed as a collection of
* short options.
*/
public class Parser
{
/** The maximum right column position. */
public static final int MAX_LINE_LENGTH = 80;
private String programName;
private String headerText;
private String footerText;
private boolean longOnly;
private ArrayList options = new ArrayList();
private ArrayList optionGroups = new ArrayList();
private OptionGroup defaultGroup = new OptionGroup();
// These are used while parsing.
private int currentIndex;
private String[] args;
/**
* Create a new parser. The program name is used when printing error messages.
* The version string is printed verbatim in response to "--version".
*
* @param programName the name of the program
* @param versionString the program's version information
*/
public Parser(String programName, String versionString)
{
this(programName, versionString, false);
}
/**
* Print a designated text to a {@link PrintStream}, eventually wrapping the
* lines of text so as to ensure that the width of each line does not overflow
* {@link #MAX_LINE_LENGTH} columns. The line-wrapping is done with a
* {@link BreakIterator} using the default {@link Locale}.
* <p>
* The text to print may contain <code>\n</code> characters. This method will
* force a line-break for each such character.
*
* @param out the {@link PrintStream} destination of the formatted text.
* @param text the text to print.
* @see Parser#MAX_LINE_LENGTH
*/
protected static void formatText(PrintStream out, String text)
{
formatText(out, text, Locale.getDefault());
}
/**
* Similar to the method with the same name and two arguments, except that the
* caller MUST specify a non-null {@link Locale} instance.
* <p>
* Print a designated text to a {@link PrintStream}, eventually wrapping the
* lines of text so as to ensure that the width of each line does not overflow
* {@link #MAX_LINE_LENGTH} columns. The line-wrapping is done with a
* {@link BreakIterator} using the designated {@link Locale}.
* <p>
* The text to print may contain <code>\n</code> characters. This method will
* force a line-break for each such character.
*
* @param out the {@link PrintStream} destination of the formatted text.
* @param text the text to print.
* @param aLocale the {@link Locale} instance to use when constructing the
* {@link BreakIterator}.
* @see Parser#MAX_LINE_LENGTH
*/
protected static void formatText(PrintStream out, String text, Locale aLocale)
{
BreakIterator bit = BreakIterator.getLineInstance(aLocale);
String[] lines = text.split("\n"); //$NON-NLS-1$
for (int i = 0; i < lines.length; i++)
{
text = lines[i];
bit.setText(text);
int length = 0;
int finish;
int start = bit.first();
while ((finish = bit.next()) != BreakIterator.DONE)
{
String word = text.substring(start, finish);
length += word.length();
if (length >= MAX_LINE_LENGTH)
{
out.println();
length = word.length();
}
out.print(word);
start = finish;
}
out.println();
}
}
/**
* Create a new parser. The program name is used when printing error messages.
* The version string is printed verbatim in response to "--version".
*
* @param programName the name of the program
* @param versionString the program's version information
* @param longOnly true if the parser should work in long-option-only mode
*/
public Parser(String programName, final String versionString, boolean longOnly)
{
this.programName = programName;
this.longOnly = longOnly;
// Put standard options in their own section near the end.
OptionGroup finalGroup = new OptionGroup(Messages.getString("Parser.StdOptions")); //$NON-NLS-1$
finalGroup.add(new Option("help", Messages.getString("Parser.PrintHelp")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{
printHelp(System.out);
System.exit(0);
}
});
finalGroup.add(new Option("version", Messages.getString("Parser.PrintVersion")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{
System.out.println(versionString);
System.exit(0);
}
});
finalGroup.add(new Option('J', Messages.getString("Parser.JArgument"), Messages.getString("Parser.JName")) //$NON-NLS-1$ //$NON-NLS-2$
{
public void parsed(String argument) throws OptionException
{
// -J should be handled by the appletviewer wrapper binary.
// We add it here so that it shows up in the --help output.
// Note that there is a special case for this in OptionGroup.
}
});
add(finalGroup);
add(defaultGroup);
}
/**
* Set the header text that is printed by --help.
*
* @param headerText the header text
*/
public void setHeader(String headerText)
{
this.headerText = headerText;
}
/**
* Set the footer text that is printed by --help.
*
* @param footerText the footer text
*/
public void setFooter(String footerText)
{
this.footerText = footerText;
}
/**
* Add an option to this parser. The option is added to the default option
* group; this affects where it is placed in the help output.
*
* @param opt the option
*/
public synchronized void add(Option opt)
{
options.add(opt);
defaultGroup.add(opt);
}
/**
* Add an option group to this parser. All the options in this group will be
* recognized by the parser.
*
* @param group the option group
*/
public synchronized void add(OptionGroup group)
{
options.addAll(group.options);
// This ensures that the final group always appears at the end
// of the options.
if (optionGroups.isEmpty())
optionGroups.add(group);
else
optionGroups.add(optionGroups.size() - 1, group);
}
public void printHelp()
{
this.printHelp(System.out);
}
void printHelp(PrintStream out)
{
if (headerText != null)
{
formatText(out, headerText);
out.println();
}
Iterator it = optionGroups.iterator();
while (it.hasNext())
{
OptionGroup group = (OptionGroup) it.next();
// An option group might be empty, in which case we don't
// want to print it..
if (! group.options.isEmpty())
{
group.printHelp(out, longOnly);
out.println();
}
}
if (footerText != null)
formatText(out, footerText);
}
/**
* This method can be overridden by subclassses to provide some option
* validation. It is called by the parser after all options have been
* parsed. If an option validation problem is encountered, this should
* throw an {@link OptionException} whose message should be shown to
* the user.
* <p>
* It is better to do validation here than after {@link #parse(String[])}
* returns, because the parser will print a message referring the
* user to the <code>--help</code> option.
* <p>
* The base implementation does nothing.
*
* @throws OptionException the error encountered
*/
protected void validate() throws OptionException
{
// Base implementation does nothing.
}
private String getArgument(String request) throws OptionException
{
++currentIndex;
if (currentIndex >= args.length)
{
String message
= MessageFormat.format(Messages.getString("Parser.ArgReqd"), //$NON-NLS-1$
new Object[] { request });
throw new OptionException(request);
}
return args[currentIndex];
}
private void handleLongOption(String real, int index) throws OptionException
{
String option = real.substring(index);
String justName = option;
int eq = option.indexOf('=');
if (eq != - 1)
justName = option.substring(0, eq);
char shortName = 0;
if (justName.length() == 1)
shortName = justName.charAt(0);
Option found = null;
for (int i = options.size() - 1; i >= 0; --i)
{
Option opt = (Option) options.get(i);
if (justName.equals(opt.getLongName()))
{
found = opt;
break;
}
if (shortName != 0 && opt.getShortName() == shortName)
{
found = opt;
break;
}
}
if (found == null)
{
String msg = MessageFormat.format(Messages.getString("Parser.Unrecognized"), //$NON-NLS-1$
new Object[] { real });
throw new OptionException(msg);
}
String argument = null;
if (found.getTakesArgument())
{
if (eq == - 1)
argument = getArgument(real);
else
argument = option.substring(eq + 1);
}
else if (eq != - 1)
{
String msg
= MessageFormat.format(Messages.getString("Parser.NoArg"), //$NON-NLS-1$
new Object[] { real.substring(0, eq + index) });
throw new OptionException(msg);
}
found.parsed(argument);
}
private void handleShortOption(char option) throws OptionException
{
Option found = null;
for (int i = options.size() - 1; i >= 0; --i)
{
Option opt = (Option) options.get(i);
if (option == opt.getShortName())
{
found = opt;
break;
}
}
if (found == null)
{
String msg = MessageFormat.format(Messages.getString("Parser.UnrecDash"), //$NON-NLS-1$
new Object[] { "" + option }); //$NON-NLS-1$
throw new OptionException(msg);
}
String argument = null;
if (found.getTakesArgument())
argument = getArgument("-" + option); //$NON-NLS-1$
found.parsed(argument);
}
private void handleShortOptions(String option) throws OptionException
{
for (int i = 1; i < option.length(); ++i)
{
handleShortOption(option.charAt(i));
}
}
/**
* Parse a command line. Any files which are found will be passed to the file
* argument callback. This method will exit on error or when --help or
* --version is specified.
*
* @param inArgs the command-line arguments
* @param files the file argument callback
*/
public synchronized void parse(String[] inArgs, FileArgumentCallback files)
{
try
{
args = inArgs;
for (currentIndex = 0; currentIndex < args.length; ++currentIndex)
{
if (args[currentIndex].length() == 0
|| args[currentIndex].charAt(0) != '-'
|| "-".equals(args[currentIndex])) //$NON-NLS-1$
{
files.notifyFile(args[currentIndex]);
continue;
}
if ("--".equals(args[currentIndex])) //$NON-NLS-1$
break;
if (args[currentIndex].charAt(1) == '-')
handleLongOption(args[currentIndex], 2);
else if (longOnly)
handleLongOption(args[currentIndex], 1);
else
handleShortOptions(args[currentIndex]);
}
// Add remaining arguments to leftovers.
for (++currentIndex; currentIndex < args.length; ++currentIndex)
files.notifyFile(args[currentIndex]);
// See if something went wrong.
validate();
}
catch (OptionException err)
{
System.err.println(programName + ": " + err.getMessage()); //$NON-NLS-1$
String fmt;
if (longOnly)
fmt = Messages.getString("Parser.TryHelpShort"); //$NON-NLS-1$
else
fmt = Messages.getString("Parser.TryHelpLong"); //$NON-NLS-1$
String msg = MessageFormat.format(fmt, new Object[] { programName });
System.err.println(programName + ": " + msg); //$NON-NLS-1$
System.exit(1);
}
}
/**
* Parse a command line. Any files which are found will be returned. This
* method will exit on error or when --help or --version is specified.
*
* @param inArgs the command-line arguments
*/
public String[] parse(String[] inArgs)
{
final ArrayList fileResult = new ArrayList();
parse(inArgs, new FileArgumentCallback()
{
public void notifyFile(String fileArgument)
{
fileResult.add(fileArgument);
}
});
return (String[]) fileResult.toArray(new String[0]);
}
}