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",
32          desc = "A matcher that wraps one matcher and negates its value. Not matchers require that the entire " +
33                  "header be read before it can report true or false. This may significantly slow processing.")
34  public class NotMatcher extends AbstractHeaderMatcher {
35      /**
36       * The enclosed matcher to negate.
37       */
38      @ConfigComponent(desc = "enclosed Matcher", type = ComponentType.PARAMETER, parameterType = IHeaderMatcher.class, required = true)
39      private final IHeaderMatcher enclosed;
40  
41      /**
42       * Create the matcher with the enclosed matcher and id.
43       *
44       * @param id the id for this matcher. May be null
45       * @param enclosed the enclosed matcher
46       */
47      public NotMatcher(final String id, final IHeaderMatcher enclosed) {
48          super(id);
49          Objects.requireNonNull(enclosed, "enclosed matcher may not be null");
50          this.enclosed = enclosed;
51      }
52  
53      public IHeaderMatcher getEnclosed() {
54          return enclosed;
55      }
56  
57      @Override
58      public boolean matches(final IHeaders headers) {
59          return !enclosed.matches(headers);
60      }
61  
62      @Override
63      public void reset() {
64          enclosed.reset();
65      }
66  }