本文整理汇总了Java中org.apache.commons.cli2.CommandLine类的典型用法代码示例。如果您正苦于以下问题:Java CommandLine类的具体用法?Java CommandLine怎么用?Java CommandLine使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CommandLine类属于org.apache.commons.cli2包,在下文中一共展示了CommandLine类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: execute
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
@Override
public boolean execute(CommandLine commandLine) {
for (Object command : this.commands) {
if (command instanceof CliCommand) {
CliCommand cliCommand = (CliCommand) command;
try {
if (doExecute(cliCommand, commandLine)) {
return true;
}
} catch (ExecutionException ex) {
LOG.error("Error while executing command", ex);
throw new VaultExecutionException(ex);
} catch (Exception e) {
LOG.error("Error while executing command", e);
throw new VaultExecutionException(e);
}
}
}
return false;
}
开发者ID:Cognifide,项目名称:Maven-Vault-Checkout-Plugin,代码行数:21,代码来源:VaultExecutionContext.java
示例2: parseDirectories
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
/**
* Obtain input and output directories from command-line options or hadoop
* properties. If {@code addInputOption} or {@code addOutputOption}
* has been called, this method will throw an {@code OptionException} if
* no source (command-line or property) for that value is present.
* Otherwise, {@code inputPath} or {@code outputPath} will be
* non-null only if specified as a hadoop property. Command-line options
* take precedence over hadoop properties.
*
* @throws IllegalArgumentException if either inputOption is present,
* and neither {@code --input} nor {@code -Dmapred.input dir} are
* specified or outputOption is present and neither {@code --output}
* nor {@code -Dmapred.output.dir} are specified.
*/
protected void parseDirectories(CommandLine cmdLine, boolean inputOptional, boolean outputOptional) {
Configuration conf = getConf();
if (inputOption != null && cmdLine.hasOption(inputOption)) {
this.inputPath = new Path(cmdLine.getValue(inputOption).toString());
this.inputFile = new File(cmdLine.getValue(inputOption).toString());
}
if (inputPath == null && conf.get("mapred.input.dir") != null) {
this.inputPath = new Path(conf.get("mapred.input.dir"));
}
if (outputOption != null && cmdLine.hasOption(outputOption)) {
this.outputPath = new Path(cmdLine.getValue(outputOption).toString());
this.outputFile = new File(cmdLine.getValue(outputOption).toString());
}
if (outputPath == null && conf.get("mapred.output.dir") != null) {
this.outputPath = new Path(conf.get("mapred.output.dir"));
}
Preconditions.checkArgument(inputOptional || inputOption == null || inputPath != null,
"No input specified or -Dmapred.input.dir must be provided to specify input directory");
Preconditions.checkArgument(outputOptional || outputOption == null || outputPath != null,
"No output specified: or -Dmapred.output.dir must be provided to specify output directory");
}
开发者ID:saradelrio,项目名称:Chi-FRBCS-BigDataCS,代码行数:40,代码来源:AbstractJob.java
示例3: maybePut
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
protected static void maybePut(Map<String, List<String>> args, CommandLine cmdLine, Option... opt) {
for (Option o : opt) {
// the option appeared on the command-line, or it has a value
// (which is likely a default value).
if (cmdLine.hasOption(o) || cmdLine.getValue(o) != null ||
(cmdLine.getValues(o) != null && !cmdLine.getValues(o).isEmpty())) {
// nulls are ok, for cases where options are simple flags.
List<?> vo = cmdLine.getValues(o);
if (vo != null && !vo.isEmpty()) {
List<String> vals = new ArrayList<String>();
for (Object o1 : vo) {
vals.add(o1.toString());
}
args.put(o.getPreferredName(), vals);
} else {
args.put(o.getPreferredName(), null);
}
}
}
}
开发者ID:saradelrio,项目名称:Chi-FRBCS-BigDataCS,代码行数:23,代码来源:AbstractJob.java
示例4: testNoArgumentsOption
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
public void testNoArgumentsOption() throws Exception {
ClassLoader cl = TestCommandLineParsing.class.getClassLoader();
PluginDefinition pluginDef =
PluginRepositoryUtil.parseXmlPluginDefinition(cl,
cl.getResourceAsStream("check_mysql_plugin.xml"));
GroupBuilder gBuilder = new GroupBuilder();
for (PluginOption po : pluginDef.getOptions()) {
gBuilder = gBuilder.withOption(po.toOption());
}
Group group = gBuilder.create();
Parser p = new Parser();
p.setGroup(group);
CommandLine cli =
p.parse(new String[] { "--hostname", "$ARG1$", "--port",
"$ARG2$", "--database", "$ARG3$", "--user", "$ARG4$",
"--password", "$ARG5$", "--check-slave" });
Assert.assertTrue(cli.hasOption("--check-slave"));
}
开发者ID:ziccardi,项目名称:jnrpe,代码行数:23,代码来源:TestCommandLineParsing.java
示例5: parseCommandLine
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
/**
* Parses the command line.
*
* @param vsArgs
* The command line
* @return The parsed command line
*/
private static CommandLine parseCommandLine(final String[] vsArgs) {
try {
Group opts = configureCommandLine();
// configure a HelpFormatter
HelpFormatter hf = new HelpFormatter();
// configure a parser
Parser p = new Parser();
p.setGroup(opts);
p.setHelpFormatter(hf);
// p.setHelpTrigger("--help");
return p.parse(vsArgs);
} catch (OptionException oe) {
printUsage(oe);
} catch (Exception e) {
e.printStackTrace();
// Should never happen...
}
return null;
}
开发者ID:ziccardi,项目名称:jnrpe,代码行数:28,代码来源:JNRPEServer.java
示例6: main
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
public static void main(String[] args) throws IOException, InterruptedException, ClassNotFoundException {
DefaultOptionBuilder obuilder = new DefaultOptionBuilder();
ArgumentBuilder abuilder = new ArgumentBuilder();
GroupBuilder gbuilder = new GroupBuilder();
Option inputOpt = DefaultOptionCreator.inputOption().withRequired(false).create();
Option outputOpt = DefaultOptionCreator.outputOption().withRequired(false).create();
Option vectorOpt = obuilder.withLongName("vector").withRequired(false).withArgument(
abuilder.withName("v").withMinimum(1).withMaximum(1).create()).withDescription(
"The vector implementation to use.").withShortName("v").create();
Option helpOpt = DefaultOptionCreator.helpOption();
Group group = gbuilder.withName("Options").withOption(inputOpt).withOption(outputOpt).withOption(
vectorOpt).withOption(helpOpt).create();
try {
Parser parser = new Parser();
parser.setGroup(group);
CommandLine cmdLine = parser.parse(args);
if (cmdLine.hasOption(helpOpt)) {
CommandLineUtil.printHelp(group);
return;
}
Path input = new Path(cmdLine.getValue(inputOpt, "testdata").toString());
Path output = new Path(cmdLine.getValue(outputOpt, "output").toString());
String vectorClassName = cmdLine.getValue(vectorOpt,
"org.apache.mahout.math.RandomAccessSparseVector").toString();
//runJob(input, output, vectorClassName);
} catch (OptionException e) {
InputDriver.log.error("Exception parsing command line: ", e);
CommandLineUtil.printHelp(group);
}
}
开发者ID:PacktPublishing,项目名称:HBase-High-Performance-Cookbook,代码行数:36,代码来源:InputDriver.java
示例7: run
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
@Override
public int run(String[] args) throws IOException, ClassNotFoundException, InterruptedException {
// TODO Auto-generated method stub
DefaultOptionBuilder obuilder = new DefaultOptionBuilder();
ArgumentBuilder abuilder = new ArgumentBuilder();
GroupBuilder gbuilder = new GroupBuilder();
Option inputOpt = DefaultOptionCreator.inputOption().create();
Option datasetOpt = obuilder.withLongName("dataset").withShortName("ds").withRequired(true).withArgument(
abuilder.withName("dataset").withMinimum(1).withMaximum(1).create()).withDescription("Dataset path")
.create();
Option modelOpt = obuilder.withLongName("model").withShortName("m").withRequired(true).withArgument(
abuilder.withName("path").withMinimum(1).withMaximum(1).create()).
withDescription("Path to the Model").create();
Option outputOpt = DefaultOptionCreator.outputOption().create();
Option helpOpt = DefaultOptionCreator.helpOption();
Group group = gbuilder.withName("Options").withOption(inputOpt).withOption(datasetOpt).withOption(modelOpt)
.withOption(outputOpt).withOption(helpOpt).create();
try {
Parser parser = new Parser();
parser.setGroup(group);
CommandLine cmdLine = parser.parse(args);
if (cmdLine.hasOption("help")) {
CommandLineUtil.printHelp(group);
return -1;
}
dataName = cmdLine.getValue(inputOpt).toString();
String datasetName = cmdLine.getValue(datasetOpt).toString();
String modelName = cmdLine.getValue(modelOpt).toString();
String outputName = cmdLine.hasOption(outputOpt) ? cmdLine.getValue(outputOpt).toString() : null;
if (log.isDebugEnabled()) {
log.debug("inout : {}", dataName);
log.debug("dataset : {}", datasetName);
log.debug("model : {}", modelName);
log.debug("output : {}", outputName);
}
dataPath = new Path(dataName);
datasetPath = new Path(datasetName);
modelPath = new Path(modelName);
if (outputName != null) {
outputPath = new Path(outputName);
}
} catch (OptionException e) {
log.warn(e.toString(), e);
CommandLineUtil.printHelp(group);
return -1;
}
time = System.currentTimeMillis();
testModel();
time = System.currentTimeMillis() - time;
writeToFileClassifyTime(Chi_RWCSUtils.elapsedTime(time));
return 0;
}
开发者ID:saradelrio,项目名称:Chi-FRBCS-BigDataCS,代码行数:72,代码来源:TestModel.java
示例8: main
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
public static void main(String[] args) throws IOException, DescriptorException {
DefaultOptionBuilder obuilder = new DefaultOptionBuilder();
ArgumentBuilder abuilder = new ArgumentBuilder();
GroupBuilder gbuilder = new GroupBuilder();
Option pathOpt = obuilder.withLongName("path").withShortName("p").withRequired(true).withArgument(
abuilder.withName("path").withMinimum(1).withMaximum(1).create()).withDescription("Data path").create();
Option descriptorOpt = obuilder.withLongName("descriptor").withShortName("d").withRequired(true)
.withArgument(abuilder.withName("descriptor").withMinimum(1).create()).withDescription(
"data descriptor").create();
Option descPathOpt = obuilder.withLongName("file").withShortName("f").withRequired(true).withArgument(
abuilder.withName("file").withMinimum(1).withMaximum(1).create()).withDescription(
"Path to generated descriptor file").create();
Option regOpt = obuilder.withLongName("regression").withDescription("Regression Problem").withShortName("r")
.create();
Option helpOpt = obuilder.withLongName("help").withDescription("Print out help").withShortName("h")
.create();
Group group = gbuilder.withName("Options").withOption(pathOpt).withOption(descPathOpt).withOption(
descriptorOpt).withOption(regOpt).withOption(helpOpt).create();
try {
Parser parser = new Parser();
parser.setGroup(group);
CommandLine cmdLine = parser.parse(args);
if (cmdLine.hasOption(helpOpt)) {
CommandLineUtil.printHelp(group);
return;
}
String dataPath = cmdLine.getValue(pathOpt).toString();
String descPath = cmdLine.getValue(descPathOpt).toString();
List<String> descriptor = convert(cmdLine.getValues(descriptorOpt));
boolean regression = cmdLine.hasOption(regOpt);
log.debug("Data path : {}", dataPath);
log.debug("Descriptor path : {}", descPath);
log.debug("Descriptor : {}", descriptor);
log.debug("Regression : {}", regression);
runTool(dataPath, descriptor, descPath, regression);
} catch (OptionException e) {
log.warn(e.toString());
CommandLineUtil.printHelp(group);
}
}
开发者ID:saradelrio,项目名称:Chi-FRBCS-BigDataCS,代码行数:53,代码来源:Describe.java
示例9: run
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
@Override
public int run(String[] args) throws IOException, ClassNotFoundException, InterruptedException {
// TODO Auto-generated method stub
DefaultOptionBuilder obuilder = new DefaultOptionBuilder();
ArgumentBuilder abuilder = new ArgumentBuilder();
GroupBuilder gbuilder = new GroupBuilder();
Option inputOpt = DefaultOptionCreator.inputOption().create();
Option datasetOpt = obuilder.withLongName("dataset").withShortName("ds").withRequired(true).withArgument(
abuilder.withName("dataset").withMinimum(1).withMaximum(1).create()).withDescription("Dataset path")
.create();
Option modelOpt = obuilder.withLongName("model").withShortName("m").withRequired(true).withArgument(
abuilder.withName("path").withMinimum(1).withMaximum(1).create()).
withDescription("Path to the Model").create();
Option outputOpt = DefaultOptionCreator.outputOption().create();
Option helpOpt = DefaultOptionCreator.helpOption();
Group group = gbuilder.withName("Options").withOption(inputOpt).withOption(datasetOpt).withOption(modelOpt)
.withOption(outputOpt).withOption(helpOpt).create();
try {
Parser parser = new Parser();
parser.setGroup(group);
CommandLine cmdLine = parser.parse(args);
if (cmdLine.hasOption("help")) {
CommandLineUtil.printHelp(group);
return -1;
}
dataName = cmdLine.getValue(inputOpt).toString();
String datasetName = cmdLine.getValue(datasetOpt).toString();
String modelName = cmdLine.getValue(modelOpt).toString();
String outputName = cmdLine.hasOption(outputOpt) ? cmdLine.getValue(outputOpt).toString() : null;
if (log.isDebugEnabled()) {
log.debug("inout : {}", dataName);
log.debug("dataset : {}", datasetName);
log.debug("model : {}", modelName);
log.debug("output : {}", outputName);
}
dataPath = new Path(dataName);
datasetPath = new Path(datasetName);
modelPath = new Path(modelName);
if (outputName != null) {
outputPath = new Path(outputName);
}
} catch (OptionException e) {
log.warn(e.toString(), e);
CommandLineUtil.printHelp(group);
return -1;
}
time = System.currentTimeMillis();
testModel();
time = System.currentTimeMillis() - time;
writeToFileClassifyTime(Chi_RWUtils.elapsedTime(time));
return 0;
}
开发者ID:saradelrio,项目名称:Chi-FRBCS-BigData-Ave,代码行数:72,代码来源:TestModel.java
示例10: main
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
/**
*
* @param args
* command line arguments
* -
*/
public static void main(final String[] args) {
Parser parser = new Parser();
parser.setGroup(configureCommandLine());
CommandLine cli = null;
try {
cli = parser.parse(args);
if (cli.hasOption("--help")) {
printUsage(null);
}
//timeoutAsUnknown = cli.hasOption("--unknown");
String sHost = (String) cli.getValue("--host");
final Long port = (Long) cli.getValue("--port", Long.valueOf(DEFAULT_PORT));
String sCommand = (String) cli.getValue("--command", "_NRPE_CHECK");
JNRPEClient client = new JNRPEClient(sHost, port.intValue(), !cli.hasOption("--nossl"));
client.setTimeout(((Long) cli.getValue("--timeout", Long.valueOf(DEFAULT_TIMEOUT))).intValue());
if (cli.hasOption("--weakCiherSuites")) {
client.enableWeakCipherSuites();
}
@SuppressWarnings("unchecked")
List<String> argList = cli.getValues("--arglist");
ReturnValue ret = client.sendCommand(sCommand, argList.toArray(new String[argList.size()]));
System.out.println(ret.getMessage());
System.exit(ret.getStatus().intValue());
} catch (JNRPEClientException exc) {
Status returnStatus;
Throwable cause = exc.getCause();
if (cli.hasOption("--unknown") && cause instanceof SocketTimeoutException) {
returnStatus = Status.UNKNOWN;
} else {
returnStatus = Status.CRITICAL;
}
System.out.println(exc.getMessage());
System.exit(returnStatus.intValue());
} catch (OptionException oe) {
printUsage(oe);
}
}
开发者ID:ziccardi,项目名称:jnrpe,代码行数:56,代码来源:JNRPEClient.java
示例11: PluginCommandLine
import org.apache.commons.cli2.CommandLine; //导入依赖的package包/类
/**
* Incapsulate the given command line.
*
* @param cl
* The command line to be incapsulated
*/
PluginCommandLine(final CommandLine cl) {
commandLine = cl;
}
开发者ID:ziccardi,项目名称:jnrpe,代码行数:10,代码来源:PluginCommandLine.java
注:本文中的org.apache.commons.cli2.CommandLine类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论