#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
#endif
module Control.Concurrent.Supply
( Supply
, newSupply
, freshId
, splitSupply
, freshId#
, splitSupply#
) where
import Data.Hashable
import Data.IORef
import Data.Functor ((<$>))
import Data.Monoid
import GHC.IO (unsafeDupablePerformIO, unsafePerformIO)
import GHC.Types (Int(..))
import GHC.Prim (Int#)
infixr 5 :-
data Stream a = a :- Stream a
instance Functor Stream where
fmap f (a :- as) = f a :- fmap f as
extract :: Stream a -> a
extract (a :- _) = a
units :: Stream ()
units = () :- units
data Block = Block Int !(Stream Block)
instance Eq Block where
Block a (Block b _ :- _) == Block c (Block d _ :- _) = a == c && b == d
instance Ord Block where
Block a (Block b _ :- _) `compare` Block c (Block d _ :- _) = compare a c `mappend` compare b d
instance Show Block where
showsPrec d (Block a (Block b _ :- _)) = showParen (d >= 10) $
showString "Block " . showsPrec 10 a . showString " (Block " . showsPrec 10 b . showString " ... :- ...)"
instance Hashable Block where
hashWithSalt s (Block a (Block b _ :- _)) = s `hashWithSalt` a `hashWithSalt` b
blockSize :: Int
blockSize = 1024
minSplitSupplySize :: Int
minSplitSupplySize = 32
blockCounter :: IORef Int
blockCounter = unsafePerformIO (newIORef 0)
modifyBlock :: a -> IO Int
modifyBlock _ = atomicModifyIORef blockCounter $ \ i -> let i' = i + blockSize in i' `seq` (i', i)
gen :: a -> Block
gen x = Block (unsafeDupablePerformIO (modifyBlock x)) (gen <$> units)
newBlock :: IO Block
newBlock = return $! gen ()
splitBlock# :: Block -> (# Block, Block #)
splitBlock# (Block i (x :- xs)) = (# x, Block i xs #)
data Supply = Supply !Int !Int Block
deriving (Eq,Ord,Show)
instance Hashable Supply where
hashWithSalt s (Supply i j b) = s `hashWithSalt` i `hashWithSalt` j `hashWithSalt` b
blockSupply :: Block -> Supply
blockSupply (Block i bs) = Supply i (i + blockSize 1) (extract bs)
newSupply :: IO Supply
newSupply = blockSupply <$> newBlock
freshId :: Supply -> (Int, Supply)
freshId s = case freshId# s of
(# i, s' #) -> (I# i, s')
splitSupply :: Supply -> (Supply, Supply)
splitSupply s = case splitSupply# s of
(# l, r #) -> (l, r)
freshId# :: Supply -> (# Int#, Supply #)
freshId# (Supply i@(I# i#) j b)
| i /= j = (# i#, Supply (i + 1) j b #)
| otherwise = (# i#, blockSupply b #)
splitSupply# :: Supply -> (# Supply, Supply #)
splitSupply# (Supply i k b) = case splitBlock# b of
(# bl, br #)
| k i >= minSplitSupplySize
, j <- i + div (k i) 2 ->
(# Supply i j bl, Supply (j + 1) k br #)
| Block x (l :- r :- _) <- bl
, y <- x + div blockSize 2
, z <- x + blockSize 1 ->
(# Supply x (y 1) l, Supply y z r #)