1 /////////////////////////////////////////////////////////////////////////////////////////////// 2 // checkstyle: Checks Java source code and other text files for adherence to a set of rules. 3 // Copyright (C) 2001-2024 the original author or authors. 4 // 5 // This library is free software; you can redistribute it and/or 6 // modify it under the terms of the GNU Lesser General Public 7 // License as published by the Free Software Foundation; either 8 // version 2.1 of the License, or (at your option) any later version. 9 // 10 // This library is distributed in the hope that it will be useful, 11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 // Lesser General Public License for more details. 14 // 15 // You should have received a copy of the GNU Lesser General Public 16 // License along with this library; if not, write to the Free Software 17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 /////////////////////////////////////////////////////////////////////////////////////////////// 19 20 package com.puppycrawl.tools.checkstyle.api; 21 22 import java.util.Collections; 23 import java.util.HashSet; 24 import java.util.Set; 25 26 /** 27 * A before execution file filter set applies filters to events. 28 * If a before execution file filter in the set rejects an event, then the 29 * event is rejected. Otherwise, the event is accepted. 30 */ 31 public final class BeforeExecutionFileFilterSet 32 implements BeforeExecutionFileFilter { 33 34 /** Filter set. */ 35 private final Set<BeforeExecutionFileFilter> beforeExecutionFileFilters = new HashSet<>(); 36 37 /** 38 * Adds a Filter to the set. 39 * 40 * @param filter the Filter to add. 41 */ 42 public void addBeforeExecutionFileFilter(BeforeExecutionFileFilter filter) { 43 beforeExecutionFileFilters.add(filter); 44 } 45 46 /** 47 * Removes filter. 48 * 49 * @param filter filter to remove. 50 */ 51 public void removeBeforeExecutionFileFilter(BeforeExecutionFileFilter filter) { 52 beforeExecutionFileFilters.remove(filter); 53 } 54 55 /** 56 * Returns the Filters of the filter set. 57 * 58 * @return the Filters of the filter set. 59 */ 60 public Set<BeforeExecutionFileFilter> getBeforeExecutionFileFilters() { 61 return Collections.unmodifiableSet(beforeExecutionFileFilters); 62 } 63 64 @Override 65 public String toString() { 66 return beforeExecutionFileFilters.toString(); 67 } 68 69 @Override 70 public boolean accept(String uri) { 71 boolean result = true; 72 for (BeforeExecutionFileFilter filter : beforeExecutionFileFilters) { 73 if (!filter.accept(uri)) { 74 result = false; 75 break; 76 } 77 } 78 return result; 79 } 80 81 /** Clears the BeforeExecutionFileFilterSet. */ 82 public void clear() { 83 beforeExecutionFileFilters.clear(); 84 } 85 86 }