Package hudson
Class Launcher.LocalLauncher
java.lang.Object
hudson.Launcher
hudson.Launcher.LocalLauncher
- Enclosing class:
- Launcher
Launcher
that launches process locally.-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.Launcher
Launcher.DecoratedLauncher, Launcher.DummyLauncher, Launcher.IOTriplet, Launcher.LocalLauncher, Launcher.ProcStarter, Launcher.RemoteLauncher, Launcher.RemoteProcess
-
Field Summary
Fields inherited from class hudson.Launcher
channel, envVarsFilterRuleWrapper, listener, showFullPath
-
Constructor Summary
ConstructorDescriptionLocalLauncher
(TaskListener listener) LocalLauncher
(TaskListener listener, hudson.remoting.VirtualChannel channel) -
Method Summary
Modifier and TypeMethodDescriptionvoid
CallsProcessTree.killAll(Map)
to kill processes.Primarily invoked fromLauncher.ProcStarter.start()
to start a process with a specific launcher.hudson.remoting.Channel
launchChannel
(OutputStream out, ProcessBuilder pb) hudson.remoting.Channel
launchChannel
(String[] cmd, OutputStream out, FilePath workDir, Map<String, String> envVars) Launches a specified process and connects its input/output to aChannel
, then return it.Methods inherited from class hudson.Launcher
decorateByEnv, decorateByPrefix, decorateFor, getChannel, getComputer, getListener, isUnix, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, launch, maskedPrintCommandLine, maskedPrintCommandLine, prepareFilterRules, printCommandLine, setEnvVarsFilterRuleWrapper
-
Constructor Details
-
LocalLauncher
-
LocalLauncher
-
-
Method Details
-
launch
Description copied from class:Launcher
Primarily invoked fromLauncher.ProcStarter.start()
to start a process with a specific launcher.- Specified by:
launch
in classLauncher
- Throws:
IOException
-
launchChannel
public hudson.remoting.Channel launchChannel(String[] cmd, OutputStream out, FilePath workDir, Map<String, String> envVars) throws IOExceptionDescription copied from class:Launcher
Launches a specified process and connects its input/output to aChannel
, then return it.When the returned channel is terminated, the process will be killed.
- Specified by:
launchChannel
in classLauncher
- Parameters:
cmd
- The commands.out
- Where the stderr from the launched process will be sent.workDir
- The working directory of the new process, ornull
to inherit from the current processenvVars
- Environment variable overrides. In addition to what the current process is inherited (if this is going to be launched from an agent, that becomes the "current" process), these variables will be also set.- Throws:
IOException
-
kill
Description copied from class:Launcher
CallsProcessTree.killAll(Map)
to kill processes.- Specified by:
kill
in classLauncher
- Throws:
InterruptedException
-
launchChannel
public hudson.remoting.Channel launchChannel(OutputStream out, ProcessBuilder pb) throws IOException - Parameters:
out
- Where the stderr from the launched process will be sent.- Throws:
IOException
-