blob: 0df4b80daf251c14a0450351b6893b9d771794e1 [file] [log] [blame]
/*
* 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.psi;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.UserDataHolderBase;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.util.PsiModificationTracker;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* The main entry point for accessing the PSI services for a project.
*/
public abstract class PsiManager extends UserDataHolderBase {
/**
* Returns the PSI manager instance for the specified project.
*
* @param project the project for which the PSI manager is requested.
* @return the PSI manager instance.
*/
@NotNull
public static PsiManager getInstance(@NotNull Project project) {
return project.getComponent(PsiManager.class);
}
/**
* Returns the project with which the PSI manager is associated.
*
* @return the project instance.
*/
@NotNull
public abstract Project getProject();
/**
* Returns the PSI file corresponding to the specified virtual file.
*
* @param file the file for which the PSI is requested.
* @return the PSI file, or null if <code>file</code> is a directory, an invalid virtual file,
* or the current project is a dummy or default project.
*/
@Nullable
public abstract PsiFile findFile(@NotNull VirtualFile file);
@Nullable
public abstract FileViewProvider findViewProvider(@NotNull VirtualFile file);
/**
* Returns the PSI directory corresponding to the specified virtual file system directory.
*
* @param file the directory for which the PSI is requested.
* @return the PSI directory, or null if there is no PSI for the specified directory in this project.
*/
@Nullable
public abstract PsiDirectory findDirectory(@NotNull VirtualFile file);
/**
* Checks if the specified two PSI elements (possibly invalid) represent the same source element
* (for example, a class with the same full-qualified name). Can be used to match two versions of the
* PSI tree with each other after a reparse.
*
* @param element1 the first element to check for equivalence
* @param element2 the second element to check for equivalence
* @return true if the elements are equivalent, false if the elements are different or
* it was not possible to determine the equivalence
*/
public abstract boolean areElementsEquivalent(@Nullable PsiElement element1, @Nullable PsiElement element2);
/**
* Reloads the contents of the specified PSI file and its associated document (if any) from the disk.
* @param file the PSI file to reload.
*/
public abstract void reloadFromDisk(@NotNull PsiFile file); //todo: move to FileDocumentManager
/**
* Adds a listener for receiving notifications about all changes in the PSI tree of the project.
*
* @param listener the listener instance.
*/
public abstract void addPsiTreeChangeListener(@NotNull PsiTreeChangeListener listener);
/**
* Adds a listener for receiving notifications about all changes in the PSI tree of the project.
*
* @param listener the listener instance.
* @param parentDisposable object, after whose disposing the listener should be removed
*/
public abstract void addPsiTreeChangeListener(@NotNull PsiTreeChangeListener listener, @NotNull Disposable parentDisposable);
/**
* Removes a listener for receiving notifications about all changes in the PSI tree of the project.
*
* @param listener the listener instance.
*/
public abstract void removePsiTreeChangeListener(@NotNull PsiTreeChangeListener listener);
/**
* Returns the modification tracker for the project, which can be used to get the PSI
* modification count value.
*
* @return the modification tracker instance.
*/
@NotNull
public abstract PsiModificationTracker getModificationTracker();
/**
* Notifies the PSI manager that a batch operation sequentially processing multiple files
* is starting. Memory occupied by cached PSI trees is released more eagerly during such a
* batch operation.
*/
public abstract void startBatchFilesProcessingMode();
/**
* Notifies the PSI manager that a batch operation sequentially processing multiple files
* is finishing. Memory occupied by cached PSI trees is released more eagerly during such a
* batch operation.
*/
public abstract void finishBatchFilesProcessingMode();
/**
* Checks if the PSI manager has been disposed and the PSI for this project can no
* longer be used.
*
* @return true if the PSI manager is disposed, false otherwise.
*/
public abstract boolean isDisposed();
/**
* Clears the resolve caches of the PSI manager. Can be used to reduce memory consumption
* in batch operations sequentially processing multiple files.
*/
public abstract void dropResolveCaches();
/**
* Checks if the specified PSI element belongs to the sources of the project.
*
* @param element the element to check.
* @return true if the element belongs to the sources of the project, false otherwise.
*/
public abstract boolean isInProject(@NotNull PsiElement element);
}