Namespaced IO Layer: Difference between revisions
(Structure) |
m (→Base Layer) |
||
Line 13: | Line 13: | ||
==Structure== | ==Structure== | ||
===Base Layer=== | ===Base Layer=== | ||
This layer is represented by the Haskell (GHC) own IO library (the IO Monad). Handles provided by the library are used to perform actual IO operations. | This layer is represented by the Haskell (GHC) own IO library (the IO Monad). Handles provided by the standard library are used to perform actual IO operations. | ||
===Device Layer=== | ===Device Layer=== | ||
This layer contains servers providing file operations to access the resources represented by the Base Layer. These operations are not directly available to applications. | This layer contains servers providing file operations to access the resources represented by the Base Layer. These operations are not directly available to applications. |
Revision as of 22:03, 12 December 2010
Introduction
The Haskell I/O library is based on the underlying Unix/Posix concepts, repeating its well-known design specifics and inconsistencies. The namespaced IO library provides an IO abstraction based on the ideas found in Plan 9 and Inferno, that is, to represent each IO capable resource as a virtual file server exposing a tree of files and directories, organizing those trees using per-process configurable namespaces.
Availability
Project summary (licensing, etc.): http://code.google.com/p/hs-ogl-misc/
Source code: http://code.google.com/p/hs-ogl-misc/source/browse/ under the io-layer directory.
Checkout: see http://code.google.com/p/hs-ogl-misc/source/checkout (Mercurial repo)
Structure
Base Layer
This layer is represented by the Haskell (GHC) own IO library (the IO Monad). Handles provided by the standard library are used to perform actual IO operations.
Device Layer
This layer contains servers providing file operations to access the resources represented by the Base Layer. These operations are not directly available to applications.
Namespace Layer
This layer provides facilities to organize file systems presented by the Device Layer into per-process (thread) namespaces. Operations such as binding a file system to a namespace, and path evaluation are directly available to applications.
Application Layer
This layer implements streaming IO operations using the Iteratee concept.
DRAFT! DRAFT! DRAFT!
This document as well as the library it describes are both work in progress and subject to changes of any unpredictable kind ;)