Deprecated

plan-b

Failure-tolerant file and directory editing

https://github.com/mrkkrp/plan-b

Version on this page:0.2.0
LTS Haskell 10.10:0.2.1@rev:2
Stackage Nightly 2018-03-10:0.2.1@rev:2
Latest on Hackage:0.2.1@rev:2

See all snapshots plan-b appears in

BSD-3-Clause licensed and maintained by Mark Karpov
This version can be pinned in stack with:plan-b-0.2.0@sha256:f7c6bacf5c70060bc3c75dad79238088bee7085db981a7b76ab09c8710fc192a,3312

Module documentation for 0.2.0

Used by 1 package in lts-8.5(full list with versions):

Plan B

License BSD3 Hackage Stackage Nightly Build Status Coverage Status

This is a Haskell library helping perform failure-tolerant operations on files and directories.

Quick start

The library allows to create and/or edit files, directories, and containers. By “container” we mean archive-like object that can contain representation of a directory inside it. Consequently, we have six functions available:

  • withNewFile
  • withExstingFile
  • withNewDir
  • withExistingDir
  • withNewContainer
  • withExistingContainer

You specify name of object to edit or create, options (more on them below), and action that is passed Path argument with the same type as object you intend to edit (we use type-safe file paths from path package here to prevent a certain class of potential bugs). Then, having that path, you can do all actions you want to and if at some point during this editing an exception is thrown, state of file system is rolled back — you get no corrupted files, half-way edited directories, everything is intact as if nothing happened at all. If, however, the action is executed successfully (i.e. no exceptions thrown), all your manipulations are reflected in the file system.

This is a lightweight solution that makes it harder to corrupt sensitive information. And since file system exists in the real world, all sorts of bad things can (and will) happen. You should always have plan B.

Temporary files and back-ups are handled and deleted automatically, however you can pass options to change default behaviors. Not all options can be used with every function, but wrong combinations won’t type-check, so it’s OK.

Collection of options is a monoid. mempty corresponds to default behavior, while non-standard behavioral deviations can be mappended to it.

By default, when we want to create new object and it already exists, we get an exception, two alternative options exist (only work when you create new object):

  • overrideIfExist
  • useIfExist

There is no way to prevent exception when you want to edit object that does not exist, though.

All functions make use of temporary directories. You can control certain aspects of this business:

  • tempDir dir — will tell the library to create temporary directories and files inside dir. By default system’s standard temporary directory (e.g. /tmp/ on Unix-like systems) is used.

  • nameTemplate template — specifies template to use for generation of unique file and directory names. By default "plan-b" is used.

  • preserveCorpse — if you add this to options, in case of failure (exception), temporary directory is not automatically deleted and can be inspected. However, if operation succeeds, temporary directory is always deleted.

  • moveByRenaming — by default files and directories are moved by copying, this option enables moving by renaming.

That should be enough for a quick intro, for more information regarding concrete functions, consult Haddocks.

License

Copyright © 2016 Mark Karpov

Distributed under BSD 3 clause license.

Changes

Plan B 0.2.0

  • Added moveByRenaming option to allow move files and directories by renaming. This is not default because moving by renaming is not always possible, while moving by coping is always an option.

Plan B 0.1.1

  • Fixed the problem with moving of files and directories from /tmp/ to some location not under /tmp/ resulting in “unsupported operation” exception on Unix. Now they are moved by copying.

Plan B 0.1.0

  • Initial release.