View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one   *
3    * or more contributor license agreements.  See the NOTICE file *
4    * distributed with this work for additional information        *
5    * regarding copyright ownership.  The ASF licenses this file   *
6    * to you under the Apache License, Version 2.0 (the            *
7    * "License"); you may not use this file except in compliance   *
8    * with the License.  You may obtain a copy of the License at   *
9    *                                                              *
10   *   http://www.apache.org/licenses/LICENSE-2.0                 *
11   *                                                              *
12   * Unless required by applicable law or agreed to in writing,   *
13   * software distributed under the License is distributed on an  *
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
15   * KIND, either express or implied.  See the License for the    *
16   * specific language governing permissions and limitations      *
17   * under the License.                                           *
18   */
19  package org.apache.rat.help;
20  
21  import java.io.PrintStream;
22  import java.io.PrintWriter;
23  import java.io.Writer;
24  import java.nio.charset.StandardCharsets;
25  import java.util.Collections;
26  import java.util.List;
27  
28  import org.apache.commons.cli.Options;
29  import org.apache.rat.OptionCollection;
30  import org.apache.rat.config.exclusion.StandardCollection;
31  
32  import static java.lang.String.format;
33  
34  /**
35   * The help output for the command line client.
36   */
37  public class Help extends AbstractHelp {
38  
39      /**
40       * An array of notes to go at the bottom of the help output
41       */
42      protected static final List<String> NOTES = Collections.unmodifiableList(List.of(
43              "RAT highlights possible issues.",
44              "RAT reports require interpretation.",
45              "RAT often requires some tuning before it runs well against a project.",
46              "RAT relies on heuristics: it may miss issues")
47      );
48  
49      /** The writer this instance writes to */
50      protected final PrintWriter writer;
51  
52      /**
53       * Creates a Help instance to write to the specified writer.
54       * @param writer the writer to write to.
55       */
56      public Help(final Writer writer) {
57          super();
58          this.writer = writer instanceof PrintWriter ? (PrintWriter) writer : new PrintWriter(writer);
59      }
60  
61      /**
62       * Creates a Help instance to print to the specified stream.
63       * @param stream the PrintStream to write to.
64       */
65      public Help(final PrintStream stream) {
66          this(new PrintWriter(stream, false, StandardCharsets.UTF_8));
67      }
68  
69      /**
70       * Print the usage to the specific PrintWriter.
71       * @param opts The defined options.
72       */
73      public void printUsage(final Options opts) {
74          String syntax = format("java -jar apache-rat/target/apache-rat-%s.jar [options] [DIR|ARCHIVE]", versionInfo.getVersion());
75          helpFormatter.printHelp(writer, syntax, header("Available options"), opts, header("Argument Types"));
76  
77          String argumentPadding = printArgumentTypes();
78  
79          writer.println(header("Standard Collections"));
80          for (StandardCollection sc : StandardCollection.values()) {
81              writer.format("%n<%s>%n", sc.name());
82              helpFormatter.printWrapped(writer, helpFormatter.getWidth(), helpFormatter.getLeftPadding() + HELP_PADDING + HELP_PADDING,
83                      argumentPadding + sc.desc());
84              helpFormatter.printWrapped(writer, helpFormatter.getWidth(), helpFormatter.getLeftPadding() + HELP_PADDING + HELP_PADDING,
85                      argumentPadding + "File patterns: " + (sc.patterns().isEmpty() ? "<none>" : String.join(", ", sc.patterns())));
86              helpFormatter.printWrapped(writer, helpFormatter.getWidth(), helpFormatter.getLeftPadding() + HELP_PADDING + HELP_PADDING,
87                      argumentPadding + "Provides a path matcher: " + sc.hasStaticDocumentNameMatcher());
88              helpFormatter.printWrapped(writer, helpFormatter.getWidth(), helpFormatter.getLeftPadding() + HELP_PADDING + HELP_PADDING,
89                      argumentPadding + "Provides a file processor: " + sc.fileProcessorBuilder().hasNext());
90          }
91          writer.println("\nA path matcher will match specific information about the file.");
92          writer.println("\nA file processor will process the associated \"ignore\" file for include and exclude directives");
93  
94          writer.println(header("Notes"));
95          int idx = 1;
96          for (String note : NOTES) {
97              writer.format("%d. %s%n", idx++, note);
98          }
99  
100         writer.flush();
101     }
102 
103     /**
104      * Prints the list of argument types to the writer.
105      * @return returns the padding for the arguments.
106      */
107     public String printArgumentTypes() {
108         String argumentPadding = createPadding(helpFormatter.getLeftPadding() + HELP_PADDING);
109 
110         for (OptionCollection.ArgumentType argType : OptionCollection.ArgumentType.values()) {
111             if (argType != OptionCollection.ArgumentType.NONE) {
112                 writer.format("%n<%s>%n", argType.getDisplayName());
113                 helpFormatter.printWrapped(writer, helpFormatter.getWidth(), helpFormatter.getLeftPadding() + HELP_PADDING + HELP_PADDING,
114                         argumentPadding + argType.description().get());
115             }
116         }
117         return argumentPadding;
118     }
119 }