/* * 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.folding.impl; import com.intellij.lang.injection.InjectedLanguageManager; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.editor.FoldRegion; import com.intellij.openapi.util.Key; import com.intellij.openapi.util.TextRange; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.SmartPsiElementPointer; import gnu.trove.THashMap; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Map; /** * Holds {@code 'fold region -> PSI element'} mappings. * <p/> * Not thread-safe. */ public class EditorFoldingInfo { private static final Key<EditorFoldingInfo> KEY = Key.create("EditorFoldingInfo.KEY"); private final Map<FoldRegion, SmartPsiElementPointer<?>> myFoldRegionToSmartPointerMap = new THashMap<>(); @NotNull public static EditorFoldingInfo get(@NotNull Editor editor) { EditorFoldingInfo info = editor.getUserData(KEY); if (info == null){ info = new EditorFoldingInfo(); editor.putUserData(KEY, info); } return info; } @Nullable public PsiElement getPsiElement(@NotNull FoldRegion region) { final SmartPsiElementPointer<?> pointer = myFoldRegionToSmartPointerMap.get(region); if (pointer == null) { return null; } PsiElement element = pointer.getElement(); return element != null && element.isValid() ? element : null; } @Nullable TextRange getPsiElementRange(@NotNull FoldRegion region) { PsiElement element = getPsiElement(region); if (element == null) return null; PsiFile containingFile = element.getContainingFile(); InjectedLanguageManager injectedManager = InjectedLanguageManager.getInstance(containingFile.getProject()); boolean isInjected = injectedManager.isInjectedFragment(containingFile); TextRange range = element.getTextRange(); if (isInjected) { range = injectedManager.injectedToHost(element, range); } return range; } boolean isLightRegion(@NotNull FoldRegion region) { return myFoldRegionToSmartPointerMap.get(region) == null; } void addRegion(@NotNull FoldRegion region, @NotNull SmartPsiElementPointer<?> pointer){ myFoldRegionToSmartPointerMap.put(region, pointer); } public void removeRegion(@NotNull FoldRegion region){ myFoldRegionToSmartPointerMap.remove(region); } public void dispose() { myFoldRegionToSmartPointerMap.clear(); } }