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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
include Slice_intf
module Make
(Contents : Contents.STORE)
(Node : Node.STORE)
(Commit : Commit.STORE) =
struct
type contents = Contents.Key.t * Contents.Val.t [@@deriving irmin]
type node = Node.Key.t * Node.Val.t [@@deriving irmin]
type commit = Commit.Key.t * Commit.Val.t [@@deriving irmin]
type value = [ `Contents of contents | `Node of node | `Commit of commit ]
[@@deriving irmin]
type t = {
mutable contents : contents list;
mutable nodes : node list;
mutable commits : commit list;
}
[@@deriving irmin]
let empty () = Lwt.return { contents = []; nodes = []; commits = [] }
let add t = function
| `Contents c ->
t.contents <- c :: t.contents;
Lwt.return_unit
| `Node n ->
t.nodes <- n :: t.nodes;
Lwt.return_unit
| `Commit c ->
t.commits <- c :: t.commits;
Lwt.return_unit
let iter t f =
Lwt.join
[
Lwt_list.iter_p (fun c -> f (`Contents c)) t.contents;
Lwt_list.iter_p (fun n -> f (`Node n)) t.nodes;
Lwt_list.iter_p (fun c -> f (`Commit c)) t.commits;
]
end