Copyright | PublicDomain |
---|---|
Maintainer | lemmih@gmail.com |
Portability | non-portable (uses GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
AcidState container using a transaction log on disk.
To see how it all fits together, have a look at these example https://github.com/acid-state/acid-state/tree/master/examples.
Synopsis
- data AcidState st
- openLocalState :: (Typeable st, IsAcidic st, SafeCopy st) => st -> IO (AcidState st)
- openLocalStateFrom :: (IsAcidic st, SafeCopy st) => FilePath -> st -> IO (AcidState st)
- closeAcidState :: AcidState st -> IO ()
- createCheckpoint :: AcidState st -> IO ()
- createArchive :: AcidState st -> IO ()
- update :: UpdateEvent event => AcidState (EventState event) -> event -> IO (EventResult event)
- query :: QueryEvent event => AcidState (EventState event) -> event -> IO (EventResult event)
- type EventResult ev = MethodResult ev
- type EventState ev = MethodState ev
- class Method ev => UpdateEvent ev
- class Method ev => QueryEvent ev
- data Update st a
- data Query st a
- class IsAcidic st
- makeAcidic :: Name -> [Name] -> Q [Dec]
- liftQuery :: Query st a -> Update st a
Documentation
State container offering full ACID (Atomicity, Consistency, Isolation and Durability) guarantees.
Atomicity
- State changes are all-or-nothing. This is what you'd expect of any state variable in Haskell and AcidState doesn't change that.
Consistency
- No event or set of events will break your data invariants.
Isolation
- Transactions cannot interfere with each other even when issued in parallel.
Durability
- Successful transaction are guaranteed to survive unexpected system shutdowns (both those caused by hardware and software).
:: (Typeable st, IsAcidic st, SafeCopy st) | |
=> st | Initial state value. This value is only used if no checkpoint is found. |
-> IO (AcidState st) |
Create an AcidState given an initial value.
This will create or resume a log found in the "state/[typeOf state]/" directory.
:: (IsAcidic st, SafeCopy st) | |
=> FilePath | Location of the checkpoint and transaction files. |
-> st | Initial state value. This value is only used if no checkpoint is found. |
-> IO (AcidState st) |
Create an AcidState given a log directory and an initial value.
This will create or resume a log found in directory
.
Running two AcidState's from the same directory is an error
but will not result in dataloss.
closeAcidState :: AcidState st -> IO () Source #
createCheckpoint :: AcidState st -> IO () Source #
createArchive :: AcidState st -> IO () Source #
update :: UpdateEvent event => AcidState (EventState event) -> event -> IO (EventResult event) Source #
Issue an Update event and wait for its result. Once this call returns, you are guaranteed that the changes to the state are durable. Events may be issued in parallel.
It's a run-time error to issue events that aren't supported by the AcidState.
query :: QueryEvent event => AcidState (EventState event) -> event -> IO (EventResult event) Source #
Issue a Query event and wait for its result. Events may be issued in parallel.
type EventResult ev = MethodResult ev Source #
Events return the same thing as Methods. The exact type of EventResult
depends on the event.
type EventState ev = MethodState ev Source #
class Method ev => UpdateEvent ev Source #
All UpdateEvents are also Methods.
class Method ev => QueryEvent ev Source #
All QueryEvents are also Methods.
Context monad for Update events.
Context monad for Query events.
makeAcidic :: Name -> [Name] -> Q [Dec] Source #
Create the control structures required for acid states using Template Haskell.
This code:
myUpdate :: Argument -> Update State Result myUpdate arg = ... myQuery :: Argument -> Query State Result myQuery arg = ... $(makeAcidic ''State ['myUpdate, 'myQuery])
will make State
an instance of IsAcidic
and provide the following
events:
data MyUpdate = MyUpdate Argument data MyQuery = MyQuery Argument