h"SQ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\ Safe-Inferred#$ processA handle to a process, which can be used to wait for termination of the process using .None of the process-creation functions in this library wait for termination: they all return a 6 which may be used to wait for the process later.On Windows a second wait method can be used to block for event completion. This requires two handles. A process job handle and a events handle to monitor.process the processprocess4the job containing the process and its subprocessesprocessInherit Handle from parentprocessUse the supplied Handleprocess"Create a new pipe. The returned Handle will use the default encoding and newline translation mode (just like Handle s created by openFile).processClose the stream's file descriptor without passing a Handle. On POSIX systems this may lead to strange behavior in the child process because attempting to read or write after the file has been closed throws an error. This should only be used with child processes that don't use the file descriptor at all. If you wish to ignore the child process's output you should either create a pipe and drain it manually or pass a Handle that writes to  /dev/null.process)A command line to execute using the shellprocess2The name of an executable with a list of argumentsThe ] argument names the executable, and is interpreted according to the platform's standard policy for searching for executables. Specifically:on Unix systems the  http://pubs.opengroup.org/onlinepubs/9699919799/functions/execvp.html execvp(3) semantics is used, where if the executable filename does not contain a slash (/ ) then the PATH8 environment variable is searched for the executable.on Windows systems the Win32  CreateProcess semantics is used. Briefly: if the filename does not contain a path, then the directory containing the parent executable is searched, followed by the current directory, then some standard locations, and finally the current PATH. An .exe extension is added if the filename does not already have an extension. For full details see the  http://msdn.microsoft.com/en-us/library/windows/desktop/aa365527%28v=vs.85%29.aspx documentation for the Windows  SearchPath API.processcontains the handles returned by a call to createProcess_Internal!process.Executable & arguments, or shell command. If " is ^, relative paths are resolved with respect to the current working directory. If " is provided, it is implementation-dependent whether relative paths are resolved with respect to " or the current working directory, so absolute paths should be used to ensure portability."process:Optional path to the working directory for the new process#processOptional environment (otherwise inherit from the current process)$processHow to determine stdin%processHow to determine stdout&processHow to determine stderr'processClose all file descriptors except stdin, stdout and stderr in the new process (on Windows, only works if std_in, std_out, and std_err are all Inherit). This implementation will call close an every fd from 3 to the maximum of open files, which can be slow for high maximum of open files.(processCreate a new process group)processDelegate control-C handling. Use this for interactive console processes to let them handle control-C themselves (see below for details).On Windows this has no effect.*processUse the windows DETACHED_PROCESS flag when creating the process; does nothing on other platforms.+processUse the windows CREATE_NEW_CONSOLE flag when creating the process; does nothing on other platforms. Default: False,processUse posix setsid to start the new process in a new session; does nothing on other platforms.-processUse posix setgid to set child process's group id; does nothing on other platforms. Default: Nothing.processUse posix setuid to set child process's user id; does nothing on other platforms. Default: Nothing/processOn Windows systems this flag indicates that we should wait for the entire process tree to finish before unblocking. On POSIX systems this flag is ignored. See $exec-on-windows for details. Default: False_process construct a  from a string literal7    !"#$%&'()*+,-./0123`abcdeNoneefprocessTurns a shell command into a raw command. Usually this involves wrapping it in an invocation of the shell.There's a difference in the signature of commandToProcess between the Windows and Unix versions. On Unix, exec takes a list of strings, and we want to pass our command to binsh as a single argument.On Windows, CreateProcess takes a single string for the command, which is later decomposed by cmd.exe. In this case, we just want to prepend "c:WINDOWSCMD.EXE /c" to our command line. The command-line translation that we normally do for arguments on Windows isn't required (or desirable) here.7processrunInteractiveProcess blocks signals around the fork(). Since blocking/unblocking of signals is a global state operation, we need to ensure mutual exclusion of calls to runInteractiveProcess. This lock is exported so that other libraries which also need to fork() (and also need to make the same global state changes) can protect their changes with the same lock. See  +https://github.com/haskell/process/pull/154.gprocessA process in the process group45h6i789:;?@ABC   05423 !"#$%&'()*+,-./=@8:9?;<716>ABC'(c) The University of Glasgow 2004-2008/BSD-style (see the file libraries/base/LICENSE)libraries@haskell.org experimental#non-portable (requires concurrency)Safe PDprocess4The platform specific type for a process identifier.This is always an integral type. Width and signedness are platform specific.Eprocess Construct a  record for passing to G-, representing a raw command with arguments.See ( for precise semantics of the specified FilePath.Fprocess Construct a  record for passing to G4, representing a command to be passed to the shell.GprocessThis 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 m3s, or just inherited from the parent (the default.);The details of how to create the process are passed in the + record. To make it easier to construct a , the functions E and F are supplied that fill in the fields with default values which can be overriden as needed.G returns ( mb_stdin_hdl,  mb_stdout_hdl,  mb_stderr_hdl, ph), whereif $ == , then  mb_stdin_hdl will be Just h , where h is the write end of the pipe connected to the child process's stdin. otherwise,  mb_stdin_hdl == NothingSimilarly for  mb_stdout_hdl and  mb_stderr_hdl.!For example, to execute a simple ls command: # r <- createProcess (proc "ls" [])2To 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 Handles 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 Handle3 open after spawning the child process, please use = instead. All created Handles are initially in text mode; if you need them to be in binary mode then use o.HprocessA p-style resource handler for G.Does automatic cleanup when the action finishes. If there is an exception in the body then it ensures that the process gets terminated and any  ms are closed. In particular this means that if the Haskell thread is killed (e.g. q1), that the external process is also terminated.e.g. withCreateProcess (proc cmd args) { ... } $ \stdin stdout stderr ph -> do ...IprocessCleans up the process.This function is meant to be invoked from any application level cleanup handler. It terminates the process, and closes any  handles.JprocessCreates 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 .KprocessCreates a new process to run the specified shell command. It does not wait for the program to finish, but returns the .LprocessCreates 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.MprocessCreates 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.Nprocess readProcess forks an external process, reads its standard output strictly, blocking until the process terminates, and returns the output string. The external process inherits the standard error.If an asynchronous exception is thrown to the thread executing  readProcess,, the forked process will be terminated and  readProcess: will wait (block) until the process has been terminated.Output is returned strictly, so this is not suitable for launching processes that require interaction over the standard file streams.This function throws an r if the process s is anything other than t". If instead you want to get the s then use P.+Users of this function should compile with  -threaded if they want other Haskell threads to keep running while waiting on the result of readProcess. = > readProcess "date" [] [] "Thu Feb 7 10:03:39 PST 2008\n"The arguments are:The command to run, which must be in the $PATH, or an absolute or relative path8A list of separate command line arguments to the program9A string to pass on standard input to the forked process.OprocessreadCreateProcess works exactly like N except that it lets you pass  giving better flexibility.  > readCreateProcess ((shell "pwd") { cwd = Just "/etc/" }) "" "/etc\n" Note that Handles provided for std_in or std_out/ via the CreateProcess record will be ignored.PprocessreadProcessWithExitCode is like N but with two differences:it returns the s of the process, and does not throw any exception if the code is not t.it reads and returns the output from process' standard error handle, rather than the process inheriting the standard error handle.On Unix systems, see T for the meaning of exit codes when the process died as the result of a signal.QprocessreadCreateProcessWithExitCode works exactly like P except that it lets you pass  giving better flexibility. Note that Handles provided for std_in, std_out, or std_err/ via the CreateProcess record will be ignored.uprocessFork a thread while doing something else, but kill it if there's an exception.This is important in the cases above because we want to kill the thread that is holding the Handle lock, because when we clean up the process we try to close that handle, which could otherwise deadlock.RprocessGiven 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).Sprocess-Returns the PID (process ID) of a subprocess.^ is returned if the handle was already closed. Otherwise a PID is returned that remains valid as long as the handle is open. The operating system may reuse the PID as soon as the last handle to the process is closed.TprocessWaits 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.(Since: 1.2.0.0$) On Unix systems, a negative value v -signum3 indicates that the child was terminated by signal signum. The signal numbers are platform-specific, so to test for a specific signal use the constants provided by System.Posix.Signals in the unix1 package. Note: core dumps are not reported, use System.Posix.Process if you need this detail.Uprocess"This is a non-blocking version of T$. If the process is still running, ^/ is returned. If the process has exited, then w e is returned where e! is the exit code of the process.On Unix systems, see T for the meaning of exit codes when the process died as the result of a signal.VprocessAttempts 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 U.On Unix systems, V? sends the process the SIGTERM signal. On Windows systems, if / is x then the Win32 TerminateJobObject function is called to kill all processes associated with the job and passing the exit code of 1 to each of them. Otherwise if / is y then the Win32 TerminateProcess/ function is called, passing an exit code of 1.Note: on Windows, if the process was a shell command created by G with F, or created by W or Y, then V will only terminate the shell, not the command itself. On Unix systems, both processes are in a process group and will be terminated together.WprocessRuns a command using the shell.Xprocess*Runs a raw command, optionally specifying ms from which to take the stdin, stdout and stderr channels for the new process (otherwise these handles are inherited from the current process).Any m s passed to X1 are placed immediately in the closed state.&Note: consider using the more general G instead of X.Yprocess,Runs a command using the shell, and returns ms that may be used to communicate with the process via its stdin, stdout , and stderr respectively.Zprocess Runs a raw command, and returns ms that may be used to communicate with the process via its stdin, stdout and stderr respectively.?For example, to start a process and feed a string to its stdin:  (inp,out,err,pid) <- runInteractiveProcess "..." forkIO (hPutStr inp str)[process Computation  system cmd returns the exit code produced when the operating system runs the shell command cmd.4This computation may fail with one of the following  exceptions: PermissionDeniedThe process has insufficient privileges to perform the operation.ResourceExhausted>Insufficient resources are available to perform the operation.UnsupportedOperation1The implementation does not support system calls. On Windows, [8 passes the command to the Windows command interpreter (CMD.EXE or  COMMAND.COM*), hence Unixy shell tricks will not work.On Unix systems, see T for the meaning of exit codes when the process died as the result of a signal.\processThe computation \ cmd args# runs the operating system command cmd1 in such a way that it receives as arguments the args strings exactly as given, with no funny escaping or shell meta-syntax expansion. It will therefore behave more portably between operating systems than [.;The return codes and possible failures are the same as for [.Nprocess Filename of the executable (see  for details)process any argumentsprocessstandard inputprocessstdoutOprocessstandard inputprocessstdoutPprocess Filename of the executable (see  for details)process any argumentsprocessstandard inputprocessexitcode, stdout, stderrQprocessstandard inputprocessexitcode, stdout, stderrXprocess Filename of the executable (see  for details)process#Arguments to pass to the executableprocess&Optional path to the working directoryprocess(Optional environment (otherwise inherit)processHandle to use for stdin (Nothing => use existing stdin)processHandle to use for stdout (Nothing => use existing stdout)processHandle to use for stderr (Nothing => use existing stderr)Zprocess Filename of the executable (see  for details)process#Arguments to pass to the executableprocess&Optional path to the working directoryprocess(Optional environment (otherwise inherit)7 !"#$%&'()*+,-./=ABCDEFGHIJKLMNOPQRSTUVWXYZ[\7G=FE !"#$%&'()*+,-./LMJKONQPHIRDSTUVCABXWZY[\ "(c) The University of Glasgow 2001/BSD-style (see the file libraries/base/LICENSE)libraries@haskell.org provisionalportableSafeQ[\[\    !"#$%&''()*+,,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdef gh ijklmnopqrstuvwx yz {| }~       iprocess-1.6.8.2System.Process.InternalsSystem.ProcessSystem.Process.CommonwaitForProcessSystem.Process.Posix createProcessSystem.IO.Error IOErrorType System.CmdbaseGHC.IO.Handle.FD fdToHandleSystem.Posix.TypesCGidUserIDGroupID unix-2.7.2.2System.Posix.Process.InternalspPrPr_disableITimers c_execvpe ProcessHandlephandlemb_delegate_ctlc waitpidLockProcessHandle__ OpenHandle OpenExtHandle ClosedHandlephdlProcessHandle phdlJobHandle StdStreamInherit UseHandle CreatePipeNoStreamCmdSpec ShellCommand RawCommandProcRetHandles hStdInput hStdOutput hStdError procHandle CreateProcesscmdspeccwdenvstd_instd_outstd_err close_fds create_group delegate_ctlcdetach_consolecreate_new_console new_session child_group child_useruse_process_jobsPHANDLEwithFilePathExceptionmodifyProcessHandlewithProcessHandlemkProcessHandle closePHANDLEwithCEnvironmentrunInteractiveProcess_lockstartDelegateControlCstopDelegateControlCendDelegateControlC ignoreSignal defaultSignalcreateProcess_ translate unwrapHandlesrunGenProcess_ createPipe createPipeFdinterruptProcessGroupOfPidprocshellwithCreateProcesscleanupProcess spawnProcess spawnCommand callProcess callCommand readProcessreadCreateProcessreadProcessWithExitCodereadCreateProcessWithExitCodeshowCommandForUsergetPidgetProcessExitCodeterminateProcess runCommand runProcessrunInteractiveCommandrunInteractiveProcesssystem rawSystemGHC.IOFilePath GHC.MaybeNothing$fIsStringCmdSpecfd_stdin fd_stdout fd_stderrmbFdmbPipe pfdToHandlecommandToProcessinterruptProcessGroupOfInternaltranslateInternalcreateProcess_InternalisDefaultSignalcreatePipeInternalcreatePipeInternalFdGHC.IO.Handle.TypesHandleSystem.Posix.InternalsFD GHC.IO.HandlehSetBinaryModeControl.Exception.Basebracket GHC.Conc.Sync killThreadGHC.IO.ExceptionIOErrorExitCode ExitSuccess withForkWait ExitFailureJustghc-prim GHC.TypesTrueFalse