mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
EA-37215
This commit is contained in:
@@ -1,184 +1,184 @@
|
||||
/*
|
||||
* 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.codeInsight;
|
||||
|
||||
import com.intellij.codeInsight.completion.CompletionPhase;
|
||||
import com.intellij.codeInsight.completion.CompletionProgressIndicator;
|
||||
import com.intellij.codeInsight.completion.CompletionType;
|
||||
import com.intellij.codeInsight.completion.impl.CompletionServiceImpl;
|
||||
import com.intellij.codeInsight.editorActions.CompletionAutoPopupHandler;
|
||||
import com.intellij.codeInsight.hint.ShowParameterInfoHandler;
|
||||
import com.intellij.ide.IdeEventQueue;
|
||||
import com.intellij.ide.PowerSaveMode;
|
||||
import com.intellij.openapi.Disposable;
|
||||
import com.intellij.openapi.actionSystem.AnAction;
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent;
|
||||
import com.intellij.openapi.actionSystem.DataContext;
|
||||
import com.intellij.openapi.actionSystem.ex.ActionManagerEx;
|
||||
import com.intellij.openapi.actionSystem.ex.AnActionListener;
|
||||
import com.intellij.openapi.application.ApplicationManager;
|
||||
import com.intellij.openapi.components.ServiceManager;
|
||||
import com.intellij.openapi.editor.Editor;
|
||||
import com.intellij.openapi.project.DumbService;
|
||||
import com.intellij.openapi.project.IndexNotReadyException;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.util.Condition;
|
||||
import com.intellij.psi.PsiDocumentManager;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.psi.PsiFile;
|
||||
import com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil;
|
||||
import com.intellij.util.Alarm;
|
||||
import com.intellij.util.ui.UIUtil;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jetbrains.annotations.TestOnly;
|
||||
|
||||
public class AutoPopupController implements Disposable {
|
||||
private final Project myProject;
|
||||
private final Alarm myAlarm = new Alarm();
|
||||
|
||||
public static AutoPopupController getInstance(Project project){
|
||||
return ServiceManager.getService(project, AutoPopupController.class);
|
||||
}
|
||||
|
||||
public AutoPopupController(Project project) {
|
||||
myProject = project;
|
||||
setupListeners();
|
||||
}
|
||||
|
||||
private void setupListeners() {
|
||||
ActionManagerEx.getInstanceEx().addAnActionListener(new AnActionListener() {
|
||||
public void beforeActionPerformed(AnAction action, DataContext dataContext, AnActionEvent event) {
|
||||
cancelAllRequest();
|
||||
}
|
||||
|
||||
public void beforeEditorTyping(char c, DataContext dataContext) {
|
||||
cancelAllRequest();
|
||||
}
|
||||
|
||||
|
||||
public void afterActionPerformed(final AnAction action, final DataContext dataContext, AnActionEvent event) {
|
||||
}
|
||||
}, this);
|
||||
|
||||
IdeEventQueue.getInstance().addActivityListener(new Runnable() {
|
||||
public void run() {
|
||||
cancelAllRequest();
|
||||
}
|
||||
}, this);
|
||||
}
|
||||
|
||||
public void autoPopupMemberLookup(final Editor editor, @Nullable final Condition<PsiFile> condition){
|
||||
scheduleAutoPopup(editor, condition);
|
||||
}
|
||||
|
||||
public void scheduleAutoPopup(final Editor editor, @Nullable final Condition<PsiFile> condition) {
|
||||
if (ApplicationManager.getApplication().isUnitTestMode() && !CompletionAutoPopupHandler.ourTestingAutopopup) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!CodeInsightSettings.getInstance().AUTO_POPUP_COMPLETION_LOOKUP) {
|
||||
return;
|
||||
}
|
||||
if (PowerSaveMode.isEnabled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!CompletionServiceImpl.isPhase(CompletionPhase.CommittingDocuments.class, CompletionPhase.NoCompletion.getClass())) {
|
||||
return;
|
||||
}
|
||||
|
||||
final CompletionProgressIndicator currentCompletion = CompletionServiceImpl.getCompletionService().getCurrentCompletion();
|
||||
if (currentCompletion != null) {
|
||||
currentCompletion.closeAndFinish(true);
|
||||
}
|
||||
|
||||
final CompletionPhase.CommittingDocuments phase = new CompletionPhase.CommittingDocuments(null, editor);
|
||||
CompletionServiceImpl.setCompletionPhase(phase);
|
||||
|
||||
Runnable request = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (myProject.isDefault()) return;
|
||||
CompletionAutoPopupHandler.runLaterWithCommitted(myProject, editor.getDocument(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (phase.checkExpired()) return;
|
||||
|
||||
PsiFile file = PsiDocumentManager.getInstance(myProject).getPsiFile(editor.getDocument());
|
||||
if (file != null && condition != null && !condition.value(file)) return;
|
||||
|
||||
CompletionAutoPopupHandler.invokeCompletion(CompletionType.BASIC, true, myProject, editor, 0, false);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
addRequest(request, CodeInsightSettings.getInstance().AUTO_LOOKUP_DELAY);
|
||||
}
|
||||
|
||||
@TestOnly
|
||||
public void executePendingRequests() {
|
||||
assert !ApplicationManager.getApplication().isDispatchThread();
|
||||
while (myAlarm.getActiveRequestCount() != 0) {
|
||||
UIUtil.pump();
|
||||
}
|
||||
}
|
||||
|
||||
private void addRequest(Runnable request, final int delay) {
|
||||
myAlarm.addRequest(request, delay);
|
||||
}
|
||||
|
||||
private void cancelAllRequest() {
|
||||
myAlarm.cancelAllRequests();
|
||||
}
|
||||
|
||||
public void autoPopupParameterInfo(final Editor editor, @Nullable final PsiElement highlightedMethod){
|
||||
if (ApplicationManager.getApplication().isUnitTestMode()) return;
|
||||
if (DumbService.isDumb(myProject)) return;
|
||||
|
||||
ApplicationManager.getApplication().assertIsDispatchThread();
|
||||
final CodeInsightSettings settings = CodeInsightSettings.getInstance();
|
||||
if (settings.AUTO_POPUP_PARAMETER_INFO) {
|
||||
final PsiDocumentManager documentManager = PsiDocumentManager.getInstance(myProject);
|
||||
PsiFile file = documentManager.getPsiFile(editor.getDocument());
|
||||
if (file == null) return;
|
||||
|
||||
if (!documentManager.isUncommited(editor.getDocument())) {
|
||||
file = documentManager.getPsiFile(InjectedLanguageUtil.getEditorForInjectedLanguageNoCommit(editor, file).getDocument());
|
||||
if (file == null) return;
|
||||
}
|
||||
|
||||
final PsiFile file1 = file;
|
||||
final Runnable request = new Runnable(){
|
||||
public void run(){
|
||||
if (myProject.isDisposed() || DumbService.isDumb(myProject) || editor.isDisposed()) return;
|
||||
documentManager.commitAllDocuments();
|
||||
int lbraceOffset = editor.getCaretModel().getOffset() - 1;
|
||||
try {
|
||||
ShowParameterInfoHandler.invoke(myProject, editor, file1, lbraceOffset, highlightedMethod);
|
||||
}
|
||||
catch (IndexNotReadyException ignored) { //anything can happen on alarm
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
addRequest(request, settings.PARAMETER_INFO_DELAY);
|
||||
}
|
||||
}
|
||||
|
||||
public void dispose() {
|
||||
}
|
||||
}
|
||||
/*
|
||||
* 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.codeInsight;
|
||||
|
||||
import com.intellij.codeInsight.completion.CompletionPhase;
|
||||
import com.intellij.codeInsight.completion.CompletionProgressIndicator;
|
||||
import com.intellij.codeInsight.completion.CompletionType;
|
||||
import com.intellij.codeInsight.completion.impl.CompletionServiceImpl;
|
||||
import com.intellij.codeInsight.editorActions.CompletionAutoPopupHandler;
|
||||
import com.intellij.codeInsight.hint.ShowParameterInfoHandler;
|
||||
import com.intellij.ide.IdeEventQueue;
|
||||
import com.intellij.ide.PowerSaveMode;
|
||||
import com.intellij.openapi.Disposable;
|
||||
import com.intellij.openapi.actionSystem.AnAction;
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent;
|
||||
import com.intellij.openapi.actionSystem.DataContext;
|
||||
import com.intellij.openapi.actionSystem.ex.ActionManagerEx;
|
||||
import com.intellij.openapi.actionSystem.ex.AnActionListener;
|
||||
import com.intellij.openapi.application.ApplicationManager;
|
||||
import com.intellij.openapi.components.ServiceManager;
|
||||
import com.intellij.openapi.editor.Editor;
|
||||
import com.intellij.openapi.project.DumbService;
|
||||
import com.intellij.openapi.project.IndexNotReadyException;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.util.Condition;
|
||||
import com.intellij.psi.PsiDocumentManager;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.psi.PsiFile;
|
||||
import com.intellij.psi.impl.source.tree.injected.InjectedLanguageUtil;
|
||||
import com.intellij.util.Alarm;
|
||||
import com.intellij.util.ui.UIUtil;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.jetbrains.annotations.TestOnly;
|
||||
|
||||
public class AutoPopupController implements Disposable {
|
||||
private final Project myProject;
|
||||
private final Alarm myAlarm = new Alarm();
|
||||
|
||||
public static AutoPopupController getInstance(Project project){
|
||||
return ServiceManager.getService(project, AutoPopupController.class);
|
||||
}
|
||||
|
||||
public AutoPopupController(Project project) {
|
||||
myProject = project;
|
||||
setupListeners();
|
||||
}
|
||||
|
||||
private void setupListeners() {
|
||||
ActionManagerEx.getInstanceEx().addAnActionListener(new AnActionListener() {
|
||||
public void beforeActionPerformed(AnAction action, DataContext dataContext, AnActionEvent event) {
|
||||
cancelAllRequest();
|
||||
}
|
||||
|
||||
public void beforeEditorTyping(char c, DataContext dataContext) {
|
||||
cancelAllRequest();
|
||||
}
|
||||
|
||||
|
||||
public void afterActionPerformed(final AnAction action, final DataContext dataContext, AnActionEvent event) {
|
||||
}
|
||||
}, this);
|
||||
|
||||
IdeEventQueue.getInstance().addActivityListener(new Runnable() {
|
||||
public void run() {
|
||||
cancelAllRequest();
|
||||
}
|
||||
}, this);
|
||||
}
|
||||
|
||||
public void autoPopupMemberLookup(final Editor editor, @Nullable final Condition<PsiFile> condition){
|
||||
scheduleAutoPopup(editor, condition);
|
||||
}
|
||||
|
||||
public void scheduleAutoPopup(final Editor editor, @Nullable final Condition<PsiFile> condition) {
|
||||
if (ApplicationManager.getApplication().isUnitTestMode() && !CompletionAutoPopupHandler.ourTestingAutopopup) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!CodeInsightSettings.getInstance().AUTO_POPUP_COMPLETION_LOOKUP) {
|
||||
return;
|
||||
}
|
||||
if (PowerSaveMode.isEnabled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!CompletionServiceImpl.isPhase(CompletionPhase.CommittingDocuments.class, CompletionPhase.NoCompletion.getClass())) {
|
||||
return;
|
||||
}
|
||||
|
||||
final CompletionProgressIndicator currentCompletion = CompletionServiceImpl.getCompletionService().getCurrentCompletion();
|
||||
if (currentCompletion != null) {
|
||||
currentCompletion.closeAndFinish(true);
|
||||
}
|
||||
|
||||
final CompletionPhase.CommittingDocuments phase = new CompletionPhase.CommittingDocuments(null, editor);
|
||||
CompletionServiceImpl.setCompletionPhase(phase);
|
||||
|
||||
Runnable request = new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (myProject.isDisposed()) return;
|
||||
CompletionAutoPopupHandler.runLaterWithCommitted(myProject, editor.getDocument(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (phase.checkExpired()) return;
|
||||
|
||||
PsiFile file = PsiDocumentManager.getInstance(myProject).getPsiFile(editor.getDocument());
|
||||
if (file != null && condition != null && !condition.value(file)) return;
|
||||
|
||||
CompletionAutoPopupHandler.invokeCompletion(CompletionType.BASIC, true, myProject, editor, 0, false);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
addRequest(request, CodeInsightSettings.getInstance().AUTO_LOOKUP_DELAY);
|
||||
}
|
||||
|
||||
@TestOnly
|
||||
public void executePendingRequests() {
|
||||
assert !ApplicationManager.getApplication().isDispatchThread();
|
||||
while (myAlarm.getActiveRequestCount() != 0) {
|
||||
UIUtil.pump();
|
||||
}
|
||||
}
|
||||
|
||||
private void addRequest(Runnable request, final int delay) {
|
||||
myAlarm.addRequest(request, delay);
|
||||
}
|
||||
|
||||
private void cancelAllRequest() {
|
||||
myAlarm.cancelAllRequests();
|
||||
}
|
||||
|
||||
public void autoPopupParameterInfo(final Editor editor, @Nullable final PsiElement highlightedMethod){
|
||||
if (ApplicationManager.getApplication().isUnitTestMode()) return;
|
||||
if (DumbService.isDumb(myProject)) return;
|
||||
|
||||
ApplicationManager.getApplication().assertIsDispatchThread();
|
||||
final CodeInsightSettings settings = CodeInsightSettings.getInstance();
|
||||
if (settings.AUTO_POPUP_PARAMETER_INFO) {
|
||||
final PsiDocumentManager documentManager = PsiDocumentManager.getInstance(myProject);
|
||||
PsiFile file = documentManager.getPsiFile(editor.getDocument());
|
||||
if (file == null) return;
|
||||
|
||||
if (!documentManager.isUncommited(editor.getDocument())) {
|
||||
file = documentManager.getPsiFile(InjectedLanguageUtil.getEditorForInjectedLanguageNoCommit(editor, file).getDocument());
|
||||
if (file == null) return;
|
||||
}
|
||||
|
||||
final PsiFile file1 = file;
|
||||
final Runnable request = new Runnable(){
|
||||
public void run(){
|
||||
if (myProject.isDisposed() || DumbService.isDumb(myProject) || editor.isDisposed()) return;
|
||||
documentManager.commitAllDocuments();
|
||||
int lbraceOffset = editor.getCaretModel().getOffset() - 1;
|
||||
try {
|
||||
ShowParameterInfoHandler.invoke(myProject, editor, file1, lbraceOffset, highlightedMethod);
|
||||
}
|
||||
catch (IndexNotReadyException ignored) { //anything can happen on alarm
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
addRequest(request, settings.PARAMETER_INFO_DELAY);
|
||||
}
|
||||
}
|
||||
|
||||
public void dispose() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user