blob: 1f3f8bc4ebc050e769bd247d1fd71b794bc4a201 [file] [log] [blame]
/*
* Copyright (C) 2012 The Android Open Source Project
*
* 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.android.tools.lint.checks;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.tools.lint.detector.api.Category;
import com.android.tools.lint.detector.api.Detector;
import com.android.tools.lint.detector.api.Implementation;
import com.android.tools.lint.detector.api.Issue;
import com.android.tools.lint.detector.api.JavaContext;
import com.android.tools.lint.detector.api.Location;
import com.android.tools.lint.detector.api.Scope;
import com.android.tools.lint.detector.api.Severity;
import com.android.tools.lint.detector.api.SourceCodeScanner;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiClassType;
import com.intellij.psi.PsiMethod;
import com.intellij.psi.PsiParameter;
import com.intellij.psi.PsiType;
import java.util.Collections;
import java.util.List;
import org.jetbrains.uast.UAnonymousClass;
import org.jetbrains.uast.UCallExpression;
import org.jetbrains.uast.UClass;
import org.jetbrains.uast.UExpression;
import org.jetbrains.uast.UMethod;
import org.jetbrains.uast.UObjectLiteralExpression;
import org.jetbrains.uast.UastUtils;
/**
* Checks that Handler implementations are top level classes or static. See the corresponding check
* in the android.os.Handler source code.
*/
public class HandlerDetector extends Detector implements SourceCodeScanner {
/** Potentially leaking handlers */
public static final Issue ISSUE =
Issue.create(
"HandlerLeak",
"Handler reference leaks",
"Since this Handler is declared as an inner class, it may prevent the outer "
+ "class from being garbage collected. If the Handler is using a `Looper` or "
+ "`MessageQueue` for a thread other than the main thread, then there is no issue. "
+ "If the `Handler` is using the `Looper` or `MessageQueue` of the main thread, you "
+ "need to fix your `Handler` declaration, as follows: Declare the `Handler` as a "
+ "static class; In the outer class, instantiate a `WeakReference` to the outer "
+ "class and pass this object to your `Handler` when you instantiate the `Handler`; "
+ "Make all references to members of the outer class using the `WeakReference` object.",
Category.PERFORMANCE,
4,
Severity.WARNING,
new Implementation(HandlerDetector.class, Scope.JAVA_FILE_SCOPE))
.setAndroidSpecific(true);
private static final String LOOPER_CLS = "android.os.Looper";
private static final String HANDLER_CLS = "android.os.Handler";
/** Constructs a new {@link HandlerDetector} */
public HandlerDetector() {}
// ---- implements SourceCodeScanner ----
@Nullable
@Override
public List<String> applicableSuperClasses() {
return Collections.singletonList(HANDLER_CLS);
}
@Override
public void visitClass(@NonNull JavaContext context, @NonNull UClass declaration) {
// Only consider static inner classes
if (context.getEvaluator().isStatic(declaration)) {
return;
}
boolean isAnonymous = declaration instanceof UAnonymousClass;
if (declaration.getContainingClass() == null && !isAnonymous) {
return;
}
//noinspection unchecked
UCallExpression invocation =
UastUtils.getParentOfType(
declaration, UObjectLiteralExpression.class, true, UMethod.class);
// Only flag handlers using the default looper
if (invocation != null) {
if (isAnonymous && hasLooperArgument(invocation)) {
return;
}
} else if (hasLooperConstructorParameter(declaration)) {
// This is an inner class which takes a Looper parameter:
// possibly used correctly from elsewhere
return;
}
Location location;
if (isAnonymous && invocation != null) {
location = context.getCallLocation(invocation, false, false);
} else {
location = context.getNameLocation(declaration);
}
String name;
if (isAnonymous) {
name =
"anonymous "
+ ((UAnonymousClass) declaration)
.getBaseClassReference()
.getQualifiedName();
} else {
name = declaration.getQualifiedName();
}
context.report(
ISSUE,
declaration,
location,
String.format(
"This `Handler` class should be static or leaks might occur (%1$s)", name));
}
private static boolean hasLooperArgument(@NonNull UCallExpression invocation) {
if (invocation.getValueArgumentCount() > 0) {
for (UExpression expression : invocation.getValueArguments()) {
PsiType type = expression.getExpressionType();
if (type instanceof PsiClassType && LOOPER_CLS.equals(type.getCanonicalText())) {
return true;
}
}
}
return false;
}
private static boolean hasLooperConstructorParameter(@NonNull PsiClass cls) {
for (PsiMethod constructor : cls.getConstructors()) {
for (PsiParameter parameter : constructor.getParameterList().getParameters()) {
PsiType type = parameter.getType();
if (LOOPER_CLS.equals(type.getCanonicalText())) {
return true;
}
}
}
return false;
}
}