blob: 59097b60357ad603fc1fc660bd58a744f6c2d8db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{-|
Description: Implement custom storage backend
Exports type class, which can be used to create custom 'Storage' backend.
-}
module Erebos.Storage.Backend (
StorageBackend(..),
Complete, Partial,
Storage, PartialStorage,
newStorage,
refDigestBytes,
WatchID, startWatchID, nextWatchID,
) where
import Control.Concurrent.MVar
import Data.ByteArray qualified as BA
import Data.ByteString (ByteString)
import Data.HashTable.IO qualified as HT
import Erebos.Object.Internal
import Erebos.Storage.Internal
newStorage :: StorageBackend bck => bck -> IO (Storage' (BackendCompleteness bck))
newStorage stBackend = do
stRefGeneration <- newMVar =<< HT.new
stRefRoots <- newMVar =<< HT.new
return Storage {..}
refDigestBytes :: RefDigest -> ByteString
refDigestBytes = BA.convert
|