001/////////////////////////////////////////////////////////////////////////////////////////////// 002// checkstyle: Checks Java source code and other text files for adherence to a set of rules. 003// Copyright (C) 2001-2025 the original author or authors. 004// 005// This library is free software; you can redistribute it and/or 006// modify it under the terms of the GNU Lesser General Public 007// License as published by the Free Software Foundation; either 008// version 2.1 of the License, or (at your option) any later version. 009// 010// This library is distributed in the hope that it will be useful, 011// but WITHOUT ANY WARRANTY; without even the implied warranty of 012// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 013// Lesser General Public License for more details. 014// 015// You should have received a copy of the GNU Lesser General Public 016// License along with this library; if not, write to the Free Software 017// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 018/////////////////////////////////////////////////////////////////////////////////////////////// 019 020package com.puppycrawl.tools.checkstyle.filters; 021 022import com.puppycrawl.tools.checkstyle.AbstractAutomaticBean; 023import com.puppycrawl.tools.checkstyle.api.AuditEvent; 024import com.puppycrawl.tools.checkstyle.api.Filter; 025import com.puppycrawl.tools.checkstyle.api.SeverityLevel; 026 027/** 028 * <div> 029 * Filter {@code SeverityMatchFilter} decides audit events according to the 030 * <a href="https://checkstyle.org/config.html#Severity">severity level</a> of the event. 031 * </div> 032 * 033 * <p> 034 * Notes: 035 * SeverityMatchFilter can suppress Checks that have Treewalker or Checker as parent module. 036 * </p> 037 * 038 * @since 3.2 039 */ 040public class SeverityMatchFilter 041 extends AbstractAutomaticBean 042 implements Filter { 043 044 /** Specify the severity level of this filter. */ 045 private SeverityLevel severity = SeverityLevel.ERROR; 046 047 /** 048 * Control whether the filter accepts an audit event if and only if there 049 * is a match between the event's severity level and property severity. 050 * If acceptOnMatch is {@code false}, then the filter accepts an audit event 051 * if and only if there is not a match between the event's severity level 052 * and property severity. 053 */ 054 private boolean acceptOnMatch = true; 055 056 /** 057 * Setter to specify the severity level of this filter. 058 * 059 * @param severity The new severity level 060 * @see SeverityLevel 061 * @since 3.2 062 */ 063 public final void setSeverity(SeverityLevel severity) { 064 this.severity = severity; 065 } 066 067 /** 068 * Setter to control whether the filter accepts an audit event if and only if there 069 * is a match between the event's severity level and property severity. 070 * If acceptOnMatch is {@code false}, then the filter accepts an audit event 071 * if and only if there is not a match between the event's severity level and property severity. 072 * 073 * @param acceptOnMatch if true, accept on matches; if 074 * false, reject on matches. 075 * @since 3.2 076 */ 077 public final void setAcceptOnMatch(boolean acceptOnMatch) { 078 this.acceptOnMatch = acceptOnMatch; 079 } 080 081 @Override 082 protected void finishLocalSetup() { 083 // No code by default 084 } 085 086 @Override 087 public boolean accept(AuditEvent event) { 088 final boolean severityMatches = severity == event.getSeverityLevel(); 089 return acceptOnMatch == severityMatches; 090 } 091 092}