Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data ProcessHandle :: *
- createProcess :: CreateProcess -> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle)
- createProcess_ :: String -> CreateProcess -> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle)
- createProcessHandle :: CreateProcess -> IO ProcessHandle
- createWaitProcess :: CreateProcess -> IO ExitCode
- createMakeWaitProcess :: CreateProcess -> IO ExitCode
- shell :: String -> CreateProcess
- proc :: FilePath -> [String] -> CreateProcess
- procIn :: FilePath -> FilePath -> [String] -> CreateProcess
- callProcess :: FilePath -> [String] -> IO ()
- callCommand :: String -> IO ()
- spawnProcess :: FilePath -> [String] -> IO ProcessHandle
- spawnCommand :: String -> IO ProcessHandle
- readCreateProcess :: CreateProcess -> String -> IO String
- readProcess :: FilePath -> [String] -> String -> IO String
- readCreateProcessWithExitCode :: CreateProcess -> String -> IO (ExitCode, String, String)
- readProcessWithExitCode :: FilePath -> [String] -> String -> IO (ExitCode, String, String)
- showCommandForUser :: FilePath -> [String] -> String
- waitForProcess :: ProcessHandle -> IO ExitCode
- getProcessExitCode :: ProcessHandle -> IO (Maybe ExitCode)
- terminateProcess :: ProcessHandle -> IO ()
- interruptProcessGroupOf :: ProcessHandle -> IO ()
- createPipe :: IO (Handle, Handle)
Documentation
data ProcessHandle :: * #
Running sub-processes
createProcess :: CreateProcess -> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle) Source #
This is the most general way to spawn an external process. The
process can be a command line to be executed by a shell or a raw command
with a list of arguments. The stdin, stdout, and stderr streams of
the new process may individually be attached to new pipes, to existing
Handle
s, or just inherited from the parent (the default.)
The details of how to create the process are passed in the
CreateProcess
record. To make it easier to construct a
CreateProcess
, the functions proc
and shell
are supplied that
fill in the fields with default values which can be overriden as
needed.
createProcess
returns (mb_stdin_hdl, mb_stdout_hdl, mb_stderr_hdl, ph)
,
where
- if
, thenstd_in
==CreatePipe
mb_stdin_hdl
will beJust h
, whereh
is the write end of the pipe connected to the child process'sstdin
. - otherwise,
mb_stdin_hdl == Nothing
Similarly for mb_stdout_hdl
and mb_stderr_hdl
.
For example, to execute a simple ls
command:
r <- createProcess (proc "ls" [])
To create a pipe from which to read the output of ls
:
(_, Just hout, _, _) <- createProcess (proc "ls" []){ std_out = CreatePipe }
To also set the directory in which to run ls
:
(_, Just hout, _, _) <- createProcess (proc "ls" []){ cwd = Just "\home\bob", std_out = CreatePipe }
Note that Handle
s provided for std_in
, std_out
, or std_err
via the
UseHandle
constructor will be closed by calling this function. This is not
always the desired behavior. In cases where you would like to leave the
Handle
open after spawning the child process, please use createProcess_
instead.
see createProcess
.
:: String | function name (for error messages) |
-> CreateProcess | |
-> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle) |
This function is almost identical to
createProcess
. The only differences are:
Handle
s provided viaUseHandle
are not closed automatically.- This function takes an extra
String
argument to be used in creating error messages.
see createProcess_
.
shell :: String -> CreateProcess Source #
Construct a CreateProcess
record for passing to createProcess
,
representing a command to be passed to the shell.
see shell
.
proc :: FilePath -> [String] -> CreateProcess Source #
Construct a CreateProcess
record for passing to createProcess
,
representing a raw command with arguments.
See RawCommand
for precise semantics of the specified FilePath
.
see proc
.
Simpler functions for common tasks
callProcess :: FilePath -> [String] -> IO () Source #
Creates a new process to run the specified command with the given arguments, and wait for it to finish. If the command returns a non-zero exit code, an exception is raised.
If an asynchronous exception is thrown to the thread executing
callProcess
. The forked process will be terminated and
callProcess
will wait (block) until the process has been
terminated.
see 'System.Process.callProcess.
callCommand :: String -> IO () Source #
Creates a new process to run the specified shell command. If the command returns a non-zero exit code, an exception is raised.
If an asynchronous exception is thrown to the thread executing
callCommand
. The forked process will be terminated and
callCommand
will wait (block) until the process has been
terminated.
see 'System.Process.callCommand.
spawnProcess :: FilePath -> [String] -> IO ProcessHandle Source #
Creates a new process to run the specified raw command with the given
arguments. It does not wait for the program to finish, but returns the
ProcessHandle
.
see 'System.Process.spawnProcess.
spawnCommand :: String -> IO ProcessHandle Source #
Creates a new process to run the specified shell command.
It does not wait for the program to finish, but returns the ProcessHandle
.
see 'System.Process.spawnCommand.
:: CreateProcess | |
-> String | standard input |
-> IO String | stdout |
readCreateProcess
works exactly like readProcess
except that it
lets you pass CreateProcess
giving better flexibility.
> readCreateProcess (shell "pwd" { cwd = "/etc/" }) "" "/etc\n"
Note that Handle
s provided for std_in
or std_out
via the CreateProcess
record will be ignored.
see readCreateProcess
.
readCreateProcessWithExitCode Source #
readCreateProcessWithExitCode
works exactly like readProcessWithExitCode
except that it
lets you pass CreateProcess
giving better flexibility.
Note that Handle
s provided for std_in
, std_out
, or std_err
via the CreateProcess
record will be ignored.
readProcessWithExitCode Source #
:: FilePath | Filename of the executable (see |
-> [String] | any arguments |
-> String | standard input |
-> IO (ExitCode, String, String) | exitcode, stdout, stderr |
readProcessWithExitCode
is like readProcess
but with two differences:
- it returns the
ExitCode
of the process, and does not throw any exception if the code is notExitSuccess
. - it reads and returns the output from process' standard error handle, rather than the process inheriting the standard error handle.
On Unix systems, see waitForProcess
for the meaning of exit codes
when the process died as the result of a signal.
Related utilities
showCommandForUser :: FilePath -> [String] -> String Source #
Given a program p
and arguments args
,
showCommandForUser p args
returns a string suitable for pasting
into /bin/sh
(on Unix systems) or CMD.EXE
(on Windows).
see showCommandForUser
.
Control-C handling on Unix
waitForProcess :: ProcessHandle -> IO ExitCode Source #
Waits for the specified process to terminate, and returns its exit code.
GHC Note: in order to call waitForProcess
without blocking all the
other threads in the system, you must compile the program with
-threaded
.
On Unix systems, a negative value
indicates that the child was terminated by signal ExitFailure
-signumsignum
.
The signal numbers are platform-specific, so to test for a specific signal use
the constants provided by System.Posix.Signals in the unix
package.
Note: core dumps are not reported, use System.Posix.Process if you need this
detail.
see waitForProcess
.
getProcessExitCode :: ProcessHandle -> IO (Maybe ExitCode) Source #
This is a non-blocking version of waitForProcess
. If the process is
still running, Nothing
is returned. If the process has exited, then
is returned where Just
ee
is the exit code of the process.
On Unix systems, see waitForProcess
for the meaning of exit codes
when the process died as the result of a signal.
see getProcessExitCode
.
terminateProcess :: ProcessHandle -> IO () Source #
Attempts to terminate the specified process. This function should
not be used under normal circumstances - no guarantees are given regarding
how cleanly the process is terminated. To check whether the process
has indeed terminated, use getProcessExitCode
.
On Unix systems, terminateProcess
sends the process the SIGTERM signal.
On Windows systems, the Win32 TerminateProcess
function is called, passing
an exit code of 1.
Note: on Windows, if the process was a shell command created by
createProcess
with shell
, or created by runCommand
or
runInteractiveCommand
, then terminateProcess
will only
terminate the shell, not the command itself. On Unix systems, both
processes are in a process group and will be terminated together.
see 'System.Process.terminateProcess.
interruptProcessGroupOf Source #
:: ProcessHandle | A process in the process group |
-> IO () |
Sends an interrupt signal to the process group of the given process.
On Unix systems, it sends the group the SIGINT signal.
On Windows systems, it generates a CTRL_BREAK_EVENT and will only work for
processes created using createProcess
and setting the create_group
flag
see 'System.Process.interruptProcessGroupOf.
Interprocess communication
createPipe :: IO (Handle, Handle) Source #
Create a pipe for interprocess communication and return a
(readEnd, writeEnd)
Handle
pair.
see createPipe
.