Source file store.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
open Lwt.Infix
open Merge.Infix
let src = Logs.Src.create "irmin" ~doc:"Irmin branch-consistent store"
module Log = (val Logs.src_log src : Logs.LOG)
module Content_addressable
(AO : S.APPEND_ONLY_STORE_MAKER)
(K : S.HASH)
(V : Type.S) =
struct
include AO (K) (V)
open Lwt.Infix
module H = Hash.Typed (K) (V)
let hash = H.hash
let pp_key = Type.pp K.t
let find t k =
find t k >>= function
| None -> Lwt.return_none
| Some v as r ->
let k' = hash v in
if Type.equal K.t k k' then Lwt.return r
else
Fmt.kstrf Lwt.fail_invalid_arg
"corrupted value: got %a, expecting %a" pp_key k' pp_key k
let unsafe_add t k v = add t k v
let add t v =
let k = hash v in
add t k v >|= fun () -> k
end
module Make (P : S.PRIVATE) = struct
module Branch_store = P.Branch
type branch = Branch_store.key
module Hash = P.Hash
type hash = Hash.t
type lca_error = [ `Max_depth_reached | `Too_many_lcas ]
type ff_error = [ `No_change | `Rejected | lca_error ]
module Key = P.Node.Path
type key = Key.t
module Metadata = P.Node.Metadata
module H = Commit.History (P.Commit)
type S.remote += E of P.Sync.endpoint
module Contents = struct
include P.Contents.Val
let of_hash r h = P.Contents.find (P.Repo.contents_t r) h
let hash c = P.Contents.Key.hash c
end
module Tree = struct
include Tree.Make (P)
let of_hash r h =
import r h >|= function Some t -> Some (`Node t) | None -> None
let shallow r h = `Node (import_no_check r h)
let hash : tree -> hash =
fun tr -> match hash tr with `Node h -> h | `Contents (h, _) -> h
end
let save_contents b c = P.Contents.add b c
let save_tree ?(clear = true) r x y (tr : Tree.tree) =
match tr with
| `Contents (c, _) -> save_contents x c
| `Node n -> Tree.export ~clear r x y n
type node = Tree.node
type contents = Contents.t
type metadata = Metadata.t
type tree = Tree.tree
type repo = P.Repo.t
module Commit = struct
type t = { r : repo; h : Hash.t; v : P.Commit.value }
let t r =
let open Type in
record "commit" (fun h v -> { r; h; v })
|+ field "hash" Hash.t (fun t -> t.h)
|+ field "value" P.Commit.Val.t (fun t -> t.v)
|> sealr
let v r ~info ~parents tree =
P.Repo.batch r @@ fun contents_t node_t commit_t ->
( match tree with
| `Node n -> Tree.export r contents_t node_t n
| `Contents _ -> Lwt.fail_invalid_arg "cannot add contents at the root"
)
>>= fun node ->
let v = P.Commit.Val.v ~info ~node ~parents in
P.Commit.add commit_t v >|= fun h -> { r; h; v }
let node t = P.Commit.Val.node t.v
let tree t = Tree.import_no_check t.r (node t) |> fun n -> `Node n
let equal x y = Type.equal Hash.t x.h y.h
let hash t = t.h
let info t = P.Commit.Val.info t.v
let parents t = P.Commit.Val.parents t.v
let pp_hash ppf t = Type.pp Hash.t ppf t.h
let of_hash r h =
P.Commit.find (P.Repo.commit_t r) h >|= function
| None -> None
| Some v -> Some { r; h; v }
let to_private_commit t = t.v
let of_private_commit r v =
let h = P.Commit.Key.hash v in
{ r; h; v }
let equal_opt x y =
match (x, y) with
| None, None -> true
| Some x, Some y -> equal x y
| _ -> false
end
type commit = Commit.t
let to_private_node = Tree.to_private_node
let of_private_node = Tree.of_private_node
let to_private_commit = Commit.to_private_commit
let of_private_commit = Commit.of_private_commit
type head_ref = [ `Branch of branch | `Head of commit option ref ]
module OCamlGraph = Graph
module Graph = Node.Graph (P.Node)
module KGraph =
Object_graph.Make (P.Contents.Key) (P.Node.Metadata) (P.Node.Key)
(P.Commit.Key)
(Branch_store.Key)
type slice = P.Slice.t
type watch = unit -> unit Lwt.t
let unwatch w = w ()
module Repo = struct
type t = repo
let v = P.Repo.v
let close = P.Repo.close
let graph_t t = P.Repo.node_t t
let history_t t = P.Repo.commit_t t
let branch_t t = P.Repo.branch_t t
let commit_t t = P.Repo.commit_t t
let node_t t = P.Repo.node_t t
let contents_t t = P.Repo.contents_t t
let branches t = P.Branch.list (branch_t t)
let heads repo =
let t = branch_t repo in
Branch_store.list t >>= fun bs ->
Lwt_list.fold_left_s
(fun acc r ->
Branch_store.find t r >>= function
| None -> Lwt.return acc
| Some h -> (
Commit.of_hash repo h >|= function
| None -> acc
| Some h -> h :: acc ))
[] bs
let export ?(full = true) ?depth ?(min = []) ?(max = []) t =
Log.debug (fun f ->
f "export depth=%s full=%b min=%d max=%d"
(match depth with None -> "<none>" | Some d -> string_of_int d)
full (List.length min) (List.length max));
(match max with [] -> heads t | m -> Lwt.return m) >>= fun max ->
P.Slice.empty () >>= fun slice ->
let max = List.map (fun x -> `Commit x.Commit.h) max in
let min = List.map (fun x -> `Commit x.Commit.h) min in
let pred = function
| `Commit k ->
H.parents (history_t t) k >|= fun parents ->
List.map (fun x -> `Commit x) parents
| _ -> Lwt.return_nil
in
KGraph.closure ?depth ~pred ~min ~max () >>= fun g ->
let keys =
List.fold_left
(fun acc -> function `Commit c -> c :: acc | _ -> acc)
[] (KGraph.vertex g)
in
let root_nodes = ref [] in
Lwt_list.iter_p
(fun k ->
P.Commit.find (commit_t t) k >>= function
| None -> Lwt.return_unit
| Some c ->
root_nodes := P.Commit.Val.node c :: !root_nodes;
P.Slice.add slice (`Commit (k, c)))
keys
>>= fun () ->
if not full then Lwt.return slice
else
Graph.closure (graph_t t) ~min:[] ~max:!root_nodes >>= fun nodes ->
let module KSet = Set.Make (struct
type t = P.Contents.key
let compare = Type.compare P.Contents.Key.t
end) in
let contents = ref KSet.empty in
Lwt_list.iter_p
(fun k ->
P.Node.find (node_t t) k >>= function
| None -> Lwt.return_unit
| Some v ->
List.iter
(function
| _, `Contents (c, _) -> contents := KSet.add c !contents
| _ -> ())
(P.Node.Val.list v);
P.Slice.add slice (`Node (k, v)))
nodes
>>= fun () ->
Lwt_list.iter_p
(fun k ->
P.Contents.find (contents_t t) k >>= function
| None -> Lwt.return_unit
| Some m -> P.Slice.add slice (`Contents (k, m)))
(KSet.elements !contents)
>|= fun () -> slice
exception Import_error of string
let import_error fmt = Fmt.kstrf (fun x -> Lwt.fail (Import_error x)) fmt
let import t s =
let aux name add dk (k, v) =
add v >>= fun k' ->
if not (Type.equal dk k k') then
import_error "%s import error: expected %a, got %a" name
Type.(pp dk)
k
Type.(pp dk)
k'
else Lwt.return_unit
in
let contents = ref [] in
let nodes = ref [] in
let commits = ref [] in
P.Slice.iter s (function
| `Contents c ->
contents := c :: !contents;
Lwt.return_unit
| `Node n ->
nodes := n :: !nodes;
Lwt.return_unit
| `Commit c ->
commits := c :: !commits;
Lwt.return_unit)
>>= fun () ->
P.Repo.batch t @@ fun contents_t node_t commit_t ->
Lwt.catch
(fun () ->
Lwt_list.iter_p
(aux "Contents" (P.Contents.add contents_t) P.Contents.Key.t)
!contents
>>= fun () ->
Lwt_list.iter_p (aux "Node" (P.Node.add node_t) P.Node.Key.t) !nodes
>>= fun () ->
Lwt_list.iter_p
(aux "Commit" (P.Commit.add commit_t) P.Commit.Key.t)
!commits
>|= fun () -> Ok ())
(function
| Import_error e -> Lwt.return_error (`Msg e)
| e -> Fmt.kstrf Lwt.fail_invalid_arg "impot error: %a" Fmt.exn e)
end
type t = {
repo : Repo.t;
head_ref : head_ref;
mutable tree : (commit * tree) option;
lock : Lwt_mutex.t;
}
type step = Key.step
let repo t = t.repo
let branch_t t = Repo.branch_t t.repo
let commit_t t = Repo.commit_t t.repo
let history_t t = commit_t t
let status t =
match t.head_ref with
| `Branch b -> `Branch b
| `Head h -> ( match !h with None -> `Empty | Some c -> `Commit c )
let head_ref t =
match t.head_ref with
| `Branch t -> `Branch t
| `Head h -> ( match !h with None -> `Empty | Some h -> `Head h )
let branch t =
match head_ref t with
| `Branch t -> Lwt.return_some t
| `Empty | `Head _ -> Lwt.return_none
let err_no_head s = Fmt.kstrf Lwt.fail_invalid_arg "Irmin.%s: no head" s
let retry_merge name fn =
let rec aux i =
fn () >>= function
| Error _ as c -> Lwt.return c
| Ok true -> Merge.ok ()
| Ok false ->
Log.debug (fun f -> f "Irmin.%s: conflict, retrying (%d)." name i);
aux (i + 1)
in
aux 1
let of_ref repo head_ref =
let lock = Lwt_mutex.create () in
Lwt.return { lock; head_ref; repo; tree = None }
let pp_branch = Type.pp Branch_store.Key.t
let err_invalid_branch t =
let err = Fmt.strf "%a is not a valid branch name." pp_branch t in
Lwt.fail (Invalid_argument err)
let of_branch repo id =
if Branch_store.Key.is_valid id then of_ref repo (`Branch id)
else err_invalid_branch id
let master repo = of_branch repo Branch_store.Key.master
let empty repo = of_ref repo (`Head (ref None))
let of_commit c = of_ref c.Commit.r (`Head (ref (Some c)))
let pp_key = Type.pp Key.t
let skip_key key =
Log.debug (fun l -> l "[watch-key] key %a has not changed" pp_key key);
Lwt.return_unit
let changed_key key =
Log.debug (fun l -> l "[watch-key] key %a has changed" pp_key key)
let with_tree ~key x f =
x >>= function
| None -> skip_key key
| Some x ->
changed_key key;
f x
let lift_tree_diff ~key tree fn = function
| `Removed x -> with_tree ~key (tree x) @@ fun v -> fn @@ `Removed (x, v)
| `Added x -> with_tree ~key (tree x) @@ fun v -> fn @@ `Added (x, v)
| `Updated (x, y) -> (
assert (not (Commit.equal x y));
tree x >>= fun vx ->
tree y >>= fun vy ->
match (vx, vy) with
| None, None -> skip_key key
| None, Some vy ->
changed_key key;
fn @@ `Added (y, vy)
| Some vx, None ->
changed_key key;
fn @@ `Removed (x, vx)
| Some vx, Some vy ->
if Tree.equal vx vy then skip_key key
else (
changed_key key;
fn @@ `Updated ((x, vx), (y, vy)) ) )
let head t =
let h =
match head_ref t with
| `Head key -> Lwt.return_some key
| `Empty -> Lwt.return_none
| `Branch name -> (
Branch_store.find (branch_t t) name >>= function
| None -> Lwt.return_none
| Some h -> Commit.of_hash t.repo h )
in
h >|= fun h ->
Log.debug (fun f -> f "Head.find -> %a" Fmt.(option Commit.pp_hash) h);
h
let tree_and_head t =
head t >|= function
| None -> None
| Some h -> (
match t.tree with
| Some (o, t) when Commit.equal o h -> Some (o, t)
| _ ->
t.tree <- None;
let n = Tree.import_no_check (repo t) (Commit.node h) in
let tree = `Node n in
t.tree <- Some (h, tree);
Some (h, tree) )
let tree t =
tree_and_head t >|= function
| None -> Tree.empty
| Some (_, tree) -> (tree :> tree)
let lift_head_diff repo fn = function
| `Removed x -> (
Commit.of_hash repo x >>= function
| None -> Lwt.return_unit
| Some x -> fn (`Removed x) )
| `Updated (x, y) -> (
Commit.of_hash repo x >>= fun x ->
Commit.of_hash repo y >>= fun y ->
match (x, y) with
| None, None -> Lwt.return_unit
| Some x, None -> fn (`Removed x)
| None, Some y -> fn (`Added y)
| Some x, Some y -> fn (`Updated (x, y)) )
| `Added x -> (
Commit.of_hash repo x >>= function
| None -> Lwt.return_unit
| Some x -> fn (`Added x) )
let watch t ?init fn =
branch t >>= function
| None -> failwith "watch a detached head: TODO"
| Some name0 ->
let init =
match init with
| None -> None
| Some head0 -> Some [ (name0, head0.Commit.h) ]
in
Branch_store.watch (branch_t t) ?init (fun name head ->
if Type.equal Branch_store.Key.t name0 name then
lift_head_diff t.repo fn head
else Lwt.return_unit)
>|= fun id () -> Branch_store.unwatch (branch_t t) id
let pp_key = Type.pp Key.t
let watch_key t key ?init fn =
Log.info (fun f -> f "watch-key %a" pp_key key);
let tree c = Tree.find_tree (Commit.tree c) key in
watch t ?init (lift_tree_diff ~key tree fn)
module Head = struct
let list = Repo.heads
let find = head
let get t =
find t >>= function None -> err_no_head "head" | Some k -> Lwt.return k
let set t c =
match t.head_ref with
| `Head h ->
h := Some c;
Lwt.return_unit
| `Branch name -> Branch_store.set (branch_t t) name c.Commit.h
let test_and_set_unsafe t ~test ~set =
match t.head_ref with
| `Head head ->
if Commit.equal_opt !head test then (
head := set;
Lwt.return_true )
else Lwt.return_false
| `Branch name ->
let h = function None -> None | Some c -> Some c.Commit.h in
Branch_store.test_and_set (branch_t t) name ~test:(h test)
~set:(h set)
let test_and_set t ~test ~set =
Lwt_mutex.with_lock t.lock (fun () -> test_and_set_unsafe t ~test ~set)
type ff_error = [ `Rejected | `No_change | lca_error ]
let fast_forward t ?max_depth ?n new_head =
let return x = if x then Ok () else Error (`Rejected :> ff_error) in
find t >>= function
| None -> test_and_set t ~test:None ~set:(Some new_head) >|= return
| Some old_head -> (
Log.debug (fun f ->
f "fast-forward-head old=%a new=%a" Commit.pp_hash old_head
Commit.pp_hash new_head);
if Commit.equal new_head old_head then
Lwt.return_error `No_change
else
H.lcas (history_t t) ?max_depth ?n new_head.Commit.h
old_head.Commit.h
>>= function
| Ok [ x ] when Type.equal Hash.t x old_head.Commit.h ->
test_and_set t ~test:(Some old_head) ~set:(Some new_head)
>|= return
| Ok _ -> Lwt.return_error `Rejected
| Error e -> Lwt.return_error (e :> ff_error) )
let three_way_merge t ?max_depth ?n ~info c1 c2 =
P.Repo.batch (repo t) @@ fun _ _ commit_t ->
H.three_way_merge commit_t ?max_depth ?n ~info c1.Commit.h c2.Commit.h
let merge ~into:t ~info ?max_depth ?n c1 =
Log.debug (fun f -> f "merge_head");
let aux () =
head t >>= fun head ->
match head with
| None -> test_and_set_unsafe t ~test:head ~set:(Some c1) >>= Merge.ok
| Some c2 ->
three_way_merge t ~info ?max_depth ?n c1 c2 >>=* fun c3 ->
Commit.of_hash t.repo c3 >>= fun c3 ->
test_and_set_unsafe t ~test:head ~set:c3 >>= Merge.ok
in
Lwt_mutex.with_lock t.lock (fun () -> retry_merge "merge_head" aux)
end
let retry ~retries fn =
let done_once = ref false in
let rec aux i =
if !done_once && i > retries then
Lwt.return_error (`Too_many_retries retries)
else
fn () >>= function
| Ok true -> Lwt.return_ok ()
| Error e -> Lwt.return_error e
| Ok false ->
done_once := true;
aux (i + 1)
in
aux 0
let root_tree = function `Node _ as n -> n | `Contents _ -> assert false
let add_commit t old_head ((c, _) as tree) =
match t.head_ref with
| `Head head ->
Lwt_mutex.with_lock t.lock (fun () ->
if not (Commit.equal_opt old_head !head) then Lwt.return_false
else (
head := Some c;
t.tree <- Some tree;
Lwt.return_true ))
| `Branch name ->
let test =
match old_head with None -> None | Some c -> Some (Commit.hash c)
in
let set = Some (Commit.hash c) in
Branch_store.test_and_set (branch_t t) name ~test ~set >|= fun r ->
if r then t.tree <- Some tree;
r
type write_error =
[ Merge.conflict | `Too_many_retries of int | `Test_was of tree option ]
let pp_write_error ppf = function
| `Conflict e -> Fmt.pf ppf "Got a conflict: %s" e
| `Too_many_retries i ->
Fmt.pf ppf
"Failure after %d attempts to retry the operation: Too many attempts."
i
| `Test_was t ->
Fmt.pf ppf "Test-and-set failed: got %a when reading the store"
Type.(pp (option Tree.tree_t))
t
let write_error e : ('a, write_error) result Lwt.t = Lwt.return_error e
let err_test v = write_error (`Test_was v)
type snapshot = {
head : commit option;
root : tree;
tree : tree option;
parents : commit list;
}
let snapshot t key =
tree_and_head t >>= function
| None ->
Lwt.return
{ head = None; root = Tree.empty; tree = None; parents = [] }
| Some (c, root) ->
let root = (root :> tree) in
Tree.find_tree root key >|= fun tree ->
{ head = Some c; root; tree; parents = [ c ] }
let same_tree x y =
match (x, y) with
| None, None -> true
| None, _ | _, None -> false
| Some x, Some y -> Tree.equal x y
let update ?(allow_empty = false) ~info ?parents t key merge_tree f =
snapshot t key >>= fun s ->
f s.tree >>= fun new_tree ->
if same_tree s.tree new_tree && (not allow_empty) && s.head <> None then
Lwt.return_ok true
else
merge_tree s.root key ~current_tree:s.tree ~new_tree >>= function
| Error e -> Lwt.return_error e
| Ok root ->
let info = info () in
let parents = match parents with None -> s.parents | Some p -> p in
let parents = List.map Commit.hash parents in
Commit.v (repo t) ~info ~parents root >>= fun c ->
add_commit t s.head (c, root_tree root) >>= Lwt.return_ok
let ok x = Ok x
let fail name = function
| Ok x -> Lwt.return x
| Error e -> Fmt.kstrf Lwt.fail_with "%s: %a" name pp_write_error e
let set_tree_once root key ~current_tree:_ ~new_tree =
match new_tree with
| None -> Tree.remove root key >|= ok
| Some tree -> Tree.add_tree root key tree >|= ok
let set_tree ?(retries = 13) ?allow_empty ?parents ~info t k v =
Log.debug (fun l -> l "set %a" pp_key k);
retry ~retries @@ fun () ->
update t k ?allow_empty ?parents ~info set_tree_once @@ fun _tree ->
Lwt.return_some v
let set_tree_exn ?retries ?allow_empty ?parents ~info t k v =
set_tree ?retries ?allow_empty ?parents ~info t k v >>= fail "set_exn"
let remove ?(retries = 13) ?allow_empty ?parents ~info t k =
Log.debug (fun l -> l "debug %a" pp_key k);
retry ~retries @@ fun () ->
update t k ?allow_empty ?parents ~info set_tree_once @@ fun _tree ->
Lwt.return_none
let remove_exn ?retries ?allow_empty ?parents ~info t k =
remove ?retries ?allow_empty ?parents ~info t k >>= fail "remove_exn"
let set ?retries ?allow_empty ?parents ~info t k v =
let v = `Contents (v, Metadata.default) in
set_tree t k ?retries ?allow_empty ?parents ~info v
let set_exn ?retries ?allow_empty ?parents ~info t k v =
set t k ?retries ?allow_empty ?parents ~info v >>= fail "set_exn"
let test_and_set_tree_once ~test root key ~current_tree ~new_tree =
match (test, current_tree) with
| None, None -> set_tree_once root key ~new_tree ~current_tree
| None, _ | _, None -> err_test current_tree
| Some test, Some v ->
if Tree.equal test v then
set_tree_once root key ~new_tree ~current_tree
else err_test current_tree
let test_and_set_tree ?(retries = 13) ?allow_empty ?parents ~info t k ~test
~set =
Log.debug (fun l -> l "test-and-set %a" pp_key k);
retry ~retries @@ fun () ->
update t k ?allow_empty ?parents ~info (test_and_set_tree_once ~test)
@@ fun _tree -> Lwt.return set
let test_and_set_tree_exn ?retries ?allow_empty ?parents ~info t k ~test ~set
=
test_and_set_tree ?retries ?allow_empty ?parents ~info t k ~test ~set
>>= fail "test_and_set_tree_exn"
let test_and_set ?retries ?allow_empty ?parents ~info t k ~test ~set =
let test =
match test with
| None -> None
| Some t -> Some (`Contents (t, Metadata.default))
in
let set =
match set with
| None -> None
| Some s -> Some (`Contents (s, Metadata.default))
in
test_and_set_tree ?retries ?allow_empty ?parents ~info t k ~test ~set
let test_and_set_exn ?retries ?allow_empty ?parents ~info t k ~test ~set =
test_and_set ?retries ?allow_empty ?parents ~info t k ~test ~set
>>= fail "test_and_set_exn"
let merge_once ~old root key ~current_tree ~new_tree =
let old = Merge.promise old in
Merge.f (Merge.option Tree.merge) ~old current_tree new_tree >>= function
| Ok tr -> set_tree_once root key ~new_tree:tr ~current_tree
| Error e -> write_error (e :> write_error)
let merge_tree ?(retries = 13) ?allow_empty ?parents ~info ~old t k tree =
Log.debug (fun l -> l "merge %a" pp_key k);
retry ~retries @@ fun () ->
update t k ?allow_empty ?parents ~info (merge_once ~old) @@ fun _tree ->
Lwt.return tree
let merge_tree_exn ?retries ?allow_empty ?parents ~info ~old t k tree =
merge_tree ?retries ?allow_empty ?parents ~info ~old t k tree
>>= fail "merge_tree_exn"
let merge ?retries ?allow_empty ?parents ~info ~old t k v =
let old =
match old with
| None -> None
| Some v -> Some (`Contents (v, Metadata.default))
in
let v =
match v with
| None -> None
| Some v -> Some (`Contents (v, Metadata.default))
in
merge_tree ?retries ?allow_empty ?parents ~info ~old t k v
let merge_exn ?retries ?allow_empty ?parents ~info ~old t k v =
merge ?retries ?allow_empty ?parents ~info ~old t k v >>= fail "merge_exn"
let mem t k = tree t >>= fun tree -> Tree.mem tree k
let mem_tree t k = tree t >>= fun tree -> Tree.mem_tree tree k
let find_all t k = tree t >>= fun tree -> Tree.find_all tree k
let find t k = tree t >>= fun tree -> Tree.find tree k
let get t k = tree t >>= fun tree -> Tree.get tree k
let find_tree t k = tree t >>= fun tree -> Tree.find_tree tree k
let get_tree t k = tree t >>= fun tree -> Tree.get_tree tree k
let hash t k =
find_tree t k >|= function
| None -> None
| Some tree -> Some (Tree.hash tree)
let get_all t k = tree t >>= fun tree -> Tree.get_all tree k
let list t k = tree t >>= fun tree -> Tree.list tree k
let kind t k = tree t >>= fun tree -> Tree.kind tree k
let with_tree ?(retries = 13) ?allow_empty ?parents
?(strategy = `Test_and_set) ~info t key f =
let done_once = ref false in
let rec aux n old_tree =
Log.debug (fun l -> l "with_tree %a (%d/%d)" pp_key key n retries);
if !done_once && n > retries then write_error (`Too_many_retries retries)
else
f old_tree >>= fun new_tree ->
match (strategy, new_tree) with
| `Set, Some tree ->
set_tree t key ~retries ?allow_empty ?parents tree ~info
| `Set, None -> remove t key ~retries ?allow_empty ~info ?parents
| `Test_and_set, _ -> (
test_and_set_tree t key ~retries ?allow_empty ?parents ~info
~test:old_tree ~set:new_tree
>>= function
| Error (`Test_was tr) when retries > 0 && n <= retries ->
done_once := true;
aux (n + 1) tr
| e -> Lwt.return e )
| `Merge, _ -> (
merge_tree ~old:old_tree ~retries ?allow_empty ?parents ~info t key
new_tree
>>= function
| Ok _ as x -> Lwt.return x
| Error (`Conflict _) when retries > 0 && n <= retries ->
done_once := true;
(tree_and_head t >>= function
| None -> Lwt.return_none
| Some (_, tr) -> Tree.find_tree (tr :> tree) key)
>>= fun old_tree -> aux (n + 1) old_tree
| Error e -> write_error e )
in
find_tree t key >>= fun old_tree -> aux 0 old_tree
let with_tree_exn ?retries ?allow_empty ?parents ?strategy ~info f t key =
with_tree ?retries ?allow_empty ?strategy ?parents ~info f t key
>>= fail "with_tree_exn"
let clone ~src ~dst =
(Head.find src >>= function
| None -> Branch_store.remove (branch_t src) dst
| Some h -> Branch_store.set (branch_t src) dst h.Commit.h)
>>= fun () -> of_branch (repo src) dst
let return_lcas r = function
| Error _ as e -> Lwt.return e
| Ok commits ->
Lwt_list.filter_map_p (Commit.of_hash r) commits >|= fun x -> Ok x
let lcas ?max_depth ?n t1 t2 =
Head.get t1 >>= fun h1 ->
Head.get t2 >>= fun h2 ->
H.lcas (history_t t1) ?max_depth ?n h1.Commit.h h2.Commit.h
>>= return_lcas t1.repo
let lcas_with_commit t ?max_depth ?n c =
Head.get t >>= fun h ->
H.lcas (history_t t) ?max_depth ?n h.Commit.h c.Commit.h
>>= return_lcas t.repo
let lcas_with_branch t ?max_depth ?n b =
Head.get t >>= fun h ->
Head.get { t with head_ref = `Branch b } >>= fun head ->
H.lcas (history_t t) ?max_depth ?n h.Commit.h head.Commit.h
>>= return_lcas t.repo
module Private = P
type 'a merge =
info:Info.f ->
?max_depth:int ->
?n:int ->
'a ->
(unit, Merge.conflict) result Lwt.t
let merge_with_branch t ~info ?max_depth ?n other =
Log.debug (fun f -> f "merge_with_branch %a" pp_branch other);
Branch_store.find (branch_t t) other >>= function
| None ->
Fmt.kstrf Lwt.fail_invalid_arg
"merge_with_branch: %a is not a valid branch ID" pp_branch other
| Some c -> (
Commit.of_hash t.repo c >>= function
| None -> Lwt.fail_invalid_arg "invalid commit"
| Some c -> Head.merge ~into:t ~info ?max_depth ?n c )
let merge_with_commit t ~info ?max_depth ?n other =
Head.merge ~into:t ~info ?max_depth ?n other
let merge_into ~into ~info ?max_depth ?n t =
Log.debug (fun l -> l "merge");
match head_ref t with
| `Branch name -> merge_with_branch into ~info ?max_depth ?n name
| `Head h -> merge_with_commit into ~info ?max_depth ?n h
| `Empty -> Merge.ok ()
module History = OCamlGraph.Persistent.Digraph.ConcreteBidirectional (struct
type t = commit
let hash h = P.Commit.Key.short_hash h.Commit.h
let compare x y = Type.compare P.Commit.Key.t x.Commit.h y.Commit.h
let equal x y = Type.equal P.Commit.Key.t x.Commit.h y.Commit.h
end)
module Gmap = struct
module Src =
Object_graph.Make (P.Contents.Key) (P.Node.Metadata) (P.Node.Key)
(P.Commit.Key)
(Branch_store.Key)
module Dst = struct
include History
let empty () = empty
end
let filter_map f g =
let t = Dst.empty () in
if Src.nb_vertex g = 1 then
match Src.vertex g with
| [ v ] -> (
f v >|= function Some v -> Dst.add_vertex t v | None -> t )
| _ -> assert false
else
Src.fold_edges
(fun x y t ->
t >>= fun t ->
f x >>= fun x ->
f y >|= fun y ->
match (x, y) with
| Some x, Some y ->
let t = Dst.add_vertex t x in
let t = Dst.add_vertex t y in
Dst.add_edge t x y
| _ -> t)
g (Lwt.return t)
end
let history ?depth ?(min = []) ?(max = []) t =
Log.debug (fun f -> f "history");
let pred = function
| `Commit k ->
H.parents (history_t t) k
>>= Lwt_list.filter_map_p (Commit.of_hash t.repo)
>|= fun parents -> List.map (fun x -> `Commit x.Commit.h) parents
| _ -> Lwt.return_nil
in
(Head.find t >>= function
| Some h -> Lwt.return [ h ]
| None -> Lwt.return max)
>>= fun max ->
let max = List.map (fun k -> `Commit k.Commit.h) max in
let min = List.map (fun k -> `Commit k.Commit.h) min in
Gmap.Src.closure ?depth ~min ~max ~pred () >>= fun g ->
Gmap.filter_map
(function `Commit k -> Commit.of_hash t.repo k | _ -> Lwt.return_none)
g
let pp_option = Type.pp (Type.option Type.int)
module Heap = Bheap.Make (struct
type t = commit * int
let compare c1 c2 =
Int64.compare
(Info.date (Commit.info (fst c1)))
(Info.date (Commit.info (fst c2)))
end)
let last_modified ?depth ?(n = 1) t key =
Log.debug (fun l ->
l "last_modified depth=%a number=%d key=%a" pp_option depth n pp_key
key);
Head.get t >>= fun commit ->
let heap = Heap.create 5 in
let () = Heap.add heap (commit, 0) in
let rec search acc =
if Heap.is_empty heap || List.length acc = n then Lwt.return acc
else
let current, current_depth = Heap.pop_maximum heap in
let parents = Commit.parents current in
of_commit current >>= fun store ->
find store key >>= fun current_value ->
if List.length parents = 0 then
if current_value <> None then Lwt.return (current :: acc)
else Lwt.return acc
else
let max_depth =
match depth with
| Some depth -> current_depth >= depth
| None -> false
in
Lwt_list.for_all_p
(fun hash ->
Commit.of_hash (repo store) hash >>= function
| Some commit -> (
let () =
if not max_depth then
Heap.add heap (commit, current_depth + 1)
in
of_commit commit >>= fun store ->
find store key >|= fun e ->
match (e, current_value) with
| Some x, Some y -> not (Type.equal Contents.t x y)
| Some _, None -> true
| _, _ -> false )
| None -> Lwt.return_false)
parents
>>= fun found ->
if found then search (current :: acc) else search acc
in
search []
module Branch = struct
include P.Branch.Key
let mem t = P.Branch.mem (P.Repo.branch_t t)
let find t br =
P.Branch.find (Repo.branch_t t) br >>= function
| None -> Lwt.return_none
| Some h -> Commit.of_hash t h
let set t br h = P.Branch.set (P.Repo.branch_t t) br (Commit.hash h)
let remove t = P.Branch.remove (P.Repo.branch_t t)
let list = Repo.branches
let watch t k ?init f =
let init = match init with None -> None | Some h -> Some h.Commit.h in
P.Branch.watch_key (Repo.branch_t t) k ?init (lift_head_diff t f)
>|= fun w () -> Branch_store.unwatch (Repo.branch_t t) w
let watch_all t ?init f =
let init =
match init with
| None -> None
| Some i -> Some (List.map (fun (k, v) -> (k, v.Commit.h)) i)
in
let f k v = lift_head_diff t (f k) v in
P.Branch.watch (Repo.branch_t t) ?init f >|= fun w () ->
Branch_store.unwatch (Repo.branch_t t) w
let err_not_found k =
Fmt.kstrf invalid_arg "Branch.get: %a not found" pp_branch k
let get t k =
find t k >>= function None -> err_not_found k | Some v -> Lwt.return v
end
module Status = struct
type t = [ `Empty | `Branch of branch | `Commit of commit ]
let t r =
let open Type in
variant "status" (fun empty branch commit ->
function
| `Empty -> empty | `Branch b -> branch b | `Commit c -> commit c)
|~ case0 "empty" `Empty
|~ case1 "branch" Branch.t (fun b -> `Branch b)
|~ case1 "commit" (Commit.t r) (fun c -> `Commit c)
|> sealv
let pp ppf = function
| `Empty -> Fmt.string ppf "empty"
| `Branch b -> Type.pp Branch.t ppf b
| `Commit c -> Type.pp Hash.t ppf (Commit.hash c)
end
let slice_t = P.Slice.t
let tree_t = Tree.tree_t
let contents_t = Contents.t
let metadata_t = Metadata.t
let key_t = Key.t
let step_t = Key.step_t
let node_t = Tree.node_t
let commit_t = Commit.t
let branch_t = Branch.t
let kind_t = Type.enum "kind" [ ("contents", `Contents); ("node", `Node) ]
let lca_error_t =
Type.enum "lca-error"
[
("max-depth-reached", `Max_depth_reached);
("too-many-lcas", `Too_many_lcas);
]
let ff_error_t =
Type.enum "ff-error"
[
("max-depth-reached", `Max_depth_reached);
("too-many-lcas", `Too_many_lcas);
("no-change", `No_change);
("rejected", `Rejected);
]
let write_error_t =
let open Type in
variant "write-error" (fun c m e ->
function
| `Conflict x -> c x | `Too_many_retries x -> m x | `Test_was x -> e x)
|~ case1 "conflict" string (fun x -> `Conflict x)
|~ case1 "too-many-retries" int (fun x -> `Too_many_retries x)
|~ case1 "test-got" (option tree_t) (fun x -> `Test_was x)
|> sealv
let write_error_t =
let of_string _ = assert false in
Type.like ~cli:(pp_write_error, of_string) write_error_t
end