org.apache.commons.cli.HelpFormatter#printHelp ( )源码实例Demo

下面列出了org.apache.commons.cli.HelpFormatter#printHelp ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: flink   文件: CliFrontendParser.java
/**
 * Prints custom cli options.
 * @param formatter The formatter to use for printing
 * @param runOptions True if the run options should be printed, False to print only general options
 */
private static void printCustomCliOptions(
		Collection<CustomCommandLine> customCommandLines,
		HelpFormatter formatter,
		boolean runOptions) {
	// prints options from all available command-line classes
	for (CustomCommandLine cli: customCommandLines) {
		formatter.setSyntaxPrefix("  Options for " + cli.getId() + " mode:");
		Options customOpts = new Options();
		cli.addGeneralOptions(customOpts);
		if (runOptions) {
			cli.addRunOptions(customOpts);
		}
		formatter.printHelp(" ", customOpts);
		System.out.println();
	}
}
 
private void printHelp(final HelpFormatter formatter, final Options options)
{
    final OutputStreamWriter streamWriter = new OutputStreamWriter(this.device.out(), LicensingCharsets.UTF_8);
    final PrintWriter printWriter = new PrintWriter(streamWriter);
    formatter.printHelp(
        printWriter,
        ConsoleRSAKeyPairGenerator.CLI_WIDTH,
        ConsoleRSAKeyPairGenerator.USAGE,
        null,
        options,
        ConsoleRSAKeyPairGenerator.HELP_DISPLAY_LEFT_PAD,
        ConsoleRSAKeyPairGenerator.HELP_DISPLAY_DESC_PAD,
        null,
        false
    );
    printWriter.close();
    try
    {
        streamWriter.close();
    }
    catch(final IOException e)
    {
        e.printStackTrace(this.device.err());
    }
}
 
源代码3 项目: hmftools   文件: CreateShallowSeqDB.java
public static void main(@NotNull String[] args) throws ParseException, IOException {
    Options options = createBasicOptions();
    CommandLine cmd = createCommandLine(args, options);

    if (!checkInputs(cmd)) {
        HelpFormatter formatter = new HelpFormatter();
        formatter.printHelp("shallow seq db ", options);
        System.exit(1);
    }

    LOGGER.info("Loading shallow seq runs from {}", cmd.getOptionValue(RUNS_DIRECTORY));
    List<RunContext> runContexts = loadRunContexts(cmd.getOptionValue(RUNS_DIRECTORY));

    List<LimsShallowSeqData> newShallowSeqEntries = extractNewEntriesForShallowDbFromRunContexts(runContexts,
            cmd.getOptionValue(SHALLOW_SEQ_TSV),
            cmd.getOptionValue(RUNS_DIRECTORY),
            cmd.getOptionValue(PURPLE_QC_FILE),
            cmd.getOptionValue(PURPLE_PURITY_P4_TSV),
            cmd.getOptionValue(PURPLE_PURITY_P5_TSV),
            cmd.getOptionValue(PIPELINE_VERSION));

    appendToCsv(cmd.getOptionValue(SHALLOW_SEQ_TSV), newShallowSeqEntries);

    LOGGER.info("Shallow seq DB is complete!");
}
 
源代码4 项目: flink   文件: CliFrontendParser.java
public static void printHelpForSavepoint(Collection<CustomCommandLine> customCommandLines) {
	HelpFormatter formatter = new HelpFormatter();
	formatter.setLeftPadding(5);
	formatter.setWidth(80);

	System.out.println("\nAction \"savepoint\" triggers savepoints for a running job or disposes existing ones.");
	System.out.println("\n  Syntax: savepoint [OPTIONS] <Job ID> [<target directory>]");
	formatter.setSyntaxPrefix("  \"savepoint\" action options:");
	formatter.printHelp(" ", getSavepointOptionsWithoutDeprecatedOptions(new Options()));

	printCustomCliOptions(customCommandLines, formatter, false);

	System.out.println();
}
 
源代码5 项目: Flink-CEPplus   文件: CliFrontendParser.java
public static void printHelpForStop(Collection<CustomCommandLine<?>> customCommandLines) {
	HelpFormatter formatter = new HelpFormatter();
	formatter.setLeftPadding(5);
	formatter.setWidth(80);

	System.out.println("\nAction \"stop\" stops a running program (streaming jobs only).");
	System.out.println("\n  Syntax: stop [OPTIONS] <Job ID>");
	formatter.setSyntaxPrefix("  \"stop\" action options:");
	formatter.printHelp(" ", getStopOptionsWithoutDeprecatedOptions(new Options()));

	printCustomCliOptions(customCommandLines, formatter, false);

	System.out.println();
}
 
源代码6 项目: anthelion   文件: ResolveUrls.java
/**
 * Runs the resolve urls tool.
 */
public static void main(String[] args) {

  Options options = new Options();
  Option helpOpts = OptionBuilder.withArgName("help").withDescription(
    "show this help message").create("help");
  Option urlOpts = OptionBuilder.withArgName("urls").hasArg().withDescription(
    "the urls file to check").create("urls");
  Option numThreadOpts = OptionBuilder.withArgName("numThreads").hasArgs().withDescription(
    "the number of threads to use").create("numThreads");
  options.addOption(helpOpts);
  options.addOption(urlOpts);
  options.addOption(numThreadOpts);

  CommandLineParser parser = new GnuParser();
  try {

    // parse out common line arguments
    CommandLine line = parser.parse(options, args);
    if (line.hasOption("help") || !line.hasOption("urls")) {
      HelpFormatter formatter = new HelpFormatter();
      formatter.printHelp("ResolveUrls", options);
      return;
    }

    // get the urls and the number of threads and start the resolver
    String urls = line.getOptionValue("urls");
    int numThreads = 100;
    String numThreadsStr = line.getOptionValue("numThreads");
    if (numThreadsStr != null) {
      numThreads = Integer.parseInt(numThreadsStr);
    }
    ResolveUrls resolve = new ResolveUrls(urls, numThreads);
    resolve.resolveUrls();
  }
  catch (Exception e) {
    LOG.error("ResolveUrls: " + StringUtils.stringifyException(e));
  }
}
 
源代码7 项目: Flink-CEPplus   文件: CliOptionsParser.java
public static void printHelpEmbeddedModeClient() {
	HelpFormatter formatter = new HelpFormatter();
	formatter.setLeftPadding(5);
	formatter.setWidth(80);

	System.out.println("\nMode \"embedded\" submits Flink jobs from the local machine.");
	System.out.println("\n  Syntax: embedded [OPTIONS]");
	formatter.setSyntaxPrefix("  \"embedded\" mode options:");
	formatter.printHelp(" ", EMBEDDED_MODE_CLIENT_OPTIONS);

	System.out.println();
}
 
源代码8 项目: djl   文件: IntegrationTest.java
public boolean runTests(String[] args) {
    Options options = Arguments.getOptions();
    try {
        DefaultParser parser = new DefaultParser();
        CommandLine cmd = parser.parse(options, args, null, false);
        Arguments arguments = new Arguments(cmd);

        Duration duration = Duration.ofMinutes(arguments.getDuration());
        List<TestClass> tests = listTests(arguments, source);

        boolean testsPassed = true;
        while (!duration.isNegative()) {
            long begin = System.currentTimeMillis();

            testsPassed = testsPassed && runTests(tests);

            long delta = System.currentTimeMillis() - begin;
            duration = duration.minus(Duration.ofMillis(delta));
        }
        return testsPassed;
    } catch (ParseException e) {
        HelpFormatter formatter = new HelpFormatter();
        formatter.setLeftPadding(1);
        formatter.setWidth(120);
        formatter.printHelp(e.getMessage(), options);
        return false;
    } catch (Throwable t) {
        logger.error("Unexpected error", t);
        return false;
    }
}
 
源代码9 项目: crail   文件: CrailFsck.java
public static void main(String[] args) throws Exception {
	String type = "";
	String filename = "/tmp.dat";
	long offset = 0;
	long length = 1;
	boolean randomize = false;	
	int storageClass = 0;
	int locationClass = 0;		
	
	Option typeOption = Option.builder("t").desc("type of experiment [getLocations|directoryDump|namenodeDump|blockStatistics|ping|createDirectory]").hasArg().build();
	Option fileOption = Option.builder("f").desc("filename").hasArg().build();
	Option offsetOption = Option.builder("y").desc("offset into the file").hasArg().build();
	Option lengthOption = Option.builder("l").desc("length of the file [bytes]").hasArg().build();
	Option storageOption = Option.builder("c").desc("storageClass for file [1..n]").hasArg().build();
	Option locationOption = Option.builder("p").desc("locationClass for file [1..n]").hasArg().build();		
	
	Options options = new Options();
	options.addOption(typeOption);
	options.addOption(fileOption);
	options.addOption(offsetOption);
	options.addOption(lengthOption);
	options.addOption(storageOption);
	options.addOption(locationOption);		
	
	CommandLineParser parser = new DefaultParser();
	CommandLine line = parser.parse(options, Arrays.copyOfRange(args, 0, args.length));
	if (line.hasOption(typeOption.getOpt())) {
		type = line.getOptionValue(typeOption.getOpt());
	}
	if (line.hasOption(fileOption.getOpt())) {
		filename = line.getOptionValue(fileOption.getOpt());
	}
	if (line.hasOption(offsetOption.getOpt())) {
		offset = Long.parseLong(line.getOptionValue(offsetOption.getOpt()));
	}
	if (line.hasOption(lengthOption.getOpt())) {
		length = Long.parseLong(line.getOptionValue(lengthOption.getOpt()));
	}
	if (line.hasOption(storageOption.getOpt())) {
		storageClass = Integer.parseInt(line.getOptionValue(storageOption.getOpt()));
	}
	if (line.hasOption(locationOption.getOpt())) {
		locationClass = Integer.parseInt(line.getOptionValue(locationOption.getOpt()));
	}			
	
	CrailFsck fsck = new CrailFsck();
	if (type.equals("getLocations")){
		fsck.getLocations(filename, offset, length);
	} else if (type.equals("directoryDump")){
		fsck.directoryDump(filename, randomize);
	} else if (type.equals("namenodeDump")){
		fsck.namenodeDump();
	} else if (type.equals("blockStatistics")){
		fsck.blockStatistics(filename);
	} else if (type.equals("ping")){
		fsck.ping();
	} else if (type.equals("createDirectory")){
		fsck.createDirectory(filename, storageClass, locationClass);
	} else {
		HelpFormatter formatter = new HelpFormatter();
		formatter.printHelp("crail fsck", options);
		System.exit(-1);	
	}
}
 
源代码10 项目: metadata-qa-marc   文件: Validator.java
public void printHelp(Options opions) {
  HelpFormatter formatter = new HelpFormatter();
  String message = String.format("java -cp metadata-qa-marc.jar %s [options] [file]",
    this.getClass().getCanonicalName());
  formatter.printHelp(message, options);
}
 
源代码11 项目: cwlexec   文件: CWLExecLauncher.java
private void printHelp() {
    HelpFormatter formatter = new HelpFormatter();
    formatter.setOptionComparator((o1, o2) -> optionIndex.get(o1) - optionIndex.get(o2));
    formatter.printHelp(200, ResourceLoader.getMessage("cwl.command.usage"), null, options, null);
}
 
源代码12 项目: yangtools   文件: Main.java
private static void printHelp(final Options options, final HelpFormatter formatter) {
    formatter.printHelp("yang-system-test [OPTION...] YANG-FILE...", options);
}
 
源代码13 项目: incubator-gobblin   文件: DatasetCleanerCli.java
private void printUsage(Options options) {
  HelpFormatter formatter = new HelpFormatter();

  String usage = "DatasetCleaner configuration ";
  formatter.printHelp(usage, options);
}
 
源代码14 项目: incubator-sentry   文件: SentryConfigTool.java
private void usage(Options sentryOptions) {
  HelpFormatter formatter = new HelpFormatter();
  formatter.printHelp("sentry --command config-tool", sentryOptions);
  System.exit(-1);
}
 
源代码15 项目: quaerite   文件: DumpResults.java
public static void main(String[] args) throws Exception {
    CommandLine commandLine = null;

    try {
        commandLine = new DefaultParser().parse(OPTIONS, args);
    } catch (ParseException e) {
        HelpFormatter helpFormatter = new HelpFormatter();
        helpFormatter.printHelp(
                "java -jar org.mitre.quaerite.cli.DumpResults",
                OPTIONS);
        return;
    }
    Path outputDir = Paths.get(commandLine.getOptionValue("d"));
    Path dbDir = Paths.get(commandLine.getOptionValue("db"));
    Set<String> scorers = new TreeSet<>();
    if (commandLine.hasOption("s")) {
        scorers.addAll(
                Arrays.asList(commandLine.getOptionValue("s").split(",")));
    }
    List<String> querySets = new ArrayList<>();
    if (commandLine.hasOption("q")) {
        querySets.addAll(
                Arrays.asList(commandLine.getOptionValue("q").split(","))
        );
    } else {
        querySets.add("");
    }
    Files.createDirectories(outputDir);
    List<Scorer> targetScorers = new ArrayList<>();
    try (ExperimentDB experimentDB = ExperimentDB.open(dbDir)) {
        if (scorers.size() == 0) {
            targetScorers.addAll(experimentDB.getExperiments().getScorers());
        } else  {
            for (Scorer scorer : experimentDB.getExperiments().getScorers()) {
                if (scorers.contains(scorer.getName())) {
                    targetScorers.add(scorer);
                }
            }
        }
        dumpResults(experimentDB.getExperiments(), experimentDB,
                querySets, targetScorers, outputDir, false);
    }
}
 
源代码16 项目: rocketmq   文件: ServerUtil.java
public static void printCommandLineHelp(final String appName, final Options options) {
    HelpFormatter hf = new HelpFormatter();
    hf.setWidth(110);
    hf.printHelp(appName, options, true);
}
 
源代码17 项目: incubator-sentry   文件: SentryShellCommon.java
private void usage(Options sentryOptions) {
  HelpFormatter formatter = new HelpFormatter();
  formatter.printHelp("sentryShell", sentryOptions);
}
 
源代码18 项目: gdx-proto   文件: CommandArgs.java
public static ScreenSize process(String[] args) {
	Options options = new Options();
	options.addOption("s", "server", false, "start online server");
	options.addOption("p", "port", true, "specify TCP port to either host on (server) or connect to (client)");
	options.addOption("c", "client", false, "connect to server as a client");
	options.addOption("a", "address", true, "supply hostname address to connect to");
	options.addOption("d", "lag-delay", true, "simulate lag with argument = milliseconds of lag");
	options.addOption("z", "screensize", true, "supply screen size in the form of WIDTHxHEIGHT, i.e. 1920x1080");
	options.addOption("h", "help", false, "print help");

	boolean printHelpAndQuit = false;

	ScreenSize screenSize = null;

	CommandLineParser parser = new BasicParser();
	CommandLine cli = null;
	try {
		cli = parser.parse(options, args);
	} catch (ParseException e) {
		e.printStackTrace();
		printHelpAndQuit = true;
	}
	if (cli != null && cli.hasOption('h')) {
		printHelpAndQuit = true;
	}
	if (cli != null && cli.getOptions().length == 0) {
		Main.serverType = ServerType.Local;
		Main.hasClient = true;
	}
	else if (cli != null && !printHelpAndQuit) {
		if (cli.hasOption('z')) {
			String[] pieces = cli.getOptionValue('z').split("x");
			int width = Integer.parseInt(pieces[0]);
			int height = Integer.parseInt(pieces[1]);
			screenSize = new ScreenSize();
			screenSize.width = width;
			screenSize.height = height;
		}
		if (cli.hasOption('s')) {
			Main.serverType = ServerType.Online;
			System.out.println("server type: online");
		}
		if (cli.hasOption('l')) {
			if (Main.serverType != null) {
				System.out.println("please choose local or online server, not both");
				printHelpAndQuit = true;
			} else {
				Main.serverType = ServerType.Local;
			}
		}
		if (cli.hasOption('c')) {
			Main.hasClient = true;
		}
		if (cli.hasOption('a')) {
			String value = cli.getOptionValue('a');
			if (value != null) {
				NetManager.host = value;
			}
		}
		if (cli.hasOption('p')) {
			int port = Integer.parseInt(cli.getOptionValue('p'));
			NetManager.tcpPort = port;
		}
		if (cli.hasOption('d')) {
			NetServer.simulateLag = true;
			int lagMillis = Integer.parseInt(cli.getOptionValue('d'));
			NetServer.lagMin = lagMillis;
			NetServer.lagMax = lagMillis;
		}
		// verify
		if (!Main.isClient() && !Main.isServer()) {
			System.out.println("please choose client and server options");
			printHelpAndQuit = true;
		}
	}
	if (printHelpAndQuit) {
		HelpFormatter hf = new HelpFormatter();
		hf.printHelp("java -jar myjarfile.jar <args>", options);
		System.exit(1);
	}
	return screenSize;
}
 
源代码19 项目: TypeScript-Microservices   文件: MetaGenerator.java
static void usage(Options options) {
    HelpFormatter formatter = new HelpFormatter();
    formatter.printHelp("MetaGenerator. Generator for creating a new template set " +
            "and configuration for Codegen.  The output will be based on the language you " +
            "specify, and includes default templates to include.", options);
}
 
源代码20 项目: bigtable-sql   文件: ApplicationArguments.java
void printHelp()
{
	HelpFormatter formatter = new HelpFormatter();
	formatter.printHelp("squirrel-sql", _options);
}