Source file sync.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
let ( <.> ) f g x = f (g x)
let src = Logs.Src.create "git.sync"
module Log = (val Logs.src_log src : Logs.LOG)
module type S = sig
type hash
type store
type error = private [> Mimic.error | `Exn of exn ]
val pp_error : error Fmt.t
val fetch :
?push_stdout:(string -> unit) ->
?push_stderr:(string -> unit) ->
?threads:int ->
ctx:Mimic.ctx ->
Smart_git.Endpoint.t ->
store ->
?version:[> `V1 ] ->
?capabilities:Smart.Capability.t list ->
?deepen:[ `Depth of int | `Timestamp of int64 ] ->
[ `All | `Some of (Reference.t * Reference.t) list | `None ] ->
((hash * (Reference.t * hash) list) option, error) result Lwt.t
val push :
ctx:Mimic.ctx ->
Smart_git.Endpoint.t ->
store ->
?version:[> `V1 ] ->
?capabilities:Smart.Capability.t list ->
[ `Create of Reference.t
| `Delete of Reference.t
| `Update of Reference.t * Reference.t ]
list ->
(unit, error) result Lwt.t
end
module Make
(Digestif : Digestif.S)
(Pack : Smart_git.APPEND with type +'a fiber = 'a Lwt.t)
(Index : Smart_git.APPEND with type +'a fiber = 'a Lwt.t)
(Store : Minimal.S with type hash = Digestif.t) =
struct
type hash = Digestif.t
type store = Store.t
type error = [ `Exn of exn | `Store of Store.error | Mimic.error ]
let pp_error ppf = function
| #Mimic.error as err -> Mimic.pp_error ppf err
| `Exn exn -> Fmt.pf ppf "Exception: %s" (Printexc.to_string exn)
| `Store err -> Fmt.pf ppf "Store error: %a" Store.pp_error err
| `Invalid_flow -> Fmt.pf ppf "Invalid flow"
module Hash = Hash.Make (Digestif)
module Scheduler = Hkt.Make_sched (Lwt)
module Ministore = Hkt.Make_store (struct
type ('k, 'v) t = Store.t * ('k, 'v) Hashtbl.t
end)
open Lwt.Infix
let get_commit_for_negotiation (t, hashtbl) hash =
Log.debug (fun m -> m "Load commit %a." Hash.pp hash);
match Hashtbl.find hashtbl hash with
| v -> Lwt.return_some v
| exception Not_found -> (
Store.read t hash
>>= function
| Ok (Value.Commit commit) ->
let { User.date = ts, _; _ } =
Store.Value.Commit.committer commit
in
let v = hash, ref 0, ts in
Hashtbl.add hashtbl hash v;
Lwt.return_some v
| Ok _ | Error _ -> Lwt.return_none)
let parents_of_commit t hash =
Log.debug (fun m -> m "Get parents of %a." Hash.pp hash);
Store.read_exn t hash >>= function
| Value.Commit commit -> (
Store.is_shallowed t hash >>= function
| false -> Lwt.return (Store.Value.Commit.parents commit)
| true -> Lwt.return [])
| _ -> Lwt.return []
let parents ((t, _hashtbl) as store) hash =
parents_of_commit t hash >>= fun parents ->
let fold acc hash =
get_commit_for_negotiation store hash >>= function
| Some v -> Lwt.return (v :: acc)
| None -> Lwt.return acc
in
Lwt_list.fold_left_s fold [] parents
let deref (t, _) refname =
Log.debug (fun m -> m "Dereference %a." Reference.pp refname);
Store.Ref.resolve t refname >>= function
| Ok hash -> Lwt.return_some hash
| Error _ -> Lwt.return_none
let locals (t, _) =
Log.debug (fun m -> m "Load locals references.");
Store.Ref.list t >>= Lwt_list.map_p (Lwt.return <.> fst)
let shallowed (t, _) =
Log.debug (fun m -> m "Shallowed commits of the store.");
Store.shallowed t
let shallow (t, _) hash =
Log.debug (fun m -> m "Shallow %a." Hash.pp hash);
Store.shallow t hash
let unshallow (t, _) hash =
Log.debug (fun m -> m "Unshallow %a." Hash.pp hash);
Store.unshallow t hash
let access =
Sigs.
{
get =
(fun uid t ->
Scheduler.inj (get_commit_for_negotiation (Ministore.prj t) uid));
parents = (fun uid t -> Scheduler.inj (parents (Ministore.prj t) uid));
deref =
(fun t refname -> Scheduler.inj (deref (Ministore.prj t) refname));
locals = (fun t -> Scheduler.inj (locals (Ministore.prj t)));
shallowed = (fun t -> Scheduler.inj (shallowed (Ministore.prj t)));
shallow = (fun t uid -> Scheduler.inj (shallow (Ministore.prj t) uid));
unshallow =
(fun t uid -> Scheduler.inj (unshallow (Ministore.prj t) uid));
}
let lightly_load t hash =
Store.read_exn t hash >>= fun v ->
let kind =
match v with
| Value.Commit _ -> `A
| Value.Tree _ -> `B
| Value.Blob _ -> `C
| Value.Tag _ -> `D
in
let length = Int64.to_int (Store.Value.length v) in
Lwt.return (kind, length)
let heavily_load t hash =
Store.read_inflated t hash >>= function
| Some (kind, { Cstruct.buffer; off; len }) ->
let kind =
match kind with
| `Commit -> `A
| `Tree -> `B
| `Blob -> `C
| `Tag -> `D
in
let raw = Bigstringaf.copy buffer ~off ~len in
Lwt.return (Carton.Dec.v ~kind raw)
| None -> Lwt.fail Not_found
include Smart_git.Make (Scheduler) (Pack) (Index) (Hash) (Reference)
let ( >>? ) x f =
x >>= function Ok x -> f x | Error err -> Lwt.return_error err
let fetch ?(push_stdout = ignore) ?(push_stderr = ignore) ?threads ~ctx
endpoint t ?version ?capabilities ?deepen want ~src ~dst ~idx
~create_idx_stream ~create_pack_stream t_pck t_idx =
let want, src_dst_mapping =
match want with
| (`All | `None) as x -> x, fun src -> [ src ]
| `Some src_dst_refs ->
let src_refs = List.map fst src_dst_refs in
let src_dst_map =
List.fold_left
(fun src_dst_map (src_ref, dst_ref) ->
try
let dst_refs = Reference.Map.find src_ref src_dst_map in
if List.exists (Reference.equal dst_ref) dst_refs then
src_dst_map
else
Reference.Map.add src_ref (dst_ref :: dst_refs) src_dst_map
with Not_found ->
Reference.Map.add src_ref [ dst_ref ] src_dst_map)
Reference.Map.empty src_dst_refs
in
let src_dst_mapping src_ref =
Reference.Map.find_opt src_ref src_dst_map
|> Option.value ~default:[ src_ref ]
in
`Some src_refs, src_dst_mapping
in
let ministore = Ministore.inj (t, Hashtbl.create 0x100) in
fetch ~push_stdout ~push_stderr ?threads ~ctx
(access, lightly_load t, heavily_load t)
ministore endpoint ?version ?capabilities ?deepen want t_pck t_idx ~src
~dst ~idx
>>? function
| `Empty -> Lwt.return_ok None
| `Pack (uid, refs) ->
Log.debug (fun m -> m "Start to write many objects.");
Store.batch_write t uid ~pck:(create_pack_stream ())
~idx:(create_idx_stream ())
>|= Rresult.R.reword_error (fun err -> `Store err)
>>? fun () ->
let update (src_ref, hash) =
let write_dst_ref dst_ref =
Store.Ref.write t dst_ref (Reference.Uid hash) >>= function
| Ok v -> Lwt.return v
| Error err ->
Log.warn (fun m ->
m "Impossible to update %a to %a: %a." Reference.pp src_ref
Store.Hash.pp hash Store.pp_error err);
Lwt.return_unit
in
let dst_refs = src_dst_mapping src_ref in
Lwt_list.iter_p write_dst_ref dst_refs
in
Lwt_list.iter_p update refs >>= fun () ->
Lwt.return_ok (Some (uid, refs))
let get_object_for_packer t hash =
Store.read t hash >>= function
| Ok (Value.Blob _) ->
Lwt.return_some (Pck.make ~kind:Pck.blob Pck.Leaf hash)
| Ok (Value.Tree tree) ->
let hashes = Tree.hashes tree in
Lwt.return_some (Pck.make ~kind:Pck.tree hashes hash)
| Ok (Value.Commit commit) ->
(Store.is_shallowed t hash >|= function
| true -> []
| false -> Store.Value.Commit.parents commit)
>>= fun preds ->
let root = Store.Value.Commit.tree commit in
let { User.date = ts, _; _ } = Store.Value.Commit.committer commit in
Lwt.return_some
(Pck.make ~kind:Pck.commit { Pck.root; Pck.preds } ~ts hash)
| Ok (Value.Tag tag) ->
let pred = Store.Value.Tag.obj tag in
Lwt.return_some (Pck.make ~kind:Pck.tag pred hash)
| Error _ -> Lwt.return_none
let get_object_for_packer (t, hashtbl) hash =
match Hashtbl.find hashtbl hash with
| v -> Lwt.return_some v
| exception Not_found -> (
get_object_for_packer t hash >>= function
| Some o as v ->
Hashtbl.replace hashtbl hash o;
Lwt.return v
| None -> Lwt.return_none)
let access =
Sigs.
{
get =
(fun uid t ->
Scheduler.inj (get_object_for_packer (Ministore.prj t) uid));
parents = (fun _ _ -> assert false);
deref =
(fun t refname -> Scheduler.inj (deref (Ministore.prj t) refname));
locals = (fun _ -> assert false);
shallowed = (fun _ -> assert false);
shallow = (fun _ -> assert false);
unshallow = (fun _ -> assert false);
}
let push ~ctx endpoint t ?version ?capabilities cmds =
let ministore = Ministore.inj (t, Hashtbl.create 0x100) in
push ~ctx
(access, lightly_load t, heavily_load t)
ministore endpoint ?version ?capabilities cmds
end