/* * Copyright 2000-2014 JetBrains s.r.o. * * 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.intellij.codeInsight.daemon.impl.analysis; import com.intellij.codeInsight.daemon.impl.HighlightInfo; import com.intellij.codeInsight.daemon.impl.HighlightInfoFilter; import com.intellij.lang.annotation.AnnotationSession; import com.intellij.lang.annotation.HighlightSeverity; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.editor.colors.TextAttributesKey; import com.intellij.openapi.editor.colors.TextAttributesScheme; import com.intellij.openapi.editor.markup.TextAttributes; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiFile; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.ArrayList; import java.util.Collection; import java.util.List; public class HighlightInfoHolder { private static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.daemon.impl.analysis.HighlightInfoHolder"); private final PsiFile myContextFile; private final HighlightInfoFilter[] myFilters; private final AnnotationSession myAnnotationSession; private int myErrorCount; private final List<HighlightInfo> myInfos = new ArrayList<>(5); public HighlightInfoHolder(@NotNull final PsiFile contextFile, @NotNull final HighlightInfoFilter... filters) { myContextFile = contextFile; myAnnotationSession = new AnnotationSession(contextFile); myFilters = filters; } @NotNull public AnnotationSession getAnnotationSession() { return myAnnotationSession; } public boolean add(@Nullable HighlightInfo info) { if (info == null || !accepted(info)) return false; HighlightSeverity severity = info.getSeverity(); if (severity == HighlightSeverity.ERROR) { myErrorCount++; } return myInfos.add(info); } public void clear() { myErrorCount = 0; myInfos.clear(); } public boolean hasErrorResults() { return myErrorCount != 0; } public boolean addAll(Collection<? extends HighlightInfo> highlightInfos) { if (highlightInfos == null) return false; LOG.assertTrue(highlightInfos != this); boolean added = false; for (final HighlightInfo highlightInfo : highlightInfos) { added |= add(highlightInfo); } return added; } public int size() { return myInfos.size(); } public HighlightInfo get(final int i) { return myInfos.get(i); } @NotNull public Project getProject() { return myContextFile.getProject(); } @NotNull public PsiFile getContextFile() { return myContextFile; } private boolean accepted(@NotNull HighlightInfo info) { for (HighlightInfoFilter filter : myFilters) { if (!filter.accept(info, getContextFile())) return false; } return true; } @NotNull public TextAttributesScheme getColorsScheme() { return new TextAttributesScheme() { @Override public TextAttributes getAttributes(TextAttributesKey key) { return key.getDefaultAttributes(); } }; } }