/* * Copyright 2000-2011 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.components.ServiceManager; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.TextRange; import org.jetbrains.annotations.NotNull; /** * Allows to create references to PSI elements that can survive a reparse and return the corresponding * element in the PSI tree after the reparse. */ public abstract class SmartPointerManager { @NotNull public abstract SmartPsiFileRange createSmartPsiFileRangePointer(@NotNull PsiFile file, @NotNull TextRange range); public static SmartPointerManager getInstance(Project project) { return ServiceManager.getService(project, SmartPointerManager.class); } /** * Creates a smart pointer to the specified PSI element. If the element's containing file is known, it's more preferable to use * {@link #createSmartPsiElementPointer(PsiElement, PsiFile)}. * * @param element the element to create a pointer to. * @return the smart pointer instance. */ @NotNull public abstract <E extends PsiElement> SmartPsiElementPointer<E> createSmartPsiElementPointer(@NotNull E element); /** * Creates a smart pointer to the specified PSI element. * * @param element the element to create a pointer to. * @param containingFile the result of {@code element.getContainingFile()}. * @return the smart pointer instance. */ @NotNull public abstract <E extends PsiElement> SmartPsiElementPointer<E> createSmartPsiElementPointer(@NotNull E element, PsiFile containingFile); /** * Creates a smart pointer to the specified PSI element which doesn't hold a strong reference to the PSI * element. * @deprecated use {@link #createSmartPsiElementPointer(PsiElement)} instead * @param element the element to create a pointer to. * @return the smart pointer instance. */ @NotNull public <E extends PsiElement> SmartPsiElementPointer<E> createLazyPointer(@NotNull E element) { return createSmartPsiElementPointer(element); } /** * This method is cheaper than dereferencing both pointers and comparing the result. * * @param pointer1 smart pointer to compare * @param pointer2 smart pointer to compare * @return true if both pointers point to the same PSI element. */ public abstract boolean pointToTheSameElement(@NotNull SmartPsiElementPointer pointer1, @NotNull SmartPsiElementPointer pointer2); /** * Disposes a smart pointer and frees the resources associated with it. Calling this method is not obligatory: pointers are * freed correctly when they're not used anymore. But disposing the pointers explicitly might be beneficial for performance. */ public abstract void removePointer(@NotNull SmartPsiElementPointer pointer); }