Source file writer0.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
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
open Core
open Import
open Require_explicit_time_source
module Unix = Unix_syscalls
module IOVec = Core_unix.IOVec
module Id = Unique_id.Int63 ()
let debug = Debug.writer
module Time_ns_suppress_sexp_in_test = struct
type t = Time_ns.t
let sexp_of_t t =
if Ppx_inline_test_lib.am_running then Sexp.List [] else Time_ns.sexp_of_t t
;;
end
module Flush_result = struct
type t =
| Error
| Consumer_left
| Force_closed
| Flushed of Time_ns_suppress_sexp_in_test.t
[@@deriving sexp_of]
end
module Line_ending = struct
type t =
| Dos
| Unix
[@@deriving sexp_of]
end
module Check_buffer_age' = struct
type 'a t =
{ writer : 'a
; maximum_age : Time_ns.Span.t
; mutable bytes_received_at_now_minus_maximum_age : Int63.t
;
bytes_received_queue : Int63.t Queue.t
; times_received_queue : Time_ns.t Queue.t
;
mutable bytes_seen : Int63.t
;
mutable too_old : unit Ivar.t
;
for_this_time_source : 'a per_time_source
}
and 'a per_time_source =
{ active_checks : ('a t[@sexp.opaque]) Bag.t
; closed : unit Ivar.t
}
[@@deriving fields ~iterators:iter, sexp_of]
end
module Open_flags = Unix.Open_flags
type open_flags =
[ `Already_closed
| `Ok of Open_flags.t
| `Error of exn
]
[@@deriving sexp_of]
module Backing_out_channel = Backing_out_channel
module Destroy_or_keep = struct
type t =
| Destroy
| Keep
[@@deriving sexp_of]
end
module Scheduled = struct
type t = (Bigstring.t IOVec.t * Destroy_or_keep.t) Deque.t
let length (t : t) = Deque.fold t ~init:0 ~f:(fun n (iovec, _) -> n + iovec.len)
end
module Stop_reason = struct
type t =
| Error
| Closed
|
Consumer_left
[@@deriving sexp_of]
end
type t =
{ id : Id.t
; mutable fd : Fd.t
;
monitor : Monitor.t
; inner_monitor : Monitor.t
; mutable
background_writer_state :
[ `Running | `Not_running | `Stopped_permanently of Stop_reason.t ]
; background_writer_stopped : unit Ivar.t
;
syscall : [ `Per_cycle | `Periodic of Time_float.Span.t ]
;
mutable bytes_received : Int63.t
; mutable bytes_written : Int63.t
;
scheduled : Scheduled.t
;
mutable scheduled_bytes : int
;
mutable buf : Bigstring.t
; mutable scheduled_back : int
; mutable back : int
; time_source : Time_source.t
; flushes : (Flush_result.t Ivar.t * Int63.t) Queue.t
;
mutable close_state : [ `Open | `Closed_and_flushing | `Closed ]
;
close_finished : unit Ivar.t
;
close_started : unit Ivar.t
;
producers_to_flush_at_close : (unit -> unit Deferred.t) Bag.t
;
mutable flush_at_shutdown_elt : t Bag.Elt.t option
;
mutable check_buffer_age : t Check_buffer_age'.t Bag.Elt.t option Lazy.t
;
consumer_left : unit Ivar.t
; mutable raise_when_consumer_leaves : bool
;
open_flags : open_flags
; line_ending : Line_ending.t
;
mutable backing_out_channel : Backing_out_channel.t option
}
[@@deriving fields ~getters ~iterators:iter]
let sexp_of_t t = [%sexp (t.fd : Fd.t_hum)]
type t_internals = t
let sexp_of_t_internals
({ id
; fd
; monitor
; inner_monitor
; background_writer_state
; background_writer_stopped
; syscall
; bytes_received
; bytes_written
; scheduled = _
; scheduled_bytes
; buf = _
; scheduled_back
; back
; time_source
; flushes = _
; close_state
; close_finished
; close_started
; producers_to_flush_at_close
; flush_at_shutdown_elt
; check_buffer_age
; consumer_left
; raise_when_consumer_leaves
; open_flags
; line_ending
; backing_out_channel
} :
t_internals)
=
let suppress_in_test x = if Ppx_inline_test_lib.am_running then None else Some x in
let monitor_name_in_test monitor =
if Ppx_inline_test_lib.am_running
then [%sexp (Monitor.name monitor : Info.t)]
else [%sexp (monitor : Monitor.t)]
in
let time_source =
if phys_equal time_source (Time_source.wall_clock ()) then None else Some time_source
in
[%sexp
{ id = (suppress_in_test id : (Id.t option[@sexp.option]))
; fd = (suppress_in_test fd : (Fd.t option[@sexp.option]))
; monitor = (monitor_name_in_test monitor : Sexp.t)
; inner_monitor = (monitor_name_in_test inner_monitor : Sexp.t)
; background_writer_state : [ `Running
| `Not_running
| `Stopped_permanently of Stop_reason.t
]
; background_writer_stopped : unit Ivar.t
; syscall : [ `Per_cycle | `Periodic of Time_float.Span.t ]
; bytes_received : Int63.t
; bytes_written : Int63.t
; scheduled_bytes : int
; scheduled_back : int
; back : int
; time_source : (Time_source.t option[@sexp.option])
; close_state : [ `Open | `Closed_and_flushing | `Closed ]
; close_finished : unit Ivar.t
; close_started : unit Ivar.t
; num_producers_to_flush_at_close = (Bag.length producers_to_flush_at_close : int)
; flush_at_shutdown_elt =
(suppress_in_test flush_at_shutdown_elt
: ((t[@sexp.opaque]) Bag.Elt.t option option[@sexp.option]))
; check_buffer_age =
(suppress_in_test check_buffer_age
: ((t[@sexp.opaque]) Check_buffer_age'.t Bag.Elt.t option Lazy.t option
[@sexp.option]))
; consumer_left : unit Ivar.t
; raise_when_consumer_leaves : bool
; open_flags = (suppress_in_test open_flags : (open_flags option[@sexp.option]))
; line_ending : Line_ending.t
; backing_out_channel : (Backing_out_channel.t option[@sexp.option])
}]
;;
type writer = t [@@deriving sexp_of]
let set_raise_when_consumer_leaves t bool = t.raise_when_consumer_leaves <- bool
let bytes_to_write t = t.scheduled_bytes + t.back - t.scheduled_back
let is_stopped_permanently t =
match t.background_writer_state with
| `Stopped_permanently _ -> true
| `Running | `Not_running -> false
;;
let invariant t : unit =
try
let check f field = f (Field.get field t) in
Fields.iter
~id:ignore
~fd:ignore
~monitor:ignore
~inner_monitor:ignore
~buf:ignore
~background_writer_state:
(check (function
| `Stopped_permanently _ ->
assert (bytes_to_write t = 0);
assert (Ivar.is_full t.background_writer_stopped)
| `Running | `Not_running ->
assert (Bigstring.length t.buf > 0);
assert (Int63.(t.bytes_received - t.bytes_written = of_int (bytes_to_write t)));
assert (Ivar.is_empty t.background_writer_stopped)))
~background_writer_stopped:ignore
~syscall:ignore
~bytes_written:
(check (fun bytes_written ->
assert (Int63.(zero <= bytes_written && bytes_written <= t.bytes_received))))
~bytes_received:ignore
~scheduled:
(check (fun (scheduled : Scheduled.t) ->
Deque.iter scheduled ~f:(fun (iovec, kind) ->
if phys_equal t.buf iovec.buf
then
assert (
match kind with
| Keep -> true
| Destroy -> false))))
~scheduled_bytes:
(check (fun scheduled_bytes ->
assert (scheduled_bytes = Scheduled.length t.scheduled)))
~scheduled_back:
(check (fun scheduled_back ->
assert (0 <= scheduled_back && scheduled_back <= t.back)))
~back:(check (fun back -> assert (back <= Bigstring.length t.buf)))
~time_source:ignore
~flushes:ignore
~close_state:ignore
~close_finished:
(check (fun close_finished ->
match t.close_state with
| `Open | `Closed_and_flushing -> assert (Ivar.is_empty close_finished)
| `Closed -> ()))
~close_started:
(check (fun close_started ->
[%test_result: bool]
(Ivar.is_empty close_started)
~expect:
(match t.close_state with
| `Open -> true
| `Closed | `Closed_and_flushing -> false)))
~producers_to_flush_at_close:ignore
~flush_at_shutdown_elt:
(check (fun o ->
assert (Bool.equal (is_none o) (Ivar.is_full t.close_finished));
Option.iter o ~f:(fun elt -> assert (phys_equal t (Bag.Elt.value elt)))))
~check_buffer_age:ignore
~consumer_left:
(check (fun consumer_left ->
if Ivar.is_full consumer_left then assert (is_stopped_permanently t)))
~raise_when_consumer_leaves:ignore
~open_flags:ignore
~line_ending:ignore
~backing_out_channel:(check (Option.invariant Backing_out_channel.invariant))
with
| exn ->
raise_s [%message "writer invariant failed" (exn : exn) ~writer:(t : t_internals)]
;;
module Check_buffer_age : sig
type t = writer Check_buffer_age'.t Bag.Elt.t option
val dummy : t
val create : writer -> maximum_age:[ `At_most of Time_float.Span.t | `Unlimited ] -> t
val destroy : t -> unit
val too_old : t -> unit Deferred.t
module Internal_for_unit_test : sig
val check_now : check_invariants:bool -> time_source:Time_source.t -> unit
val num_active_checks_for : Time_source.t -> int option
end
end = struct
open Check_buffer_age'
type t = writer Check_buffer_age'.t Bag.Elt.t option
let elt_invariant t : unit =
Invariant.invariant [%here] t [%sexp_of: _ t] (fun () ->
let check f field = f (Field.get field t) in
assert (Queue.length t.bytes_received_queue = Queue.length t.times_received_queue);
Fields.iter
~writer:ignore
~maximum_age:ignore
~too_old:
(check (fun ivar ->
let imply a b = (not a) || b in
assert (
imply
Int63.O.(
t.bytes_received_at_now_minus_maximum_age > t.writer.bytes_written)
(Ivar.is_full ivar))))
~bytes_received_queue:
(check (fun q ->
let n =
Queue.fold
q
~init:t.bytes_received_at_now_minus_maximum_age
~f:(fun prev count ->
assert (Int63.( < ) prev count);
count)
in
assert (Int63.( <= ) n t.writer.bytes_received);
assert (Int63.( = ) n t.bytes_seen)))
~times_received_queue:
(check (fun q ->
match Queue.to_list q with
| [] -> ()
| times ->
[%test_result: Time_ns.t list]
~expect:times
(List.sort times ~compare:Time_ns.compare);
assert (
Time_ns.Span.( <= )
(Time_ns.diff (List.last_exn times) (List.hd_exn times))
t.maximum_age)))
~bytes_received_at_now_minus_maximum_age:ignore
~bytes_seen:ignore
~for_this_time_source:ignore)
;;
let dummy = None
let rec sync e ~now =
if not (Queue.is_empty e.bytes_received_queue)
then (
let bytes_received = Queue.peek_exn e.bytes_received_queue in
let time_received = Queue.peek_exn e.times_received_queue in
let bytes_are_written = Int63.( <= ) bytes_received e.writer.bytes_written in
let bytes_are_too_old =
Time_ns.Span.( > ) (Time_ns.diff now time_received) e.maximum_age
in
if bytes_are_too_old
then e.bytes_received_at_now_minus_maximum_age <- bytes_received;
if bytes_are_written || bytes_are_too_old
then (
ignore (Queue.dequeue_exn e.bytes_received_queue : Int63.t);
ignore (Queue.dequeue_exn e.times_received_queue : Time_ns.t);
sync e ~now))
;;
module Per_time_source = struct
type t = writer Check_buffer_age'.per_time_source
let process_active_check e =
let now = Time_source.now e.writer.time_source in
sync e ~now;
let bytes_received = e.writer.bytes_received in
let bytes_written = e.writer.bytes_written in
if Int63.O.(bytes_received > e.bytes_seen)
then (
e.bytes_seen <- bytes_received;
if Int63.O.(bytes_received > bytes_written)
then (
Queue.enqueue e.bytes_received_queue e.writer.bytes_received;
Queue.enqueue e.times_received_queue now));
let too_old = Int63.O.(e.bytes_received_at_now_minus_maximum_age > bytes_written) in
match Ivar.is_full e.too_old, too_old with
| true, true | false, false -> ()
| true, false -> e.too_old <- Ivar.create ()
| false, true ->
Ivar.fill_exn e.too_old ();
let writer = e.writer in
Monitor.send_exn
e.writer.monitor
(Exn.create_s
[%message
"writer buffer has data older than"
~maximum_age:(e.maximum_age : Time_ns.Span.t)
~beginning_of_buffer:
(Bigstring.to_string
writer.buf
~pos:0
~len:(Int.min 1024 (Bigstring.length writer.buf))
: string)
(writer : writer)])
;;
let create () = { active_checks = Bag.create (); closed = Ivar.create () }
let check t = Bag.iter t.active_checks ~f:process_active_check
let internal_check_now_for_unit_test t ~check_invariants =
if check_invariants then Bag.iter t.active_checks ~f:elt_invariant;
check t
;;
end
module Time_source_key = Hashable.Make_plain (struct
type t = Time_source.t [@@deriving sexp_of]
let hash_fold_t state t = Time_source.Id.hash_fold_t state (Time_source.id t)
let hash t = Time_source.Id.hash (Time_source.id t)
let compare t1 t2 = Time_source.Id.compare (Time_source.id t1) (Time_source.id t2)
end)
let by_time_source : Per_time_source.t Time_source_key.Table.t =
Time_source_key.Table.create ()
;;
module Internal_for_unit_test = struct
let num_active_checks_for time_source =
Option.map (Hashtbl.find by_time_source time_source) ~f:(fun pt ->
Bag.length pt.active_checks)
;;
let check_now ~check_invariants ~time_source =
Per_time_source.internal_check_now_for_unit_test
(Hashtbl.find_exn by_time_source time_source)
~check_invariants
;;
end
let create writer ~maximum_age =
match maximum_age with
| `Unlimited -> None
| `At_most maximum_age ->
let time_source = writer.time_source in
let for_this_time_source =
Hashtbl.find_or_add by_time_source time_source ~default:(fun () ->
let pt = Per_time_source.create () in
Time_source.every
time_source
Time_ns.Span.second
~stop:(Ivar.read pt.closed)
~continue_on_error:false
(fun () -> Per_time_source.check pt);
pt)
in
Some
(Bag.add
for_this_time_source.active_checks
{ writer
; bytes_received_queue = Queue.create ()
; times_received_queue = Queue.create ()
; maximum_age = Time_ns.Span.of_span_float_round_nearest maximum_age
; bytes_seen = Int63.zero
; bytes_received_at_now_minus_maximum_age = Int63.zero
; too_old = Ivar.create ()
; for_this_time_source
})
;;
let destroy t =
match t with
| None -> ()
| Some elt ->
let t = Bag.Elt.value elt in
let per_time_source = t.for_this_time_source in
Bag.remove per_time_source.active_checks elt;
if Bag.is_empty per_time_source.active_checks
then (
Hashtbl.remove by_time_source t.writer.time_source;
Ivar.fill_if_empty per_time_source.closed ())
;;
let too_old t =
match t with
| None -> Deferred.never ()
| Some elt -> Ivar.read (Bag.Elt.value elt).too_old
;;
end
let flushed_or_failed_with_result t =
match t.backing_out_channel with
| Some backing_out_channel ->
Backing_out_channel.flush backing_out_channel;
return (Flush_result.Flushed (Time_source.now t.time_source))
| None ->
if Int63.O.(t.bytes_written = t.bytes_received)
then return (Flush_result.Flushed (Time_source.now t.time_source))
else (
match t.background_writer_state with
| `Stopped_permanently Error -> return Flush_result.Error
| `Stopped_permanently Closed -> return Flush_result.Force_closed
| `Stopped_permanently Consumer_left -> return Flush_result.Consumer_left
| `Running | `Not_running ->
if Ivar.is_full t.close_finished
then Deferred.return Flush_result.Error
else
Deferred.create (fun ivar -> Queue.enqueue t.flushes (ivar, t.bytes_received)))
;;
let eager_map t ~f =
if Deferred.is_determined t
then return (f (Deferred.value_exn t))
else Deferred.map t ~f
;;
let eager_bind t ~f =
if Deferred.is_determined t then f (Deferred.value_exn t) else Deferred.bind t ~f
;;
let flushed_or_failed_unit t = eager_map (flushed_or_failed_with_result t) ~f:ignore
let flushed_time_ns t =
eager_bind (flushed_or_failed_with_result t) ~f:(function
| Flushed t -> Deferred.return t
| Error | Consumer_left | Force_closed -> Deferred.never ())
;;
let flushed_time t = eager_map (flushed_time_ns t) ~f:Time_ns.to_time_float_round_nearest
let flushed t =
eager_map (flushed_time_ns t) ~f:(ignore : Time_ns.t -> unit)
;;
let set_backing_out_channel t backing_out_channel =
t.backing_out_channel <- Some backing_out_channel
;;
let set_synchronous_backing_out_channel t backing_out_channel =
let rec wait_until_no_bytes_to_write () =
if bytes_to_write t = 0
then (
set_backing_out_channel t backing_out_channel;
return ())
else (
let%bind () = flushed t in
wait_until_no_bytes_to_write ())
in
wait_until_no_bytes_to_write ()
;;
let set_synchronous_out_channel t out_channel =
set_synchronous_backing_out_channel t (Backing_out_channel.of_out_channel out_channel)
;;
let using_synchronous_backing_out_channel t = Option.is_some t.backing_out_channel
let clear_synchronous_out_channel t =
if is_some t.backing_out_channel
then (
assert (bytes_to_write t = 0);
t.backing_out_channel <- None)
;;
let with_synchronous_backing_out_channel t backing_out_channel ~f =
let saved_backing_out_channel = t.backing_out_channel in
Monitor.protect
~run:`Schedule
(fun () ->
let%bind () = set_synchronous_backing_out_channel t backing_out_channel in
f ())
~finally:(fun () ->
t.backing_out_channel <- saved_backing_out_channel;
return ())
;;
let with_synchronous_out_channel t out_channel ~f =
with_synchronous_backing_out_channel
t
~f
(Backing_out_channel.of_out_channel out_channel)
;;
let set_fd t fd =
let%map () = flushed t in
t.fd <- fd
;;
let consumer_left t = Ivar.read t.consumer_left
let close_finished t = Ivar.read t.close_finished
let close_started t = Ivar.read t.close_started
let is_closed t =
match t.close_state with
| `Open -> false
| `Closed | `Closed_and_flushing -> true
;;
let is_open t = not (is_closed t)
let writers_to_flush_at_shutdown : t Bag.t = Bag.create ()
let eval_force ?force t =
match force with
| Some fc -> fc
| None ->
(match Fd.kind t.fd with
| File -> Deferred.never ()
| Char | Fifo | Socket _ -> Time_source.after t.time_source (Time_ns.Span.of_sec 5.))
;;
let final_flush ?force t =
let producers_flushed =
Deferred.List.iter
~how:`Parallel
~f:(fun f -> f ())
(Bag.to_list t.producers_to_flush_at_close)
in
let force = eval_force ?force t in
Deferred.any_unit
[
consumer_left t
; Deferred.all_unit [ producers_flushed; flushed t ]
; force
;
Check_buffer_age.too_old (Lazy.force t.check_buffer_age)
]
;;
let stop_background_writer_if_not_running_now t =
match t.background_writer_state with
| `Not_running ->
t.background_writer_state <- `Stopped_permanently Closed;
Ivar.fill_if_empty t.background_writer_stopped ()
| _ -> ()
;;
let stop_background_writer_and_close_fd t =
(match t.close_state with
| `Closed -> ()
| `Closed_and_flushing | `Open -> assert false);
stop_background_writer_if_not_running_now t;
let%bind () = Unix.close t.fd in
Ivar.read t.background_writer_stopped
;;
let do_close_noflush t =
match t.close_state with
| `Closed_and_flushing | `Open ->
t.close_state <- `Closed;
Ivar.fill_if_empty t.close_started ();
if Lazy.is_val t.check_buffer_age
then Check_buffer_age.destroy (force t.check_buffer_age);
(match t.flush_at_shutdown_elt with
| None -> assert false
| Some elt -> Bag.remove writers_to_flush_at_shutdown elt);
stop_background_writer_and_close_fd t >>> fun () -> Ivar.fill_exn t.close_finished ()
| `Closed -> ()
;;
let close_internal ~flush t =
if debug then Debug.log "Writer.close" t [%sexp_of: t];
match flush with
| `No_flush ->
do_close_noflush t;
close_finished t
| `Flush force ->
(match t.close_state with
| `Closed_and_flushing | `Closed -> ()
| `Open ->
t.close_state <- `Closed_and_flushing;
Ivar.fill_exn t.close_started ();
final_flush t ?force >>> fun () -> do_close_noflush t);
close_finished t
;;
let close ?force_close t = close_internal ~flush:(`Flush force_close) t
let close_noflush t = close_internal ~flush:`No_flush t
let () =
Shutdown.at_shutdown (fun () ->
if debug then Debug.log_string "Writer.at_shutdown";
Deferred.List.iter
~how:`Parallel
(Bag.to_list writers_to_flush_at_shutdown)
~f:(fun t -> Deferred.any_unit [ final_flush t; close_finished t ]))
;;
let fill_flushes { bytes_written; flushes; time_source; _ } =
if not (Queue.is_empty flushes)
then (
let now = Time_source.now time_source in
let rec loop () =
match Queue.peek flushes with
| None -> ()
| Some (ivar, z) ->
if Int63.(z <= bytes_written)
then (
Ivar.fill_exn ivar (Flush_result.Flushed now);
ignore (Queue.dequeue flushes : (Flush_result.t Ivar.t * Int63.t) option);
loop ())
in
loop ())
;;
let stop_permanently t (outcome : Stop_reason.t) =
t.background_writer_state <- `Stopped_permanently outcome;
Deque.clear t.scheduled;
t.scheduled_bytes <- 0;
t.buf <- Bigstring.create 0;
t.scheduled_back <- 0;
t.back <- 0;
Ivar.fill_if_empty t.background_writer_stopped ();
Queue.iter t.flushes ~f:(fun (ivar, _) ->
Ivar.fill_exn
ivar
(match outcome with
| Error -> Flush_result.Error
| Consumer_left -> Flush_result.Consumer_left
| Closed -> Flush_result.Force_closed));
Queue.clear t.flushes
;;
let stopped_permanently t = Ivar.read t.background_writer_stopped
let die t sexp =
stop_permanently t Error;
raise_s sexp
;;
type buffer_age_limit =
[ `At_most of Time_float.Span.t
| `Unlimited
]
[@@deriving bin_io, sexp]
let create
?buf_len
?(syscall = `Per_cycle)
?buffer_age_limit
?(raise_when_consumer_leaves = true)
?(line_ending = Line_ending.Unix)
?time_source
fd
=
let time_source =
match time_source with
| Some x -> Time_source.read_only x
| None -> Time_source.wall_clock ()
in
let buffer_age_limit =
match buffer_age_limit with
| Some z -> z
| None ->
(match Fd.kind fd with
| File -> `Unlimited
| Char | Fifo | Socket _ -> `At_most (Time_float.Span.of_min 2.))
in
let buf_len =
match buf_len with
| None ->
65 * 1024 * 2
| Some buf_len ->
if buf_len <= 0 then invalid_arg "Writer.create: buf_len <= 0" else buf_len
in
let id = Id.create () in
let monitor =
Monitor.create
()
?name:(if Ppx_inline_test_lib.am_running then Some "Writer.monitor" else None)
in
let inner_monitor =
Monitor.create
()
?name:(if Ppx_inline_test_lib.am_running then Some "Writer.inner_monitor" else None)
in
let consumer_left = Ivar.create () in
let open_flags = Fd.syscall fd (fun file_descr -> Core_unix.fcntl_getfl file_descr) in
let t =
{ id
; fd
; syscall
; monitor
; inner_monitor
; buf = Bigstring.create buf_len
; back = 0
; scheduled_back = 0
; scheduled = Deque.create ()
; scheduled_bytes = 0
; bytes_received = Int63.zero
; bytes_written = Int63.zero
; time_source
; flushes = Queue.create ()
; background_writer_state = `Not_running
; background_writer_stopped = Ivar.create ()
; close_state = `Open
; close_finished = Ivar.create ()
; close_started = Ivar.create ()
; producers_to_flush_at_close = Bag.create ()
; flush_at_shutdown_elt = None
; check_buffer_age = lazy Check_buffer_age.dummy
; consumer_left
; raise_when_consumer_leaves
; open_flags
; line_ending
; backing_out_channel = None
}
in
Monitor.detach_and_iter_errors inner_monitor ~f:(fun (exn : Exn.t) ->
Monitor.send_exn
monitor
(Exn.create_s
[%message
"Writer error from inner_monitor"
~_:(Monitor.extract_exn exn : Exn.t)
~writer:(t : t)]));
t.check_buffer_age <- lazy (Check_buffer_age.create t ~maximum_age:buffer_age_limit);
t.flush_at_shutdown_elt <- Some (Bag.add writers_to_flush_at_shutdown t);
t
;;
let set_buffer_age_limit t maximum_age =
if Lazy.is_val t.check_buffer_age
then Check_buffer_age.destroy (force t.check_buffer_age);
t.check_buffer_age <- lazy (Check_buffer_age.create t ~maximum_age)
;;
let of_out_channel oc kind = create (Fd.of_out_channel oc kind)
let can_write t =
match t.close_state with
| `Open | `Closed_and_flushing -> true
| `Closed -> false
;;
let ensure_can_write t =
if not (can_write t) then raise_s [%message "attempt to use closed writer" ~_:(t : t)]
;;
let open_file
?info
?(append = false)
?buf_len
?syscall
?(perm = 0o666)
?line_ending
?time_source
file
=
let mode = [ `Wronly; `Creat ] in
let mode = (if append then `Append else `Trunc) :: mode in
Unix.openfile ?info file ~mode ~perm
>>| create ?buf_len ?syscall ?line_ending ?time_source
;;
let with_close t ~f =
Monitor.protect
~run:`Schedule
(fun () ->
let%bind res = f () in
let%map () = final_flush t in
res)
~finally:(fun () -> close_noflush t)
;;
let with_writer_exclusive t f =
let%bind () = Unix.lockf t.fd Exclusive in
Monitor.protect ~run:`Schedule f ~finally:(fun () ->
let%map () = flushed t in
Unix.unlockf t.fd)
;;
let with_file
?perm
?append
?syscall
?(exclusive = false)
?line_ending
?time_source
file
~f
=
let%bind t = open_file ?perm ?append ?syscall ?line_ending ?time_source file in
let parent_monitor = Monitor.current () in
let monitor = monitor t in
Monitor.detach_and_iter_errors monitor ~f:(fun exn ->
upon (close_noflush t) (fun () -> Monitor.send_exn parent_monitor exn));
with_close t ~f:(fun () ->
if exclusive then with_writer_exclusive t (fun () -> f t) else f t)
;;
module Buffer_management = struct
let got_bytes t n = t.bytes_received <- Int63.(t.bytes_received + of_int n)
let add_iovec t kind (iovec : _ IOVec.t) ~count_bytes_as_received =
assert (t.scheduled_back = t.back);
if count_bytes_as_received then got_bytes t iovec.len;
if not (is_stopped_permanently t)
then (
t.scheduled_bytes <- t.scheduled_bytes + iovec.len;
Deque.enqueue_back t.scheduled (iovec, kind));
assert (t.scheduled_back = t.back)
;;
let schedule_unscheduled t kind =
let need_to_schedule = t.back - t.scheduled_back in
assert (need_to_schedule >= 0);
if need_to_schedule > 0
then (
let pos = t.scheduled_back in
t.scheduled_back <- t.back;
add_iovec
t
kind
(IOVec.of_bigstring t.buf ~pos ~len:need_to_schedule)
~count_bytes_as_received:false
)
;;
end
module Background_writer = struct
open Buffer_management
let dummy_iovec = IOVec.empty IOVec.bigstring_kind
let mk_iovecs t =
schedule_unscheduled t Keep;
let n_iovecs = Int.min (Deque.length t.scheduled) (Lazy.force IOVec.max_iovecs) in
let iovecs = Array.create ~len:n_iovecs dummy_iovec in
let contains_mmapped_ref = ref false in
let iovecs_len = ref 0 in
with_return (fun r ->
let i = ref 0 in
Deque.iter t.scheduled ~f:(fun (iovec, _) ->
if !i >= n_iovecs then r.return ();
if (not !contains_mmapped_ref) && Bigstring.is_mmapped iovec.buf
then contains_mmapped_ref := true;
iovecs_len := !iovecs_len + iovec.len;
iovecs.(!i) <- iovec;
incr i));
iovecs, !contains_mmapped_ref, !iovecs_len
;;
let thread_io_cutoff = 262_144
let is_running = function
| `Running -> true
| _ -> false
;;
let fd_closed t =
if is_closed t
then stop_permanently t Closed
else die t [%message "writer fd unexpectedly closed "]
;;
let writev_in_background fd iovecs =
Fd.with_file_descr_deferred_result fd (fun file_descr ->
match Io_uring_raw_singleton.the_one_and_only () with
| Some uring -> Io_uring.writev uring fd iovecs
| None ->
In_thread.syscall ~name:"writev" (fun () ->
Bigstring_unix.writev file_descr iovecs))
;;
let update_after_completed_write t ~bytes_written =
t.bytes_written <- Int63.(t.bytes_written + of_int bytes_written);
if Int63.(t.bytes_written > t.bytes_received)
then die t [%message "writer wrote more bytes than it received"];
fill_flushes t;
t.scheduled_bytes <- t.scheduled_bytes - bytes_written;
let rec remove_done bytes_written =
assert (bytes_written >= 0);
match Deque.dequeue_front t.scheduled with
| None ->
if bytes_written > 0
then die t [%message "writer wrote nonzero amount but IO_queue is empty"]
| Some ({ buf; pos; len }, kind) ->
if bytes_written >= len
then (
(match kind with
| Destroy -> Bigstring.unsafe_destroy buf
| Keep -> ());
remove_done (bytes_written - len))
else (
let new_iovec =
IOVec.of_bigstring buf ~pos:(pos + bytes_written) ~len:(len - bytes_written)
in
Deque.enqueue_front t.scheduled (new_iovec, kind))
in
remove_done bytes_written;
schedule_unscheduled t Keep;
if Deque.is_empty t.scheduled
then (
t.back <- 0;
t.scheduled_back <- 0;
`Nothing_left)
else `Writes_remaining
;;
let rec start_write t =
if debug then Debug.log "Writer.start_write" t [%sexp_of: t];
assert (is_running t.background_writer_state);
let iovecs, contains_mmapped, iovecs_len = mk_iovecs t in
let handle_write_result = function
| `Already_closed -> fd_closed t
| `Ok n ->
if n >= 0
then write_finished t n
else die t [%message "write system call returned negative result" (n : int)]
| `Error (Unix.Unix_error ((EWOULDBLOCK | EAGAIN), _, _)) -> write_when_ready t
| `Error (Unix.Unix_error (EBADF, _, _)) -> die t [%message "write got EBADF"]
| `Error
(Unix.Unix_error
( ( EPIPE
| ECONNRESET
| EHOSTUNREACH
| ENETDOWN
| ENETRESET
| ENETUNREACH
| ETIMEDOUT )
, _
, _ ) as exn) ->
assert (Ivar.is_empty t.consumer_left);
Ivar.fill_exn t.consumer_left ();
if t.raise_when_consumer_leaves
then (
stop_permanently t Error;
raise exn)
else stop_permanently t Consumer_left
| `Error exn -> die t [%message "" ~_:(exn : Exn.t)]
in
let should_write_in_thread =
(not (Fd.supports_nonblock t.fd))
|| iovecs_len > thread_io_cutoff
|| contains_mmapped
in
if should_write_in_thread
then writev_in_background t.fd iovecs >>> handle_write_result
else
handle_write_result
(Fd.syscall t.fd ~nonblocking:true (fun file_descr ->
Bigstring_unix.writev_assume_fd_is_nonblocking file_descr iovecs))
and write_when_ready t =
if debug then Debug.log "Writer.write_when_ready" t [%sexp_of: t];
assert (is_running t.background_writer_state);
Fd.ready_to t.fd `Write
>>> function
| `Bad_fd -> die t [%message "writer ready_to got Bad_fd"]
| `Closed -> fd_closed t
| `Ready -> start_write t
and write_finished t bytes_written =
if debug then Debug.log "Writer.write_finished" (bytes_written, t) [%sexp_of: int * t];
assert (is_running t.background_writer_state);
match update_after_completed_write t ~bytes_written with
| `Nothing_left ->
(match t.close_state with
| `Open | `Closed_and_flushing -> t.background_writer_state <- `Not_running
| `Closed ->
t.background_writer_state <- `Stopped_permanently Closed;
Ivar.fill_if_empty t.background_writer_stopped ())
| `Writes_remaining ->
(match t.syscall with
| `Per_cycle -> start_write t
| `Periodic span ->
Time_source.after t.time_source (Time_ns.Span.of_span_float_round_nearest span)
>>> fun _ -> start_write t)
;;
let start_writer t =
let (_ : _) = force t.check_buffer_age in
t.background_writer_state <- `Running;
schedule ~monitor:t.inner_monitor ~priority:Priority.low (fun () ->
let open_flags = t.open_flags in
let can_write_fd =
match open_flags with
| `Error _ | `Already_closed -> false
| `Ok flags -> Unix.Open_flags.can_write flags
in
if not can_write_fd
then
die
t
[%message
"not allowed to write due to file-descriptor flags" (open_flags : open_flags)];
start_write t)
;;
let rec flush_to_backing_out_channel t backing_out_channel =
let iovecs, (_ : bool), bytes_written = mk_iovecs t in
Array.iter iovecs ~f:(fun iovec ->
Backing_out_channel.output_iovec backing_out_channel iovec);
match update_after_completed_write t ~bytes_written with
| `Nothing_left -> ()
| `Writes_remaining -> flush_to_backing_out_channel t backing_out_channel
;;
let maybe_start_writer t =
match t.backing_out_channel with
| Some backing_out_channel -> flush_to_backing_out_channel t backing_out_channel
| None ->
(match t.background_writer_state with
| `Stopped_permanently _ | `Running -> ()
| `Not_running -> if bytes_to_write t > 0 then start_writer t)
;;
end
let maybe_start_writer = Background_writer.maybe_start_writer
module Writes = struct
open Buffer_management
let give_buf t desired =
assert (desired >= 0);
assert (not (is_stopped_permanently t));
got_bytes t desired;
let buf_len = Bigstring.length t.buf in
let available = buf_len - t.back in
if desired <= available
then (
let pos = t.back in
t.back <- t.back + desired;
t.buf, pos)
else if
desired > buf_len / 2
then (
schedule_unscheduled t Keep;
let buf = Bigstring.create desired in
add_iovec
t
Destroy
(IOVec.of_bigstring ~len:desired buf)
~count_bytes_as_received:false;
buf, 0)
else (
schedule_unscheduled t Destroy;
let buf = Bigstring.create buf_len in
t.buf <- buf;
t.scheduled_back <- 0;
t.back <- desired;
buf, 0)
;;
let write_gen_internal
(type a)
t
src
~src_pos
~src_len
~allow_partial_write
~(blit_to_bigstring :
src:a -> src_pos:int -> dst:Bigstring.t -> dst_pos:int -> len:int -> unit)
=
if is_stopped_permanently t
then got_bytes t src_len
else (
let available = Bigstring.length t.buf - t.back in
if available >= src_len
then (
got_bytes t src_len;
let dst_pos = t.back in
t.back <- dst_pos + src_len;
blit_to_bigstring ~src ~src_pos ~len:src_len ~dst:t.buf ~dst_pos)
else if allow_partial_write
then (
got_bytes t available;
let dst_pos = t.back in
t.back <- dst_pos + available;
blit_to_bigstring ~src ~src_pos ~len:available ~dst:t.buf ~dst_pos;
let remaining = src_len - available in
let dst, dst_pos = give_buf t remaining in
blit_to_bigstring ~src ~src_pos:(src_pos + available) ~len:remaining ~dst ~dst_pos)
else (
let dst, dst_pos = give_buf t src_len in
blit_to_bigstring ~src ~src_pos ~dst ~dst_pos ~len:src_len);
maybe_start_writer t)
;;
let write_direct t ~f =
if is_stopped_permanently t
then None
else (
let pos = t.back in
let len = Bigstring.length t.buf - pos in
let x, written = f t.buf ~pos ~len in
if written < 0 || written > len
then
raise_s
[%message
"[write_direct]'s [~f] argument returned invalid [written]"
(written : int)
(len : int)
~writer:(t : t)];
t.back <- pos + written;
got_bytes t written;
maybe_start_writer t;
Some x)
;;
let write_gen_unchecked ?pos ?len t src ~blit_to_bigstring ~length =
let src_pos, src_len =
Ordered_collection_common.get_pos_len_exn () ?pos ?len ~total_length:(length src)
in
write_gen_internal
t
src
~src_pos
~src_len
~allow_partial_write:true
~blit_to_bigstring
;;
let write_gen_whole_unchecked t src ~blit_to_bigstring ~length =
let src_len = length src in
write_gen_internal
t
src
~src_pos:0
~src_len
~allow_partial_write:false
~blit_to_bigstring:(fun ~src ~src_pos ~dst ~dst_pos ~len ->
assert (src_pos = 0);
assert (len = src_len);
blit_to_bigstring src dst ~pos:dst_pos)
;;
let write_bytes ?pos ?len t src =
write_gen_unchecked
?pos
?len
t
src
~blit_to_bigstring:(fun ~src ~src_pos ~dst ~dst_pos ~len ->
Bigstring.From_bytes.blit ~src ~src_pos ~dst ~dst_pos ~len)
~length:Bytes.length
;;
let write ?pos ?len t src =
write_gen_unchecked
?pos
?len
t
src
~blit_to_bigstring:(fun ~src ~src_pos ~dst ~dst_pos ~len ->
Bigstring.From_string.blit ~src ~src_pos ~dst ~dst_pos ~len)
~length:String.length
;;
let write_bigstring ?pos ?len t src =
write_gen_unchecked
?pos
?len
t
src
~blit_to_bigstring:(fun ~src ~src_pos ~dst ~dst_pos ~len ->
Bigstring.blit ~src ~src_pos ~dst ~dst_pos ~len)
~length:(fun buf -> Bigstring.length buf)
;;
let write_iobuf ?pos ?len t iobuf =
let iobuf = Iobuf.read_only (Iobuf.no_seek iobuf) in
write_gen_unchecked
?pos
?len
t
iobuf
~blit_to_bigstring:(fun ~src ~src_pos ~dst ~dst_pos ~len ->
Iobuf.Peek.To_bigstring.blit ~src ~src_pos ~dst ~dst_pos ~len)
~length:(fun buf -> Iobuf.length buf)
;;
let write_substring t substring =
write_bytes
t
(Substring.base substring)
~pos:(Substring.pos substring)
~len:(Substring.length substring)
;;
let write_bigsubstring t bigsubstring =
write_bigstring
t
(Bigsubstring.base bigsubstring)
~pos:(Bigsubstring.pos bigsubstring)
~len:(Bigsubstring.length bigsubstring)
;;
let writef t = ksprintf (fun s -> write t s)
let write_gen ?pos ?len t src ~blit_to_bigstring ~length =
try write_gen_unchecked ?pos ?len t src ~blit_to_bigstring ~length with
| exn -> die t [%message "Writer.write_gen: error writing value" (exn : exn)]
;;
let write_gen_whole t src ~blit_to_bigstring ~length =
try write_gen_whole_unchecked t src ~blit_to_bigstring ~length with
| exn -> die t [%message "Writer.write_gen_whole: error writing value" (exn : exn)]
;;
let to_formatter t =
Format.make_formatter
(fun str pos len ->
ensure_can_write t;
write ~pos ~len t str)
ignore
;;
let write_char t c =
if is_stopped_permanently t
then got_bytes t 1
else (
if Bigstring.length t.buf - t.back >= 1
then (
got_bytes t 1;
t.buf.{t.back} <- c;
t.back <- t.back + 1)
else (
let dst, dst_pos = give_buf t 1 in
dst.{dst_pos} <- c);
maybe_start_writer t)
;;
let newline ?line_ending t =
let line_ending =
match line_ending with
| Some x -> x
| None -> t.line_ending
in
(match line_ending with
| Unix -> ()
| Dos -> write_char t '\r');
write_char t '\n'
;;
let write_line ?line_ending t s =
write t s;
newline t ?line_ending
;;
let write_byte t i = write_char t (char_of_int (i % 256))
module Terminate_with = struct
type t =
| Newline
| Space_if_needed
[@@deriving sexp_of]
end
let write_sexp_internal ~(terminate_with : Terminate_with.t) ?(hum = false) t sexp =
if hum
then Format.fprintf (to_formatter t) "%a@?" Sexp.pp_hum sexp
else Sexp.to_buffer_gen ~buf:t ~add_char:write_char ~add_string:write sexp;
match terminate_with with
| Newline -> newline t
| Space_if_needed ->
let space_is_needed =
match sexp with
| List _ -> false
| Atom str -> not (Sexplib.Pre_sexp.must_escape str)
in
if space_is_needed then write_char t ' '
;;
let write_sexp ?hum ?(terminate_with = Terminate_with.Space_if_needed) t sexp =
write_sexp_internal t sexp ?hum ~terminate_with
;;
let write_bin_prot t (writer : _ Bin_prot.Type_class.writer) v =
let len = writer.size v in
let tot_len = len + Bin_prot.Utils.size_header_length in
if is_stopped_permanently t
then got_bytes t tot_len
else (
let buf, start_pos = give_buf t tot_len in
ignore
(Bigstring.write_bin_prot_known_size buf ~pos:start_pos ~size:len writer.write v
: int);
maybe_start_writer t)
;;
let t ~size write v =
if is_stopped_permanently t
then got_bytes t size
else (
let buf, start_pos = give_buf t size in
let end_pos = write buf ~pos:start_pos v in
let written = end_pos - start_pos in
if written <> size
then
raise_s
[%message
"Writer.write_bin_prot_no_size_header bug!" (written : int) (size : int)];
maybe_start_writer t)
;;
let send t s =
write t (string_of_int (String.length s) ^ "\n");
write t s
;;
let schedule_iovec ?(destroy_or_keep = Destroy_or_keep.Keep) t iovec =
schedule_unscheduled t Keep;
add_iovec t destroy_or_keep iovec ~count_bytes_as_received:true;
maybe_start_writer t
;;
let schedule_iovecs t iovecs =
schedule_unscheduled t Keep;
Queue.iter iovecs ~f:(add_iovec t Keep ~count_bytes_as_received:true);
Queue.clear iovecs;
maybe_start_writer t
;;
let schedule_bigstring ?destroy_or_keep t ?pos ?len bstr =
schedule_iovec t (IOVec.of_bigstring ?pos ?len bstr) ?destroy_or_keep
;;
let schedule_bigsubstring t bigsubstring =
schedule_bigstring
t
(Bigsubstring.base bigsubstring)
~pos:(Bigsubstring.pos bigsubstring)
~len:(Bigsubstring.length bigsubstring)
;;
let schedule_iobuf_peek t ?pos ?len iobuf =
schedule_iovec t (Iobuf_unix.Expert.to_iovec_shared ?pos ?len iobuf)
;;
let schedule_iobuf_consume t ?len iobuf =
let iovec = Iobuf_unix.Expert.to_iovec_shared ?len iobuf in
let len = iovec.len in
schedule_iovec t iovec;
let%map _ = flushed_time t in
Iobuf.advance iobuf len
;;
end
module Checked_writes = struct
open Writes
let fsync t =
ensure_can_write t;
let%bind () = flushed t in
Unix.fsync t.fd
;;
let fdatasync t =
ensure_can_write t;
let%bind () = flushed t in
Unix.fdatasync t.fd
;;
let write_bin_prot t sw_arg v =
ensure_can_write t;
write_bin_prot t sw_arg v
;;
let send t s =
ensure_can_write t;
send t s
;;
let schedule_iovec ?destroy_or_keep t iovec =
ensure_can_write t;
schedule_iovec ?destroy_or_keep t iovec
;;
let schedule_iovecs t iovecs =
ensure_can_write t;
schedule_iovecs t iovecs
;;
let schedule_bigstring t ?pos ?len bstr =
ensure_can_write t;
schedule_bigstring t ?pos ?len bstr
;;
let schedule_bigsubstring t bigsubstring =
ensure_can_write t;
schedule_bigsubstring t bigsubstring
;;
let schedule_iobuf_peek t ?pos ?len iobuf =
ensure_can_write t;
schedule_iobuf_peek t ?pos ?len iobuf
;;
let schedule_iobuf_consume t ?len iobuf =
ensure_can_write t;
schedule_iobuf_consume t ?len iobuf
;;
let write_gen ?pos ?len t src ~blit_to_bigstring ~length =
ensure_can_write t;
write_gen ?pos ?len t src ~blit_to_bigstring ~length
;;
let write_bytes ?pos ?len t s =
ensure_can_write t;
write_bytes ?pos ?len t s
;;
let write ?pos ?len t s =
ensure_can_write t;
write ?pos ?len t s
;;
let write_line ?line_ending t s =
ensure_can_write t;
write_line t s ?line_ending
;;
let writef t =
ensure_can_write t;
writef t
;;
let write_sexp ?hum ?terminate_with t s =
ensure_can_write t;
write_sexp ?hum ?terminate_with t s
;;
let write_sexp_internal ~terminate_with ?hum t sexp =
ensure_can_write t;
write_sexp_internal ~terminate_with ?hum t sexp
;;
let write_iobuf ?pos ?len t iobuf =
ensure_can_write t;
write_iobuf ?pos ?len t iobuf
;;
let write_bigstring ?pos ?len t src =
ensure_can_write t;
write_bigstring ?pos ?len t src
;;
let write_bigsubstring t s =
ensure_can_write t;
write_bigsubstring t s
;;
let write_substring t s =
ensure_can_write t;
write_substring t s
;;
let write_byte t b =
ensure_can_write t;
write_byte t b
;;
let write_char t c =
ensure_can_write t;
write_char t c
;;
let newline ?line_ending t =
ensure_can_write t;
newline ?line_ending t
;;
let t ~size write v =
ensure_can_write t;
write_bin_prot_no_size_header t ~size write v
;;
let write_direct t ~f =
ensure_can_write t;
write_direct t ~f
;;
let write_gen_whole t src ~blit_to_bigstring ~length =
ensure_can_write t;
write_gen_whole t src ~blit_to_bigstring ~length
;;
module Terminate_with = Writes.Terminate_with
let to_formatter = Writes.to_formatter
end
include Checked_writes
module Stdout_and_stderr = struct
let stdout_and_stderr_behave_nicely_in_pipeline = ref ignore
let stdout_and_stderr =
lazy
(match
Scheduler.within_v ~monitor:Monitor.main (fun () ->
let stdout = Fd.stdout () in
let stderr = Fd.stderr () in
let t = create stdout in
let dev_and_ino fd =
let stats = Core_unix.fstat (Fd.file_descr_exn fd) in
stats.st_dev, stats.st_ino
in
match am_test_runner with
| true ->
set_backing_out_channel
t
(Backing_out_channel.of_out_channel Out_channel.stdout);
t, t
| false ->
let stdout, stderr =
if [%compare.equal: int * int] (dev_and_ino stdout) (dev_and_ino stderr)
then
t, t
else t, create stderr
in
!stdout_and_stderr_behave_nicely_in_pipeline stdout;
!stdout_and_stderr_behave_nicely_in_pipeline stderr;
stdout, stderr)
with
| None -> raise_s [%message [%here] "unable to create stdout/stderr"]
| Some v -> v)
;;
let stdout = lazy (fst (Lazy.force stdout_and_stderr))
let stderr = lazy (snd (Lazy.force stdout_and_stderr))
let use_synchronous_stdout_and_stderr () =
let stdout, stderr = Lazy.force stdout_and_stderr in
let ts_and_channels =
(stdout, Out_channel.stdout)
::
(match phys_equal stdout stderr with
| true -> []
| false -> [ stderr, Out_channel.stderr ])
in
List.map ts_and_channels ~f:(fun (t, out_channel) ->
set_synchronous_out_channel t out_channel)
|> Deferred.all_unit
;;
let%expect_test "stdout and stderr are always the same in tests" =
print_s [%message (Lazy.is_val stdout : bool)];
[%expect {| ("Lazy.is_val stdout" false) |}];
print_s [%message (Lazy.is_val stderr : bool)];
[%expect {| ("Lazy.is_val stderr" false) |}];
let module U = Core_unix in
let saved_stderr = U.dup U.stderr in
let pipe_r, pipe_w = U.pipe () in
U.dup2 ~src:pipe_w ~dst:U.stderr ();
U.close pipe_r;
U.close pipe_w;
let stdout = Lazy.force stdout in
let stderr = Lazy.force stderr in
U.dup2 ~src:saved_stderr ~dst:U.stderr ();
U.close saved_stderr;
print_s [%message (phys_equal stdout stderr : bool)];
[%expect {| ("phys_equal stdout stderr" true) |}]
;;
end
let make_writer_behave_nicely_in_pipeline writer =
set_buffer_age_limit writer `Unlimited;
set_raise_when_consumer_leaves writer false;
don't_wait_for
(let%map () = consumer_left writer in
Shutdown.shutdown_with_signal_exn Signal.pipe)
;;
let behave_nicely_in_pipeline ?writers () =
match writers with
| Some l -> List.iter l ~f:make_writer_behave_nicely_in_pipeline
| None ->
let open Stdout_and_stderr in
if Lazy.is_val stdout_and_stderr
then (
let stdout, stderr = force stdout_and_stderr in
List.iter [ stdout; stderr ] ~f:make_writer_behave_nicely_in_pipeline)
else
stdout_and_stderr_behave_nicely_in_pipeline := make_writer_behave_nicely_in_pipeline
;;
module Filesystem_stuff = struct
let with_file_atomic
?temp_file
?perm
?fsync:(do_fsync = false)
?(replace_special = false)
?time_source
file
~f
=
let%bind current_file_permissions =
match%map Monitor.try_with ~run:`Now ~rest:`Raise (fun () -> Unix.stat file) with
| Ok stats ->
(match stats.kind with
| `File -> Some stats.perm
| `Directory ->
raise_s
[%message
"Writer.with_file_atomic: not replacing a directory" ~_:(file : string)]
| `Char | `Block | `Fifo | `Socket ->
(match replace_special with
| true -> Some stats.perm
| false ->
raise_s
[%message
"Writer.with_file_atomic: not replacing special file" ~_:(file : string)])
| `Link ->
assert false)
| Error _ -> None
in
let initial_permissions =
match perm with
| Some p -> p
| None ->
(match current_file_permissions with
| None -> 0o666
| Some p -> p)
in
let%bind temp_file, fd =
let temp_file = Option.value temp_file ~default:file in
let%map temp_file, fd =
let dir = Filename.dirname temp_file in
let prefix = Filename.basename temp_file in
In_thread.run (fun () ->
Filename_unix.open_temp_file_fd ~perm:initial_permissions ~in_dir:dir prefix "")
in
temp_file, Fd.create File fd (Info.of_string temp_file)
in
let t = create ?time_source fd in
(let%bind.Deferred.Result f_result =
Monitor.try_with_or_error (fun () -> f t)
>>| Result.map_error ~f:(fun e -> `f_raised e)
in
match%map
let%bind.Deferred.Or_error () =
Result.ok_if_true
(not (is_closed t))
~error:(Error.create_s [%message "writer closed by [f]" ~_:(file : string)])
|> Deferred.return
in
Monitor.try_with_or_error (fun () ->
let%bind () =
match current_file_permissions with
| None ->
return ()
| Some _ ->
Unix.fchmod fd ~perm:initial_permissions
in
let%bind () = if do_fsync then fsync t else return () in
let%bind () = close t in
Unix.rename ~src:temp_file ~dst:file)
with
| Error e -> Error (`final_steps_raised e)
| Ok () -> Ok f_result)
>>= function
| Ok res -> return res
| Error error ->
let%bind unlink_result =
Monitor.try_with_or_error (fun () -> Unix.unlink temp_file)
in
let%map close_result = Monitor.try_with_or_error (fun () -> close t) in
(match Or_error.combine_errors_unit [ close_result; unlink_result ] with
| Ok () ->
(match error with
| `f_raised f_error ->
Error.raise f_error
| `final_steps_raised our_error -> our_error)
| Error cleanup_error ->
let initial_error =
match error with
| `final_steps_raised e | `f_raised e -> e
in
Error.of_list [ initial_error; cleanup_error ])
|> Error.tag_s ~tag:[%message "Error in Writer.with_file_atomic" (file : string)]
|> Error.raise
;;
let save ?temp_file ?perm ?fsync ?replace_special file ~contents =
with_file_atomic ?temp_file ?perm ?fsync ?replace_special file ~f:(fun t ->
write t contents;
return ())
;;
let save_lines ?temp_file ?perm ?fsync ?replace_special file lines =
with_file_atomic ?temp_file ?perm ?fsync ?replace_special file ~f:(fun t ->
List.iter lines ~f:(fun line ->
write t line;
newline t);
return ())
;;
let save_sexp ?temp_file ?perm ?fsync ?replace_special ?(hum = true) file sexp =
with_file_atomic ?temp_file ?perm ?fsync ?replace_special file ~f:(fun t ->
write_sexp_internal t sexp ~hum ~terminate_with:Newline;
return ())
;;
let save_sexps_conv
?temp_file
?perm
?fsync
?replace_special
?(hum = true)
file
xs
sexp_of_x
=
with_file_atomic ?temp_file ?perm ?fsync ?replace_special file ~f:(fun t ->
List.iter xs ~f:(fun x ->
write_sexp_internal t (sexp_of_x x) ~hum ~terminate_with:Newline);
return ())
;;
let save_sexps ?temp_file ?perm ?fsync ?replace_special ?hum file sexps =
save_sexps_conv ?temp_file ?perm ?fsync ?replace_special ?hum file sexps Fn.id
;;
let save_bin_prot ?temp_file ?perm ?fsync ?replace_special file bin_writer a =
with_file_atomic ?temp_file ?perm ?fsync ?replace_special file ~f:(fun t ->
write_bin_prot t bin_writer a;
return ())
;;
end
let with_flushed_at_close t ~flushed ~f =
let producers_to_flush_at_close_elt = Bag.add t.producers_to_flush_at_close flushed in
Monitor.protect ~run:`Schedule f ~finally:(fun () ->
Bag.remove t.producers_to_flush_at_close producers_to_flush_at_close_elt;
return ())
;;
module Streaming = struct
let make_transfer ?(stop = Deferred.never ()) ?max_num_values_per_read t pipe_r write_f =
let consumer =
Pipe.add_consumer pipe_r ~downstream_flushed:(fun () ->
let%map () = flushed t in
`Ok)
in
let end_of_pipe_r = Ivar.create () in
let rec iter () =
if Ivar.is_full t.consumer_left
|| (not (can_write t))
|| Deferred.is_determined stop
then
()
else (
let read_result =
match max_num_values_per_read with
| None -> Pipe.read_now' pipe_r ~consumer
| Some max_queue_length -> Pipe.read_now' pipe_r ~consumer ~max_queue_length
in
match read_result with
| `Eof -> Ivar.fill_exn end_of_pipe_r ()
| `Nothing_available -> Pipe.values_available pipe_r >>> fun _ -> iter ()
| `Ok q ->
write_f q ~cont:(fun () ->
Pipe.Consumer.values_sent_downstream consumer;
flushed t >>> iter))
in
let doit () =
iter ();
match%map
choose
[ choice (Ivar.read end_of_pipe_r) (fun () -> `End_of_pipe_r)
; choice stop (fun () -> `Stop)
; choice (close_finished t) (fun () -> `Writer_closed)
; choice (consumer_left t) (fun () -> `Consumer_left)
]
with
| `End_of_pipe_r | `Stop -> ()
| `Writer_closed | `Consumer_left -> Pipe.close_read pipe_r
in
with_flushed_at_close t ~f:doit ~flushed:(fun () ->
Deferred.ignore_m (Pipe.upstream_flushed pipe_r))
;;
let transfer ?stop ?max_num_values_per_read t pipe_r write_f =
make_transfer ?stop ?max_num_values_per_read t pipe_r (fun q ~cont ->
Queue.iter q ~f:write_f;
cont ())
;;
let transfer' ?stop ?max_num_values_per_read t pipe_r write_f =
make_transfer ?stop ?max_num_values_per_read t pipe_r (fun q ~cont ->
write_f q >>> cont)
;;
let pipe t =
let pipe_r, pipe_w = Pipe.create () in
don't_wait_for (transfer t pipe_r (fun s -> write t s));
pipe_w
;;
end
module Private = struct
let set_bytes_received t i =
let (_ : _) = force t.check_buffer_age in
t.bytes_received <- i
;;
let set_bytes_written t i = t.bytes_written <- i
module Check_buffer_age = Check_buffer_age
end
include Stdout_and_stderr
include Filesystem_stuff
include Streaming