/* * Copyright 2000-2016 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.completion; import com.intellij.injected.editor.DocumentWindow; import com.intellij.openapi.editor.Document; import com.intellij.openapi.util.TextRange; import com.intellij.psi.PsiCompiledFile; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.psi.util.PsiTreeUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; /** * @author yole */ public class CompletionUtilCoreImpl { @Nullable public static <T extends PsiElement> T getOriginalElement(@NotNull T psi) { return getOriginalElement(psi, psi.getContainingFile()); } @Nullable public static <T extends PsiElement> T getOriginalElement(@NotNull T psi, PsiFile containingFile) { if (containingFile == null) return psi; PsiFile originalFile = containingFile.getOriginalFile(); TextRange range; if (originalFile != containingFile && !(originalFile instanceof PsiCompiledFile) && (range = psi.getTextRange()) != null) { Integer start = range.getStartOffset(); Integer end = range.getEndOffset(); Document document = containingFile.getViewProvider().getDocument(); if (document != null) { Document hostDocument = document instanceof DocumentWindow ? ((DocumentWindow)document).getDelegate() : document; OffsetTranslator translator = hostDocument.getUserData(OffsetTranslator.RANGE_TRANSLATION); if (translator != null) { if (document instanceof DocumentWindow) { TextRange translated = ((DocumentWindow)document).injectedToHost(new TextRange(start, end)); start = translated.getStartOffset(); end = translated.getEndOffset(); } start = translator.translateOffset(start); end = translator.translateOffset(end); if (start == null || end == null) { return null; } if (document instanceof DocumentWindow) { start = ((DocumentWindow)document).hostToInjected(start); end = ((DocumentWindow)document).hostToInjected(end); } } } //noinspection unchecked return (T)PsiTreeUtil.findElementOfClassAtRange(originalFile, start, end, psi.getClass()); } return psi; } }