com.android.tools.lint.checks.WrongImportDetector Maven / Gradle / Ivy
/*
* Copyright (C) 2011 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.tools.lint.detector.api.Category;
import com.android.tools.lint.detector.api.Detector;
import com.android.tools.lint.detector.api.Detector.JavaPsiScanner;
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.intellij.psi.JavaElementVisitor;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiImportStatement;
import java.util.Collections;
import java.util.List;
/**
* Checks for "import android.R", which seems to be a common source of confusion
* (see for example http://stackoverflow.com/questions/885009/r-cannot-be-resolved-android-error
* and many other forums).
*
* The root cause is probably this (from http://source.android.com/source/using-eclipse.html) :
*
Note: Eclipse sometimes likes to add an import android.R
* statement at the top of your files that use resources, especially when you
* ask eclipse to sort or otherwise manage imports. This will cause your make to
* break. Look out for these erroneous import statements and delete them.
*
*/
public class WrongImportDetector extends Detector implements JavaPsiScanner {
/** Is android.R being imported? */
public static final Issue ISSUE = Issue.create(
"SuspiciousImport", //$NON-NLS-1$
"'`import android.R`' statement",
"Importing `android.R` is usually not intentional; it sometimes happens when " +
"you use an IDE and ask it to automatically add imports at a time when your " +
"project's R class it not present.\n" +
"\n" +
"Once the import is there you might get a lot of \"confusing\" error messages " +
"because of course the fields available on `android.R` are not the ones you'd " +
"expect from just looking at your own `R` class.",
Category.CORRECTNESS,
9,
Severity.WARNING,
new Implementation(
WrongImportDetector.class,
Scope.JAVA_FILE_SCOPE));
/** Constructs a new {@link WrongImportDetector} check */
public WrongImportDetector() {
}
// ---- Implements JavaScanner ----
@Override
public List> getApplicablePsiTypes() {
return Collections.>singletonList(PsiImportStatement.class);
}
@Override
public JavaElementVisitor createPsiVisitor(@NonNull JavaContext context) {
return new ImportVisitor(context);
}
private static class ImportVisitor extends JavaElementVisitor {
private final JavaContext mContext;
public ImportVisitor(JavaContext context) {
super();
mContext = context;
}
@Override
public void visitImportStatement(PsiImportStatement statement) {
String qualifiedName = statement.getQualifiedName();
if ("android.R".equals(qualifiedName)) {
Location location = mContext.getLocation(statement);
mContext.report(ISSUE, statement, location,
"Don't include `android.R` here; use a fully qualified name for "
+ "each usage instead");
}
}
}
}