blob: 452cedfa8a172f0bf9e97f5f200da026992d1123 [file] [log] [blame]
/*
* Copyright (C) 2015 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.idea.uibuilder.lint;
import com.android.annotations.NonNull;
import com.android.tools.idea.uibuilder.model.NlComponent;
import com.android.tools.idea.uibuilder.model.NlModel;
import com.android.tools.idea.uibuilder.surface.DesignSurface;
import com.android.tools.idea.uibuilder.surface.ScreenView;
import com.android.tools.lint.detector.api.Issue;
import com.intellij.codeHighlighting.HighlightDisplayLevel;
import com.intellij.codeHighlighting.HighlightingPass;
import com.intellij.codeInsight.daemon.HighlightDisplayKey;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.progress.ProgressIndicator;
import com.intellij.openapi.util.Pair;
import com.intellij.openapi.util.TextRange;
import com.intellij.psi.PsiElement;
import com.intellij.psi.xml.XmlFile;
import org.jetbrains.android.inspections.lint.*;
import org.jetbrains.annotations.NotNull;
public class NlLintHighlightingPass implements HighlightingPass {
private final DesignSurface mySurface;
private LintAnnotationsModel myLintAnnotationsModel;
public NlLintHighlightingPass(@NonNull DesignSurface surface) {
mySurface = surface;
}
@Override
public void collectInformation(@NonNull ProgressIndicator progress) {
ScreenView screenView = mySurface.getCurrentScreenView();
if (screenView == null) {
return;
}
myLintAnnotationsModel = getAnnotations(screenView.getModel(), progress);
}
@Override
public void applyInformationToEditor() {
ScreenView screenView = mySurface.getCurrentScreenView();
if (screenView == null) {
return;
}
screenView.getModel().setLintAnnotationsModel(myLintAnnotationsModel);
}
@NonNull
private static LintAnnotationsModel getAnnotations(@NonNull NlModel model, @NonNull ProgressIndicator progress) {
ApplicationManager.getApplication().assertReadAccessAllowed();
LintAnnotationsModel lintModel = new LintAnnotationsModel();
XmlFile xmlFile = model.getFile();
AndroidLintExternalAnnotator annotator = new AndroidLintExternalAnnotator();
State state = annotator.collectInformation(xmlFile);
state = annotator.doAnnotate(state);
if (state == null) {
return lintModel;
}
for (ProblemData problemData : state.getProblems()) {
if (progress.isCanceled()) {
break;
}
TextRange range = problemData.getTextRange();
final PsiElement startElement = xmlFile.findElementAt(range.getStartOffset());
final PsiElement endElement = xmlFile.findElementAt(range.getEndOffset());
if (startElement == null || endElement == null) {
continue;
}
NlComponent component = model.findViewByPsi(startElement);
if (component == null) {
continue;
}
Issue issue = problemData.getIssue();
Pair<AndroidLintInspectionBase, HighlightDisplayLevel> pair =
AndroidLintUtil.getHighlighLevelAndInspection(xmlFile.getProject(), issue, xmlFile);
if (pair == null) {
continue;
}
AndroidLintInspectionBase inspection = pair.getFirst();
if (inspection == null) {
continue;
}
HighlightDisplayLevel level = pair.getSecond();
HighlightDisplayKey key = HighlightDisplayKey.find(inspection.getShortName());
if (key == null) {
continue;
}
lintModel.addIssue(component, inspection, level);
}
return lintModel;
}
}