All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.errorprone.bugpatterns.AutoValueFinalMethods Maven / Gradle / Ivy

There is a newer version: 2.28.0
Show newest version
/*
 * Copyright 2018 The Error Prone Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.errorprone.bugpatterns;

import static com.google.errorprone.BugPattern.SeverityLevel.WARNING;
import static com.google.errorprone.matchers.Description.NO_MATCH;
import static com.google.errorprone.matchers.Matchers.allOf;
import static com.google.errorprone.matchers.Matchers.anyOf;
import static com.google.errorprone.matchers.Matchers.not;

import com.google.common.base.Joiner;
import com.google.errorprone.BugPattern;
import com.google.errorprone.VisitorState;
import com.google.errorprone.bugpatterns.BugChecker.ClassTreeMatcher;
import com.google.errorprone.fixes.SuggestedFix;
import com.google.errorprone.fixes.SuggestedFixes;
import com.google.errorprone.matchers.Description;
import com.google.errorprone.matchers.Matcher;
import com.google.errorprone.matchers.Matchers;
import com.google.errorprone.util.ASTHelpers;
import com.sun.source.tree.ClassTree;
import com.sun.source.tree.MethodTree;
import com.sun.source.tree.Tree;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import javax.lang.model.element.Modifier;

/**
 * Checks the toString(), hashCode() and equals() methods are final in AutoValue classes.
 *
 * @author [email protected] (Sumit Bhagwani)
 */
@BugPattern(
    name = "AutoValueFinalMethods",
    summary =
        "Make toString(), hashCode() and equals() final in AutoValue classes"
            + ", so it is clear to readers that AutoValue is not overriding them",
    severity = WARNING)
public class AutoValueFinalMethods extends BugChecker implements ClassTreeMatcher {

  private static final String MEMOIZED = "com.google.auto.value.extension.memoized.Memoized";

  // public non-memoized non-final eq/ts/hs methods
  private static final Matcher METHOD_MATCHER =
      allOf(
          Matchers.hasModifier(Modifier.PUBLIC),
          not(Matchers.hasModifier(Modifier.ABSTRACT)),
          not(Matchers.hasModifier(Modifier.FINAL)),
          not(Matchers.hasAnnotation(MEMOIZED)),
          anyOf(
              Matchers.equalsMethodDeclaration(),
              Matchers.toStringMethodDeclaration(),
              Matchers.hashCodeMethodDeclaration()));

  @Override
  public Description matchClass(ClassTree tree, VisitorState state) {
    if (!ASTHelpers.hasAnnotation(tree, "com.google.auto.value.AutoValue", state)) {
      return NO_MATCH;
    }
    SuggestedFix.Builder fix = SuggestedFix.builder();
    List matchedMethods = new ArrayList<>();
    MethodTree firstMatchedMethod = null;
    for (Tree memberTree : tree.getMembers()) {
      if (!(memberTree instanceof MethodTree)) {
        continue;
      }
      MethodTree method = (MethodTree) memberTree;
      if (METHOD_MATCHER.matches(method, state)) {
        Optional optionalSuggestedFix =
            SuggestedFixes.addModifiers(method, state, Modifier.FINAL);
        if (optionalSuggestedFix.isPresent()) {
          matchedMethods.add(method.getName().toString());
          fix.merge(optionalSuggestedFix.get());
          if (firstMatchedMethod == null) {
            firstMatchedMethod = method;
          }
        }
      }
    }
    if (!fix.isEmpty()) {
      String message =
          String.format(
              "Make %s final in AutoValue classes, "
                  + "so it is clear to readers that AutoValue is not overriding them",
              Joiner.on(", ").join(matchedMethods));
      return buildDescription(firstMatchedMethod).setMessage(message).addFix(fix.build()).build();
    }
    return NO_MATCH;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy