Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ public class LaunchConfigurationsMessages extends NLS {
public static String CommonTab_20;
public static String CommonTab_21;
public static String CommonTab_22;

public static String CommonTab_23;

public static String CommonTab_24;
public static String CommonTab_3;
public static String CommonTab_4;
public static String CommonTab_5;
Expand All @@ -66,6 +70,8 @@ public class LaunchConfigurationsMessages extends NLS {
public static String CommonTab_AttributeLabel_FavoriteGroups;
public static String CommonTab_AttributeLabel_TerminateDescendants;

public static String CommonTab_disable_console_input;

public static String CompileErrorProjectPromptStatusHandler_0;
public static String CompileErrorProjectPromptStatusHandler_1;
public static String CompileErrorPromptStatusHandler_0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ CommonTab_2=Defa&ult - inherited from project and workspace ({0})
CommonTab_22=Use &system encoding ({0})
CommonTab_20=Variables...
CommonTab_21=&Merge standard and error output (disables coloring of error output)
CommonTab_23=Allocate Terminal
CommonTab_24=&Allocate text console
CommonTab_3=Oth&er
CommonTab_4=Standard Input and Output
CommonTab_5=&Allocate console (necessary for input)
Expand All @@ -57,6 +59,7 @@ CommonTab_AttributeLabel_AppendToFile=Append to file
CommonTab_AttributeLabel_LaunchInBackground=Launch in background
CommonTab_AttributeLabel_FavoriteGroups=Favorite groups
CommonTab_AttributeLabel_TerminateDescendants=&Terminate child-processes if terminating the launched process
CommonTab_disable_console_input=Disable Input/Output

CompileErrorPromptStatusHandler_0=Errors in Workspace
CompileErrorPromptStatusHandler_1=Errors exist in a required project. Continue launch?
Expand Down
77 changes: 69 additions & 8 deletions debug/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Platform;
Expand Down Expand Up @@ -98,6 +100,7 @@
*/
public class CommonTab extends AbstractLaunchConfigurationTab {

private static final String TERMINAL_PROCESS_FACTORY_ID = "org.eclipse.debug.terminal.processFactory"; //$NON-NLS-1$
/**
* Constant representing the id of the {@link IDialogSettings} location for the {@link ContainerSelectionDialog} used
* on this tab
Expand Down Expand Up @@ -130,6 +133,8 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
private Button forceSystemEncodingButton;
private Combo fEncodingCombo;
private Button fConsoleOutput;
private Button noConsoleOutput;
private Button terminalOutput;
private Button fFileOutput;
private Button fFileBrowse;
private Text fFileText;
Expand All @@ -153,13 +158,15 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
* Modify listener that simply updates the owning launch configuration dialog.
*/
private final ModifyListener fBasicModifyListener = evt -> scheduleUpdateJob();
private boolean hasTerminalSupport;

/**
* Constructs a new tab with default context help.
*/
public CommonTab() {
super();
setHelpContextId(IDebugHelpContextIds.LAUNCH_CONFIGURATION_DIALOG_COMMON_TAB);
hasTerminalSupport = hasTerminalSupport();
}

@Override
Expand Down Expand Up @@ -311,8 +318,22 @@ private void createOutputCaptureComponent(Composite parent) {

private void createInputCaptureComponent(Composite parent){
Composite comp1 = SWTFactory.createComposite(parent, parent.getFont(), 5, 5, GridData.FILL_BOTH, 0, 0);
fConsoleOutput = createCheckButton(comp1, LaunchConfigurationsMessages.CommonTab_5);
fConsoleOutput.addSelectionListener(widgetSelectedAdapter(e -> updateLaunchConfigurationDialog()));
if (hasTerminalSupport) {
SelectionListener adapter = widgetSelectedAdapter(e -> updateLaunchConfigurationDialog());
Composite buttonComposite = new Composite(comp1, SWT.NONE);
buttonComposite.setLayout(new GridLayout(3, false));
fConsoleOutput = createRadioButton(buttonComposite, LaunchConfigurationsMessages.CommonTab_24);
fConsoleOutput.addSelectionListener(adapter);
terminalOutput = createRadioButton(buttonComposite, LaunchConfigurationsMessages.CommonTab_23);
terminalOutput.addSelectionListener(adapter);
noConsoleOutput = createRadioButton(buttonComposite,
LaunchConfigurationsMessages.CommonTab_disable_console_input);
noConsoleOutput.addSelectionListener(adapter);

} else {
fConsoleOutput = createCheckButton(comp1, LaunchConfigurationsMessages.CommonTab_5);
fConsoleOutput.addSelectionListener(widgetSelectedAdapter(e -> updateLaunchConfigurationDialog()));
}

Composite comp = SWTFactory.createComposite(comp1, comp1.getFont(), 5, 5, GridData.FILL_BOTH, 0, 0);
fInputFileCheckButton = createCheckButton(comp, LaunchConfigurationsMessages.CommonTab_17);
Expand Down Expand Up @@ -388,6 +409,20 @@ private void createInputCaptureComponent(Composite parent){

setInputFileEnabled(false);
}

private static boolean hasTerminalSupport() {
IExtensionPoint extensionPoint = Platform.getExtensionRegistry()
.getExtensionPoint(DebugPlugin.getUniqueIdentifier(), DebugPlugin.EXTENSION_POINT_PROCESS_FACTORIES);
IConfigurationElement[] infos = extensionPoint.getConfigurationElements();
for (IConfigurationElement configurationElement : infos) {
String id = configurationElement.getAttribute("id"); //$NON-NLS-1$
if (TERMINAL_PROCESS_FACTORY_ID.equals(id)) {
return true;
}
}
return false;
}

/**
* Enables or disables the output capture widgets based on the the specified enablement
* @param enable if the output capture widgets should be enabled or not
Expand Down Expand Up @@ -665,8 +700,20 @@ private void updateConsoleOutput(ILaunchConfiguration configuration) {
supportsMergeOutput = configuration.getType().supportsOutputMerging();
} catch (CoreException e) {
}

fConsoleOutput.setSelection(outputToConsole);
if (hasTerminalSupport) {
if (outputToConsole) {
if (TERMINAL_PROCESS_FACTORY_ID
.equals(getAttribute(configuration, DebugPlugin.ATTR_PROCESS_FACTORY_ID, ""))) { //$NON-NLS-1$
terminalOutput.setSelection(true);
} else {
fConsoleOutput.setSelection(true);
}
} else {
noConsoleOutput.setSelection(true);
}
} else {
fConsoleOutput.setSelection(outputToConsole);
}
fAppend.setSelection(append);
if (supportsMergeOutput) {
fMergeOutput = createCheckButton(fIoComposit, LaunchConfigurationsMessages.CommonTab_21);
Expand Down Expand Up @@ -994,11 +1041,25 @@ public void performApply(ILaunchConfigurationWorkingCopy configuration) {
}
configuration.setAttribute(DebugPlugin.ATTR_CONSOLE_ENCODING, encoding);
boolean captureOutput = false;
if (fConsoleOutput.getSelection()) {
captureOutput = true;
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, (String) null);
if (hasTerminalSupport) {
if (noConsoleOutput.getSelection()) {
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, false);
} else {
captureOutput = true;
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, (String) null);
if (terminalOutput.getSelection()) {
configuration.setAttribute(DebugPlugin.ATTR_PROCESS_FACTORY_ID, TERMINAL_PROCESS_FACTORY_ID);
} else {
configuration.setAttribute(DebugPlugin.ATTR_PROCESS_FACTORY_ID, (String) null);
}
}
} else {
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, false);
if (fConsoleOutput.getSelection()) {
captureOutput = true;
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, (String) null);
} else {
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_IN_CONSOLE, false);
}
}
if (fInputFileCheckButton.getSelection()) {
configuration.setAttribute(IDebugUIConstants.ATTR_CAPTURE_STDIN_FILE, fInputFileLocationText.getText());
Expand Down
Loading