blob: 6b6edde16ae74dbd78abffc96923dfc64903c6e0 [file] [log] [blame]
/*
* Copyright 2000-2013 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.jetbrains.python.console;
import com.intellij.execution.ExecutionHelper;
import com.intellij.execution.process.ProcessHandler;
import com.intellij.execution.ui.RunContentDescriptor;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.wm.IdeFocusManager;
import com.intellij.util.Consumer;
import com.intellij.util.NotNullFunction;
import icons.PythonIcons;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
/**
* @author traff
*/
public class PyOpenDebugConsoleAction extends AnAction implements DumbAware {
public PyOpenDebugConsoleAction() {
super();
getTemplatePresentation().setIcon(PythonIcons.Python.Debug.CommandLine);
}
@Override
public void update(final AnActionEvent e) {
e.getPresentation().setVisible(false);
e.getPresentation().setEnabled(true);
final Project project = e.getData(CommonDataKeys.PROJECT);
if (project != null) {
e.getPresentation().setVisible(getConsoles(project).size() > 0);
}
}
@Override
public void actionPerformed(final AnActionEvent e) {
final Project project = e.getData(CommonDataKeys.PROJECT);
if (project != null) {
selectRunningProcess(e.getDataContext(), project, new Consumer<PythonDebugLanguageConsoleView>() {
@Override
public void consume(PythonDebugLanguageConsoleView view) {
view.enableConsole(false);
IdeFocusManager.getInstance(project).requestFocus(view.getPydevConsoleView().getComponent(), true);
}
});
}
}
private static void selectRunningProcess(@NotNull DataContext dataContext, @NotNull Project project,
final Consumer<PythonDebugLanguageConsoleView> consumer) {
Collection<RunContentDescriptor> consoles = getConsoles(project);
ExecutionHelper
.selectContentDescriptor(dataContext, project, consoles, "Select running python process", new Consumer<RunContentDescriptor>() {
@Override
public void consume(RunContentDescriptor descriptor) {
if (descriptor != null && descriptor.getExecutionConsole() instanceof PythonDebugLanguageConsoleView) {
consumer.consume((PythonDebugLanguageConsoleView)descriptor.getExecutionConsole());
}
}
});
}
private static Collection<RunContentDescriptor> getConsoles(Project project) {
return ExecutionHelper.findRunningConsole(project, new NotNullFunction<RunContentDescriptor, Boolean>() {
@NotNull
@Override
public Boolean fun(RunContentDescriptor dom) {
return dom.getExecutionConsole() instanceof PythonDebugLanguageConsoleView && isAlive(dom);
}
});
}
private static boolean isAlive(RunContentDescriptor dom) {
ProcessHandler processHandler = dom.getProcessHandler();
return processHandler != null && !processHandler.isProcessTerminated();
}
}