blob: 9e465c4a26b4c32a7593e7c67d768535bbf7ba25 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2008, 2019 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.r.debug.ui.launcher;
import java.util.List;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.ui.texteditor.IDocumentProvider;
import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.statet.ecommons.ui.workbench.WorkbenchUIUtils;
import org.eclipse.statet.internal.r.debug.ui.RLaunchingMessages;
import org.eclipse.statet.internal.r.ui.RUIPlugin;
import org.eclipse.statet.r.launching.RCodeLaunching;
public class SubmitSelectionAndGotoNextLineHandler extends AbstractHandler {
public SubmitSelectionAndGotoNextLineHandler() {
super();
}
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
final IWorkbenchPart workbenchPart = HandlerUtil.getActivePart(event);
final ISelection selection = WorkbenchUIUtils.getCurrentSelection(event.getApplicationContext());
try {
if (workbenchPart instanceof ITextEditor && selection instanceof ITextSelection) {
final ITextEditor editor = (ITextEditor) workbenchPart;
final IDocumentProvider documentProvider = editor.getDocumentProvider();
if (documentProvider == null) {
return null;
}
final IDocument document = documentProvider.getDocument(editor.getEditorInput());
if (document == null) {
return null;
}
final List<String> lines = LaunchShortcutUtil.getSelectedCodeLines(event);
if (lines != null) {
RCodeLaunching.runRCodeDirect(lines, false, null);
final int newOffset = getNextLineOffset(document, ((ITextSelection) selection).getEndLine());
if (newOffset >= 0) {
editor.selectAndReveal(newOffset, 0);
}
}
return null;
}
}
catch (final CoreException e) {
LaunchShortcutUtil.handleRLaunchException(e,
RLaunchingMessages.RSelectionLaunch_error_message, event);
return null;
}
LaunchShortcutUtil.handleUnsupportedExecution(event);
return null;
}
private int getNextLineOffset(final IDocument doc, final int endLine) {
try {
if (endLine >= 0 && endLine+1 < doc.getNumberOfLines()) {
return doc.getLineOffset(endLine+1);
}
else {
return -1;
}
}
catch (final BadLocationException e) {
// don't show an error
RUIPlugin.logError(RUIPlugin.INTERNAL_ERROR, "Error while find next line.", e); //$NON-NLS-1$
return -1;
}
}
}