io-streams-1.5.1.0: Simple, composable, and easy-to-use stream I/O

Safe HaskellNone
LanguageHaskell2010

System.IO.Streams.Debug

Contents

Description

Convenience module for debugging streams. Provides stream transformers that wrap InputStreams and OutputStreams, sending a description of all data to an OutputStream for debugging.

Synopsis

Debuggers

debugInput Source #

Arguments

:: (a -> ByteString)

function to convert stream elements to ByteString

-> ByteString

name of this debug stream, will be prepended to debug output

-> OutputStream ByteString

stream the debug info will be sent to

-> InputStream a

input stream

-> IO (InputStream a) 

debugOutput Source #

Arguments

:: (a -> ByteString)

function to convert stream elements to ByteString

-> ByteString

name of this debug stream, will be prepended to debug output

-> OutputStream ByteString

debug stream

-> OutputStream a

output stream

-> IO (OutputStream a) 

debugInputBS Source #

Arguments

:: ByteString

name of this debug stream, will be prepended to debug output

-> OutputStream ByteString

stream the debug info will be sent to

-> InputStream ByteString

input stream

-> IO (InputStream ByteString) 

debugOutputBS Source #

Arguments

:: ByteString

name of this debug stream, will be prepended to debug output

-> OutputStream ByteString

stream the debug info will be sent to

-> OutputStream ByteString

output stream

-> IO (OutputStream ByteString)