Search in sources :

Example 1 with LintDriver

use of com.android.tools.klint.client.api.LintDriver in project kotlin by JetBrains.

the class AndroidLintGlobalInspectionContext method performPreRunActivities.

@Override
public void performPreRunActivities(@NotNull List<Tools> globalTools, @NotNull List<Tools> localTools, @NotNull final GlobalInspectionContext context) {
    final Project project = context.getProject();
    if (!ProjectFacetManager.getInstance(project).hasFacets(AndroidFacet.ID)) {
        return;
    }
    final List<Issue> issues = AndroidLintExternalAnnotator.getIssuesFromInspections(project, null);
    if (issues.size() == 0) {
        return;
    }
    final Map<Issue, Map<File, List<ProblemData>>> problemMap = new HashMap<Issue, Map<File, List<ProblemData>>>();
    final AnalysisScope scope = context.getRefManager().getScope();
    if (scope == null) {
        return;
    }
    final IntellijLintClient client = IntellijLintClient.forBatch(project, problemMap, scope, issues);
    final LintDriver lint = new LintDriver(new IntellijLintIssueRegistry(), client);
    final ProgressIndicator indicator = ProgressManager.getInstance().getProgressIndicator();
    if (indicator != null) {
        ProgressWrapper.unwrap(indicator).setText("Running Android Lint");
    }
    EnumSet<Scope> lintScope;
    //noinspection ConstantConditions
    if (!IntellijLintProject.SUPPORT_CLASS_FILES) {
        lintScope = EnumSet.copyOf(Scope.ALL);
        // Can't run class file based checks
        lintScope.remove(Scope.CLASS_FILE);
        lintScope.remove(Scope.ALL_CLASS_FILES);
        lintScope.remove(Scope.JAVA_LIBRARIES);
    } else {
        lintScope = Scope.ALL;
    }
    List<VirtualFile> files = null;
    final List<Module> modules = Lists.newArrayList();
    int scopeType = scope.getScopeType();
    switch(scopeType) {
        case AnalysisScope.MODULE:
            {
                SearchScope searchScope = scope.toSearchScope();
                if (searchScope instanceof ModuleWithDependenciesScope) {
                    ModuleWithDependenciesScope s = (ModuleWithDependenciesScope) searchScope;
                    if (!s.isSearchInLibraries()) {
                        modules.add(s.getModule());
                    }
                }
                break;
            }
        case AnalysisScope.FILE:
        case AnalysisScope.VIRTUAL_FILES:
        case AnalysisScope.UNCOMMITTED_FILES:
            {
                files = Lists.newArrayList();
                SearchScope searchScope = scope.toSearchScope();
                if (searchScope instanceof LocalSearchScope) {
                    final LocalSearchScope localSearchScope = (LocalSearchScope) searchScope;
                    final PsiElement[] elements = localSearchScope.getScope();
                    final List<VirtualFile> finalFiles = files;
                    ApplicationManager.getApplication().runReadAction(new Runnable() {

                        @Override
                        public void run() {
                            for (PsiElement element : elements) {
                                if (element instanceof PsiFile) {
                                    // should be the case since scope type is FILE
                                    Module module = ModuleUtilCore.findModuleForPsiElement(element);
                                    if (module != null && !modules.contains(module)) {
                                        modules.add(module);
                                    }
                                    VirtualFile virtualFile = ((PsiFile) element).getVirtualFile();
                                    if (virtualFile != null) {
                                        finalFiles.add(virtualFile);
                                    }
                                }
                            }
                        }
                    });
                } else {
                    final List<VirtualFile> finalList = files;
                    scope.accept(new PsiElementVisitor() {

                        @Override
                        public void visitFile(PsiFile file) {
                            VirtualFile virtualFile = file.getVirtualFile();
                            if (virtualFile != null) {
                                finalList.add(virtualFile);
                            }
                        }
                    });
                }
                if (files.isEmpty()) {
                    files = null;
                } else {
                    // Lint will compute it lazily based on actual files in the request
                    lintScope = null;
                }
                break;
            }
        case AnalysisScope.PROJECT:
            {
                modules.addAll(Arrays.asList(ModuleManager.getInstance(project).getModules()));
                break;
            }
        case AnalysisScope.CUSTOM:
        case AnalysisScope.MODULES:
        case AnalysisScope.DIRECTORY:
            {
                // Handled by the getNarrowedComplementaryScope case below
                break;
            }
        case AnalysisScope.INVALID:
            break;
        default:
            Logger.getInstance(this.getClass()).warn("Unexpected inspection scope " + scope + ", " + scopeType);
    }
    if (modules.isEmpty()) {
        for (Module module : ModuleManager.getInstance(project).getModules()) {
            if (scope.containsModule(module)) {
                modules.add(module);
            }
        }
        if (modules.isEmpty() && files != null) {
            for (VirtualFile file : files) {
                Module module = ModuleUtilCore.findModuleForFile(file, project);
                if (module != null && !modules.contains(module)) {
                    modules.add(module);
                }
            }
        }
        if (modules.isEmpty()) {
            AnalysisScope narrowed = scope.getNarrowedComplementaryScope(project);
            for (Module module : ModuleManager.getInstance(project).getModules()) {
                if (narrowed.containsModule(module)) {
                    modules.add(module);
                }
            }
        }
    }
    LintRequest request = new IntellijLintRequest(client, project, files, modules, false);
    request.setScope(lintScope);
    lint.analyze(request);
    myResults = problemMap;
}
Also used : VirtualFile(com.intellij.openapi.vfs.VirtualFile) Issue(com.android.tools.klint.detector.api.Issue) HashMap(com.intellij.util.containers.HashMap) PsiElementVisitor(com.intellij.psi.PsiElementVisitor) AnalysisScope(com.intellij.analysis.AnalysisScope) LintRequest(com.android.tools.klint.client.api.LintRequest) ProgressIndicator(com.intellij.openapi.progress.ProgressIndicator) PsiFile(com.intellij.psi.PsiFile) PsiElement(com.intellij.psi.PsiElement) LintDriver(com.android.tools.klint.client.api.LintDriver) LocalSearchScope(com.intellij.psi.search.LocalSearchScope) ModuleWithDependenciesScope(com.intellij.openapi.module.impl.scopes.ModuleWithDependenciesScope) Project(com.intellij.openapi.project.Project) ModuleWithDependenciesScope(com.intellij.openapi.module.impl.scopes.ModuleWithDependenciesScope) SearchScope(com.intellij.psi.search.SearchScope) LocalSearchScope(com.intellij.psi.search.LocalSearchScope) AnalysisScope(com.intellij.analysis.AnalysisScope) Scope(com.android.tools.klint.detector.api.Scope) SearchScope(com.intellij.psi.search.SearchScope) LocalSearchScope(com.intellij.psi.search.LocalSearchScope) Module(com.intellij.openapi.module.Module) VirtualFile(com.intellij.openapi.vfs.VirtualFile) PsiFile(com.intellij.psi.PsiFile) File(java.io.File) HashMap(com.intellij.util.containers.HashMap)

Example 2 with LintDriver

use of com.android.tools.klint.client.api.LintDriver in project kotlin by JetBrains.

the class AndroidLintExternalAnnotator method doAnnotate.

@Override
public State doAnnotate(final State state) {
    final IntellijLintClient client = IntellijLintClient.forEditor(state);
    try {
        final LintDriver lint = new LintDriver(new IntellijLintIssueRegistry(), client);
        EnumSet<Scope> scope;
        VirtualFile mainFile = state.getMainFile();
        final FileType fileType = mainFile.getFileType();
        String name = mainFile.getName();
        if (fileType == StdFileTypes.XML) {
            if (name.equals(ANDROID_MANIFEST_XML)) {
                scope = Scope.MANIFEST_SCOPE;
            } else {
                scope = Scope.RESOURCE_FILE_SCOPE;
            }
        } else if (fileType == KotlinFileType.INSTANCE) {
            scope = Scope.JAVA_FILE_SCOPE;
        } else if (name.equals(OLD_PROGUARD_FILE) || name.equals(FN_PROJECT_PROGUARD_FILE)) {
            scope = EnumSet.of(Scope.PROGUARD_FILE);
        } else if (fileType == StdFileTypes.PROPERTIES) {
            scope = Scope.PROPERTY_SCOPE;
        } else {
            // #collectionInformation above should have prevented this
            assert false;
            return state;
        }
        Project project = state.getModule().getProject();
        if (project.isDisposed()) {
            return state;
        }
        List<VirtualFile> files = Collections.singletonList(mainFile);
        final LintRequest request = new IntellijLintRequest(client, project, files, Collections.singletonList(state.getModule()), true);
        request.setScope(scope);
        ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(new Runnable() {

            @Override
            public void run() {
                lint.analyze(request);
            }
        });
    } finally {
        Disposer.dispose(client);
    }
    return state;
}
Also used : VirtualFile(com.intellij.openapi.vfs.VirtualFile) LintRequest(com.android.tools.klint.client.api.LintRequest) Project(com.intellij.openapi.project.Project) Scope(com.android.tools.klint.detector.api.Scope) KotlinFileType(org.jetbrains.kotlin.idea.KotlinFileType) FileType(com.intellij.openapi.fileTypes.FileType) LintDriver(com.android.tools.klint.client.api.LintDriver)

Example 3 with LintDriver

use of com.android.tools.klint.client.api.LintDriver in project kotlin by JetBrains.

the class LayoutConsistencyDetector method afterCheckProject.

@Override
public void afterCheckProject(@NonNull Context context) {
    LintDriver driver = context.getDriver();
    if (driver.getPhase() == 1) {
        // writing the ids needed for each layout in the {@link #mLocations} map.
        for (Map.Entry<String, List<Pair<File, Map<String, String>>>> entry : mMap.entrySet()) {
            String layout = entry.getKey();
            List<Pair<File, Map<String, String>>> files = entry.getValue();
            if (files.size() < 2) {
                // No consistency problems for files that don't have resource variations
                continue;
            }
            checkConsistentIds(layout, files);
        }
        if (mLocations != null) {
            driver.requestRepeat(this, Scope.ALL_RESOURCES_SCOPE);
        }
    } else {
        // Collect results and print
        if (!mLocations.isEmpty()) {
            reportErrors(context);
        }
    }
}
Also used : ArrayList(java.util.ArrayList) NodeList(org.w3c.dom.NodeList) List(java.util.List) HashMap(java.util.HashMap) Map(java.util.Map) File(java.io.File) LintDriver(com.android.tools.klint.client.api.LintDriver) Pair(com.android.utils.Pair)

Example 4 with LintDriver

use of com.android.tools.klint.client.api.LintDriver in project kotlin by JetBrains.

the class ApiDetector method isSuppressed.

private static boolean isSuppressed(int api, UElement element, int minSdk, JavaContext context, Issue issue) {
    if (api <= minSdk) {
        return true;
    }
    int target = getTargetApi(element);
    if (target != -1) {
        if (api <= target) {
            return true;
        }
    }
    LintDriver driver = context.getDriver();
    if (driver.isSuppressed(context, issue, element)) {
        return true;
    }
    if (isWithinVersionCheckConditional(element, api, context)) {
        return true;
    }
    if (isPrecededByVersionCheckExit(element, api, context)) {
        return true;
    }
    return false;
}
Also used : LintDriver(com.android.tools.klint.client.api.LintDriver)

Aggregations

LintDriver (com.android.tools.klint.client.api.LintDriver)4 LintRequest (com.android.tools.klint.client.api.LintRequest)2 Scope (com.android.tools.klint.detector.api.Scope)2 Project (com.intellij.openapi.project.Project)2 VirtualFile (com.intellij.openapi.vfs.VirtualFile)2 File (java.io.File)2 Issue (com.android.tools.klint.detector.api.Issue)1 Pair (com.android.utils.Pair)1 AnalysisScope (com.intellij.analysis.AnalysisScope)1 FileType (com.intellij.openapi.fileTypes.FileType)1 Module (com.intellij.openapi.module.Module)1 ModuleWithDependenciesScope (com.intellij.openapi.module.impl.scopes.ModuleWithDependenciesScope)1 ProgressIndicator (com.intellij.openapi.progress.ProgressIndicator)1 PsiElement (com.intellij.psi.PsiElement)1 PsiElementVisitor (com.intellij.psi.PsiElementVisitor)1 PsiFile (com.intellij.psi.PsiFile)1 LocalSearchScope (com.intellij.psi.search.LocalSearchScope)1 SearchScope (com.intellij.psi.search.SearchScope)1 HashMap (com.intellij.util.containers.HashMap)1 ArrayList (java.util.ArrayList)1