packages feed

vault-0.3.2.0: src/Data/Vault/ST/backends/IORef.hs

import Control.Concurrent.MVar
import Data.IORef
import Data.Unique.Really.Any
import System.IO.Unsafe (unsafePerformIO)

import qualified Data.Map.LAZINESS as Map
type Map = Map.Map

{-----------------------------------------------------------------------------
    Locker
------------------------------------------------------------------------------}
data Key s a  = Key    !Unique (IORef (Maybe a)) (MVar ())
data Locker s = Locker !Unique (IO ())

#if IsStrict
lock (Key u ref _) x = x `seq` (Locker u $ writeIORef ref $ Just x)
#else
lock (Key u ref _) x = Locker u $ writeIORef ref $ Just x
#endif

unlock (Key k ref locked) (Locker k' m)
    | k == k' = unsafePerformIO $ do
        takeMVar locked
        m
        val <- readIORef ref
        putMVar locked ()
        pure val
    | otherwise = Nothing

{-----------------------------------------------------------------------------
    Vault
------------------------------------------------------------------------------}
-- implemented as a collection of lockers
newtype Vault s = Vault (Map Unique (Locker s))

newKey = unsafeIOToST $ Key <$> newUnique <*> newIORef Nothing <*> newMVar ()

lookup key@(Key k _ _)   (Vault m) = unlock key =<< Map.lookup k m

insert key@(Key k _ _) x (Vault m) = Vault $ Map.insert k (lock key x) m

adjust f key@(Key k _ _) (Vault m) = Vault $ Map.update f' k m
    where f' = fmap (lock key . f) . unlock key

delete (Key k _ _) (Vault m)  = Vault $ Map.delete k m