-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | Conduits for processes (deprecated)
--
-- This package is deprecated. Please use Data.Conduit.Process from
-- conduit-extra instead. The original code is maintained in
-- Data.Conduit.ProcessOld for those wishing to use the older API.
@package process-conduit
@version 1.2.0.1
module Data.Conduit.ProcessOld
-- | Source of process
sourceProcess :: MonadResource m => CreateProcess -> Producer m ByteString
-- | Conduit of process
conduitProcess :: MonadResource m => CreateProcess -> Conduit ByteString m ByteString
-- | Source of shell command
sourceCmd :: MonadResource m => String -> Producer m ByteString
-- | Conduit of shell command
conduitCmd :: MonadResource m => String -> Conduit ByteString m ByteString
-- | Construct a CreateProcess record for passing to
-- createProcess, representing a command to be passed to the
-- shell.
shell :: String -> CreateProcess
-- | Construct a CreateProcess record for passing to
-- createProcess, representing a raw command with arguments.
--
-- The FilePath argument names the executable, and is interpreted
-- according to the platform's standard policy for searching for
-- executables. Specifically:
--
--
-- - on Unix systems the execvp(3) semantics is used, where if
-- the executable filename does not contain a slash (/) then the
-- PATH 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
-- documentation for the Windows SearchPath API.
--
proc :: FilePath -> [String] -> CreateProcess
data CreateProcess :: *
CreateProcess :: CmdSpec -> Maybe FilePath -> Maybe [(String, String)] -> StdStream -> StdStream -> StdStream -> Bool -> Bool -> Bool -> CreateProcess
-- | Executable & arguments, or shell command
cmdspec :: CreateProcess -> CmdSpec
-- | Optional path to the working directory for the new process
cwd :: CreateProcess -> Maybe FilePath
-- | Optional environment (otherwise inherit from the current process)
env :: CreateProcess -> Maybe [(String, String)]
-- | How to determine stdin
std_in :: CreateProcess -> StdStream
-- | How to determine stdout
std_out :: CreateProcess -> StdStream
-- | How to determine stderr
std_err :: CreateProcess -> StdStream
-- | Close 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)
close_fds :: CreateProcess -> Bool
-- | Create a new process group
create_group :: CreateProcess -> Bool
-- | Delegate 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.
--
-- Since: 1.2.0.0
delegate_ctlc :: CreateProcess -> Bool
data CmdSpec :: *
-- | a command line to execute using the shell
ShellCommand :: String -> CmdSpec
-- | the filename of an executable with a list of arguments. see
-- proc for the precise interpretation of the FilePath
-- field.
RawCommand :: FilePath -> [String] -> CmdSpec
data StdStream :: *
-- | Inherit Handle from parent
Inherit :: StdStream
-- | Use the supplied Handle
UseHandle :: Handle -> StdStream
-- | Create a new pipe. The returned Handle will use the default
-- encoding and newline translation mode (just like Handles
-- created by openFile).
CreatePipe :: StdStream
data ProcessHandle :: *
module System.Process.QQ
-- | Command result of (Lazy) ByteString.
cmd :: QuasiQuoter
-- | Source of shell command
scmd :: QuasiQuoter
-- | Conduit of shell command
ccmd :: QuasiQuoter