Source file pipe.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
open Core_kernel
open Import
open Deferred_std
module Stream = Async_stream
module Q = Queue
let show_debug_messages = ref false
let check_invariant = ref false
module Flushed_result = struct
type t =
[ `Ok
| `Reader_closed
]
[@@deriving compare, sexp_of]
let equal = [%compare.equal: t]
let combine (l : t Deferred.t list) =
let%map l = Deferred.all l in
match List.mem l `Reader_closed ~equal with
| true -> `Reader_closed
| false -> `Ok
;;
end
module Consumer : sig
type t [@@deriving sexp_of]
include Invariant.S with type t := t
val create
: pipe_id:int
-> downstream_flushed:(unit -> Flushed_result.t Deferred.t)
-> t
val pipe_id : t -> int
val start : t -> unit
val values_sent_downstream : t -> unit
val values_sent_downstream_and_flushed : t -> Flushed_result.t Deferred.t
end = struct
type t =
{ pipe_id : int
;
mutable values_read :
[ `Have_been_sent_downstream | `Have_not_been_sent_downstream of unit Ivar.t ]
;
downstream_flushed : unit -> Flushed_result.t Deferred.t
}
[@@deriving fields, sexp_of]
let invariant t : unit =
try
let check f field = f (Field.get field t) in
Fields.iter
~pipe_id:ignore
~values_read:
(check (function
| `Have_been_sent_downstream -> ()
| `Have_not_been_sent_downstream ivar -> assert (Ivar.is_empty ivar)))
~downstream_flushed:ignore
with
| exn ->
raise_s [%message "Pipe.Consumer.invariant failed" (exn : exn) ~pipe:(t : t)]
;;
let create ~pipe_id ~downstream_flushed =
{ pipe_id; values_read = `Have_been_sent_downstream; downstream_flushed }
;;
let start t =
match t.values_read with
| `Have_not_been_sent_downstream _ -> ()
| `Have_been_sent_downstream ->
t.values_read <- `Have_not_been_sent_downstream (Ivar.create ())
;;
let values_sent_downstream t =
match t.values_read with
| `Have_been_sent_downstream -> ()
| `Have_not_been_sent_downstream ivar ->
Ivar.fill ivar ();
t.values_read <- `Have_been_sent_downstream
;;
let values_sent_downstream_and_flushed t =
match t.values_read with
| `Have_been_sent_downstream -> t.downstream_flushed ()
| `Have_not_been_sent_downstream when_sent_downstream ->
let%bind () = Ivar.read when_sent_downstream in
t.downstream_flushed ()
;;
end
module Blocked_read = struct
type 'a wants =
| Zero of [ `Eof | `Ok ] Ivar.t
| One of [ `Eof | `Ok of 'a ] Ivar.t
| At_most of int * [ `Eof | `Ok of 'a Q.t ] Ivar.t
[@@deriving sexp_of]
type 'a t =
{ wants : 'a wants
; consumer : Consumer.t option
}
[@@deriving fields, sexp_of]
let invariant t : unit =
try
let check f field = f (Field.get field t) in
Fields.iter
~wants:
(check (function
| Zero _ | One _ -> ()
| At_most (i, _) -> assert (i > 0)))
~consumer:
(check (function
| None -> ()
| Some consumer -> Consumer.invariant consumer))
with
| exn ->
raise_s [%message "Pipe.Blocked_read.invariant failed" (exn : exn) ~pipe:(t : _ t)]
;;
let create wants consumer = { wants; consumer }
let is_empty t =
match t.wants with
| Zero i -> Ivar.is_empty i
| One i -> Ivar.is_empty i
| At_most (_, i) -> Ivar.is_empty i
;;
let fill_with_eof t =
match t.wants with
| Zero i -> Ivar.fill i `Eof
| One i -> Ivar.fill i `Eof
| At_most (_, i) -> Ivar.fill i `Eof
;;
end
module Blocked_flush = struct
type t =
{ fill_when_num_values_read : int
; ready : [ `Ok | `Reader_closed ] Ivar.t
}
[@@deriving fields, sexp_of]
let fill t v = Ivar.fill t.ready v
end
type ('a, 'phantom) t =
{
id : int
; mutable buffer : 'a Q.t
;
mutable size_budget : int
;
mutable pushback : unit Ivar.t
;
mutable num_values_read : int
;
blocked_flushes : Blocked_flush.t Q.t
;
blocked_reads : 'a Blocked_read.t Q.t
;
closed : unit Ivar.t
;
read_closed : unit Ivar.t
;
mutable consumers : Consumer.t list
;
upstream_flusheds : (unit -> Flushed_result.t Deferred.t) Bag.t
}
[@@deriving fields, sexp_of]
type ('a, 'phantom) pipe = ('a, 'phantom) t [@@deriving sexp_of]
let hash t = Hashtbl.hash t.id
let equal (t1 : (_, _) t) t2 = phys_equal t1 t2
let compare t1 t2 = Int.compare t1.id t2.id
let is_closed t = Ivar.is_full t.closed
let is_read_closed t = Ivar.is_full t.read_closed
let closed t = Ivar.read t.closed
let pushback t = Ivar.read t.pushback
let length t = Q.length t.buffer
let is_empty t = length t = 0
let invariant t : unit =
try
let check f field = f (Field.get field t) in
Fields.iter
~id:ignore
~buffer:ignore
~size_budget:(check (fun size_budget -> assert (size_budget >= 0)))
~pushback:
(check (fun pushback ->
assert (
Bool.equal
(Ivar.is_full pushback)
(length t <= t.size_budget || is_closed t))))
~num_values_read:ignore
~blocked_flushes:
(check (fun blocked_flushes ->
Q.iter blocked_flushes ~f:(fun (f : Blocked_flush.t) ->
assert (f.fill_when_num_values_read > t.num_values_read));
assert (
List.is_sorted
~compare:Int.compare
(List.map
(Q.to_list blocked_flushes)
~f:Blocked_flush.fill_when_num_values_read));
if is_empty t then assert (Q.is_empty blocked_flushes)))
~blocked_reads:
(check (fun blocked_reads ->
if not (is_empty t) then assert (Q.is_empty blocked_reads);
Q.iter blocked_reads ~f:(fun read ->
Blocked_read.invariant read;
assert (Blocked_read.is_empty read));
if is_closed t then assert (Q.is_empty blocked_reads)))
~closed:ignore
~read_closed:ignore
~consumers:
(check (fun l ->
List.iter l ~f:(fun consumer ->
Consumer.invariant consumer;
assert (Consumer.pipe_id consumer = t.id))))
~upstream_flusheds:ignore
with
| exn -> raise_s [%message "Pipe.invariant failed" (exn : exn) ~pipe:(t : (_, _) t)]
;;
module Reader = struct
type phantom [@@deriving sexp_of]
type 'a t = ('a, phantom) pipe [@@deriving sexp_of]
let invariant = invariant
end
module Writer = struct
type phantom [@@deriving sexp_of]
type 'a t = ('a, phantom) pipe [@@deriving sexp_of]
let invariant = invariant
end
let id_ref = ref 0
let create_internal ~initial_buffer =
incr id_ref;
let t =
{ id = !id_ref
; closed = Ivar.create ()
; read_closed = Ivar.create ()
;
size_budget = 0
; pushback = Ivar.create ()
; buffer = initial_buffer
; num_values_read = 0
; blocked_flushes = Q.create ()
; blocked_reads = Q.create ()
; consumers = []
; upstream_flusheds = Bag.create ()
}
in
t
;;
let create () =
let t = create_internal ~initial_buffer:(Q.create ()) in
Ivar.fill t.pushback ();
if !check_invariant then invariant t;
t, t
;;
let update_pushback t =
if length t <= t.size_budget || is_closed t
then Ivar.fill_if_empty t.pushback ()
else if Ivar.is_full t.pushback
then t.pushback <- Ivar.create ()
;;
let close t =
if !show_debug_messages then eprints "close" t [%sexp_of: (_, _) t];
if !check_invariant then invariant t;
if not (is_closed t)
then (
Ivar.fill t.closed ();
if is_empty t
then (
Q.iter t.blocked_reads ~f:Blocked_read.fill_with_eof;
Q.clear t.blocked_reads);
update_pushback t)
;;
let close_read t =
if !show_debug_messages then eprints "close_read" t [%sexp_of: (_, _) t];
if !check_invariant then invariant t;
if not (is_read_closed t)
then (
Ivar.fill t.read_closed ();
Q.iter t.blocked_flushes ~f:(fun flush -> Blocked_flush.fill flush `Reader_closed);
Q.clear t.blocked_flushes;
Q.clear t.buffer;
update_pushback t;
close t)
;;
let create_reader ~close_on_exception f =
let r, w = create () in
if not close_on_exception
then upon (f w) (fun () -> close w)
else
don't_wait_for
(Monitor.protect
(fun () -> f w)
~finally:(fun () ->
close w;
return ()));
r
;;
let init f = create_reader ~close_on_exception:true f
let create_writer f =
let r, w = create () in
don't_wait_for
(Monitor.protect
(fun () -> f r)
~finally:(fun () ->
close_read r;
return ()));
w
;;
let values_were_read t consumer =
Option.iter consumer ~f:Consumer.start;
let rec loop () =
match Q.peek t.blocked_flushes with
| None -> ()
| Some flush ->
if t.num_values_read >= flush.fill_when_num_values_read
then (
ignore (Q.dequeue_exn t.blocked_flushes : Blocked_flush.t);
(match consumer with
| None -> Blocked_flush.fill flush `Ok
| Some consumer ->
upon
(Consumer.values_sent_downstream_and_flushed consumer)
(fun flush_result -> Blocked_flush.fill flush flush_result));
loop ())
in
loop ()
;;
let consume_all t consumer =
let result = t.buffer in
t.buffer <- Q.create ();
t.num_values_read <- t.num_values_read + Q.length result;
values_were_read t consumer;
update_pushback t;
result
;;
let consume_one t consumer =
assert (length t >= 1);
let result = Q.dequeue_exn t.buffer in
t.num_values_read <- t.num_values_read + 1;
values_were_read t consumer;
update_pushback t;
result
;;
let consume t ~max_queue_length consumer =
assert (max_queue_length >= 0);
if max_queue_length >= length t
then consume_all t consumer
else (
t.num_values_read <- t.num_values_read + max_queue_length;
values_were_read t consumer;
let result = Q.create ~capacity:max_queue_length () in
Q.blit_transfer ~src:t.buffer ~dst:result ~len:max_queue_length ();
update_pushback t;
result)
;;
let set_size_budget t size_budget =
if size_budget < 0 then raise_s [%message "negative size_budget" (size_budget : int)];
t.size_budget <- size_budget;
update_pushback t
;;
let fill_blocked_reads t =
while (not (Q.is_empty t.blocked_reads)) && not (is_empty t) do
let blocked_read = Q.dequeue_exn t.blocked_reads in
let consumer = blocked_read.consumer in
match blocked_read.wants with
| Zero ivar -> Ivar.fill ivar `Ok
| One ivar -> Ivar.fill ivar (`Ok (consume_one t consumer))
| At_most (max_queue_length, ivar) ->
Ivar.fill ivar (`Ok (consume t ~max_queue_length consumer))
done
;;
let start_write t =
if !show_debug_messages then eprints "write" t [%sexp_of: (_, _) t];
if !check_invariant then invariant t;
if is_closed t then raise_s [%message "write to closed pipe" ~pipe:(t : (_, _) t)]
;;
let finish_write t =
fill_blocked_reads t;
update_pushback t
;;
let transfer_in_without_pushback t ~from =
start_write t;
Q.blit_transfer ~src:from ~dst:t.buffer ();
finish_write t
;;
let transfer_in t ~from =
transfer_in_without_pushback t ~from;
pushback t
;;
let copy_in_without_pushback t ~from =
start_write t;
Queue.iter from ~f:(fun x -> Queue.enqueue t.buffer x);
finish_write t
;;
let write' t q = transfer_in t ~from:q
let write_without_pushback t value =
start_write t;
Q.enqueue t.buffer value;
finish_write t
;;
let write t value =
write_without_pushback t value;
pushback t
;;
let write_when_ready t ~f =
let%map () = pushback t in
if is_closed t then `Closed else `Ok (f (fun x -> write_without_pushback t x))
;;
let write_if_open t x = if not (is_closed t) then write t x else return ()
let write_without_pushback_if_open t x =
if not (is_closed t) then write_without_pushback t x
;;
let ensure_consumer_matches ?consumer t =
match consumer with
| None -> ()
| Some consumer ->
if t.id <> Consumer.pipe_id consumer
then
raise_s
[%message
"Attempt to use consumer with wrong pipe"
(consumer : Consumer.t)
~pipe:(t : _ Reader.t)]
;;
let start_read ?consumer t label =
if !show_debug_messages then eprints label t [%sexp_of: (_, _) t];
if !check_invariant then invariant t;
ensure_consumer_matches t ?consumer
;;
let gen_read_now ?consumer t consume =
start_read t "read_now" ?consumer;
if is_empty t
then if is_closed t then `Eof else `Nothing_available
else (
assert (Q.is_empty t.blocked_reads);
`Ok (consume t consumer))
;;
let get_max_queue_length ~max_queue_length =
match max_queue_length with
| None -> Int.max_value
| Some max_queue_length ->
if max_queue_length <= 0
then raise_s [%message "max_queue_length <= 0" (max_queue_length : int)];
max_queue_length
;;
let read_now' ?consumer ?max_queue_length t =
let max_queue_length = get_max_queue_length ~max_queue_length in
gen_read_now t ?consumer (fun t consumer -> consume t ~max_queue_length consumer)
;;
let read_now ?consumer t = gen_read_now t ?consumer consume_one
let read_now_at_most ?consumer t ~num_values =
read_now' t ?consumer ~max_queue_length:num_values
;;
let peek t = Queue.peek t.buffer
let clear t =
match read_now' t with
| `Eof | `Nothing_available | `Ok _ -> ()
;;
let read' ?consumer ?max_queue_length t =
let max_queue_length = get_max_queue_length ~max_queue_length in
start_read t "read'" ?consumer;
match read_now' t ?consumer ~max_queue_length with
| (`Ok _ | `Eof) as r -> return r
| `Nothing_available ->
Deferred.create (fun ivar ->
Q.enqueue
t.blocked_reads
(Blocked_read.create (At_most (max_queue_length, ivar)) consumer))
;;
let read ?consumer t =
start_read t "read" ?consumer;
if is_empty t
then
if is_closed t
then return `Eof
else
Deferred.create (fun ivar ->
Q.enqueue t.blocked_reads (Blocked_read.(create (One ivar)) consumer))
else (
assert (Q.is_empty t.blocked_reads);
return (`Ok (consume_one t consumer)))
;;
let read_at_most ?consumer t ~num_values = read' t ?consumer ~max_queue_length:num_values
let values_available t =
start_read t "values_available";
if not (is_empty t)
then return `Ok
else if is_closed t
then return `Eof
else (
match Queue.last t.blocked_reads with
| Some { consumer = None; wants = Zero ivar } ->
Ivar.read ivar
| _ ->
Deferred.create (fun ivar ->
Q.enqueue t.blocked_reads (Blocked_read.(create (Zero ivar)) None)))
;;
let read_choice t = choice (values_available t) (fun (_ : [ `Ok | `Eof ]) -> read_now t)
let read_choice_single_consumer_exn t here =
Deferred.Choice.map (read_choice t) ~f:(function
| (`Ok _ | `Eof) as x -> x
| `Nothing_available ->
raise_s
[%message
"Pipe.read_choice_single_consumer_exn: choice was enabled but pipe is \
empty; this is likely due to a race condition with one or more other \
consumers"
(here : Source_code_position.t)])
;;
let read_exactly ?consumer t ~num_values =
start_read t "read_exactly" ?consumer;
if num_values <= 0
then raise_s [%message "Pipe.read_exactly got num_values <= 0" (num_values : int)];
Deferred.create (fun finish ->
let result = Q.create () in
let rec loop () =
let already_read = Q.length result in
assert (already_read <= num_values);
if already_read = num_values
then Ivar.fill finish (`Exactly result)
else
read' ?consumer t ~max_queue_length:(num_values - already_read)
>>> function
| `Eof -> Ivar.fill finish (if already_read = 0 then `Eof else `Fewer result)
| `Ok q ->
Q.blit_transfer ~src:q ~dst:result ();
loop ()
in
loop ())
;;
let downstream_flushed t =
if is_empty t
then
if List.is_empty t.consumers
then return `Ok
else
Flushed_result.combine
(List.map t.consumers ~f:Consumer.values_sent_downstream_and_flushed)
else
Deferred.create (fun ready ->
Q.enqueue
t.blocked_flushes
{ fill_when_num_values_read = t.num_values_read + length t; ready })
;;
let upstream_flushed t =
if Bag.is_empty t.upstream_flusheds
then downstream_flushed t
else
Bag.to_list t.upstream_flusheds
|> List.map ~f:(fun f -> f ())
|> Flushed_result.combine
;;
let add_upstream_flushed t upstream_flushed =
Bag.add t.upstream_flusheds upstream_flushed
;;
let add_consumer t ~downstream_flushed =
let consumer = Consumer.create ~pipe_id:t.id ~downstream_flushed in
t.consumers <- consumer :: t.consumers;
consumer
;;
module Link : sig
type t
val create : upstream:(_, _) pipe -> downstream:(_, _) pipe -> t
val consumer : t -> Consumer.t
val unlink_upstream : t -> unit
end = struct
type ('a, 'b) unpacked =
{ downstream : ('a, 'b) t
; consumer : Consumer.t
; upstream_flusheds_bag_elt : (unit -> Flushed_result.t Deferred.t) Bag.Elt.t
}
type t = T : (_, _) unpacked -> t
let consumer (T t) = t.consumer
let create ~upstream ~downstream =
T
{ downstream
; consumer =
add_consumer upstream ~downstream_flushed:(fun () ->
downstream_flushed downstream)
; upstream_flusheds_bag_elt =
add_upstream_flushed downstream (fun () -> upstream_flushed upstream)
}
;;
let unlink_upstream (T t) =
Bag.remove t.downstream.upstream_flusheds t.upstream_flusheds_bag_elt
;;
end
module Flushed = struct
type t =
| Consumer of Consumer.t
| When_value_processed
| When_value_read
[@@deriving sexp_of]
end
let fold_gen
(read_now : ?consumer:Consumer.t -> _ Reader.t -> _)
?(flushed = Flushed.When_value_read)
t
~init
~f
=
let consumer =
match flushed with
| When_value_read -> None
| Consumer consumer -> Some consumer
| When_value_processed ->
Some (add_consumer t ~downstream_flushed:(fun () -> return `Ok))
in
if !check_invariant then invariant t;
ensure_consumer_matches t ?consumer;
Deferred.create (fun finished ->
return ()
>>> fun () ->
let rec loop b =
match read_now t ?consumer with
| `Eof -> Ivar.fill finished b
| `Ok v -> f b v continue
| `Nothing_available -> values_available t >>> fun _ -> loop b
and continue b =
Option.iter consumer ~f:Consumer.values_sent_downstream;
loop b
in
loop init)
;;
let fold' ?flushed ?max_queue_length t ~init ~f =
fold_gen (read_now' ?max_queue_length) ?flushed t ~init ~f:(fun b q loop ->
f b q >>> loop)
;;
let fold ?flushed t ~init ~f =
fold_gen read_now ?flushed t ~init ~f:(fun b a loop -> f b a >>> loop)
;;
let fold_without_pushback ?consumer t ~init ~f =
fold_gen
read_now
t
~init
~f:(fun b a loop -> loop (f b a))
?flushed:
(match consumer with
| None -> None
| Some c -> Some (Consumer c))
;;
let with_error_to_current_monitor ?(continue_on_error = false) f a =
if not continue_on_error
then f a
else (
match%map Monitor.try_with (fun () -> f a) with
| Ok () -> ()
| Error exn -> Monitor.send_exn (Monitor.current ()) (Monitor.extract_exn exn))
;;
let iter' ?continue_on_error ?flushed ?max_queue_length t ~f =
fold' ?max_queue_length ?flushed t ~init:() ~f:(fun () q ->
with_error_to_current_monitor ?continue_on_error f q)
;;
let iter ?continue_on_error ?flushed t ~f =
fold_gen read_now ?flushed t ~init:() ~f:(fun () a loop ->
with_error_to_current_monitor ?continue_on_error f a >>> fun () -> loop ())
;;
let iter_without_pushback
?consumer
?(continue_on_error = false)
?max_iterations_per_job
t
~f
=
ensure_consumer_matches t ?consumer;
let max_iterations_per_job =
match max_iterations_per_job with
| None -> Int.max_value
| Some max_iterations_per_job ->
if max_iterations_per_job <= 0
then
raise_s
[%message
"iter_without_pushback got non-positive max_iterations_per_job"
(max_iterations_per_job : int)];
max_iterations_per_job
in
let f =
if not continue_on_error
then f
else
fun a ->
try f a with
| exn -> Monitor.send_exn (Monitor.current ()) exn
in
Deferred.create (fun finished ->
return ()
>>> fun () ->
let rec start () = loop ~remaining:max_iterations_per_job
and loop ~remaining =
if remaining = 0
then return () >>> fun () -> start ()
else (
match read_now t ?consumer with
| `Eof -> Ivar.fill finished ()
| `Ok a ->
f a;
loop ~remaining:(remaining - 1)
| `Nothing_available -> values_available t >>> fun _ -> start ())
in
start ())
;;
let drain t = iter' t ~f:(fun _ -> return ())
let drain_and_count t = fold' t ~init:0 ~f:(fun sum q -> return (sum + Q.length q))
let read_all input =
let result = Q.create () in
let%map () =
iter' input ~f:(fun q ->
Q.blit_transfer ~src:q ~dst:result ();
return ())
in
result
;;
let to_list r = read_all r >>| Q.to_list
let to_stream_deprecated t =
Stream.create (fun tail ->
iter_without_pushback t ~f:(fun x -> Tail.extend tail x)
>>> fun () -> Tail.close_exn tail)
;;
let of_stream_deprecated s =
let r, w = create () in
let q = Q.create () in
let transfer () =
if not (Q.is_empty q)
then
don't_wait_for (write' w q)
in
let rec loop s =
assert (not (is_closed w));
let next_deferred = Stream.next s in
match Deferred.peek next_deferred with
| Some next -> loop_next next
| None ->
transfer ();
upon next_deferred check_closed_loop_next
and check_closed_loop_next next = if not (is_closed w) then loop_next next
and loop_next = function
| Nil ->
transfer ();
close w
| Cons (x, s) ->
Q.enqueue q x;
loop s
in
loop s;
r
;;
let transfer_gen
(read_now : ?consumer:Consumer.t -> _ Reader.t -> _)
write
input
output
~f
=
if !check_invariant
then (
invariant input;
invariant output);
let link = Link.create ~upstream:input ~downstream:output in
let consumer = Link.consumer link in
Monitor.protect
~finally:(fun () ->
Link.unlink_upstream link;
return ())
(fun () ->
Deferred.create (fun result ->
return ()
>>> fun () ->
let output_closed () =
close_read input;
Ivar.fill result ()
in
let rec loop () =
if is_closed output
then output_closed ()
else (
match read_now input ~consumer with
| `Eof -> Ivar.fill result ()
| `Ok x -> f x continue
| `Nothing_available ->
choose
[ choice (values_available input) ignore
; choice (closed output) ignore
]
>>> fun () -> loop ())
and continue y =
if is_closed output
then output_closed ()
else (
let pushback = write output y in
Consumer.values_sent_downstream consumer;
pushback >>> fun () -> loop ())
in
loop ()))
;;
let transfer' ?max_queue_length input output ~f =
transfer_gen (read_now' ?max_queue_length) write' input output ~f:(fun q k ->
f q >>> k)
;;
let transfer input output ~f =
transfer_gen read_now write input output ~f:(fun a k -> k (f a))
;;
let transfer_id ?max_queue_length input output =
transfer_gen (read_now' ?max_queue_length) write' input output ~f:(fun q k -> k q)
;;
let map_gen read write input ~f =
let result, output = create () in
upon (transfer_gen read write input output ~f) (fun () -> close output);
result
;;
let map' ?max_queue_length input ~f =
map_gen (read_now' ?max_queue_length) write' input ~f:(fun q k -> f q >>> k)
;;
let map input ~f = map_gen read_now write input ~f:(fun a k -> k (f a))
let filter_map' ?max_queue_length input ~f =
map' ?max_queue_length input ~f:(fun q -> Deferred.Queue.filter_map q ~f)
;;
let filter_map ?max_queue_length input ~f =
map_gen (read_now' ?max_queue_length) write' input ~f:(fun q k ->
k (Queue.filter_map q ~f:(fun x -> if is_read_closed input then None else f x)))
;;
let folding_filter_map ?max_queue_length input ~init ~f =
let accum = ref init in
filter_map ?max_queue_length input ~f:(fun x ->
let a, x = f !accum x in
accum := a;
x)
;;
let fold_filter_map = folding_filter_map
let folding_map ?max_queue_length input ~init ~f =
fold_filter_map ?max_queue_length input ~init ~f:(fun accum a ->
let accum, b = f accum a in
accum, Some b)
;;
let fold_map = folding_map
let filter input ~f = filter_map input ~f:(fun x -> if f x then Some x else None)
let of_list l =
let t = create_internal ~initial_buffer:(Q.of_list l) in
Ivar.fill t.closed ();
update_pushback t;
t
;;
let singleton x =
let reader, writer = create () in
write_without_pushback writer x;
close writer;
reader
;;
let unfold ~init:s ~f =
let ( >>=~ ) d f =
match Deferred.peek d with
| None -> d >>= f
| Some x -> f x
in
create_reader ~close_on_exception:false (fun writer ->
let rec loop s =
f s
>>=~ function
| None -> return ()
| Some (a, s) ->
if is_closed writer then return () else write writer a >>=~ fun () -> loop s
in
loop s)
;;
let of_sequence sequence =
create_reader ~close_on_exception:false (fun writer ->
let rec enqueue_n sequence i =
if i <= 0
then sequence
else (
match Sequence.next sequence with
| None -> sequence
| Some (a, sequence) ->
Queue.enqueue writer.buffer a;
enqueue_n sequence (i - 1))
in
let rec loop sequence =
if is_closed writer || Sequence.is_empty sequence
then return ()
else (
start_write writer;
let sequence = enqueue_n sequence (1 + writer.size_budget - length writer) in
finish_write writer;
let%bind () = pushback writer in
loop sequence)
in
loop sequence)
;;
type 'a to_sequence_elt =
| Value of 'a
| Wait_for : _ Deferred.t -> _ to_sequence_elt
let to_sequence t =
Sequence.unfold ~init:() ~f:(fun () ->
match read_now t with
| `Eof -> None
| `Ok a -> Some (Value a, ())
| `Nothing_available -> Some (Wait_for (values_available t), ()))
;;
let interleave_pipe inputs =
let output, output_writer = create () in
let num_pipes_remaining = ref 1 in
let decr_num_pipes_remaining () =
decr num_pipes_remaining;
if !num_pipes_remaining = 0 then close output_writer
in
don't_wait_for
(let%map () =
iter_without_pushback inputs ~f:(fun input ->
incr num_pipes_remaining;
don't_wait_for
(let%map () = transfer_id input output_writer in
decr_num_pipes_remaining ()))
in
decr_num_pipes_remaining ());
output
;;
let interleave inputs =
if !check_invariant then List.iter inputs ~f:invariant;
interleave_pipe (of_list inputs)
;;
let merge inputs ~compare =
let module Heap = Pairing_heap in
let r, w = create () in
upon (closed w) (fun () -> List.iter inputs ~f:close_read);
let heap = Heap.create ~cmp:(fun (a1, _) (a2, _) -> compare a1 a2) () in
let handle_read input eof_or_ok =
match eof_or_ok with
| `Eof -> ()
| `Ok v -> Heap.add heap (v, input)
in
let rec pop_heap_and_loop () =
match Heap.pop heap with
| None -> close w
| Some (v, input) ->
if not (is_closed w)
then (
write_without_pushback w v;
if Heap.length heap = 0
then upon (transfer_id input w) (fun () -> close w)
else (
match read_now input with
| (`Eof | `Ok _) as x ->
handle_read input x;
pop_heap_and_loop ()
| `Nothing_available ->
pushback w
>>> fun () ->
read input
>>> fun x ->
handle_read input x;
pop_heap_and_loop ()))
in
let initial_push =
Deferred.List.iter inputs ~f:(fun input ->
let%map x = read input in
handle_read input x)
in
upon initial_push pop_heap_and_loop;
r
;;
let concat inputs =
let r, w = create () in
upon
(Deferred.List.iter inputs ~f:(fun input -> transfer_id input w))
(fun () -> close w);
r
;;
let fork t ~pushback_uses =
let reader0, writer0 = create () in
let reader1, writer1 = create () in
let some_reader_was_closed = ref false in
let consumer =
add_consumer t ~downstream_flushed:(fun () ->
let some_reader_was_closed = !some_reader_was_closed in
match%map
Flushed_result.combine
[ downstream_flushed writer0; downstream_flushed writer1 ]
with
| `Reader_closed -> `Reader_closed
| `Ok ->
if some_reader_was_closed then `Reader_closed else `Ok)
in
don't_wait_for
(let still_open = [ writer0; writer1 ] in
let filter_open still_open =
if not (List.exists still_open ~f:is_closed)
then still_open
else (
some_reader_was_closed := true;
let still_open = List.filter still_open ~f:(fun w -> not (is_closed w)) in
if List.is_empty still_open then close t;
still_open)
in
let%bind still_open =
fold' t ~flushed:(Consumer consumer) ~init:still_open ~f:(fun still_open queue ->
let still_open = filter_open still_open in
if List.is_empty still_open
then return []
else (
let%map () =
match pushback_uses with
| `Fast_consumer_only -> Deferred.any (List.map still_open ~f:pushback)
| `Both_consumers -> Deferred.all_unit (List.map still_open ~f:pushback)
in
let still_open = filter_open still_open in
List.iter still_open ~f:(fun w -> copy_in_without_pushback w ~from:queue);
still_open))
in
List.iter still_open ~f:close;
return ());
reader0, reader1
;;