Source file rpc.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
open Core_kernel
open Async_kernel
open Util
module P = Protocol
module Description = Description
module Implementation = Implementation
module Implementations = Implementations
module Transport = Transport
module Connection = Connection
let (>>=~) = Result.(>>=)
let (>>|~) = Result.(>>|)
module Rpc_common = struct
let dispatch_raw' conn ~tag ~version ~bin_writer_query ~query ~query_id
~response_handler =
let query =
{ P.Query.
tag
; version
; id = query_id
; data = query
}
in
match Connection.dispatch conn ~response_handler ~bin_writer_query ~query with
| Ok () -> Ok ()
| Error `Closed -> Error Rpc_error.Connection_closed
let dispatch_raw conn ~tag ~version ~bin_writer_query ~query ~query_id ~f =
let response_ivar = Ivar.create () in
begin
match
dispatch_raw' conn ~tag ~version ~bin_writer_query ~query ~query_id
~response_handler:(Some (f response_ivar))
with
| Ok () -> ()
| Error _ as e -> Ivar.fill response_ivar e
end;
Ivar.read response_ivar
end
module Rpc = struct
type ('query,'response) t =
{ tag : P.Rpc_tag.t
; version : int
; bin_query : 'query Bin_prot.Type_class.t
; bin_response : 'response Bin_prot.Type_class.t
}
let create ~name ~version ~bin_query ~bin_response =
{ tag = P.Rpc_tag.of_string name
; version
; bin_query
; bin_response
}
let name t = P.Rpc_tag.to_string t.tag
let version t = t.version
let description t =
{ Description.
name = name t
; version = version t
}
let bin_query t = t.bin_query
let bin_response t = t.bin_response
let implement t f =
{ Implementation.
tag = t.tag
; version = t.version
; f = Rpc (t.bin_query.reader, t.bin_response.writer, f, Deferred)
}
let implement' t f =
{ Implementation.
tag = t.tag
; version = t.version
; f = Rpc (t.bin_query.reader, t.bin_response.writer, f, Blocking)
}
let dispatch' t conn query =
let response_handler ivar =
fun (response : _ P.Response.t) ~read_buffer ~read_buffer_pos_ref ->
let response =
response.data >>=~ fun len ->
bin_read_from_bigstring t.bin_response.reader
read_buffer ~pos_ref:read_buffer_pos_ref ~len
~location:"client-side rpc response un-bin-io'ing"
in
Ivar.fill ivar response;
`remove (Ok ())
in
let query_id = P.Query_id.create () in
Rpc_common.dispatch_raw conn ~tag:t.tag ~version:t.version
~bin_writer_query:t.bin_query.writer ~query ~query_id
~f:response_handler
let rpc_result_to_or_error t conn result =
Rpc_result.or_error result
~rpc_tag:t.tag
~rpc_version:t.version
~connection_description:(Connection.description conn)
~connection_close_started:(Connection.close_reason ~on_close:`started conn)
let dispatch t conn query =
dispatch' t conn query
>>| fun result -> rpc_result_to_or_error t conn result
let dispatch_exn t conn query = dispatch t conn query >>| Or_error.ok_exn
module Expert = struct
module Responder = Implementations.Expert.Rpc_responder
let make_dispatch do_dispatch conn ~rpc_tag ~version buf ~pos ~len ~handle_response
~handle_error
=
let response_handler : Connection.response_handler =
fun response ~read_buffer ~read_buffer_pos_ref ->
match response.data with
| Error e ->
handle_error (Error.t_of_sexp (
Rpc_error.sexp_of_t ~get_connection_close_reason:(fun () ->
[%sexp
(Deferred.peek (
Connection.close_reason ~on_close:`started conn) : Info.t option)])
e));
`remove (Ok ())
| Ok len ->
let len = (len : Nat0.t :> int) in
let d = handle_response read_buffer ~pos:!read_buffer_pos_ref ~len in
read_buffer_pos_ref := !read_buffer_pos_ref + len;
if Deferred.is_determined d
then `remove (Ok ())
else `remove_and_wait d
in
do_dispatch conn ~tag:(P.Rpc_tag.of_string rpc_tag) ~version
buf ~pos ~len ~response_handler:(Some response_handler)
let dispatch conn ~rpc_tag ~version buf ~pos ~len ~handle_response
~handle_error
=
match
make_dispatch Connection.dispatch_bigstring
conn ~rpc_tag ~version buf ~pos ~len ~handle_response ~handle_error
with
| Ok () -> `Ok
| Error `Closed -> `Connection_closed
let schedule_dispatch conn ~rpc_tag ~version buf ~pos ~len ~handle_response
~handle_error
=
match
make_dispatch Connection.schedule_dispatch_bigstring
conn ~rpc_tag ~version buf ~pos ~len ~handle_response ~handle_error
with
| Ok d -> `Flushed d
| Error `Closed -> `Connection_closed
type implementation_result = Implementation.Expert.implementation_result =
| Replied
| Delayed_response of unit Deferred.t
let implement t f =
{ Implementation.
tag = t.tag
; version = t.version
; f = Rpc_expert (f, Deferred)
}
let implement' t f =
{ Implementation.
tag = t.tag
; version = t.version
; f = Rpc_expert (f, Blocking)
}
let implement_for_tag_and_version ~rpc_tag ~version f =
{ Implementation.
tag = P.Rpc_tag.of_string rpc_tag
; version = version
; f = Rpc_expert (f, Deferred)
}
let implement_for_tag_and_version' ~rpc_tag ~version f =
{ Implementation.
tag = P.Rpc_tag.of_string rpc_tag
; version = version
; f = Rpc_expert (f, Blocking)
}
end
end
module One_way = struct
type 'msg t =
{ tag : P.Rpc_tag.t
; version : int
; bin_msg : 'msg Bin_prot.Type_class.t
} [@@deriving fields]
let name t = P.Rpc_tag.to_string t.tag
let create ~name ~version ~bin_msg =
{ tag = P.Rpc_tag.of_string name
; version
; bin_msg
}
let description t =
{ Description.
name = name t
; version = version t
}
let implement t f =
{ Implementation.
tag = t.tag
; version = t.version
; f = One_way (t.bin_msg.reader, f)
}
let dispatch' t conn query =
let query_id = P.Query_id.create () in
Rpc_common.dispatch_raw' conn ~tag:t.tag ~version:t.version
~bin_writer_query:t.bin_msg.writer ~query ~query_id ~response_handler:None
let rpc_result_to_or_error t conn result =
Rpc_result.or_error result
~rpc_tag:t.tag
~rpc_version:t.version
~connection_description:(Connection.description conn)
~connection_close_started:(Connection.close_reason ~on_close:`started conn)
let dispatch t conn query =
dispatch' t conn query
|> fun result -> rpc_result_to_or_error t conn result
let dispatch_exn t conn query = Or_error.ok_exn (dispatch t conn query)
module Expert = struct
let implement t f =
{ Implementation.
tag = t.tag;
version = t.version;
f = One_way_expert f;
}
let dispatch {tag; version; bin_msg = _} conn buf ~pos ~len =
match
Connection.dispatch_bigstring
conn ~tag ~version buf ~pos ~len ~response_handler:None
with
| Ok () -> `Ok
| Error `Closed -> `Connection_closed
let schedule_dispatch {tag; version; bin_msg = _} conn buf ~pos ~len =
match
Connection.schedule_dispatch_bigstring
conn ~tag ~version buf ~pos ~len ~response_handler:None
with
| Ok flushed -> `Flushed flushed
| Error `Closed -> `Connection_closed
end
end
module Pipe_close_reason = struct
type t =
| Closed_locally
| Closed_remotely
| Error of Error.t
[@@deriving bin_io, compare, sexp]
module Stable = struct
module V1 = struct
type nonrec t = t =
| Closed_locally
| Closed_remotely
| Error of Error.Stable.V2.t
[@@deriving bin_io, compare, sexp]
end
end
end
module Streaming_rpc = struct
module Initial_message = P.Stream_initial_message
type ('query, 'initial_response, 'update_response, 'error_response) t =
{ tag : P.Rpc_tag.t
; version : int
; bin_query : 'query Bin_prot.Type_class.t
; bin_initial_response : 'initial_response Bin_prot.Type_class.t
; bin_update_response : 'update_response Bin_prot.Type_class.t
; bin_error_response : 'error_response Bin_prot.Type_class.t
; client_pushes_back : bool
}
let create ?client_pushes_back ~name ~version ~bin_query ~bin_initial_response
~bin_update_response ~bin_error () =
let client_pushes_back =
match client_pushes_back with
| None -> false
| Some () -> true
in
{ tag = P.Rpc_tag.of_string name
; version
; bin_query
; bin_initial_response
; bin_update_response
; bin_error_response = bin_error
; client_pushes_back
}
let make_initial_message x =
{ Initial_message.
unused_query_id = P.Unused_query_id.t
; initial = x
}
let implement_gen t impl =
let bin_init_writer =
Initial_message.bin_writer_t
t.bin_initial_response.writer
t.bin_error_response.writer
in
{ Implementation.
tag = t.tag
; version = t.version
; f =
Streaming_rpc (
t.bin_query.reader,
bin_init_writer,
t.bin_update_response.writer,
impl
);
}
;;
let implement t f =
let f c query =
f c query
>>| function
| Error err -> Error (make_initial_message (Error err))
| Ok (initial, pipe) -> Ok (make_initial_message (Ok initial), pipe)
in
implement_gen t (Pipe f)
;;
let implement_direct t f =
let f c query writer =
f c query writer
>>| function
| Error _ as x -> Error (make_initial_message x)
| Ok _ as x -> Ok (make_initial_message x)
in
implement_gen t (Direct f)
;;
let abort t conn id =
let query =
{ P.Query.
tag = t.tag
; version = t.version
; id
; data = `Abort
}
in
ignore (
Connection.dispatch conn ~bin_writer_query:P.Stream_query.bin_writer_nat0_t ~query
~response_handler:None : (unit,[`Closed]) Result.t
)
module Pipe_message = struct
type 'a t =
| Update of 'a
| Closed of [`By_remote_side | `Error of Error.t]
end
module Pipe_response = struct
type t =
| Continue
| Wait of unit Deferred.t
end
module Pipe_metadata = struct
type t = {
query_id : P.Query_id.t;
close_reason : Pipe_close_reason.t Deferred.t;
}
let id t = t.query_id
let close_reason t = t.close_reason
end
module Response_state = struct
module Update_handler = struct
type 'a t = 'a Pipe_message.t -> Pipe_response.t
end
module Initial = struct
type nonrec ('q, 'i, 'u, 'e, 'extra) t = {
rpc : ('q, 'i, 'u, 'e) t;
query_id : P.Query_id.t;
make_update_handler : (unit -> 'extra * 'u Update_handler.t);
ivar : (P.Query_id.t * 'i * 'extra, 'e) Result.t Rpc_result.t Ivar.t;
connection : Connection.t;
}
end
module State = struct
type 'a t =
| Waiting_for_initial_response : ('q, 'i, 'u, 'e, 'extra) Initial.t -> 'u t
| Writing_updates of 'a Bin_prot.Type_class.reader * 'a Update_handler.t
end
type 'a t = { mutable state : 'a State.t }
end
let read_error
~get_connection_close_reason (handler : _ Response_state.Update_handler.t) err =
let core_err =
Error.t_of_sexp (Rpc_error.sexp_of_t ~get_connection_close_reason err)
in
ignore (handler (Closed (`Error core_err)) : Pipe_response.t);
`remove (Error err)
let eof (handler : _ Response_state.Update_handler.t) =
ignore (handler (Closed `By_remote_side) : Pipe_response.t);
`remove (Ok ())
let response_handler ~get_connection_close_reason initial_state : Connection.response_handler =
let open Response_state in
let state = { state = Waiting_for_initial_response initial_state } in
fun response ~read_buffer ~read_buffer_pos_ref ->
match state.state with
| Writing_updates (bin_reader_update, handler) ->
begin match response.data with
| Error err ->
read_error ~get_connection_close_reason handler err
| Ok len ->
let data =
bin_read_from_bigstring
P.Stream_response_data.bin_reader_nat0_t
read_buffer ~pos_ref:read_buffer_pos_ref ~len
~location:"client-side streaming_rpc response un-bin-io'ing"
~add_len:(function `Eof -> 0 | `Ok (len : Nat0.t) -> (len :> int))
in
match data with
| Error err ->
read_error ~get_connection_close_reason handler err
| Ok `Eof ->
eof handler
| Ok (`Ok len) ->
let data =
bin_read_from_bigstring bin_reader_update
read_buffer ~pos_ref:read_buffer_pos_ref ~len
~location:"client-side streaming_rpc response un-bin-io'ing"
in
match data with
| Error err ->
read_error ~get_connection_close_reason handler err
| Ok data ->
match handler (Update data) with
| Continue -> `keep
| Wait d -> `wait d
end
| State.Waiting_for_initial_response initial_handler ->
let error err =
Ivar.fill initial_handler.ivar (Error err);
`remove (Ok ())
in
begin match response.data with
| Error err -> error err
| Ok len ->
let initial =
bin_read_from_bigstring
(Initial_message.bin_reader_t
initial_handler.rpc.bin_initial_response.reader
initial_handler.rpc.bin_error_response.reader)
read_buffer ~pos_ref:read_buffer_pos_ref ~len
~location:"client-side streaming_rpc initial_response un-bin-io'ing"
in
begin match initial with
| Error err -> error err
| Ok initial_msg ->
begin match initial_msg.initial with
| Error err ->
Ivar.fill initial_handler.ivar (Ok (Error err));
`remove (Ok ())
| Ok initial ->
let (extra, handler) = initial_handler.make_update_handler () in
Ivar.fill initial_handler.ivar
(Ok (Ok (initial_handler.query_id, initial, extra)));
state.state <-
Writing_updates (initial_handler.rpc.bin_update_response.reader, handler);
`keep
end
end
end
;;
let dispatch_gen t conn query make_update_handler =
let bin_writer_query =
P.Stream_query.bin_writer_needs_length (Writer_with_length.of_type_class t.bin_query)
in
let query = `Query query in
let query_id = P.Query_id.create () in
Rpc_common.dispatch_raw conn ~query_id ~tag:t.tag ~version:t.version
~bin_writer_query ~query
~f:(fun ivar ->
response_handler ~get_connection_close_reason:(fun () ->
[%sexp
(Deferred.peek (Connection.close_reason ~on_close:`started conn)
: Info.t option)
]
) {
rpc = t;
query_id;
connection = conn;
ivar;
make_update_handler;
})
>>| Rpc_result.or_error
~rpc_tag:t.tag
~rpc_version:t.version
~connection_description:(Connection.description conn)
~connection_close_started:(Connection.close_reason ~on_close:`started conn)
;;
let dispatch_iter t conn query ~f =
dispatch_gen t conn query (fun () -> (), f)
>>| function
| Error _ | Ok (Error _) as e -> e
| Ok (Ok (id, init, ())) -> Ok (Ok (id, init))
;;
let dispatch t conn query =
dispatch_gen t conn query (fun () ->
let (pipe_r, pipe_w) = Pipe.create () in
Pipe.set_size_budget pipe_w 100;
let close_reason : Pipe_close_reason.t Ivar.t = Ivar.create () in
let f : _ Response_state.Update_handler.t = function
| Update data ->
if not (Pipe.is_closed pipe_w) then begin
Pipe.write_without_pushback pipe_w data;
if t.client_pushes_back && Pipe.length pipe_w >= Pipe.size_budget pipe_w then
Wait
(Pipe.downstream_flushed pipe_w
>>| function
| `Ok
| `Reader_closed -> ())
else
Continue
end else
Continue
| Closed reason ->
Ivar.fill_if_empty close_reason
(match reason with
| `By_remote_side -> Closed_remotely
| `Error err -> Error err);
Pipe.close pipe_w;
Continue
in
((pipe_r, close_reason), f)
)
>>| function
| Error _ | Ok (Error _) as e -> e
| Ok (Ok (id, init, (pipe_r, close_reason))) ->
upon (Pipe.closed pipe_r) (fun () ->
if not (Ivar.is_full close_reason) then begin
abort t conn id;
Ivar.fill_if_empty close_reason Closed_locally;
end);
let pipe_metadata : Pipe_metadata.t =
{ query_id = id;
close_reason = Ivar.read close_reason;
}
in
Ok (Ok (pipe_metadata, init, pipe_r))
;;
end
module Pipe_rpc = struct
type ('query, 'response, 'error) t = ('query, unit, 'response, 'error) Streaming_rpc.t
module Id = P.Query_id
module Metadata = Streaming_rpc.Pipe_metadata
let create ?client_pushes_back ~name ~version ~bin_query ~bin_response ~bin_error () =
Streaming_rpc.create
?client_pushes_back
~name ~version ~bin_query
~bin_initial_response: Unit.bin_t
~bin_update_response: bin_response
~bin_error
()
let bin_query t = t.Streaming_rpc.bin_query
let bin_response t = t.Streaming_rpc.bin_update_response
let bin_error t = t.Streaming_rpc.bin_error_response
let client_pushes_back t = t.Streaming_rpc.client_pushes_back
let implement t f =
Streaming_rpc.implement t (fun a query ->
f a query >>| fun x ->
x >>|~ fun x -> (), x
)
module Direct_stream_writer = struct
include Implementations.Direct_stream_writer
module Group = struct
module Buffer = struct
type t = Bigstring.t ref
let create ?(initial_size=4096) () =
if initial_size < 0 then
failwiths ~here:[%here]
"Rpc.Pipe_rpc.Direct_stream_writer.Group.Buffer.create \
got negative buffer size"
initial_size Int.sexp_of_t;
ref (Bigstring.create initial_size)
end
type 'a direct_stream_writer = 'a t
module T = Implementation_types.Direct_stream_writer
type 'a t = 'a T.Group.t =
{ mutable components : 'a direct_stream_writer Bag.t
; components_by_id : 'a component Id.Table.t
; buffer : Bigstring.t ref
}
and 'a component = 'a T.Group.component =
{ writer_element_in_group : 'a direct_stream_writer Bag.Elt.t
; group_element_in_writer : 'a T.group_entry Bag.Elt.t
}
let create ?buffer () =
let buffer =
match buffer with
| None -> Buffer.create ()
| Some b -> b
in
{ components = Bag.create ()
; components_by_id = Id.Table.create ()
; buffer
}
;;
let length t = Bag.length t.components
let add_exn t (writer : _ Implementations.Direct_stream_writer.t) =
if is_closed writer then
failwith "Rpc.Pipe_rpc.Direct_stream_writer.Group.add_exn: \
cannot add a closed direct stream writer";
if Hashtbl.mem t.components_by_id writer.id then
failwith "Rpc.Pipe_rpc.Direct_stream_writer.Group.add_exn: \
trying to add a direct stream writer that is already present \
in the group";
(match Bag.choose t.components with
| None -> ()
| Some one ->
let one = Bag.Elt.value one in
if not (phys_equal (bin_writer one) (bin_writer writer)) then
failwith "Rpc.Pipe_rpc.Direct_stream_writer.Group.add: \
cannot add a direct stream writer with a different bin_writer");
let writer_element_in_group = Bag.add t.components writer in
let group_element_in_writer =
Bag.add writer.groups
{ group = t
; element_in_group = writer_element_in_group
}
in
Hashtbl.add_exn t.components_by_id ~key:writer.id
~data:{ writer_element_in_group
; group_element_in_writer
};
;;
let remove t (writer : _ Implementations.Direct_stream_writer.t) =
match Hashtbl.find_and_remove t.components_by_id writer.id with
| None -> ()
| Some { writer_element_in_group; group_element_in_writer } ->
Bag.remove t.components writer_element_in_group;
Bag.remove writer.groups group_element_in_writer;
;;
let to_list t = Bag.to_list t.components
let flushed_or_closed t =
to_list t
|> List.map ~f:(fun t -> Deferred.any_unit [flushed t; closed t])
|> Deferred.all_unit
;;
let flushed t = flushed_or_closed t
module Expert = struct
let write_without_pushback t ~buf ~pos ~len =
Bag.iter t.components ~f:(fun direct_stream_writer ->
ignore
(Expert.write_without_pushback direct_stream_writer ~buf ~pos ~len
: [ `Ok | `Closed ]))
;;
let write t ~buf ~pos ~len =
write_without_pushback t ~buf ~pos ~len;
flushed_or_closed t
;;
end
let write_without_pushback t x =
match Bag.choose t.components with
| None -> ()
| Some one ->
let one = Bag.Elt.value one in
let { Bin_prot.Type_class. write; size } = bin_writer one in
let buffer = !(t.buffer) in
match write buffer ~pos:0 x with
| len ->
Expert.write_without_pushback t ~buf:buffer ~pos:0 ~len
| exception _ ->
let len = size x in
Bigstring.unsafe_destroy buffer;
let buffer = Bigstring.create (Int.ceil_pow2 len) in
t.buffer := buffer;
let len = write buffer ~pos:0 x in
Expert.write_without_pushback t ~buf:buffer ~pos:0 ~len
;;
let write t x =
write_without_pushback t x;
flushed_or_closed t
;;
end
end
let implement_direct t f = Streaming_rpc.implement_direct t f
let dispatch t conn query =
Streaming_rpc.dispatch t conn query >>| fun response ->
response >>|~ fun x ->
x >>|~ fun (metadata, (), pipe_r) ->
pipe_r, metadata
exception Pipe_rpc_failed
let dispatch_exn t conn query =
dispatch t conn query
>>| fun result ->
match result with
| Error rpc_error -> raise (Error.to_exn rpc_error)
| Ok (Error _) -> raise Pipe_rpc_failed
| Ok (Ok pipe_and_id) -> pipe_and_id
module Pipe_message = Streaming_rpc.Pipe_message
module Pipe_response = Streaming_rpc.Pipe_response
let dispatch_iter t conn query ~f =
Streaming_rpc.dispatch_iter t conn query ~f >>| fun response ->
response >>|~ fun x ->
x >>|~ fun (id, ()) ->
id
let abort = Streaming_rpc.abort
let close_reason = Streaming_rpc.Pipe_metadata.close_reason
let name t = P.Rpc_tag.to_string t.Streaming_rpc.tag
let version t = t.Streaming_rpc.version
let description t =
{ Description.
name = name t
; version = version t
}
end
module State_rpc = struct
type ('query, 'initial, 'response, 'error) t =
('query, 'initial, 'response, 'error) Streaming_rpc.t
module Id = P.Query_id
module Metadata = Streaming_rpc.Pipe_metadata
let create ?client_pushes_back ~name ~version ~bin_query ~bin_state ~bin_update
~bin_error () =
Streaming_rpc.create
?client_pushes_back
~name ~version ~bin_query
~bin_initial_response:bin_state
~bin_update_response:bin_update
~bin_error
()
let bin_query t = t.Streaming_rpc.bin_query
let bin_state t = t.Streaming_rpc.bin_initial_response
let bin_update t = t.Streaming_rpc.bin_update_response
let bin_error t = t.Streaming_rpc.bin_error_response
let implement = Streaming_rpc.implement
let dispatch t conn query =
Streaming_rpc.dispatch t conn query >>| fun response ->
response >>|~ fun x ->
x >>|~ fun (metadata, state, update_r) ->
state, update_r, metadata
let abort = Streaming_rpc.abort
let close_reason = Streaming_rpc.Pipe_metadata.close_reason
let client_pushes_back t = t.Streaming_rpc.client_pushes_back
let name t = P.Rpc_tag.to_string t.Streaming_rpc.tag
let version t = t.Streaming_rpc.version
let description t =
{ Description.
name = name t
; version = version t
}
end
module Any = struct
type t =
| Rpc : ('q, 'r) Rpc.t -> t
| Pipe : ('q, 'r, 'e) Pipe_rpc.t -> t
| State : ('q, 's, 'u, 'e) State_rpc.t -> t
| One_way : 'm One_way.t -> t
let description = function
| Rpc rpc -> Rpc.description rpc
| Pipe rpc -> Pipe_rpc.description rpc
| State rpc -> State_rpc.description rpc
| One_way rpc -> One_way.description rpc
end
module Stable = struct
module Description = Description.Stable
module Pipe_close_reason = Pipe_close_reason.Stable
module Rpc = Rpc
module Pipe_rpc = Pipe_rpc
module State_rpc = State_rpc
module One_way = One_way
end