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.analysis.matchers;
20  
21  import java.util.Objects;
22  
23  import org.apache.rat.analysis.IHeaderMatcher;
24  import org.apache.rat.analysis.IHeaders;
25  import org.apache.rat.config.parameters.ComponentType;
26  import org.apache.rat.config.parameters.ConfigComponent;
27  
28  /**
29   * An IHeaderMatcher that reverses the result of an enclosed matcher.
30   */
31  @ConfigComponent(type = ComponentType.MATCHER, name = "not", desc = "Negates the enclosed matcher.")
32  public class NotMatcher extends AbstractHeaderMatcher {
33  
34      @ConfigComponent(desc = "enclosed Matcher", type = ComponentType.PARAMETER, parameterType = IHeaderMatcher.class, required=true)
35      private final IHeaderMatcher enclosed;
36  
37      /**
38       * Create the matcher with the enclosed matcher and id.
39       * 
40       * @param id the id for this matcher. May be null
41       * @param enclosed the enclosed matcher
42       */
43      public NotMatcher(String id, IHeaderMatcher enclosed) {
44          super(id);
45          Objects.requireNonNull(enclosed, "enclosed matcher may not be null");
46          this.enclosed = enclosed;
47      }
48  
49      public IHeaderMatcher getEnclosed() {
50          return enclosed;
51      }
52  
53      @Override
54      public boolean matches(IHeaders headers) {
55          return !enclosed.matches(headers);
56      }
57  
58      @Override
59      public void reset() {
60          enclosed.reset();
61      }
62  }