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.maven.logwrapper;
20  
21  import java.util.HashMap;
22  import java.util.Map;
23  
24  import org.slf4j.event.Level;
25  
26  /**
27   * Responsible for keeping state of whether the threshold of the --fail-on-severity flag has been hit.
28   */
29  public class LogLevelRecorder {
30      private static final Map<String, Level> ACCEPTED_LEVELS = new HashMap<>();
31  
32      static {
33          ACCEPTED_LEVELS.put("WARN", Level.WARN);
34          ACCEPTED_LEVELS.put("WARNING", Level.WARN);
35          ACCEPTED_LEVELS.put("ERROR", Level.ERROR);
36      }
37  
38      private final Level logThreshold;
39      private boolean metThreshold = false;
40  
41      public LogLevelRecorder(String threshold) {
42          logThreshold = determineThresholdLevel(threshold);
43      }
44  
45      private Level determineThresholdLevel(String input) {
46          final Level result = ACCEPTED_LEVELS.get(input);
47          if (result == null) {
48              String message = String.format(
49                      "%s is not a valid log severity threshold. Valid severities are WARN/WARNING and ERROR.", input);
50              throw new IllegalArgumentException(message);
51          }
52          return result;
53      }
54  
55      public void record(Level logLevel) {
56          if (!metThreshold && logLevel.toInt() >= logThreshold.toInt()) {
57              metThreshold = true;
58          }
59      }
60  
61      public boolean metThreshold() {
62          return metThreshold;
63      }
64  }