Popularity
3.1
Declining
Activity
0.0
Stable
3
3
1

Monthly Downloads: 40
Programming language: Haskell
License: MIT License
Tags: IO-Streams     Io     Networking    
Latest version: v0.0.5.0

safeio alternatives and similar packages

Based on the "io" category.
Alternatively, view safeio alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of safeio or a related project?

Add another 'io' Package

README

SafeIO: Haskell library for safe (atomic) IO

Hackage Hackage-Deps Stackage (LTS) Travis Atomic IO

This is a simple module, which enables writing in atomic mode. It implements the following 4 step procedure:

  1. Open a temporary file in the same directory as the final output.
  2. Write to this temporary file.
  3. Close and sync the file.
  4. Atomically rename the file to its final destination.

Example

Direct use:

import System.IO.SafeWrite
...
main = do
    withOutputFile "output.txt" $ \hout -> do
        hPutStrLn hout "Hello World"

Through conduit:

import qualified Data.Conduit as C
import           Data.Conduit ((.|))
import           Data.Conduit.SafeWrite

main = C.runConduitRes $
    C.yield "Hello World" .| safeSinkFile "hello.txt"

In any case, only successful termination of the process will result in the output file being written. Early termination by throwing an exception will cause the temporary file to be removed and no output will be produced.

Author

Luis Pedro Coelho | Email | Twitter