Command.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2009, 2025 Mountainminds GmbH & Co. KG and Contributors
  3.  * This program and the accompanying materials are made available under
  4.  * the terms of the Eclipse Public License 2.0 which is available at
  5.  * http://www.eclipse.org/legal/epl-2.0
  6.  *
  7.  * SPDX-License-Identifier: EPL-2.0
  8.  *
  9.  * Contributors:
  10.  *    Marc R. Hoffmann - initial API and implementation
  11.  *
  12.  *******************************************************************************/
  13. package org.jacoco.cli.internal;

  14. import java.io.PrintWriter;
  15. import java.io.StringWriter;

  16. import org.kohsuke.args4j.Option;

  17. /**
  18.  * Common interface for all commands.
  19.  */
  20. public abstract class Command {

  21.     /**
  22.      * Common command line prefix.
  23.      */
  24.     public static final String JAVACMD = "java -jar jacococli.jar ";

  25.     /**
  26.      * Flag whether help should be printed for this command.
  27.      */
  28.     @Option(name = "--help", usage = "show help", help = true)
  29.     public boolean help = false;

  30.     /**
  31.      * Flag whether output to stdout should be suppressed.
  32.      */
  33.     @Option(name = "--quiet", usage = "suppress all output on stdout")
  34.     public boolean quiet = false;

  35.     /**
  36.      * @return Short description of the command.
  37.      */
  38.     public abstract String description();

  39.     /**
  40.      * @return name of the command
  41.      */
  42.     public String name() {
  43.         return getClass().getSimpleName().toLowerCase();
  44.     }

  45.     /**
  46.      * @param parser
  47.      *            parser for this command
  48.      * @return usage string displayed for help
  49.      */
  50.     public String usage(final CommandParser parser) {
  51.         final StringWriter writer = new StringWriter();
  52.         parser.printSingleLineUsage(writer, null);
  53.         return JAVACMD + name() + writer;
  54.     }

  55.     /**
  56.      * Executes the given command.
  57.      *
  58.      * @param out
  59.      *            std out
  60.      * @param err
  61.      *            std err
  62.      * @return exit code, should be 0 for normal operation
  63.      * @throws Exception
  64.      *             any exception that my occur during execution
  65.      */
  66.     public abstract int execute(PrintWriter out, PrintWriter err)
  67.             throws Exception;

  68.     /**
  69.      * Prints textual help for this command.
  70.      *
  71.      * @param writer
  72.      *            output destination
  73.      */
  74.     protected void printHelp(final PrintWriter writer) {
  75.         final CommandParser parser = new CommandParser(this);
  76.         writer.println(description());
  77.         writer.println();
  78.         writer.println("Usage: " + parser.getCommand().usage(parser));
  79.         parser.printUsage(writer, null);
  80.     }

  81. }