Difference between revisions of "Iteratee I/O"

From HaskellWiki
Jump to navigation Jump to search
m (Minor fixes)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Iteratee I/O is a way to avoid the problems that can occur with lazy I/O. They work by making the I/O actions explicit, making their behavior easier to reason about.
+
Iteratee I/O is a way to avoid the problems that can occur with lazy I/O. They work by making the I/O operations explicit, making their behavior easier to reason about.
   
 
== The problem with lazy I/O ==
 
== The problem with lazy I/O ==
Line 36: Line 36:
 
; [http://hackage.haskell.org/package/iterIO iterIO] : Yet another implementation.
 
; [http://hackage.haskell.org/package/iterIO iterIO] : Yet another implementation.
 
; [http://hackage.haskell.org/package/enumerator enumerator] : Used in Snap. It does not use any extensions, so it will work with most Haskell compilers.
 
; [http://hackage.haskell.org/package/enumerator enumerator] : Used in Snap. It does not use any extensions, so it will work with most Haskell compilers.
; [http://hackage.haskell.org/package/pipes pipes] : A more recent implementation, which strives to be more elegant than existing libraries.
+
; [http://hackage.haskell.org/package/pipes pipes] : Elegant streaming library with many unique features
; [http://hackage.haskell.org/package/pipes-core pipes-core] : Fork of pipes which adds resource finalization, though pipes has it's own finilization now as well [http://hackage.haskell.org/package/pipes-safe pipes-safe].
 
 
; [http://hackage.haskell.org/package/conduit conduit] : Popular implementation designed with practical use in mind, created by the author of Yesod. Recently heavily influenced by pipes.
 
; [http://hackage.haskell.org/package/conduit conduit] : Popular implementation designed with practical use in mind, created by the author of Yesod. Recently heavily influenced by pipes.
 
; [http://hackage.haskell.org/package/liboleg liboleg] : An evolving collection of Oleg Kiselyov's Haskell modules (depends on the package unix and will therefore not compile on Windows systems).
 
; [http://hackage.haskell.org/package/liboleg liboleg] : An evolving collection of Oleg Kiselyov's Haskell modules (depends on the package unix and will therefore not compile on Windows systems).
  +
; [http://hackage.haskell.org/package/io-streams io-streams] : Focuses on streaming IO and having a simpler type framework then the Conduit and Pipes packages.
   
 
== Essays by Oleg ==
 
== Essays by Oleg ==
Line 59: Line 59:
   
 
* [http://snapframework.com Snap]: The Snap web framework
 
* [http://snapframework.com Snap]: The Snap web framework
* [http://hackage.haskell.org/package/yaml yaml]: Low-level binding to the libyaml C library]
+
* [http://hackage.haskell.org/package/yaml yaml]: Low-level binding to the libyaml C library
 
* [http://hackage.haskell.org/package/usb-0.4 usb 0.4]: Communicate with USB devices
 
* [http://hackage.haskell.org/package/usb-0.4 usb 0.4]: Communicate with USB devices
 
* [http://hackage.haskell.org/package/sstable sstable]: SSTables in Haskell
 
* [http://hackage.haskell.org/package/sstable sstable]: SSTables in Haskell

Latest revision as of 21:50, 26 July 2013

Iteratee I/O is a way to avoid the problems that can occur with lazy I/O. They work by making the I/O operations explicit, making their behavior easier to reason about.

The problem with lazy I/O

As a beginner, you probably used Haskell's lazy I/O through the System.IO module. However, while it is good enough for simple programs, its unpredictability makes it unsuitable for practical use.

For example, a common beginner mistake is to close a file before one has finished reading it:

wrong = do
    fileData <- withFile "test.txt" ReadMode hGetContents
    putStr fileData

The problem is withFile closes the handle before fileData is forced. The correct way is to pass all the code to withFile:

right = withFile "test.txt" ReadMode $ \handle -> do
    fileData <- hGetContents handle
    putStr fileData

Here, the data is consumed before withFile finishes.

Although this is easily fixed, the type system does not enforce the correct solution. Even worse, if you use the former code, it won't even raise an error – it will just fail silently and return an empty string. Many years passed before a satisfactory solution to the streaming data problem was found.

How iteratees work

When you "step" an iteratee, it reads a chunk of data, updates the internal state and returns a new iteratee along with the data it read. Because an iteratee is simply a function with state, many iteratees can be composed together to form a pipeline.

Some implementations also provide a resource management layer that releases resources automatically when they are no longer needed. This is very useful in a server, where sockets and file handles are scarce.

Implementations

iteratee
The original iteratee library, by Oleg Kiselyov.
iterIO
Yet another implementation.
enumerator
Used in Snap. It does not use any extensions, so it will work with most Haskell compilers.
pipes
Elegant streaming library with many unique features
conduit
Popular implementation designed with practical use in mind, created by the author of Yesod. Recently heavily influenced by pipes.
liboleg
An evolving collection of Oleg Kiselyov's Haskell modules (depends on the package unix and will therefore not compile on Windows systems).
io-streams
Focuses on streaming IO and having a simpler type framework then the Conduit and Pipes packages.

Essays by Oleg

Other discussions

Users of Iteratee I/O

  • Snap: The Snap web framework
  • yaml: Low-level binding to the libyaml C library
  • usb 0.4: Communicate with USB devices
  • sstable: SSTables in Haskell
  • WAI: a Web Application Interface for haskell web frameworks (used by Yesod).

See also