/* * Copyright 2000-2009 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.psi; import com.intellij.openapi.util.Segment; import com.intellij.openapi.util.TextRange; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import com.intellij.lang.injection.*; import java.util.List; /** * Marks psi element as (potentially) containing text in other language. * Injected language PSI does not embed into the PSI tree of the hosting element, * but is used by IDEA for highlighting, completion and other code insight actions. * In order to do the injection, you have to * <ul> * <li>Implement {@link com.intellij.psi.LanguageInjector} to describe exact place where injection should occur.</li> * <li>Register injection in {@link com.intellij.psi.LanguageInjector#EXTENSION_POINT_NAME} extension point.</li> * </ul> * Currently, language can be injected into string literals, XML tag contents and XML attributes. * You don't have to implement PsiLanguageInjectionHost by yourself, unless you want to inject something into your own custom PSI. * For all returned injected PSI elements, {@link InjectedLanguageManager#getInjectionHost(PsiElement)} returns PsiLanguageInjectionHost they were injected into. */ public interface PsiLanguageInjectionHost extends PsiElement { /** * @return {@code true} if this instance can accept injections, {@code false} otherwise */ boolean isValidHost(); /** * Update the host element using the provided text of the injected file. It may be required to escape characters from {@code text} * in accordance with the host language syntax. The implementation may delegate to {@link ElementManipulators#handleContentChange(PsiElement, String)} * if {@link com.intellij.psi.ElementManipulator} implementation is registered for this element class * @param text text of the injected file * @return the updated instance */ PsiLanguageInjectionHost updateText(@NotNull String text); /** * @return {@link LiteralTextEscaper} instance which will be used to convert the content of this host element to the content of injected file */ @NotNull LiteralTextEscaper<? extends PsiLanguageInjectionHost> createLiteralTextEscaper(); @FunctionalInterface interface InjectedPsiVisitor { void visit(@NotNull PsiFile injectedPsi, @NotNull List<Shred> places); } interface Shred { @Nullable("returns null when the host document marker is invalid") Segment getHostRangeMarker(); @NotNull TextRange getRangeInsideHost(); boolean isValid(); void dispose(); @Nullable PsiLanguageInjectionHost getHost(); @NotNull TextRange getRange(); @NotNull String getPrefix(); @NotNull String getSuffix(); } }