Skip to content

Commit

Permalink
EscapedEntity: flag HTML entities used within @code/@literal tags.
Browse files Browse the repository at this point in the history
RELNOTES: EscapedEntity: flag HTML entities used within @code/@literal tags.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=227865331
  • Loading branch information
graememorgan authored and ronshapiro committed Jan 15, 2019
1 parent 1ecc19b commit 31093bd
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/*
* 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.javadoc;

import static com.google.errorprone.BugPattern.ProvidesFix.NO_FIX;
import static com.google.errorprone.BugPattern.SeverityLevel.WARNING;
import static com.google.errorprone.BugPattern.StandardTags.STYLE;
import static com.google.errorprone.bugpatterns.javadoc.Utils.diagnosticPosition;
import static com.google.errorprone.bugpatterns.javadoc.Utils.getDocTreePath;
import static com.google.errorprone.matchers.Description.NO_MATCH;

import com.google.errorprone.BugPattern;
import com.google.errorprone.VisitorState;
import com.google.errorprone.bugpatterns.BugChecker;
import com.google.errorprone.bugpatterns.BugChecker.ClassTreeMatcher;
import com.google.errorprone.bugpatterns.BugChecker.MethodTreeMatcher;
import com.google.errorprone.bugpatterns.BugChecker.VariableTreeMatcher;
import com.google.errorprone.matchers.Description;
import com.sun.source.doctree.LiteralTree;
import com.sun.source.tree.ClassTree;
import com.sun.source.tree.MethodTree;
import com.sun.source.tree.VariableTree;
import com.sun.source.util.DocTreePath;
import com.sun.source.util.DocTreePathScanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.annotation.Nullable;

/**
* Finds unescaped entities in Javadocs.
*
* @author ghm@google.com (Graeme Morgan)
*/
@BugPattern(
name = "EscapedEntity",
summary = "HTML entities in @code/@literal tags will appear literally in the rendered javadoc.",
severity = WARNING,
tags = STYLE,
providesFix = NO_FIX)
public final class EscapedEntity extends BugChecker
implements ClassTreeMatcher, MethodTreeMatcher, VariableTreeMatcher {

private static final Pattern HTML_ENTITY =
Pattern.compile("&[a-z0-9]+;|&#[0-9]+;|&#x[0-9a-f]+;", Pattern.CASE_INSENSITIVE);

@Override
public Description matchClass(ClassTree classTree, VisitorState state) {
return handle(getDocTreePath(state), state);
}

@Override
public Description matchMethod(MethodTree methodTree, VisitorState state) {
return handle(getDocTreePath(state), state);
}

@Override
public Description matchVariable(VariableTree variableTree, VisitorState state) {
return handle(getDocTreePath(state), state);
}

private Description handle(@Nullable DocTreePath path, VisitorState state) {
if (path == null) {
return NO_MATCH;
}
new Scanner(state).scan(path, null);
return NO_MATCH;
}

private final class Scanner extends DocTreePathScanner<Void, Void> {
private final VisitorState state;

private Scanner(VisitorState state) {
this.state = state;
}

@Override
public Void visitLiteral(LiteralTree node, Void unused) {
Matcher matcher = HTML_ENTITY.matcher(node.getBody().getBody());
if (matcher.find()) {
state.reportMatch(buildDescription(diagnosticPosition(getCurrentPath(), state)).build());
}
return super.visitLiteral(node, null);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@
import com.google.errorprone.bugpatterns.inject.guice.OverridesGuiceInjectableMethod;
import com.google.errorprone.bugpatterns.inject.guice.OverridesJavaxInjectableMethod;
import com.google.errorprone.bugpatterns.inject.guice.ProvidesMethodOutsideOfModule;
import com.google.errorprone.bugpatterns.javadoc.EscapedEntity;
import com.google.errorprone.bugpatterns.javadoc.InheritDoc;
import com.google.errorprone.bugpatterns.javadoc.InvalidParam;
import com.google.errorprone.bugpatterns.javadoc.InvalidTag;
Expand Down Expand Up @@ -735,6 +736,7 @@ public static ScannerSupplier errorChecks() {
EmptySetMultibindingContributions.class,
EmptyTopLevelDeclaration.class,
EqualsBrokenForNull.class,
EscapedEntity.class,
ExpectedExceptionChecker.class,
ExpectedExceptionRefactoring.class,
FieldCanBeFinal.class,
Expand Down
29 changes: 29 additions & 0 deletions docs/bugpattern/javadoc/EscapedEntity.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
HTML entities used within `@code` and `@literal` tags will be interpreted
directly rather than converted to the expected characters. For example, this is
wrong:

```java {.bad}
/**
* <pre>{@code
* &#064;Override
* public boolean equals(Object o) {
* return false;
* }
* }</pre>
*/
```

An option is to drop the {@code } tags, though this will then require escaping
any generic type parameters which may otherwise be interpreted as HTML. That is,
`List<Integer>` is the text "List" followed by the (non-existent) tag "Integer".

```java {.good}
/**
* <pre>
* &#064;Override
* public boolean equals(Object o) {
* return false;
* }
* </pre>
*/
```

0 comments on commit 31093bd

Please sign in to comment.