blob: 07bd63e96a087edafb9b056a96f0f90ba28137a3 (
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
36
37
38
39
40
|
{-|
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,
withStorageBackend,
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 {..}
withStorageBackend :: Storage' c -> (forall bck. (StorageBackend bck, BackendCompleteness bck ~ c) => bck -> IO a) -> IO a
withStorageBackend Storage {..} f = f stBackend
refDigestBytes :: RefDigest -> ByteString
refDigestBytes = BA.convert
|