Source file batcher.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
open Batcher_worker_types
module Message_queue = Hash_queue.Make (L2_message.Hash) (L2_message)
module Batcher_events = Batcher_events.Declare (struct
let worker_name = "batcher"
end)
module L2_batched_message = struct
type t = {content : string; l1_hash : Injector.Inj_operation.hash}
end
module Batched_messages = Hash_queue.Make (L2_message.Hash) (L2_batched_message)
type status = Pending_batch | Batched of Injector.Inj_operation.hash
type state = {
node_ctxt : Node_context.ro;
signer : Signature.public_key_hash;
conf : Configuration.batcher;
messages : Message_queue.t;
batched : Batched_messages.t;
mutable simulation_ctxt : Simulation.t option;
mutable plugin : (module Protocol_plugin_sig.S);
}
let message_size s =
4 + String.length s
let inject_batch state (l2_messages : L2_message.t list) =
let open Lwt_result_syntax in
let messages = List.map L2_message.content l2_messages in
let operation = L1_operation.Add_messages {messages} in
let+ l1_hash =
Injector.add_pending_operation ~source:state.signer operation
in
List.iter
(fun msg ->
let content = L2_message.content msg in
let hash = L2_message.hash msg in
Batched_messages.replace state.batched hash {content; l1_hash})
l2_messages
let inject_batches state = List.iter_es (inject_batch state)
let max_batch_size {conf; plugin; _} =
let module Plugin = (val plugin) in
Option.value
conf.max_batch_size
~default:Plugin.Batcher_constants.protocol_max_batch_size
let get_batches state ~only_full =
let ( current_rev_batch,
current_batch_size,
current_batch_elements,
full_batches ) =
Message_queue.fold
(fun msg_hash
message
( current_rev_batch,
current_batch_size,
current_batch_elements,
full_batches ) ->
let size = message_size (L2_message.content message) in
let new_batch_size = current_batch_size + size in
let new_batch_elements = current_batch_elements + 1 in
if
new_batch_size <= max_batch_size state
&& new_batch_elements <= state.conf.max_batch_elements
then
( (msg_hash, message) :: current_rev_batch,
new_batch_size,
new_batch_elements,
full_batches )
else
let batch = List.rev current_rev_batch in
([(msg_hash, message)], size, 1, batch :: full_batches))
state.messages
([], 0, 0, [])
in
let batches =
if
(not only_full)
|| current_batch_size >= state.conf.min_batch_size
&& current_batch_elements >= state.conf.min_batch_elements
then
List.rev current_rev_batch :: full_batches
else full_batches
in
List.fold_left
(fun (batches, to_remove) -> function
| [] -> (batches, to_remove)
| batch ->
let msg_hashes, batch = List.split batch in
let to_remove = List.rev_append msg_hashes to_remove in
(batch :: batches, to_remove))
([], [])
batches
let produce_batches state ~only_full =
let open Lwt_result_syntax in
let batches, to_remove = get_batches state ~only_full in
match batches with
| [] -> return_unit
| _ ->
let* () = inject_batches state batches in
let*! () =
Batcher_events.(emit batched)
(List.length batches, List.length to_remove)
in
List.iter
(fun tr_hash -> Message_queue.remove state.messages tr_hash)
to_remove ;
return_unit
let simulate state simulation_ctxt (messages : L2_message.t list) =
let open Lwt_result_syntax in
let module Plugin = (val state.plugin) in
let*? ext_messages =
List.map_e
(fun m -> Plugin.Inbox.serialize_external_message (L2_message.content m))
messages
in
let+ simulation_ctxt, _ticks =
Simulation.simulate_messages simulation_ctxt ext_messages
in
simulation_ctxt
let on_register state (messages : string list) =
let open Lwt_result_syntax in
let module Plugin = (val state.plugin) in
let max_size_msg =
min
(Plugin.Batcher_constants.message_size_limit
+ 4 )
(max_batch_size state)
in
let*? messages =
List.mapi_e
(fun i message ->
if message_size message > max_size_msg then
error_with "Message %d is too large (max size is %d)" i max_size_msg
else Ok (L2_message.make message))
messages
in
let* () =
if not state.conf.simulate then return_unit
else
match state.simulation_ctxt with
| None -> failwith "Simulation context of batcher not initialized"
| Some simulation_ctxt ->
let+ simulation_ctxt = simulate state simulation_ctxt messages in
state.simulation_ctxt <- Some simulation_ctxt
in
let*! () = Batcher_events.(emit queue) (List.length messages) in
let hashes =
List.map
(fun message ->
let msg_hash = L2_message.hash message in
Message_queue.replace state.messages msg_hash message ;
msg_hash)
messages
in
let+ () = produce_batches state ~only_full:true in
hashes
let on_new_head state head =
let open Lwt_result_syntax in
let* () = produce_batches state ~only_full:false in
let* simulation_ctxt =
Simulation.start_simulation ~reveal_map:None state.node_ctxt head
in
let+ simulation_ctxt, failing =
if not state.conf.simulate then return (simulation_ctxt, [])
else
Message_queue.fold_es
(fun msg_hash msg (simulation_ctxt, failing) ->
let*! result = simulate state simulation_ctxt [msg] in
match result with
| Ok simulation_ctxt -> return (simulation_ctxt, failing)
| Error _ -> return (simulation_ctxt, msg_hash :: failing))
state.messages
(simulation_ctxt, [])
in
state.simulation_ctxt <- Some simulation_ctxt ;
List.iter (Message_queue.remove state.messages) failing
let init_batcher_state plugin node_ctxt ~signer (conf : Configuration.batcher) =
{
node_ctxt;
signer;
conf;
messages = Message_queue.create 100_000 ;
batched = Batched_messages.create 100_000 ;
simulation_ctxt = None;
plugin;
}
module Types = struct
type nonrec state = state
type parameters = {
node_ctxt : Node_context.ro;
plugin : (module Protocol_plugin_sig.S);
signer : Signature.public_key_hash;
conf : Configuration.batcher;
}
end
module Name = struct
type t = unit
let encoding = Data_encoding.unit
let base = Batcher_events.Worker.section @ ["worker"]
let pp _ _ = ()
let equal () () = true
end
module Worker = Worker.MakeSingle (Name) (Request) (Types)
type worker = Worker.infinite Worker.queue Worker.t
module Handlers = struct
type self = worker
let on_request :
type r request_error.
worker -> (r, request_error) Request.t -> (r, request_error) result Lwt.t
=
fun w request ->
let state = Worker.state w in
match request with
| Request.Register messages ->
protect @@ fun () -> on_register state messages
| Request.New_head head -> protect @@ fun () -> on_new_head state head
type launch_error = error trace
let on_launch _w () Types.{node_ctxt; plugin; signer; conf} =
let open Lwt_result_syntax in
let state = init_batcher_state plugin node_ctxt ~signer conf in
return state
let on_error (type a b) _w st (r : (a, b) Request.t) (errs : b) :
unit tzresult Lwt.t =
let open Lwt_result_syntax in
let request_view = Request.view r in
let emit_and_return_errors errs =
let*! () =
Batcher_events.(emit Worker.request_failed) (request_view, st, errs)
in
return_unit
in
match r with
| Request.Register _ -> emit_and_return_errors errs
| Request.New_head _ -> emit_and_return_errors errs
let on_completion _w r _ st =
match Request.view r with
| Request.View (Register _ | New_head _) ->
Batcher_events.(emit Worker.request_completed_debug) (Request.view r, st)
let on_no_request _ = Lwt.return_unit
let on_close _w = Lwt.return_unit
end
let table = Worker.create_table Queue
let worker_promise, worker_waker = Lwt.task ()
let check_batcher_config (module Plugin : Protocol_plugin_sig.S)
Configuration.{max_batch_size; _} =
match max_batch_size with
| Some m when m > Plugin.Batcher_constants.protocol_max_batch_size ->
error_with
"batcher.max_batch_size must be smaller than %d"
Plugin.Batcher_constants.protocol_max_batch_size
| _ -> Ok ()
let start plugin conf ~signer node_ctxt =
let open Lwt_result_syntax in
let*? () = check_batcher_config plugin conf in
let node_ctxt = Node_context.readonly node_ctxt in
let+ worker =
Worker.launch table () {node_ctxt; plugin; signer; conf} (module Handlers)
in
Lwt.wakeup worker_waker worker
let init plugin conf ~signer node_ctxt =
let open Lwt_result_syntax in
match Lwt.state worker_promise with
| Lwt.Return _ ->
return_unit
| Lwt.Fail exn ->
fail [Rollup_node_errors.No_batcher; Exn exn]
| Lwt.Sleep ->
start plugin conf ~signer node_ctxt
let worker =
lazy
(match Lwt.state worker_promise with
| Lwt.Return worker -> Ok worker
| Lwt.Fail _ | Lwt.Sleep ->
Error (TzTrace.make Rollup_node_errors.No_batcher))
let active () =
match Lwt.state worker_promise with
| Lwt.Return _ -> true
| Lwt.Fail _ | Lwt.Sleep -> false
let find_message hash =
let open Result_syntax in
let+ w = Lazy.force worker in
let state = Worker.state w in
Message_queue.find_opt state.messages hash
let get_queue () =
let open Result_syntax in
let+ w = Lazy.force worker in
let state = Worker.state w in
Message_queue.bindings state.messages
let handle_request_error rq =
let open Lwt_syntax in
let* rq in
match rq with
| Ok res -> return_ok res
| Error (Worker.Request_error errs) -> Lwt.return_error errs
| Error (Closed None) -> Lwt.return_error [Worker_types.Terminated]
| Error (Closed (Some errs)) -> Lwt.return_error errs
| Error (Any exn) -> Lwt.return_error [Exn exn]
let register_messages messages =
let open Lwt_result_syntax in
let*? w = Lazy.force worker in
Worker.Queue.push_request_and_wait w (Request.Register messages)
|> handle_request_error
let new_head b =
let open Lwt_result_syntax in
let w = Lazy.force worker in
match w with
| Error _ ->
return_unit
| Ok w ->
Worker.Queue.push_request_and_wait w (Request.New_head b)
|> handle_request_error
let shutdown () =
let w = Lazy.force worker in
match w with
| Error _ ->
Lwt.return_unit
| Ok w -> Worker.shutdown w
let message_status state msg_hash =
match Message_queue.find_opt state.messages msg_hash with
| Some msg -> Some (Pending_batch, L2_message.content msg)
| None -> (
match Batched_messages.find_opt state.batched msg_hash with
| Some {content; l1_hash} -> Some (Batched l1_hash, content)
| None -> None)
let message_status msg_hash =
let open Result_syntax in
let+ w = Lazy.force worker in
let state = Worker.state w in
message_status state msg_hash