Source file irmin_layers.ml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
open! Import
include Irmin_layers_intf
module Layer_id = struct
type t = layer_id [@@deriving irmin]
let to_string = function
| `Upper0 -> "upper0"
| `Upper1 -> "upper1"
| `Lower -> "lower"
let pp = Fmt.of_to_string to_string
end
module Make_ext
(CA : Irmin.CONTENT_ADDRESSABLE_STORE_MAKER)
(AW : Irmin.ATOMIC_WRITE_STORE_MAKER)
(N : Irmin.Private.Node.Maker)
(CT : Irmin.Private.Commit.Maker)
(M : Irmin.Metadata.S)
(C : Irmin.Contents.S)
(P : Irmin.Path.S)
(B : Irmin.Branch.S)
(H : Irmin.Hash.S) =
struct
module XNode = N (H) (P) (M)
module XCommit = CT (H)
include Irmin.Make_ext (CA) (AW) (M) (C) (P) (B) (H) (XNode) (XCommit)
let freeze ?min_lower:_ ?max_lower:_ ?min_upper:_ ?max_upper:_ ?recovery:_
_repo =
Lwt.fail_with "not implemented"
type store_handle =
| Commit_t : hash -> store_handle
| Node_t : hash -> store_handle
| Content_t : hash -> store_handle
let layer_id _repo _store_handle = Lwt.fail_with "not implemented"
let async_freeze _ = failwith "not implemented"
let upper_in_use _repo = failwith "not implemented"
let self_contained ?min:_ ~max:_ _repo = failwith "not implemented"
let check_self_contained ?heads:_ _ = failwith "not implemented"
let needs_recovery _ = failwith "not implemented"
module Private_layer = struct
module Hook = struct
type 'a t = unit
let v _ = failwith "not implemented"
end
let wait_for_freeze _ = Lwt.fail_with "not implemented"
let freeze' ?min_lower:_ ?max_lower:_ ?min_upper:_ ?max_upper:_ ?recovery:_
?hook:_ _repo =
Lwt.fail_with "not implemented"
let upper_in_use = upper_in_use
end
end
module Make
(CA : Irmin.CONTENT_ADDRESSABLE_STORE_MAKER)
(AW : Irmin.ATOMIC_WRITE_STORE_MAKER)
(M : Irmin.Metadata.S)
(C : Irmin.Contents.S)
(P : Irmin.Path.S)
(B : Irmin.Branch.S)
(H : Irmin.Hash.S) =
struct
include
Make_ext (CA) (AW) (Irmin.Private.Node.Make) (Irmin.Private.Commit.Make) (M)
(C)
(P)
(B)
(H)
end
module Stats = Stats