Package com.google.errorprone.bugpatterns

Source Code of com.google.errorprone.bugpatterns.InjectInvalidTargetingOnScopingAnnotation

/*
* Copyright 2013 Google Inc. All Rights Reserved.
*
* 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.Category.INJECT;
import static com.google.errorprone.BugPattern.MaturityLevel.EXPERIMENTAL;
import static com.google.errorprone.BugPattern.SeverityLevel.ERROR;
import static com.google.errorprone.bugpatterns.BugChecker.ClassTreeMatcher;
import static com.google.errorprone.matchers.Matchers.hasAnnotation;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;

import com.google.errorprone.BugPattern;
import com.google.errorprone.VisitorState;
import com.google.errorprone.fixes.SuggestedFix;
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.AnnotationTree;
import com.sun.source.tree.ClassTree;
import com.sun.tools.javac.code.Attribute.Compound;
import com.sun.tools.javac.code.Flags;
import com.sun.tools.javac.code.Symbol;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
* @author sgoldfeder@google.com (Steven Goldfeder)
*/
@BugPattern(name = "InjectInvalidTargetingOnScopingAnnotation",
    summary = "The target of a scoping annotation must be set to METHOD and/or TYPE.",
    explanation = "Scoping annotations are only appropriate for provision and therefore are only " +
        "appropriate on @Provides methods and classes that will be provided just-in-time.",
    category = INJECT, severity = ERROR, maturity = EXPERIMENTAL)
public class InjectInvalidTargetingOnScopingAnnotation extends BugChecker
    implements ClassTreeMatcher {

  private static final String GUICE_SCOPE_ANNOTATION = "com.google.inject.ScopeAnnotation";
  private static final String JAVAX_SCOPE_ANNOTATION = "javax.inject.Scope";
  private static final String TARGET_ANNOTATION = "java.lang.annotation.Target";

  /**
   * Matches classes that are annotated with @Scope or @ScopeAnnotation.
   */
  private static final Matcher<ClassTree> SCOPE_ANNOTATION_MATCHER = Matchers.<ClassTree>anyOf(
      hasAnnotation(GUICE_SCOPE_ANNOTATION), hasAnnotation(JAVAX_SCOPE_ANNOTATION));

  @Override
  public final Description matchClass(ClassTree classTree, VisitorState state) {
    Symbol classSymbol = ASTHelpers.getSymbol(classTree);
    if ((classSymbol.flags() & Flags.ANNOTATION) != 0
        && SCOPE_ANNOTATION_MATCHER.matches(classTree, state)) {
      Target target = ASTHelpers.getAnnotation(classSymbol, Target.class);
      boolean hasExclusivelyTypeAndOrMethodTargeting = false;
      if (target != null) {
        for (ElementType elementType : target.value()) {
          if (elementType != METHOD && elementType != TYPE) {
            return describe(classTree, state);
          } else if (elementType == METHOD || elementType == TYPE) {
            hasExclusivelyTypeAndOrMethodTargeting = true;
          }
        }
      }
      if(!hasExclusivelyTypeAndOrMethodTargeting) { // true for no target set and for @Target({})
        return describe(classTree, state);
      }
    }
    return Description.NO_MATCH;
  }

  public Description describe(ClassTree classTree, VisitorState state) {
    Compound target = ASTHelpers.getSymbol(classTree).attribute(
        state.getSymbolFromString(TARGET_ANNOTATION));
    if (target == null) {
      return describeMatch(classTree, SuggestedFix.builder()
          .addImport("java.lang.annotation.Target")
          .addStaticImport("java.lang.annotation.ElementType.TYPE")
          .addStaticImport("java.lang.annotation.ElementType.METHOD")
          .prefixWith(classTree, "@Target({TYPE, METHOD})\n")
          .build());
    }
    AnnotationTree targetNode = null;
    for (AnnotationTree annotation : classTree.getModifiers().getAnnotations()) {
      if (ASTHelpers.getSymbol(annotation).equals(state.getSymbolFromString(TARGET_ANNOTATION))) {
        targetNode = annotation;
      }
    }
    return describeMatch(targetNode, SuggestedFix.builder()
        .addImport("java.lang.annotation.Target")
        .addStaticImport("java.lang.annotation.ElementType.TYPE")
        .addStaticImport("java.lang.annotation.ElementType.METHOD")
        .replace(targetNode, "@Target({TYPE, METHOD})")
        .build());
  }
}
TOP

Related Classes of com.google.errorprone.bugpatterns.InjectInvalidTargetingOnScopingAnnotation

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.