packages feed

tpar-0.1.0.0: TPar/ProcessPipe.hs

{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE ScopedTypeVariables #-}

module TPar.ProcessPipe ( ProcessOutput(..)
                        , runProcess
                          -- * Killing the process
                        , ProcessKilled(..)
                          -- * Deinterleaving output
                        , processOutputToHandles
                        , selectStream
                        , OutputStreams(..)
                        ) where

import Control.Applicative
import Data.Monoid
import Data.Traversable
import qualified Pipes.Prelude as PP
import qualified Pipes.ByteString as PBS
import Data.ByteString (ByteString)
import qualified Data.ByteString as BS
import Control.Monad (msum)
import Control.Exception (Exception)
import System.IO (Handle)
import System.Exit

import Pipes
import Pipes.Safe () -- for MonadCatch instance
import qualified Pipes.Concurrent as PC
import System.Process (runInteractiveProcess, ProcessHandle, waitForProcess, terminateProcess)
import Control.Concurrent.STM
import Control.Distributed.Process
import Control.Monad.Catch (handle, throwM)

import Data.Binary
import Data.Binary.Put
import Data.Binary.Get
import GHC.Generics
import TPar.Utils

processPipes :: MonadIO m
             => FilePath                -- ^ Executable name
             -> [String]                -- ^ Arguments
             -> Maybe FilePath          -- ^ Working directory
             -> Maybe [(String,String)] -- ^ Optional environment
             -> IO ( Consumer ByteString m ()
                   , Producer ByteString m ()
                   , Producer ByteString m ()
                   , ProcessHandle)
processPipes cmd args cwd env = do
    (stdin, stdout, stderr, phandle) <- runInteractiveProcess cmd args cwd env
    return (PBS.toHandle stdin, PBS.fromHandle stdout, PBS.fromHandle stderr, phandle)

data InterleaverCanTerminate = InterleaverCanTerminate deriving (Generic)
instance Binary InterleaverCanTerminate

data InterleaveException = InterleaveException String
                         deriving (Show)
instance Exception InterleaveException

interleave :: forall a. [Producer a Process ()] -> Producer a Process ()
interleave producers = do
    inputs <- lift $ forM producers $ \prod -> do
        (output, input, seal) <- liftIO $ PC.spawn' (PC.bounded 10)
        pid <- spawnLocal $ runEffect $ do
            prod >-> PC.toOutput output
            liftIO $ atomically seal

        _ <- monitor pid
        return input

    let matchTermination = match $ \(ProcessMonitorNotification _ _pid reason) ->
                                     case reason of
                                       DiedNormal -> return Nothing
                                       _          -> throwM $ InterleaveException $ show reason
        matchData = matchSTM (PC.recv $ msum inputs) pure
        go :: Producer a Process ()
        go = do
            mx <- lift $ receiveWait [ matchTermination, matchData ]
            case mx of
              Nothing -> return ()
              Just x -> yield x >> go
    go

data ProcessOutput
    = PutStdout !ByteString
    | PutStderr !ByteString
    deriving (Show, Generic)

instance Binary ProcessOutput

data OutputStreams a = OutputStreams { stdOut, stdErr :: a }
                     deriving (Show, Functor, Generic)
instance Binary a => Binary (OutputStreams a)
instance Foldable OutputStreams where
    foldMap f (OutputStreams x y) = f x <> f y
instance Applicative OutputStreams where
    pure x = OutputStreams x x
    OutputStreams f g <*> OutputStreams x y = OutputStreams (f x) (g y)

-- Unfortunate orphan
instance Binary ExitCode where
    get = do
        code <- getInt32le
        return $ case code of
          0  -> ExitSuccess
          _  -> ExitFailure (fromIntegral code)
    put ExitSuccess        = putInt32le 0
    put (ExitFailure code) = putInt32le (fromIntegral code)

data ProcessKilled = ProcessKilled
                   deriving (Show, Generic)

instance Binary ProcessKilled
instance Exception ProcessKilled

selectStream :: OutputStreams (ByteString -> a) -> ProcessOutput -> a
selectStream (OutputStreams out err) outs =
    case outs of
      PutStdout bs -> out bs
      PutStderr bs -> err bs

runProcess :: FilePath -> [String] -> Maybe FilePath
           -> Producer ProcessOutput Process ExitCode
runProcess cmd args cwd = do
    lift $ tparDebug "starting process"
    (_stdin, stdout, stderr, phandle) <- liftIO $ processPipes cmd args cwd Nothing
    let processKilled ProcessKilled = liftIO $ do
            terminateProcess phandle
            throwM ProcessKilled
    handle processKilled $ do
        interleave [ stderr >-> PP.map PutStderr
                   , stdout >-> PP.map PutStdout
                   ]
        liftIO $ waitForProcess phandle

processOutputToHandles :: MonadIO m
                       => OutputStreams Handle -> ProcessOutput -> m ()
processOutputToHandles handles =
    selectStream $ fmap (\hdl bs -> liftIO $ BS.hPut hdl bs) handles