mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 02:36:01 +02:00
New code for running command invisibly
This commit is contained in:
parent
7a194919a8
commit
43613a11b6
1 changed files with 23 additions and 1 deletions
|
@ -19,9 +19,14 @@ package samples.ui.actions;
|
||||||
import org.eclipse.jface.dialogs.MessageDialog;
|
import org.eclipse.jface.dialogs.MessageDialog;
|
||||||
import org.eclipse.rse.core.model.IHost;
|
import org.eclipse.rse.core.model.IHost;
|
||||||
import org.eclipse.rse.files.ui.actions.SystemAbstractRemoteFilePopupMenuExtensionAction;
|
import org.eclipse.rse.files.ui.actions.SystemAbstractRemoteFilePopupMenuExtensionAction;
|
||||||
|
import org.eclipse.rse.services.shells.IHostOutput;
|
||||||
|
import org.eclipse.rse.services.shells.IHostShell;
|
||||||
|
import org.eclipse.rse.services.shells.IHostShellChangeEvent;
|
||||||
|
import org.eclipse.rse.services.shells.IHostShellOutputListener;
|
||||||
import org.eclipse.rse.shells.ui.RemoteCommandHelpers;
|
import org.eclipse.rse.shells.ui.RemoteCommandHelpers;
|
||||||
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
|
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile;
|
||||||
import org.eclipse.rse.subsystems.shells.core.subsystems.IRemoteCmdSubSystem;
|
import org.eclipse.rse.subsystems.shells.core.subsystems.IRemoteCmdSubSystem;
|
||||||
|
import org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem.IServiceCommandShell;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An action that runs a command to display the contents of a Jar file.
|
* An action that runs a command to display the contents of a Jar file.
|
||||||
|
@ -66,12 +71,29 @@ public class ShowJarContents extends SystemAbstractRemoteFilePopupMenuExtensionA
|
||||||
IRemoteCmdSubSystem cmdss = getRemoteCmdSubSystem();
|
IRemoteCmdSubSystem cmdss = getRemoteCmdSubSystem();
|
||||||
if (cmdss!=null && cmdss.isConnected()) {
|
if (cmdss!=null && cmdss.isConnected()) {
|
||||||
//Option A: run the command invisibly
|
//Option A: run the command invisibly
|
||||||
//cmdss.runCommand(command, null, "", false); //$NON-NLS-1$
|
//runCommandInvisibly(cmdss, command);
|
||||||
//Option B: run the command in a visible shell
|
//Option B: run the command in a visible shell
|
||||||
RemoteCommandHelpers.runUniversalCommand(getShell(), command, ".", cmdss); //$NON-NLS-1$
|
RemoteCommandHelpers.runUniversalCommand(getShell(), command, ".", cmdss); //$NON-NLS-1$
|
||||||
} else {
|
} else {
|
||||||
MessageDialog.openError(getShell(), "No command subsystem", "Found no command subsystem");
|
MessageDialog.openError(getShell(), "No command subsystem", "Found no command subsystem");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void runCommandInvisibly(IRemoteCmdSubSystem cmdss, String command) throws Exception
|
||||||
|
{
|
||||||
|
Object[] result = cmdss.runCommand(command, null, false);
|
||||||
|
if (result.length>0 && result[0] instanceof IServiceCommandShell) {
|
||||||
|
IServiceCommandShell scs = (IServiceCommandShell)result[0];
|
||||||
|
IHostShell hs = scs.getHostShell();
|
||||||
|
hs.addOutputListener(new IHostShellOutputListener() {
|
||||||
|
public void shellOutputChanged(IHostShellChangeEvent event) {
|
||||||
|
IHostOutput[] lines = event.getLines();
|
||||||
|
for(int i=0; i<lines.length; i++) {
|
||||||
|
System.out.println(lines[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue