Source file rpc_effect.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
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
open! Core
open Async_kernel
open Async_rpc_kernel
let () = For_introspection.run_top_level_side_effects ()
module Where_to_connect = struct
module Custom = struct
type t = ..
end
type t =
| Self
| Url of string
| Custom of Custom.t
end
module Rvar : sig
(** A "Refreshable" var. *)
type 'a t
val const : 'a -> 'a t
(** Makes a new container that asynchronously computes its contents on demand. *)
val create : (unit -> 'a Deferred.Or_error.t) -> 'a t
(** Mark the current contents of the container as being no longer valid,
which means that the next time anyone wants to look at it, it must be
re-computed. *)
val invalidate : 'a t -> unit
(** Computes the container's contents in order to return them. Getting the
contents of the same ['a t] twice should only force computation once,
unless it is invalidated between the calls to [contents], or the first
call returns an error before the second call begins.
If [invalidate] is called in the middle of computing the result, the
computation starts over. *)
val contents : 'a t -> 'a Deferred.Or_error.t
val derived : 'a t -> ('a -> 'b Deferred.Or_error.t) -> 'b t
val destroy : _ t -> unit
end = struct
type 'a state =
| Invalid
| Pending
| Value of 'a
type 'a common =
{ mutable state : 'a state
; f : unit -> 'a Deferred.Or_error.t
; finished : ('a Or_error.t, read_write) Bvar.t
; invalidated : (unit -> unit, read_write) Bus.t
}
type 'a t =
| Standard of 'a common
| Derived of
{ common : 'a common
; on_destroy : unit -> unit
}
| Const of 'a
let create_common f =
let invalidated =
Bus.create_exn
[%here]
Arity1
~on_subscription_after_first_write:Allow
~on_callback_raise:Error.raise
in
{ state = Invalid; f; finished = Bvar.create (); invalidated }
;;
let const v = Const v
let create f = Standard (create_common f)
let return_result t result =
Deferred.return
(match t with
| Const _ -> result
| Standard t | Derived { common = t; _ } ->
(match result with
| Ok value ->
t.state <- Value value;
Bvar.broadcast t.finished (Ok value);
Ok value
| Error e ->
t.state <- Invalid;
Bvar.broadcast t.finished (Error e);
Error e))
;;
let rec contents = function
| Const v -> Deferred.Or_error.return v
| (Standard t | Derived { common = t; _ }) as self ->
(match t.state with
| Invalid ->
t.state <- Pending;
(match%bind Monitor.try_with_join_or_error t.f with
| Ok value ->
(match t.state with
| Invalid ->
contents self
| Pending -> return_result self (Ok value)
| Value value ->
eprint_s
[%message
"BUG: Skipped computing Rvar result because it has already been \
computed."];
return_result self (Ok value))
| Error e -> return_result self (Error e))
| Pending -> Bvar.wait t.finished
| Value value -> Deferred.Or_error.return value)
;;
let invalidate = function
| Const _ -> ()
| Standard t | Derived { common = t; _ } ->
t.state <- Invalid;
Bus.write t.invalidated ()
;;
let derived inner f =
match inner with
| Const v -> create (fun () -> f v)
| Standard { invalidated = inner_invalidated; _ }
| Derived { common = { invalidated = inner_invalidated; _ }; _ } ->
let f () = Deferred.Or_error.bind (contents inner) ~f in
let rec me =
lazy
(let subscriber = Lazy.force subscriber in
let on_destroy () = Bus.unsubscribe inner_invalidated subscriber in
Derived { common = create_common f; on_destroy })
and subscriber =
lazy
(Bus.subscribe_exn inner_invalidated [%here] ~f:(fun () ->
invalidate (Lazy.force me)))
in
Lazy.force me
;;
let destroy = function
| Const _ -> ()
| Standard _ as t -> invalidate t
| Derived { on_destroy; _ } as t ->
invalidate t;
on_destroy ()
;;
end
module Connector = struct
type t =
| Async_durable :
{ connection : Rpc.Connection.t Async_durable.t
; menu : Versioned_rpc.Menu.t Rvar.t
}
-> t
| Persistent_connection :
{ connection_module :
(module Persistent_connection.S
with type t = 'conn
and type conn = Rpc.Connection.t)
; connection : 'conn
; menu : Versioned_rpc.Menu.t Rvar.t
}
-> t
| Connection :
{ connection : Rpc.Connection.t Deferred.t
; menu : Versioned_rpc.Menu.t Rvar.t
}
-> t
| Test_fallback : t
let = function
| Async_durable { : Versioned_rpc.Menu.t Rvar.t; _ } -> Some menu
| Persistent_connection { : Versioned_rpc.Menu.t Rvar.t; _ } -> Some menu
| Connection { : Versioned_rpc.Menu.t Rvar.t; _ } -> Some menu
| Test_fallback -> None
;;
let persistent_connection
(type conn)
(module Conn : Persistent_connection.S
with type t = conn
and type conn = Rpc.Connection.t)
(connection : conn)
=
let =
Rvar.create (fun () ->
let%bind connection = Conn.connected connection in
Versioned_rpc.Menu.request connection)
in
Bus.iter_exn (Conn.event_bus connection) [%here] ~f:(function
| Disconnected -> Rvar.invalidate menu
| _ -> ());
Persistent_connection { connection_module = (module Conn); connection; menu }
;;
let async_durable (connection : Rpc.Connection.t Async_durable.t) =
let =
Rvar.create (fun () -> Async_durable.with_ connection ~f:Versioned_rpc.Menu.request)
in
Bus.iter_exn (Async_durable.is_intact_bus connection) [%here] ~f:(fun is_intact ->
if not is_intact then Rvar.invalidate menu);
Async_durable { connection; menu }
;;
let for_test implementations ~connection_state =
let open Async_rpc_kernel in
let open Async_kernel in
let to_server = Pipe.create () in
let to_client = Pipe.create () in
let one_connection implementations ~connection_state pipe_to pipe_from =
let transport =
Pipe_transport.create Pipe_transport.Kind.string (fst pipe_to) (snd pipe_from)
in
let%bind conn =
Rpc.Connection.create ?implementations ~connection_state transport
in
return (Result.ok_exn conn)
in
don't_wait_for
(let%bind server_conn =
one_connection (Some implementations) ~connection_state to_server to_client
in
Rpc.Connection.close_finished server_conn);
let connection =
one_connection None ~connection_state:(fun _conn -> ()) to_client to_server
in
Connection
{ connection
; menu =
Rvar.create (fun () ->
let%bind connection = connection in
Versioned_rpc.Menu.request connection)
}
;;
let test_fallback = Test_fallback
let with_connection f ~where_to_connect ~callback =
match f where_to_connect with
| Async_durable { connection; menu = _ } -> Async_durable.with_ connection ~f:callback
| Persistent_connection { connection_module = (module Conn); connection; menu = _ } ->
let%bind connection = Conn.connected connection in
callback connection
| Connection { connection; menu = _ } ->
let%bind connection = connection in
callback connection
| Test_fallback ->
Deferred.Or_error.error_string
"RPC not handled because no connector has been provided."
| exception e -> Deferred.Or_error.of_exn e
;;
let f ~where_to_connect ~callback =
match f where_to_connect with
| Async_durable { connection; } ->
Async_durable.with_ connection ~f:(fun connection ->
let%bind.Deferred.Or_error = Rvar.contents menu in
callback (Versioned_rpc.Connection_with_menu.create_directly connection menu))
| Persistent_connection { connection_module = (module Conn); connection; } ->
let%bind connection = Conn.connected connection in
let%bind.Deferred.Or_error = Rvar.contents menu in
callback (Versioned_rpc.Connection_with_menu.create_directly connection menu)
| Connection { connection; } ->
let%bind connection = connection in
let%bind.Deferred.Or_error = Rvar.contents menu in
callback (Versioned_rpc.Connection_with_menu.create_directly connection menu)
| Test_fallback ->
Deferred.Or_error.error_string
"RPC not handled because no connector has been provided."
| exception e -> Deferred.Or_error.of_exn e
;;
end
let connector_var =
Bonsai.Dynamic_scope.create
~name:"Bonsai_web.Rpc_effect.connector_var"
~fallback:(fun _ -> failwith "BUG: no bonsai-rpc handler installed")
()
;;
module Private = struct
let with_connector connector computation =
Bonsai.Dynamic_scope.set
connector_var
(Bonsai.Value.return connector)
~inside:computation
;;
let self_connector =
lazy
(Connector.persistent_connection
(module Persistent_connection.Rpc)
(Persistent_connection.Rpc.create
~server_name:"self-ws-server"
~address:(module Unit)
~connect:(fun () -> Async_js.Rpc.Connection.client ())
Deferred.Or_error.return))
;;
let self_connector () = Lazy.force self_connector
let url_connector =
Memo.of_comparable
(module String)
(fun url ->
Connector.persistent_connection
(module Persistent_connection.Rpc)
(Persistent_connection.Rpc.create
~server_name:"self-ws-server"
~address:(module String)
~connect:(fun url ->
Async_js.Rpc.Connection.client ~uri:(Uri.of_string url) ())
(fun () -> Deferred.Or_error.return url)))
;;
let is_test_fallback connector =
match connector with
| Connector.Test_fallback -> true
| Async_durable _ | Persistent_connection _ | Connection _ -> false
;;
module For_tests = struct
module Rvar = Rvar
end
end
module Poll_result = struct
type ('query, 'response) t =
{ last_ok_response : ('query * 'response) option
; last_error : ('query * Error.t) option
; inflight_query : 'query option
; refresh : (unit Effect.t[@sexp.opaque])
}
[@@deriving sexp_of]
end
module Shared_poller = struct
open Bonsai.Let_syntax
type ('query, 'response) t = ('query, ('query, 'response) Poll_result.t) Bonsai.Memo.t
let create = Bonsai.Memo.create
let custom_create = create
let lookup ?sexp_of_model ~equal memo query =
let%sub res = Bonsai.Memo.lookup ?sexp_of_model ~equal memo query in
match%arr res with
| Some x -> x
| None ->
{ Poll_result.last_ok_response = None
; last_error = None
; inflight_query = None
; refresh = Effect.Ignore
}
;;
end
module Inflight_query_key = Unique_id.Int ()
module Poll_behavior = struct
type t =
| Always
| Until_ok
end
let generic_poll_or_error
(type query response)
~(rpc_kind : Bonsai_introspection_protocol.Rpc_kind.t)
~sexp_of_query
~sexp_of_response
~equal_query
?(equal_response = phys_equal)
~clear_when_deactivated
~on_response_received
dispatcher
~every
~poll_behavior
query
=
let module Query = struct
type t = query
let sexp_of_t = Option.value ~default:sexp_of_opaque sexp_of_query
end
in
let module Response = struct
type t = response
let sexp_of_t = Option.value ~default:sexp_of_opaque sexp_of_response
end
in
let open Bonsai.Let_syntax in
let module Model = struct
let sexp_of_query = Query.sexp_of_t
let sexp_of_response = Response.sexp_of_t
type t =
{ last_ok_response : (query * response) option
; last_error : (query * Error.t) option
; inflight_queries : query Inflight_query_key.Map.t
}
[@@deriving sexp_of, equal]
end
in
let module Action = struct
type t =
| Finish of
{ query : Query.t
; response : Response.t Or_error.t Bonsai.Effect_throttling.Poll_result.t
; inflight_query_key : Inflight_query_key.t
}
| Start of
{ query : Query.t
; inflight_query_key : Inflight_query_key.t
}
[@@deriving sexp_of]
end
in
let default_model =
{ Model.last_ok_response = None
; last_error = None
; inflight_queries = Inflight_query_key.Map.empty
}
in
let%sub response, inject_response =
Bonsai.state_machine1
Bonsai.Var.(create () |> value)
~sexp_of_model:[%sexp_of: Model.t]
~sexp_of_action:[%sexp_of: Action.t]
~equal:[%equal: Model.t]
~default_model
~apply_action:
(fun
(_ : _ Bonsai.Apply_action_context.t) computation_status model action ->
let should_ignore =
match computation_status with
| Inactive -> clear_when_deactivated
| Active () -> false
in
if should_ignore
then default_model
else (
match action with
| Finish { query; response; inflight_query_key } ->
let last_ok_response, last_error =
match response with
| Finished (Ok response) -> Some (query, response), None
| Finished (Error error) -> model.last_ok_response, Some (query, error)
| Aborted -> model.last_ok_response, model.last_error
in
{ last_ok_response
; last_error
; inflight_queries = Map.remove model.inflight_queries inflight_query_key
}
| Start { query; inflight_query_key } ->
{ model with
inflight_queries =
Map.add_exn model.inflight_queries ~key:inflight_query_key ~data:query
}))
in
let%sub effect =
let%sub path = Bonsai.path_id in
let%sub get_current_time = Bonsai.Clock.get_current_time in
let%arr dispatcher = dispatcher
and inject_response = inject_response
and on_response_received = on_response_received
and get_current_time = get_current_time
and path = path in
let open Effect.Let_syntax in
let actually_send_rpc query =
let%bind inflight_query_key = Effect.of_sync_fun Inflight_query_key.create () in
let%bind () = inject_response (Start { query; inflight_query_key }) in
let%bind response = dispatcher query in
let%bind () = inject_response (Finish { query; response; inflight_query_key }) in
Effect.return response
in
fun query ->
let%bind response =
match%bind For_introspection.should_record_effect with
| false -> actually_send_rpc query
| true ->
For_introspection.send_and_track_rpc_from_poller
~rpc_kind
~get_current_time
~sexp_of_query
~sexp_of_response
~path
~send_rpc:actually_send_rpc
~query
in
match response with
| Bonsai.Effect_throttling.Poll_result.Aborted -> Effect.Ignore
| Bonsai.Effect_throttling.Poll_result.Finished response ->
on_response_received query response
in
let%sub callback =
let%arr effect = effect in
fun prev query ->
match prev with
| Some _ -> effect query
| None -> Effect.Ignore
in
let%sub () =
Bonsai.Edge.on_change'
~sexp_of_model:[%sexp_of: Query.t]
~equal:equal_query
query
~callback
in
let%sub send_rpc_effect =
let%arr effect = effect
and query = query in
effect query
in
let%sub () =
let clock =
Bonsai.Clock.every
~when_to_start_next_effect:`Wait_period_after_previous_effect_starts_blocking
~trigger_on_activate:false
every
send_rpc_effect
in
match poll_behavior with
| Poll_behavior.Always -> clock
| Until_ok ->
let%sub should_poll =
let%arr { last_ok_response; last_error; _ } = response in
Option.is_none last_ok_response || Option.is_some last_error
in
(match%sub should_poll with
| true -> clock
| false -> Bonsai.const ())
in
let%sub () = Bonsai.Edge.lifecycle ~on_activate:send_rpc_effect () in
let%arr { last_ok_response; last_error; inflight_queries } = response
and send_rpc_effect = send_rpc_effect in
let inflight_query = Option.map ~f:snd (Map.max_elt inflight_queries) in
{ Poll_result.last_ok_response; last_error; inflight_query; refresh = send_rpc_effect }
;;
let generic_poll_or_error
~rpc_kind
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?(clear_when_deactivated = true)
?(on_response_received = Bonsai.Value.return (fun _ _ -> Effect.Ignore))
dispatcher
~every
~poll_behavior
query
=
let c =
generic_poll_or_error
~rpc_kind
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
~on_response_received
~clear_when_deactivated
dispatcher
~every
~poll_behavior
query
in
let open Bonsai.Let_syntax in
if clear_when_deactivated
then (
let%sub result, reset = Bonsai.with_model_resetter c in
let%sub () = Bonsai.Edge.lifecycle ~on_deactivate:reset () in
return result)
else c
;;
module Our_rpc = struct
let generic_dispatcher (type request response) dispatcher
: (request -> response Effect.t) Bonsai.Computation.t
=
let open Bonsai.Let_syntax in
let%sub connector = Bonsai.Dynamic_scope.lookup connector_var in
let%arr connector = connector in
Effect.of_deferred_fun (dispatcher connector)
;;
let dispatcher_internal rpc ~where_to_connect =
generic_dispatcher (fun connector query ->
Connector.with_connection connector ~where_to_connect ~callback:(fun connection ->
Rpc.Rpc.dispatch rpc connection query))
;;
let babel_dispatcher_internal rpc ~where_to_connect =
generic_dispatcher (fun connector query ->
Connector.with_connection_with_menu
connector
~where_to_connect
~callback:(fun connection -> Babel.Caller.Rpc.dispatch_multi rpc connection query))
;;
let streamable_dispatcher_internal rpc ~where_to_connect =
generic_dispatcher (fun connector query ->
Connector.with_connection connector ~where_to_connect ~callback:(fun connection ->
Streamable.Plain_rpc.dispatch rpc connection query))
;;
let poll
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = dispatcher_internal rpc ~where_to_connect in
let%sub dispatcher = Bonsai.Effect_throttling.poll dispatcher in
generic_poll_or_error
~rpc_kind:
(Bonsai_introspection_protocol.Rpc_kind.Normal
{ name = Rpc.Rpc.name rpc
; version = Rpc.Rpc.version rpc
; interval = Poll { every }
})
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every
~poll_behavior:Always
query
;;
let babel_poll
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = babel_dispatcher_internal rpc ~where_to_connect in
let%sub dispatcher = Bonsai.Effect_throttling.poll dispatcher in
generic_poll_or_error
~rpc_kind:
(Babel { descriptions = Babel.Caller.descriptions rpc; interval = Poll { every } })
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every
~poll_behavior:Always
query
;;
let streamable_poll
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = streamable_dispatcher_internal rpc ~where_to_connect in
let%sub dispatcher = Bonsai.Effect_throttling.poll dispatcher in
generic_poll_or_error
~rpc_kind:
(let%tydi { name; version } = Streamable.Plain_rpc.description rpc in
Streamable { name; version; interval = Poll { every } })
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every
~poll_behavior:Always
query
;;
let shared_poller
(type q cmp)
(module Q : Bonsai.Comparator with type t = q and type comparator_witness = cmp)
?sexp_of_response
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
=
let module M = struct
include Q
let equal a b = Q.comparator.compare a b = 0
end
in
Shared_poller.create
(module Q)
~f:(fun query ->
poll
~sexp_of_query:M.sexp_of_t
?sexp_of_response
~equal_query:M.equal
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query)
;;
let poll_until_ok
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~retry_interval
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = dispatcher_internal rpc ~where_to_connect in
let%sub dispatcher = Bonsai.Effect_throttling.poll dispatcher in
generic_poll_or_error
~rpc_kind:
(Normal
{ name = Rpc.Rpc.name rpc
; version = Rpc.Rpc.version rpc
; interval = Poll_until_ok { retry_interval }
})
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every:retry_interval
~poll_behavior:Until_ok
query
;;
let babel_poll_until_ok
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~retry_interval
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = babel_dispatcher_internal rpc ~where_to_connect in
let%sub dispatcher = Bonsai.Effect_throttling.poll dispatcher in
generic_poll_or_error
~rpc_kind:
(Babel
{ descriptions = Babel.Caller.descriptions rpc
; interval = Poll_until_ok { retry_interval }
})
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every:retry_interval
~poll_behavior:Until_ok
query
;;
let maybe_track ~sexp_of_query ~sexp_of_response ~rpc_kind dispatcher =
let open Bonsai.Let_syntax in
let%sub get_current_time = Bonsai.Clock.get_current_time in
let%sub path = Bonsai.path_id in
let%arr dispatcher = dispatcher
and get_current_time = get_current_time
and path = path in
fun query ->
match%bind.Effect For_introspection.should_record_effect with
| false -> dispatcher query
| true ->
For_introspection.send_and_track_rpc_from_dispatch
~rpc_kind
~get_current_time
~sexp_of_query
~sexp_of_response
~path
~send_rpc:dispatcher
~query
;;
let dispatcher ?sexp_of_query ?sexp_of_response rpc ~where_to_connect =
let open Bonsai.Let_syntax in
let%sub dispatcher = dispatcher_internal rpc ~where_to_connect in
maybe_track
~sexp_of_query
~sexp_of_response
~rpc_kind:
(Bonsai_introspection_protocol.Rpc_kind.Normal
{ name = Rpc.Rpc.name rpc; version = Rpc.Rpc.version rpc; interval = Dispatch })
dispatcher
;;
let streamable_dispatcher ?sexp_of_query ?sexp_of_response rpc ~where_to_connect =
let open Bonsai.Let_syntax in
let%sub dispatcher = streamable_dispatcher_internal rpc ~where_to_connect in
maybe_track
~sexp_of_query
~sexp_of_response
~rpc_kind:
(let%tydi { name; version } = Streamable.Plain_rpc.description rpc in
Streamable { name; version; interval = Dispatch })
dispatcher
;;
let babel_dispatcher ?sexp_of_query ?sexp_of_response rpc ~where_to_connect =
let open Bonsai.Let_syntax in
let%sub dispatcher = babel_dispatcher_internal rpc ~where_to_connect in
maybe_track
~sexp_of_query
~sexp_of_response
~rpc_kind:
(Babel { descriptions = Babel.Caller.descriptions rpc; interval = Dispatch })
dispatcher
;;
end
module Polling_state_rpc = struct
let dispatcher'
?(on_forget_client_error = fun _ -> Effect.Ignore)
create_client_rvar
~destroy_after_forget
~where_to_connect
=
let open Bonsai.Let_syntax in
let%sub connector = Bonsai.Dynamic_scope.lookup connector_var in
let%sub client_rvar = create_client_rvar ~connector in
let%sub forget_client_on_server =
let perform_dispatch (connector, client_rvar) =
Connector.with_connection connector ~where_to_connect ~callback:(fun connection ->
let%bind.Eager_deferred.Or_error client = Rvar.contents client_rvar in
match%map.Deferred
Polling_state_rpc.Client.forget_on_server client connection
with
| Ok () -> Ok ()
| Error _ when Rpc.Connection.is_closed connection ->
Ok ()
| Error error -> Error error)
in
let%arr connector = connector
and client_rvar = client_rvar in
let%bind.Effect () =
match%bind.Effect
Effect.of_deferred_fun perform_dispatch (connector, client_rvar)
with
| Ok () -> Effect.Ignore
| Error error -> on_forget_client_error error
in
if destroy_after_forget
then Effect.of_thunk (fun () -> Rvar.destroy client_rvar)
else Effect.Ignore
in
let%sub () = Bonsai.Edge.lifecycle ~on_deactivate:forget_client_on_server () in
let perform_query (connector, client) query =
Connector.with_connection connector ~where_to_connect ~callback:(fun connection ->
let%bind.Eager_deferred.Or_error client = Rvar.contents client in
Polling_state_rpc.Client.dispatch client connection query)
in
let%arr connector = connector
and client_rvar = client_rvar in
Effect.of_deferred_fun (perform_query (connector, client_rvar))
;;
let babel_dispatcher_internal ?on_forget_client_error caller ~where_to_connect =
let create_client_rvar ~connector =
let%arr.Bonsai connector = connector in
match Connector.menu_rvar (connector where_to_connect) with
| None -> raise_s [%message [%here]]
| Some ->
Rvar.derived menu_rvar (fun _ ->
Connector.with_connection_with_menu
connector
~where_to_connect
~callback:(fun ->
Versioned_polling_state_rpc.Client.negotiate_client
caller
connection_with_menu
|> Deferred.return))
in
dispatcher'
?on_forget_client_error
~destroy_after_forget:true
~where_to_connect
create_client_rvar
;;
let dispatcher_internal ?on_forget_client_error rpc ~where_to_connect =
let create_client_rvar ~connector:_ =
Bonsai.Expert.thunk (fun () -> Rvar.const (Polling_state_rpc.Client.create rpc))
in
dispatcher'
?on_forget_client_error
~destroy_after_forget:false
~where_to_connect
create_client_rvar
;;
let generic_poll
?sexp_of_query
?sexp_of_response
~equal_query
~rpc_kind
?equal_response
?clear_when_deactivated
?on_response_received
~every
query
~dispatcher
=
let open Bonsai.Let_syntax in
let%sub dispatcher =
let%arr dispatcher = dispatcher in
fun query ->
let%map.Effect result = dispatcher query in
Bonsai.Effect_throttling.Poll_result.Finished result
in
generic_poll_or_error
~rpc_kind
~sexp_of_query
~sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
dispatcher
~every
~poll_behavior:Always
query
;;
let poll
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = dispatcher_internal rpc ~where_to_connect in
generic_poll
~rpc_kind:
(Polling_state_rpc
{ name = Polling_state_rpc.name rpc
; version = Polling_state_rpc.version rpc
; interval = Poll { every }
})
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
~every
query
~dispatcher
;;
let babel_poll
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query
=
let open Bonsai.Let_syntax in
let%sub dispatcher = babel_dispatcher_internal rpc ~where_to_connect in
generic_poll
~rpc_kind:
(Babel { descriptions = Babel.Caller.descriptions rpc; interval = Poll { every } })
?sexp_of_query
?sexp_of_response
~equal_query
?equal_response
?clear_when_deactivated
?on_response_received
~every
query
~dispatcher
;;
let dispatcher
?sexp_of_query
?sexp_of_response
?on_forget_client_error
rpc
~where_to_connect
=
let open Bonsai.Let_syntax in
let%sub dispatcher =
dispatcher_internal ?on_forget_client_error rpc ~where_to_connect
in
Our_rpc.maybe_track
~sexp_of_query
~sexp_of_response
~rpc_kind:
(Polling_state_rpc
{ name = Polling_state_rpc.name rpc
; version = Polling_state_rpc.version rpc
; interval = Dispatch
})
dispatcher
;;
let babel_dispatcher
?sexp_of_query
?sexp_of_response
?on_forget_client_error
caller
~where_to_connect
=
let open Bonsai.Let_syntax in
let%sub dispatcher =
babel_dispatcher_internal ?on_forget_client_error caller ~where_to_connect
in
Our_rpc.maybe_track
~sexp_of_query
~sexp_of_response
~rpc_kind:
(Babel_polling_state_rpc
{ descriptions = Babel.Caller.descriptions caller; interval = Dispatch })
dispatcher
;;
let shared_poller
(type q cmp)
(module Q : Bonsai.Comparator with type t = q and type comparator_witness = cmp)
?sexp_of_response
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
=
let module M = struct
include Q
let equal a b = Q.comparator.compare a b = 0
end
in
Shared_poller.create
(module Q)
~f:(fun query ->
poll
~sexp_of_query:M.sexp_of_t
?sexp_of_response
~equal_query:[%equal: M.t]
?equal_response
?clear_when_deactivated
?on_response_received
rpc
~where_to_connect
~every
query)
;;
end
module Status = struct
open Bonsai.Let_syntax
module State = struct
type t =
| Connecting
| Connected
| Disconnected of Error.t
| Failed_to_connect of Error.t
[@@deriving sexp, equal]
end
let dispatcher ~where_to_connect =
Our_rpc.generic_dispatcher (fun connector (writeback : State.t -> unit) ->
match%map.Deferred
Connector.with_connection connector ~where_to_connect ~callback:(fun connection ->
writeback Connected;
upon (Rpc.Connection.close_reason connection ~on_close:`started) (fun reason ->
writeback (Disconnected (Error.of_info reason)));
Deferred.Or_error.return ())
with
| Ok () -> ()
| Error error ->
writeback (Failed_to_connect error))
;;
module Model = struct
type state =
| Initial
| State of State.t
[@@deriving sexp, equal]
type nonrec t =
{ state : state
; clock : (Bonsai.Time_source.t option[@sexp.opaque] [@equal.ignore])
; connecting_since : Time_ns.Alternate_sexp.t option
}
[@@deriving sexp, equal]
end
module Action = struct
type nonrec t =
| Set of State.t
| Activate of (Bonsai.Time_source.t[@sexp.opaque])
[@@deriving sexp_of]
end
module Result = struct
type t =
{ state : State.t
; connecting_since : Time_ns.Alternate_sexp.t option
}
[@@deriving sexp_of]
end
let state ~where_to_connect =
let%sub dispatcher = dispatcher ~where_to_connect in
let%sub model, inject =
Bonsai.state_machine1
~sexp_of_model:[%sexp_of: Model.t]
~equal:[%equal: Model.t]
~sexp_of_action:[%sexp_of: Action.t]
dispatcher
~default_model:{ state = Initial; clock = None; connecting_since = None }
~apply_action:(fun context dispatcher model action ->
let writeback a =
Bonsai.Apply_action_context.schedule_event
context
(Bonsai.Apply_action_context.inject context (Set a))
in
let state = model.state in
let new_state =
match action, dispatcher with
| Activate _, Inactive ->
state
| Activate _, Active dispatch ->
(match state with
| Initial | State (Disconnected _ | Failed_to_connect _) ->
Bonsai.Apply_action_context.schedule_event context (dispatch writeback);
State Connecting
| State (Connecting | Connected) ->
state)
| Set new_state, Active dispatch ->
(match new_state with
| Failed_to_connect _ | Disconnected _ ->
Bonsai.Apply_action_context.schedule_event context (dispatch writeback)
| Connected | Connecting -> ());
State new_state
| Set new_state, Inactive -> State new_state
in
let clock =
match action with
| Activate clock -> Some clock
| Set _ -> model.clock
in
let connecting_since =
let now () = Option.map ~f:Bonsai.Time_source.now clock in
match state with
| State Connected ->
(match new_state with
| State Connected -> model.connecting_since
| Initial | State (Connecting | Disconnected _ | Failed_to_connect _) ->
now ())
| Initial -> now ()
| State _ -> model.connecting_since
in
{ state = new_state; clock; connecting_since })
in
let%sub () =
let%sub clock = Bonsai.Incr.with_clock Ui_incr.return in
let%sub on_activate =
let%arr inject = inject
and clock = clock in
inject (Activate clock)
in
Bonsai.Edge.lifecycle ~on_activate ()
in
let%arr { Model.state; connecting_since; _ } = model in
let state =
match state with
| State status -> status
| Initial -> Connecting
in
let connecting_since =
match state with
| Connected -> None
| Connecting | Disconnected _ | Failed_to_connect _ -> connecting_since
in
{ Result.state; connecting_since }
;;
include Result
end
module Rpc = Our_rpc
module For_introspection = For_introspection