process-streaming: Streaming interface to system processes.

[ bsd3, library, system ] [ Propose Tags ]

Concurrent, streaming access to the input and outputs of system processes.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1, 0.0.1.1, 0.3.0.0, 0.5.0.0, 0.5.0.1, 0.5.0.2, 0.6.0.0, 0.6.1.0, 0.6.2.0, 0.6.2.1, 0.6.2.2, 0.6.5.0, 0.6.6.0, 0.6.7.0, 0.6.8.0, 0.6.9.0, 0.7.0.0, 0.7.0.1, 0.7.0.2, 0.7.1.0, 0.7.2.0, 0.7.2.1, 0.7.2.2, 0.9.0.0, 0.9.0.1, 0.9.1.0, 0.9.1.1, 0.9.1.2, 0.9.2, 0.9.2.1, 0.9.3.0
Change log CHANGELOG
Dependencies base (>=4.4 && <5), bifunctors (>=4.1 && <5), bytestring, conceit (>=0.2.2.1 && <0.3.0.0), containers (>=0.4), contravariant (>=1.2), foldl (>=1.0.7), free (>=4.2 && <5), pipes (>=4.1.3 && <4.2), pipes-bytestring (>=2.1.0 && <2.2), pipes-concurrency (>=2.0.2 && <3), pipes-parse (>=3.0.1 && <3.1), pipes-safe (>=2.2.0 && <3), pipes-text (>=0.0.0.10 && <0.0.2), process (>=1.2.0 && <1.3), semigroups (>=0.15 && <0.20), text (>=0.11.2 && <1.2.1), transformers (>=0.2 && <0.5), transformers-compat (>=0.3), void (>=0.6 && <1.0) [details]
License BSD-3-Clause
Author Daniel Díaz Carrete
Maintainer diaz_carrete@yahoo.com
Category System
Source repo head: git clone https://github.com/danidiaz/process-streaming.git
Uploaded by DanielDiazCarrete at 2015-04-03T08:08:38Z
Distributions
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 20240 total (65 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-04-03 [all 1 reports]

Readme for process-streaming-0.7.1.0

[back to package description]

process-streaming

Exploring how to interact with system processes using a streaming library (pipes).

The basic goals:

  • Concurrent, streaming access to stdin, stdout and stderr.

  • Easy integration with regular consumers, parsers from pipes-parse and various folds.

  • Avoid launching exceptions: use Either or similar solution to signal non-IO related error conditions.

Relevant thread in the Haskell Pipes Google Group:

https://groups.google.com/forum/#!searchin/haskell-pipes/pipes$20process/haskell-pipes/JFfyquj5HAg/Lxz7p50JOh4J

Possible alternatives in Hackage

  • turtle (pipes-based, shell programming)

http://hackage.haskell.org/package/turtle

  • pipes-cliff (pipes-based)

http://hackage.haskell.org/package/pipes-cliff

  • pipes-shell (pipes-based)

http://hackage.haskell.org/package/pipes-shell

  • shelly (shell programming)

http://hackage.haskell.org/package/shelly

  • shell-conduit (coundit-based, shell programming)

http://hackage.haskell.org/package/shell-conduit

  • Data.Conduit.Process from conduit-extra (conduit-based)

http://hackage.haskell.org/package/conduit-extra

  • System.IO.Streams.Process from io-streams (iostreams-based)

http://hackage.haskell.org/package/io-streams

  • process-extras

http://hackage.haskell.org/package/process-extras