safeio

Write output to disk atomically

Version on this page:0.0.4.0
LTS Haskell 22.13:0.0.6.0
Stackage Nightly 2024-03-14:0.0.6.0
Latest on Hackage:0.0.6.0

See all snapshots safeio appears in

MIT licensed and maintained by Luis Pedro Coelho
This version can be pinned in stack with:safeio-0.0.4.0@sha256:4498febca6d4aaf86df1f90d474949c392a48a7917fa588884140c2d861583ee,1428

Module documentation for 0.0.4.0

SafeIO: Haskell library for safe (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