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
type impossible = |
external reraise : exn -> 'a = "%reraise"
module Backoff = Miou_backoff
module Queue = Miou_queue
module State = Miou_state
module Pqueue = Miou_pqueue
module Logs = Miou_logs
module Fmt = Miou_fmt
module Gen = Miou_gen
open Miou_sync
module Trigger = Trigger
module Computation = Computation
module Promise_uid = Gen.Make ()
module Domain_uid = Gen.Make ()
module Resource_uid = Gen.Make ()
module Syscall_uid = Gen.Make ()
let miou_assert = Sys.getenv_opt "MIOU_ASSERT"
let miou_assert : bool -> 'a =
match miou_assert with
| None -> fun value -> assert value
| Some _ ->
fun value ->
if not value then begin
let bt = Printexc.get_callstack max_int in
Logs.err (fun m ->
m "[%d] bad assertion at: %s"
(Stdlib.Domain.self () :> int)
(Printexc.raw_backtrace_to_string bt));
assert false
end
else assert true
exception Cancelled
exception Still_has_children
exception Not_a_child
exception No_domain_available
exception Not_owner
exception Resource_leaked
let () =
Printexc.register_printer @@ function
| Cancelled -> Some "Miou.Cancelled"
| Still_has_children -> Some "Miou.Still_has_children"
| Not_a_child -> Some "Miou.Not_a_child"
| No_domain_available -> Some "Miou.No_domain_available"
| Not_owner -> Some "Miou.Not_owner"
| Resource_leaked -> Some "Miou.Resource_leaked"
| _ -> None
type 'a r = { uid: Resource_uid.t; value: 'a; finaliser: 'a -> unit }
type resource = Resource : 'a r -> resource [@@unboxed]
type 'a t = {
uid: Promise_uid.t
; runner: Domain_uid.t
; mutable forbid: bool
; state: 'a Computation.t
; parent: pack option
; children: pack Miou_sequence.t
; resources: resource Miou_sequence.t
; mutable cancelled: (exn * Printexc.raw_backtrace) option
; cleaned: bool Atomic.t
}
and pack = Pack : 'a t -> pack [@@unboxed]
module Promise = struct
module Uid = Promise_uid
let create ?parent ~forbid ?resources:(ress = []) runner =
let resources = Miou_sequence.create () in
List.iter Miou_sequence.(add Left resources) ress;
{
uid= Promise_uid.gen ()
; runner
; forbid
; state= Computation.create ()
; parent= Option.map (fun prm -> Pack prm) parent
; children= Miou_sequence.create ()
; resources
; cancelled= None
; cleaned= Atomic.make false
}
let[@coverage off] pp ppf ({ uid; runner; _ } as prm) =
Fmt.pf ppf "[%a:%a](%d)" Domain_uid.pp runner Promise_uid.pp uid
Obj.(reachable_words (repr prm))
let[@coverage off] pp_pack ppf (Pack prm) = pp ppf prm
let has_forbidden { forbid; _ } = forbid
let children_terminated prm = Miou_sequence.is_empty prm.children
let is_running { state; _ } = Computation.is_running state
let uid { uid; _ } = uid
let set t ~forbid = t.forbid <- forbid
let raise_if_errored t =
if not t.forbid then Computation.raise_if_errored t.state
let exchange t ~forbid =
let seen = t.forbid in
t.forbid <- forbid;
seen
type nonrec 'a t = 'a t
end
exception Clean_children of pack Miou_sequence.node
let clean_children ~self (child : _ t) =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal self.runner runner);
Logs.debug (fun m ->
m "[%a] clean %a into %a" Domain_uid.pp runner Promise.pp child Promise.pp
self);
let f (Miou_sequence.{ data= Pack prm; _ } as node) =
if Promise_uid.equal child.uid prm.uid then
raise_notrace (Clean_children node)
in
let some (Pack prm) = Promise_uid.equal self.uid prm.uid in
if Option.fold ~none:false ~some child.parent then
try Miou_sequence.iter_node ~f self.children
with Clean_children node -> Miou_sequence.remove node
type syscall = Syscall : Syscall_uid.t * Trigger.t * _ t -> syscall
type signal = Signal : Trigger.t * _ t -> signal
type uid = Syscall_uid.t
type select = block:bool -> uid list -> signal list
type events = {
select: select
; interrupt: unit -> unit
; finaliser: unit -> unit
}
type domain_elt =
| Domain_transfer : _ t * resource * Trigger.t -> domain_elt
| Domain_create : 'a t * (unit -> 'a) -> domain_elt
| Domain_cancel : _ t * Printexc.raw_backtrace -> domain_elt
| Domain_clean : _ t * _ t -> domain_elt
| Domain_task : 'a t * 'a State.t -> domain_elt
| Domain_signal : unit t * int * unit State.t -> domain_elt
| Domain_tick : impossible -> domain_elt
module Domain_elt = struct
type t = int * domain_elt
let to_int = function Domain_clean _ -> 1 | Domain_cancel _ -> 2 | _ -> 3
let compare (t0, a) (t1, b) =
let value = to_int a - to_int b in
if value = 0 then Int.compare t0 t1 else value
let dummy = (0, Domain_tick (Obj.magic ()))
end
module Heapq = Pqueue.Make (Domain_elt)
let promise_of_domain_elt = function
| Domain_tick _ -> .
| Domain_create (prm, _) -> Pack prm
| Domain_cancel (prm, _) -> Pack prm
| Domain_clean (prm, _) -> Pack prm
| Domain_task (prm, _) -> Pack prm
| Domain_transfer (prm, _, _) -> Pack prm
| Domain_signal (prm, _, _) -> Pack prm
type domain = {
uid: Domain_uid.t
; tasks: Heapq.t
; tick: int Atomic.t
; quanta: int
; g: Random.State.t
; events: events
; cancelled_syscalls: Syscall_uid.t Queue.t
; syscalls: int Atomic.t
; hooks: (unit -> unit) Miou_sequence.t
}
type 'r continuation = (State.error option, 'r) State.continuation
type pool_elt =
| Pool_create : 'a t * (unit -> 'a) -> pool_elt
| Pool_cancel : _ t * Printexc.raw_backtrace -> pool_elt
| Pool_clean : _ t * _ t -> pool_elt
| Pool_continue : {
prm: 'r t
; result: State.error option
; k: 'r continuation
}
-> pool_elt
| Pool_transfer : _ t * resource * Trigger.t -> pool_elt
let promise_of_pool_elt = function
| Pool_create (prm, _) -> Pack prm
| Pool_cancel (prm, _) -> Pack prm
| Pool_clean (prm, _) -> Pack prm
| Pool_continue { prm; _ } -> Pack prm
| Pool_transfer (prm, _, _) -> Pack prm
type dom0_elt =
| Dom0_continue : {
prm: 'r t
; result: State.error option
; k: 'r continuation
}
-> dom0_elt
| Dom0_clean : _ t * _ t -> dom0_elt
| Dom0_transfer : _ t * resource * Trigger.t -> dom0_elt
type pool = {
tasks: pool_elt Miou_sequence.t
; mutex: Mutex.t
; condition_pending_work: Condition.t
; condition_all_idle: Condition.t
; domains: domain list
; dom0: domain
; to_dom0: dom0_elt Queue.t
; stop: bool ref
; fail: bool ref
; working_counter: int ref
; domains_counter: int ref
; tasks_is_empty: bool Atomic.t
}
let get_domain_from_uid pool ~uid =
List.find (fun domain -> Domain_uid.equal domain.uid uid) pool.domains
type ty = Concurrent | Parallel of Domain_uid.t
type 'r waiter = { pool: pool; domain: domain; prm: 'r t }
type _ Effect.t +=
| Spawn : ty * bool * resource list * (unit -> 'a) -> 'a t Effect.t
type _ Effect.t += Self : pack Effect.t
type _ Effect.t += Self_domain : domain Effect.t
type _ Effect.t += Get : 'a -> 'a Effect.t
type _ Effect.t += Random : Random.State.t Effect.t
type _ Effect.t += Domains : Domain_uid.t list Effect.t
type _ Effect.t += Await_cancellation : _ t -> unit Effect.t
type _ Effect.t += Cancel : Printexc.raw_backtrace * 'a t -> unit Effect.t
type _ Effect.t += Yield : unit Effect.t
type _ Effect.t += Transfer : resource -> Trigger.t Effect.t
let[@coverage off] pp_effect : type a. a Effect.t Fmt.t =
fun ppf -> function
| Spawn _ -> Fmt.string ppf "Spawn"
| Self -> Fmt.string ppf "Self"
| Self_domain -> Fmt.string ppf "Self_domain"
| Get _ -> Fmt.string ppf "Get"
| Random -> Fmt.string ppf "Random"
| Domains -> Fmt.string ppf "Domains"
| Await_cancellation prm ->
Fmt.pf ppf "@[<1>(Await_cancellation@ %a)@]" Promise.pp prm
| Cancel (_, prm) -> Fmt.pf ppf "@[<1>(Cancel@ %a)@]" Promise.pp prm
| Yield -> Fmt.string ppf "Yield"
| Trigger.Await _ -> Fmt.string ppf "Await"
| _ -> Fmt.string ppf "#effect"
let[@coverage off] _pp_domain_elt ppf = function
| Domain_create (prm, _fn) ->
Fmt.pf ppf "@[<1>(Domain_create@ %a)@]" Promise.pp prm
| Domain_cancel (prm, _) ->
Fmt.pf ppf "@[<1>(Domain_cancel@ %a)@]" Promise.pp prm
| Domain_clean (prm, child) ->
Fmt.pf ppf "@[<1>(Domain_clean@ @[<1>(%a,@ %a0@])@]" Promise.pp prm
Promise.pp child
| Domain_task (prm, State.Finished _) ->
Fmt.pf ppf "@[<1>(Domain_task@ %a:finished)@]" Promise.pp prm
| Domain_task (prm, State.Suspended (_, eff)) ->
Fmt.pf ppf "@[<1>(Suspended@ @[<1>(%a,@ %a)@])@]" Promise.pp prm pp_effect
eff
| Domain_task (prm, State.Unhandled _) ->
Fmt.pf ppf "@[<1>(Domain_task@ %a:unhandled)@]" Promise.pp prm
| Domain_transfer (prm, Resource { uid; _ }, _) ->
Fmt.pf ppf "@[<1>(Domain_transfer@ %a:%a)@]" Promise.pp prm
Resource_uid.pp uid
| Domain_signal (prm, signal, _) ->
Fmt.pf ppf "@[<1>(Domain_signal@ %a:%d)@]" Promise.pp prm signal
| Domain_tick _ -> .
let add_into_domain domain elt =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal runner domain.uid);
let tick = Atomic.fetch_and_add domain.tick 1 in
Heapq.insert (tick, elt) domain.tasks
let transfer_dom0_tasks pool =
if not (Queue.is_empty pool.to_dom0) then
let elts = Queue.transfer pool.to_dom0 in
let f v =
let v =
match v with
| Dom0_continue { prm; result; k } ->
let state = State.suspended_with k (Get result) in
Domain_task (prm, state)
| Dom0_clean (prm, child) -> Domain_clean (prm, child)
| Dom0_transfer (prm, res, trigger) ->
Domain_transfer (prm, res, trigger)
in
add_into_domain pool.dom0 v
in
Queue.iter ~f elts
type signal_retrieved =
| Signal_retrieved : int * (int -> unit) -> signal_retrieved
let signals = Queue.create ()
let transfer_dom0_signals pool =
if not (Queue.is_empty signals) then begin
let elts = Queue.transfer signals in
let f (Signal_retrieved (signal, fn)) =
let prm = Promise.create ~forbid:true pool.dom0.uid in
let state = State.make fn signal in
add_into_domain pool.dom0 (Domain_signal (prm, signal, state))
in
Queue.iter ~f elts
end
module Domain = struct
module Uid = Domain_uid
let create ?(quanta = 1) ~events g uid =
let tasks = Heapq.create () in
{
uid
; tasks
; tick= Atomic.make 0
; quanta
; g
; events= events uid
; syscalls= Atomic.make 0
; cancelled_syscalls= Queue.create ()
; hooks= Miou_sequence.create ()
}
let interrupt pool ~domain:uid =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
Logs.debug (fun m ->
m "[%a] interrupts [%a]" Domain_uid.pp runner Domain_uid.pp uid);
let domain =
List.find
(fun dom -> Domain_uid.equal uid dom.uid)
(pool.dom0 :: pool.domains)
in
domain.events.interrupt ()
let interrupt_parent pool prm =
match prm.parent with
| None -> ()
| Some (Pack parent) -> interrupt pool ~domain:parent.runner
let add_into_domain = add_into_domain
let add_into_pool pool elt =
let direction =
match elt with
| Pool_cancel _ -> Miou_sequence.Left
| _ -> Miou_sequence.Right
in
Mutex.lock pool.mutex;
Atomic.set pool.tasks_is_empty false;
Miou_sequence.add direction pool.tasks elt;
Condition.broadcast pool.condition_pending_work;
Mutex.unlock pool.mutex;
let (Pack prm) = promise_of_pool_elt elt in
interrupt pool ~domain:prm.runner
let add_into_dom0 pool elt =
Queue.enqueue pool.to_dom0 elt;
pool.dom0.events.interrupt ()
let cancel pool domain ~backtrace:bt prm =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal domain.uid runner);
Logs.debug (fun m ->
m "[%a] signals to cancel %a" Domain_uid.pp domain.uid Promise.pp prm);
match (Domain_uid.to_int prm.runner, Domain_uid.to_int runner) with
| 0, 0 -> add_into_domain domain (Domain_cancel (prm, bt))
| 0, _ -> miou_assert false
| _ -> add_into_pool pool (Pool_cancel (prm, bt))
let handle pool domain prm state =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal runner domain.uid);
miou_assert (Domain_uid.equal prm.runner domain.uid);
match state with
| (State.Suspended _ | State.Unhandled _) as state ->
add_into_domain domain (Domain_task (prm, state))
| State.Finished (Error (exn, bt)) ->
let f (Resource { uid; value; finaliser }) =
try finaliser value
with exn ->
Logs.err (fun m ->
m "[%a] unexpected exception from the finaliser of [%a](%a): %s"
Domain_uid.pp domain.uid Resource_uid.pp uid Promise.pp prm
(Printexc.to_string exn))
in
Miou_sequence.iter ~f prm.resources;
Miou_sequence.drop prm.resources;
let f (Pack prm) = cancel pool domain ~backtrace:bt prm in
Miou_sequence.iter ~f prm.children;
ignore (Computation.try_cancel prm.state (exn, bt));
interrupt_parent pool prm;
miou_assert (Option.is_some (Computation.cancelled prm.state))
| State.Finished (Ok value) ->
if Miou_sequence.is_empty prm.resources = false then begin
let f (Resource { uid; value; finaliser }) =
try finaliser value
with exn ->
Logs.err (fun m ->
m
"[%a] unexpected exception from the finaliser of [%a](%a): \
%s"
Domain_uid.pp domain.uid Resource_uid.pp uid Promise.pp prm
(Printexc.to_string exn))
in
Miou_sequence.iter ~f prm.resources;
Miou_sequence.drop prm.resources;
raise_notrace Resource_leaked
end;
if Promise.children_terminated prm = false then
raise_notrace Still_has_children;
interrupt_parent pool prm;
ignore (Computation.try_return prm.state value)
let propagate_cancellation trigger (pool, possibly_cancelled) child =
match Computation.cancelled possibly_cancelled.state with
| None -> Computation.detach possibly_cancelled.state trigger
| Some (exn, bt) -> (
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
let cancelled = possibly_cancelled in
ignore (Computation.try_cancel child.state (exn, bt));
match (Domain_uid.to_int child.runner, Domain_uid.to_int runner) with
| 0, 0 -> add_into_domain pool.dom0 (Domain_cancel (child, bt))
| 0, _ -> miou_assert false
| _ ->
if
Domain_uid.equal child.runner runner
&& Domain_uid.equal cancelled.runner runner
then
let domain = get_domain_from_uid pool ~uid:cancelled.runner in
add_into_domain domain (Domain_cancel (child, bt))
else add_into_pool pool (Pool_cancel (child, bt)))
let canceller pool ~self (child : _ t) =
let trigger = Trigger.create () in
miou_assert
(Trigger.on_signal trigger (pool, self) child propagate_cancellation);
miou_assert (Computation.try_attach self.state trigger);
miou_assert (Computation.try_attach child.state trigger)
let clean_resources prm resources =
let to_delete = ref [] in
let f ({ Miou_sequence.data= Resource { uid; _ }; _ } as node) =
if
List.exists
(fun (Resource { uid= uid'; _ }) -> Resource_uid.equal uid uid')
resources
then to_delete := node :: !to_delete
in
Miou_sequence.iter_node ~f prm.resources;
List.iter Miou_sequence.remove !to_delete
let perform : pool -> domain -> 'x t -> State.perform =
fun pool domain prm ->
let open State in
let perform : type a b. (a, b) State.handler =
fun k eff ->
match eff with
| Get value -> k (Operation.return value)
| Self -> k (Operation.return (Pack prm))
| Self_domain -> k (Operation.return domain)
| Random -> k (Operation.return domain.g)
| Domains ->
let domains = List.map (fun { uid; _ } -> uid) pool.domains in
k (Operation.return domains)
| Spawn (Concurrent, forbid, resources, fn) ->
clean_resources prm resources;
let prm' = Promise.create ~parent:prm ~forbid ~resources domain.uid in
canceller pool ~self:prm prm';
Miou_sequence.(add Left) prm.children (Pack prm');
add_into_domain domain (Domain_create (prm', fn));
k (Operation.return prm')
| Spawn (Parallel runner, forbid, resources, fn) ->
clean_resources prm resources;
let prm' = Promise.create ~parent:prm ~forbid ~resources runner in
canceller pool ~self:prm prm';
Miou_sequence.(add Left) prm.children (Pack prm');
add_into_pool pool (Pool_create (prm', fn));
k (Operation.return prm')
| Cancel (backtrace, child) ->
cancel pool domain ~backtrace child;
k (Operation.continue (Await_cancellation child))
| Await_cancellation child as await ->
if
Promise.is_running child = false
&& Atomic.get child.cleaned
then k (Operation.return (clean_children ~self:prm child))
else k (Operation.continue await)
| Transfer res ->
let (Pack parent) = Option.get prm.parent in
let trigger = Trigger.create () in
if Domain_uid.to_int parent.runner = 0 then
add_into_dom0 pool (Dom0_transfer (parent, res, trigger))
else add_into_pool pool (Pool_transfer (parent, res, trigger));
k (Operation.return trigger)
| Trigger.Await _ -> k Operation.interrupt
| Yield -> k Operation.yield
| eff -> k (Operation.perform eff)
in
{ perform }
let resume : type r. Trigger.t -> r waiter -> r continuation -> unit =
fun trigger { pool; domain; prm } k ->
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
if not (Promise.has_forbidden prm) then Computation.detach prm.state trigger;
let result = Computation.cancelled prm.state in
if Domain_uid.equal runner domain.uid then
let state = State.suspended_with k (Get result) in
add_into_domain domain (Domain_task (prm, state))
else if Domain_uid.to_int prm.runner = 0 then
add_into_dom0 pool (Dom0_continue { prm; result; k })
else add_into_pool pool (Pool_continue { prm; result; k })
let await pool domain prm trigger k =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal runner domain.uid);
miou_assert (Domain_uid.equal prm.runner domain.uid);
let waiter = { pool; domain; prm } in
match Promise.has_forbidden prm with
| true ->
if not (Trigger.on_signal trigger waiter k resume) then
let state = State.suspended_with k (Get None) in
add_into_domain domain (Domain_task (prm, state))
| false ->
if Computation.try_attach prm.state trigger then (
if not (Trigger.on_signal trigger waiter k resume) then (
Computation.detach prm.state trigger;
let result = Computation.cancelled prm.state in
let state = State.suspended_with k (Get result) in
add_into_domain domain (Domain_task (prm, state))))
else
let () = Trigger.signal trigger in
let result = Computation.cancelled prm.state in
let state = State.suspended_with k (Get result) in
add_into_domain domain (Domain_task (prm, state))
let get_elt_into_domain ~uid (domain : domain) =
let elts = ref [] in
let f = function
| _, Domain_tick _ -> .
| _, Domain_cancel _ | _, Domain_clean _ | _, Domain_signal _ -> ()
| _, elt ->
let (Pack prm) = promise_of_domain_elt elt in
if Promise_uid.equal prm.uid uid then elts := elt :: !elts
in
Heapq.iter f domain.tasks;
match !elts with
| [] -> None
| [ (Domain_create _ as elt) ] | [ (Domain_task _ as elt) ] -> Some elt
| _elts -> assert false
let signal_to_clean_children pool domain prm =
match prm.parent with
| None -> ()
| Some (Pack parent) -> (
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal prm.runner runner);
miou_assert (Domain_uid.equal domain.uid runner);
match (Domain_uid.to_int parent.runner, Domain_uid.to_int runner) with
| 0, 0 -> add_into_domain domain (Domain_clean (parent, prm))
| 0, _ -> add_into_dom0 pool (Dom0_clean (parent, prm))
| _, 0 -> miou_assert false
| _ -> add_into_pool pool (Pool_clean (parent, prm)))
let handle_signal ~signal domain prm state =
Logs.debug (fun m ->
m "[%a] handles signal (%d) %a and its continuation %a" Domain_uid.pp
domain.uid signal Promise.pp prm State.pp state);
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal runner domain.uid);
miou_assert (Domain_uid.equal prm.runner domain.uid);
match state with
| (State.Suspended _ | State.Unhandled _) as state ->
add_into_domain domain (Domain_signal (prm, signal, state))
| State.Finished (Error (exn, _bt)) ->
Logs.err (fun m ->
m "[%a] a signal handler raised an exception: %s" Domain_uid.pp
domain.uid (Printexc.to_string exn))
| State.Finished (Ok ()) -> ()
let once pool domain = function
| Domain_tick _ -> .
| Domain_create (prm, fn) -> (
match Computation.cancelled prm.state with
| None ->
let state = State.make fn () in
handle pool domain prm state
| Some (exn, bt) ->
Logs.debug (fun m ->
m "[%a] %a was cancelled" Domain_uid.pp domain.uid Promise.pp
prm);
let state = State.pure (Error (exn, bt)) in
Atomic.set prm.cleaned true;
handle pool domain prm state)
| Domain_task (prm, State.Suspended (k, Trigger.Await trigger)) ->
await pool domain prm trigger k
| Domain_signal (prm, _signal, State.Suspended (k, Trigger.Await trigger))
->
await pool domain prm trigger k
| Domain_task (prm, state) -> (
let perform = perform pool domain prm in
match Computation.cancelled prm.state with
| None ->
let state = State.run ~quanta:domain.quanta ~perform state in
handle pool domain prm state
| Some (exn, bt) ->
let state = State.fail ~backtrace:bt ~exn state in
if Miou_sequence.is_empty prm.children then begin
Atomic.set prm.cleaned true;
handle pool domain prm state
end
else add_into_domain domain (Domain_task (prm, state)))
| Domain_clean (prm, child) -> clean_children ~self:prm child
| Domain_transfer (prm, res, trigger) ->
Miou_sequence.(add Left) prm.resources res;
Trigger.signal trigger
| Domain_signal (prm, signal, state) -> (
miou_assert (Domain_uid.equal prm.runner (Domain_uid.of_int 0));
miou_assert (Domain_uid.equal domain.uid (Domain_uid.of_int 0));
let perform = perform pool domain prm in
match Computation.cancelled prm.state with
| None ->
let state = State.run ~quanta:domain.quanta ~perform state in
handle_signal ~signal domain prm state
| Some (exn, bt) ->
let state = State.fail ~backtrace:bt ~exn state in
handle_signal ~signal domain prm state)
| Domain_cancel (prm, bt) as cancellation ->
Logs.debug (fun m ->
m "[%a] cancels computation %a" Domain_uid.pp domain.uid Promise.pp
prm);
ignore (Computation.try_cancel prm.state (Cancelled, bt));
Logs.debug (fun m ->
m "[%a] clean-up continuation of %a" Domain_uid.pp domain.uid
Promise.pp prm);
let () =
match get_elt_into_domain domain ~uid:prm.uid with
| Some (Domain_tick _) -> .
| Some (Domain_create (prm', _)) ->
miou_assert (Promise_uid.equal prm.uid prm'.uid);
miou_assert (Domain_uid.equal prm.runner domain.uid);
let state = State.pure (Error (Cancelled, bt)) in
handle pool domain prm state
| Some (Domain_task (prm', state)) ->
miou_assert (Promise_uid.equal prm.uid prm'.uid);
miou_assert (Domain_uid.equal prm.runner domain.uid);
let state = State.fail ~backtrace:bt ~exn:Cancelled state in
handle pool domain prm' state
| Some (Domain_cancel _)
| Some (Domain_clean _)
| Some (Domain_transfer _)
| Some (Domain_signal _)
| None ->
()
in
Logs.debug (fun m ->
m "[%a] clean-up children (%a) of %a" Domain_uid.pp domain.uid
Promise.pp prm
Fmt.(Dump.option Promise.pp_pack)
prm.parent);
if Miou_sequence.is_empty prm.children then begin
signal_to_clean_children pool domain prm;
Atomic.set prm.cleaned true
end
else add_into_domain domain cancellation
let signal_system_events domain (Signal (trigger, prm)) =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal runner domain.uid);
miou_assert (Domain_uid.equal runner prm.runner);
try Trigger.signal trigger
with exn ->
let bt = Printexc.get_raw_backtrace () in
ignore (Computation.try_cancel prm.state (exn, bt));
add_into_domain domain (Domain_cancel (prm, bt))
let synchronize_dom0_tasks pool =
transfer_dom0_tasks pool; transfer_dom0_signals pool
let list_empty = []
let unblock_awaits_with_system_events pool (domain : domain) =
if (Stdlib.Domain.self () :> int) = 0 then synchronize_dom0_tasks pool;
let block = Heapq.size domain.tasks = 0 in
let cancelled =
if Queue.is_empty domain.cancelled_syscalls = false then
Queue.(to_list (transfer domain.cancelled_syscalls))
else list_empty
in
let syscalls = domain.events.select ~block cancelled in
List.iter (signal_system_events domain) syscalls
let system_events_suspended domain = Atomic.get domain.syscalls > 0
let run_hooks domain =
let apply ({ Miou_sequence.data= fn; _ } as node) =
try fn ()
with exn ->
Logs.err (fun m ->
m "[%a] a hook raised an exception: %s" Domain_uid.pp domain.uid
(Printexc.to_string exn));
Miou_sequence.remove node
in
Miou_sequence.iter_node ~f:apply domain.hooks
let[@inline always] no_transfer pool =
((Stdlib.Domain.self () :> int) == 0 && Queue.is_empty pool.to_dom0)
|| (Stdlib.Domain.self () :> int) != 0
let rec run pool (domain : domain) =
run_hooks domain;
match Heapq.extract_min_exn domain.tasks with
| exception Heapq.Empty ->
if system_events_suspended domain then
unblock_awaits_with_system_events pool domain
| _, elt ->
once pool domain elt;
if system_events_suspended domain then
unblock_awaits_with_system_events pool domain;
if
Heapq.is_empty domain.tasks = false
&& Atomic.get pool.tasks_is_empty
&& no_transfer pool
then run pool domain
let self () =
let { uid; _ } = Effect.perform Self_domain in
uid
let available () = List.length (Effect.perform Domains)
let all () = Effect.perform Domains
end
module Clatch = struct
type t = { mutex: Mutex.t; condition: Condition.t; mutable count: int }
let create n =
{ mutex= Mutex.create (); condition= Condition.create (); count= n }
let await t =
let finally () = Mutex.unlock t.mutex in
Mutex.lock t.mutex;
Fun.protect ~finally @@ fun () ->
while t.count > 0 do
Condition.wait t.condition t.mutex
done
let count_down t =
let finally () = Mutex.unlock t.mutex in
Mutex.lock t.mutex;
Fun.protect ~finally @@ fun () ->
t.count <- t.count - 1;
Condition.broadcast t.condition
end
module Pool = struct
let one_task_for ~domain pool =
let exception Yes in
let f elt =
let (Pack prm) = promise_of_pool_elt elt in
if Domain_uid.equal prm.runner domain.uid then raise_notrace Yes
in
try
Miou_sequence.iter ~f pool.tasks;
false
with Yes -> true
let nothing_to_do (pool : pool) (domain : domain) =
Heapq.is_empty domain.tasks
&& one_task_for ~domain pool = false
&& Atomic.get domain.syscalls = 0
let transfer_all_tasks (pool : pool) (domain : domain) =
let nodes = ref [] in
let f ({ Miou_sequence.data; _ } as node) =
let (Pack prm) = promise_of_pool_elt data in
if Domain_uid.equal prm.runner domain.uid then nodes := node :: !nodes
in
Miou_sequence.iter_node ~f pool.tasks;
let f ({ Miou_sequence.data; _ } as node) =
Miou_sequence.remove node;
match data with
| Pool_create (prm, fn) -> Domain_create (prm, fn)
| Pool_cancel (prm, bt) -> Domain_cancel (prm, bt)
| Pool_clean (prm, child) -> Domain_clean (prm, child)
| Pool_transfer (prm, res, trigger) -> Domain_transfer (prm, res, trigger)
| Pool_continue { prm; result; k } ->
let state = State.suspended_with k (Get result) in
Domain_task (prm, state)
in
let elts = List.map f !nodes in
List.iter (Domain.add_into_domain domain) elts
let worker pool domain =
let exception Exit in
try
while true do
Mutex.lock pool.mutex;
while nothing_to_do pool domain && not !(pool.stop) do
Condition.wait pool.condition_pending_work pool.mutex
done;
if !(pool.stop) then raise_notrace Exit;
transfer_all_tasks pool domain;
Atomic.set pool.tasks_is_empty (Miou_sequence.is_empty pool.tasks);
incr pool.working_counter;
Mutex.unlock pool.mutex;
Domain.run pool domain;
Mutex.lock pool.mutex;
decr pool.working_counter;
if (not !(pool.stop)) && Int.equal !(pool.working_counter) 0 then
Condition.signal pool.condition_all_idle;
Mutex.unlock pool.mutex
done
with
| Exit ->
Logs.debug (fun m -> m "[%a] exits" Domain_uid.pp domain.uid);
decr pool.domains_counter;
Condition.signal pool.condition_all_idle;
domain.events.finaliser ();
Mutex.unlock pool.mutex
| exn ->
Mutex.lock pool.mutex;
pool.stop := true;
pool.fail := true;
decr pool.domains_counter;
Condition.broadcast pool.condition_pending_work;
Condition.signal pool.condition_all_idle;
domain.events.finaliser ();
Mutex.unlock pool.mutex;
reraise exn
let wait pool =
let exception Exit in
try
let working_domains () =
!(pool.working_counter) > 0 && not !(pool.stop)
in
let all_domains () = !(pool.stop) && !(pool.domains_counter) > 0 in
while true do
Mutex.lock pool.mutex;
if working_domains () || all_domains () then begin
Condition.wait pool.condition_all_idle pool.mutex;
Mutex.unlock pool.mutex
end
else raise_notrace Exit
done
with Exit -> Mutex.unlock pool.mutex
let kill pool =
Mutex.lock pool.mutex;
pool.stop := true;
Logs.debug (fun m -> m "[%a] kills domain(s)" Domain_uid.pp pool.dom0.uid);
Condition.broadcast pool.condition_pending_work;
Mutex.unlock pool.mutex;
wait pool
let number_of_domains () =
max 0 (Stdlib.Domain.recommended_domain_count () - 1)
let create ?(quanta = 1) ~dom0
?domains:(domains_counter = number_of_domains ()) ~events () =
let pool =
{
tasks= Miou_sequence.create ()
; mutex= Mutex.create ()
; condition_pending_work= Condition.create ()
; condition_all_idle= Condition.create ()
; stop= ref false
; fail= ref false
; working_counter= ref 0
; domains_counter= ref domains_counter
; domains= []
; dom0
; to_dom0= Queue.create ()
; tasks_is_empty= Atomic.make true
}
in
let clatch = Clatch.create domains_counter in
let domains = Queue.create () in
let spawn () =
Stdlib.Domain.spawn @@ fun () ->
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
let domain = Domain.create ~quanta ~events dom0.g runner in
Queue.enqueue domains domain;
Logs.debug (fun m -> m "spawn the domain [%a]" Domain_uid.pp runner);
Clatch.count_down clatch;
Clatch.await clatch;
worker { pool with domains= Queue.to_list domains } domain
in
let vs = List.init domains_counter (Fun.const ()) in
let vs = List.map spawn vs in
Clatch.await clatch;
({ pool with domains= Queue.to_list domains }, vs)
end
module Ownership = struct
type t = resource
let create ~finally:finaliser value =
Resource { uid= Resource_uid.gen (); value; finaliser }
let check (Resource { uid; _ }) =
let (Pack self) = Effect.perform Self in
Logs.debug (fun m ->
m "[%a] checks if [%a] is owned by %a" Domain_uid.pp self.runner
Resource_uid.pp uid Promise.pp self);
let equal (Resource { uid= uid'; _ }) = Resource_uid.equal uid uid' in
if Miou_sequence.exists equal self.resources = false then raise Not_owner
let own (Resource { uid; _ } as res) =
let (Pack self) = Effect.perform Self in
Logs.debug (fun m ->
m "[%a] adds [%a] into %a" Domain_uid.pp self.runner Resource_uid.pp uid
Promise.pp self);
let equal (Resource { uid= uid'; _ }) = Resource_uid.equal uid uid' in
if Miou_sequence.exists equal self.resources then
invalid_arg "The current promise already holds the resource given"
else Miou_sequence.(add Left) self.resources res
exception Found_resource of resource Miou_sequence.node
let disown (Resource { uid; _ }) =
let (Pack self) = Effect.perform Self in
let equal (Resource { uid= uid'; _ }) = Resource_uid.equal uid uid' in
try
let f ({ Miou_sequence.data; _ } as node) =
if equal data then raise_notrace (Found_resource node)
in
Miou_sequence.iter_node ~f self.resources;
raise Not_owner
with Found_resource node -> Miou_sequence.remove node
let transfer (Resource { uid; _ } as res) =
let (Pack self) = Effect.perform Self in
if Option.is_none self.parent then
invalid_arg
"The current promise has no parent, so it is impossible to transfer a \
resource";
let equal (Resource { uid= uid'; _ }) = Resource_uid.equal uid uid' in
try
let f ({ Miou_sequence.data; _ } as node) =
if equal data then raise_notrace (Found_resource node)
in
Miou_sequence.iter_node ~f self.resources;
raise Not_owner
with Found_resource node -> (
Logs.debug (fun m ->
m "[%a] transfers the resource [%a]" Domain_uid.pp self.runner
Resource_uid.pp uid);
let (Pack parent) = Option.get self.parent in
if Domain_uid.equal self.runner parent.runner then
let () = Miou_sequence.(add Left) parent.resources res in
Miou_sequence.remove node
else
let trigger = Effect.perform (Transfer res) in
match Trigger.await trigger with
| None -> Miou_sequence.remove node
| Some (exn, bt) -> Printexc.raise_with_backtrace exn bt
| exception _ -> Miou_sequence.remove node)
end
type 'a orphans = {
orphans: 'a t Miou_sequence.t
; owner: Promise_uid.t option Atomic.t
; length: int Atomic.t
}
let rec add_into_orphans : type a.
?backoff:Backoff.t -> self:'x t -> a t -> a orphans -> unit =
fun ?(backoff = Backoff.default) ~self prm ({ orphans; owner; length } as v) ->
match Atomic.get owner with
| None ->
if Atomic.compare_and_set owner None (Some self.uid) then begin
Miou_sequence.(add Left) orphans prm;
Atomic.incr length
end
else add_into_orphans ~backoff:(Backoff.once backoff) ~self prm v
| Some uid ->
if Promise_uid.equal uid self.uid then begin
Miou_sequence.(add Left) orphans prm;
Atomic.incr length
end
else invalid_arg "The given orphans is owned by another promise"
let async ?(give = []) ?orphans fn =
let (Pack self) = Effect.perform Self in
let prm = Effect.perform (Spawn (Concurrent, false, give, fn)) in
Option.iter (add_into_orphans ~self prm) orphans;
Logs.debug (fun m -> m "%a spawned" Promise.pp prm);
prm
let call ?pin ?(give = []) ?orphans fn =
let domains = Effect.perform Domains in
if domains = [] then raise No_domain_available;
let (Pack self) = Effect.perform Self in
let runner =
match pin with
| Some runner ->
if
Domain_uid.equal self.runner runner
|| not (List.exists (Domain_uid.equal runner) domains)
then
Fmt.invalid_arg
"The given domain to pin your task does not exist or is the actual \
domain";
runner
| None -> (
let g = Effect.perform Random in
match
List.filter (Fun.negate (Domain_uid.equal self.runner)) domains
with
| [] -> raise No_domain_available
| lst -> List.nth lst (Random.State.int g (List.length lst)))
in
let prm = Effect.perform (Spawn (Parallel runner, false, give, fn)) in
Option.iter (add_into_orphans ~self prm) orphans;
prm
let await prm =
let (Pack self) = Effect.perform Self in
Logs.debug (fun m -> m "%a await %a" Promise.pp self Promise.pp prm);
let some (Pack parent) = Promise_uid.equal self.uid parent.uid in
if not (Option.fold ~none:false ~some prm.parent) then
raise_notrace Not_a_child;
let finally () = clean_children ~self prm in
Fun.protect ~finally @@ fun () ->
match Computation.await prm.state with
| Ok _ as value -> Option.fold ~none:value ~some:Result.error prm.cancelled
| Error (exn, bt) ->
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
Logs.debug (fun m ->
m "[%a] %a was cancelled" Domain_uid.pp runner Promise.pp prm);
if Option.is_none prm.cancelled then prm.cancelled <- Some (exn, bt);
Error (Option.get prm.cancelled)
let await_exn prm =
match await prm with
| Ok value -> value
| Error (exn, bt) -> Printexc.raise_with_backtrace exn bt
let await prm = await prm |> Result.map_error fst
let await_one prms =
if prms = [] then invalid_arg "Miou.await_one";
let (Pack self) = Effect.perform Self in
let g = Effect.perform Random in
let some (Pack parent) = Promise_uid.equal self.uid parent.uid in
let is_a_child prm = Option.fold ~none:false ~some prm.parent in
if not (List.for_all is_a_child prms) then raise_notrace Not_a_child;
let c = Computation.create () in
let choose =
Computation.try_capture c @@ fun () ->
let t = Trigger.create () in
let take_one_and_detach_rest unattached attached =
List.iter (fun prm -> Computation.detach prm.state t) attached;
let _, terminated =
List.partition Promise.is_running (attached @ unattached)
in
let filter prm =
if Result.is_ok (Option.get (Computation.peek prm.state)) then
Either.Left prm
else Either.Right prm
in
let result, prm =
match List.partition_map filter terminated with
| [], prms | prms, _ ->
let n = Random.State.int g (List.length prms) in
let prm = List.nth prms n in
(Computation.await prm.state, prm)
in
clean_children ~self prm; result
in
let rec try_attach_all attached = function
| prm :: prms ->
let attached = prm :: attached in
if Computation.try_attach prm.state t then
try_attach_all attached prms
else take_one_and_detach_rest prms attached
| [] -> (
match Trigger.await t with
| Some (exn, bt) ->
List.iter (fun prm -> Computation.detach prm.state t) attached;
Error (exn, bt)
| None -> take_one_and_detach_rest [] prms)
in
try_attach_all [] prms
in
let prm = async choose in
miou_assert (await_exn prm);
match Computation.await_exn c with
| Ok value -> Ok value
| Error (exn, _bt) -> Error exn
| exception _exn -> assert false
let cancel ~self ~backtrace:bt prm =
let finally () = clean_children ~self prm in
Fun.protect ~finally @@ fun () -> Effect.perform (Cancel (bt, prm))
let await_first prms =
if prms = [] then invalid_arg "Miou.await_first";
let (Pack self) = Effect.perform Self in
let g = Effect.perform Random in
let some (Pack parent) = Promise_uid.equal self.uid parent.uid in
let is_a_child prm = Option.fold ~none:false ~some prm.parent in
let bt = Printexc.get_callstack max_int in
if not (List.for_all is_a_child prms) then raise_notrace Not_a_child;
let c = Computation.create () in
let choose =
Computation.try_capture c @@ fun () ->
let t = Trigger.create () in
let take_one_and_cancel_rest unattached attached =
List.iter (fun prm -> Computation.detach prm.state t) attached;
let in_progress, terminated =
List.partition Promise.is_running (attached @ unattached)
in
List.iter (cancel ~self ~backtrace:bt) in_progress;
let filter prm =
if Result.is_ok (Option.get (Computation.peek prm.state)) then
Either.Left prm
else Either.Right prm
in
let result, prm =
match List.partition_map filter terminated with
| [], prms ->
Logs.debug (fun m ->
m "[%a] only cancelled tasks are done" Domain_uid.pp self.runner);
let n = Random.State.int g (List.length prms) in
let prm = List.nth prms n in
(Computation.await prm.state, prm)
| prms, _ ->
Logs.debug (fun m ->
m "[%a] few tasks are completed" Domain_uid.pp self.runner);
let n = Random.State.int g (List.length prms) in
let prm = List.nth prms n in
(Computation.await prm.state, prm)
in
let exclude (prm' : _ t) =
if Promise_uid.equal prm.uid prm'.uid = false then
cancel ~self ~backtrace:bt prm'
in
List.iter exclude terminated;
clean_children ~self prm;
result
in
let rec try_attach_all attached = function
| prm :: prms ->
let attached = prm :: attached in
if Computation.try_attach prm.state t then
try_attach_all attached prms
else take_one_and_cancel_rest prms attached
| [] -> (
match Trigger.await t with
| Some (exn, bt) ->
List.iter (fun prm -> Computation.detach prm.state t) attached;
Error (exn, bt)
| None ->
Logs.debug (fun m ->
m "[%a] one promise finished" Promise.pp self);
take_one_and_cancel_rest [] prms)
in
try_attach_all [] prms
in
let prm = async choose in
miou_assert (await_exn prm);
match Computation.await_exn c with
| Ok value -> Ok value
| Error (exn, _bt) -> Error exn
| exception _exn -> assert false
let cancel prm =
let (Pack self) = Effect.perform Self in
let some (Pack parent) = Promise_uid.equal self.uid parent.uid in
if not (Option.fold ~none:false ~some prm.parent) then
raise_notrace Not_a_child;
let bt = Printexc.get_callstack max_int in
let finally () = clean_children ~self prm in
Fun.protect ~finally @@ fun () ->
Effect.perform (Cancel (bt, prm));
prm.cancelled <- Some (Cancelled, bt)
let await_all prms =
let prms = List.rev_map (fun prm -> await prm) prms in
List.rev prms
let parallel fn tasks =
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
let domains = Effect.perform Domains in
let domains = List.filter (Fun.negate (Domain_uid.equal runner)) domains in
let spawn runner fn v =
let fn () = fn v in
Effect.perform (Spawn (Parallel runner, false, [], fn))
in
if domains = [] then raise No_domain_available;
let rec go rr prms tasks =
match (tasks, rr) with
| [], _ -> List.rev (await_all prms)
| v :: rest, [ runner ] ->
let prm = spawn runner fn v in
go domains (prm :: prms) rest
| v :: rest, runner :: domains ->
let prm = spawn runner fn v in
go domains (prm :: prms) rest
| _, [] -> assert false
in
go domains [] tasks
let yield () = Effect.perform Yield
let syscall () =
let uid = Syscall_uid.gen () in
let trigger = Trigger.create () in
let (Pack self) = Effect.perform Self in
let runner = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
let domain = Effect.perform Self_domain in
miou_assert (Domain_uid.equal runner domain.uid);
miou_assert (Domain_uid.equal runner self.runner);
Syscall (uid, trigger, self)
let suspend ?(fn = ignore) (Syscall (uid, trigger, prm)) =
let domain = Effect.perform Self_domain in
let (Pack self) = Effect.perform Self in
if Promise_uid.equal self.uid prm.uid = false then
invalid_arg "This syscall does not belong to the current promise";
let runner' = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
miou_assert (Domain_uid.equal domain.uid runner');
if Domain_uid.equal prm.runner runner' = false then
invalid_arg "This syscall does not belong to the current domain";
match fn () with
| () ->
Atomic.incr domain.syscalls;
let finally () = Atomic.decr domain.syscalls in
Fun.protect ~finally @@ fun () ->
begin
match Trigger.await trigger with
| None -> miou_assert (Trigger.is_signaled trigger)
| Some (exn, bt) ->
Queue.enqueue domain.cancelled_syscalls uid;
Printexc.raise_with_backtrace exn bt
| exception exn ->
let bt = Printexc.get_raw_backtrace () in
Queue.enqueue domain.cancelled_syscalls uid;
Printexc.raise_with_backtrace exn bt
end
| exception exn ->
let bt = Printexc.get_raw_backtrace () in
Queue.enqueue domain.cancelled_syscalls uid;
Printexc.raise_with_backtrace exn bt
let signal (Syscall (_uid, trigger, prm)) =
let runner' = Domain_uid.of_int (Stdlib.Domain.self () :> int) in
if Domain_uid.equal prm.runner runner' = false then
invalid_arg "This syscall does not belong to the current domain.";
Signal (trigger, prm)
let uid (Syscall (uid, _, _)) = uid
let orphans () =
{
orphans= Miou_sequence.create ()
; owner= Atomic.make None
; length= Atomic.make 0
}
let length orphans = Atomic.get orphans.length
let domain_safe_care : type a.
a t Miou_sequence.t -> int Atomic.t -> a t option option =
fun orphans length ->
if Miou_sequence.is_empty orphans then None
else
let exception Orphan of a t Miou_sequence.node in
let f ({ Miou_sequence.data= prm; _ } as node) =
if Computation.is_running prm.state = false then
raise_notrace (Orphan node)
in
try
Miou_sequence.iter_node ~f orphans;
Some None
with Orphan node ->
let prm = Miou_sequence.data node in
Miou_sequence.remove node; Atomic.decr length; Some (Some prm)
let rec care : type a.
?backoff:Backoff.t -> self:'x t -> a orphans -> a t option option =
fun ?(backoff = Backoff.default) ~self ({ orphans; owner; length } as v) ->
match Atomic.get owner with
| None ->
if Atomic.compare_and_set owner None (Some self.uid) then
domain_safe_care orphans length
else care ~backoff:(Backoff.once backoff) ~self v
| Some uid ->
if Promise_uid.equal self.uid uid then domain_safe_care orphans length
else invalid_arg "The given orphans is owned by another promise"
let care orphans =
let (Pack self) = Effect.perform Self in
care ~self orphans
module Hook = struct
type t = { uid: Domain.Uid.t; node: (unit -> unit) Miou_sequence.node }
let add fn =
let domain = Effect.perform Self_domain in
Miou_sequence.(add Left) domain.hooks fn;
let node = Miou_sequence.(peek_node Left) domain.hooks in
{ uid= domain.uid; node }
let remove hook =
let domain = Effect.perform Self_domain in
if Domain.Uid.equal domain.uid hook.uid then Miou_sequence.remove hook.node
else invalid_arg "The hook does not belong into the current domain"
end
let quanta =
match Sys.getenv_opt "MIOU_QUANTA" with
| Some str -> ( try int_of_string str with _ -> 1)
| None -> 1
let domains =
match Sys.getenv_opt "MIOU_DOMAINS" with
| Some str -> ( try int_of_string str with _ -> Pool.number_of_domains ())
| None -> Pool.number_of_domains ()
let error_select =
"Your program is waiting for a system event when you are using Miou.run \
(which does not handle system events). You should use Miou_unix.run if you \
use functions proposed by the Miou_unix module or use your own run function \
associated with your suspensions."
exception No_select_provided
let () =
Printexc.register_printer @@ function
| No_select_provided -> Some error_select
| _ -> None
let dummy_events =
let select ~block:_ _ = raise No_select_provided in
{ select; interrupt= Fun.const (); finaliser= Fun.const () }
let sys_signal signal = function
| (Sys.Signal_default | Sys.Signal_ignore) as behavior ->
Sys.signal signal behavior
| Sys.Signal_handle fn ->
let fn signal =
Logs.debug (fun m ->
m "[%d] got a signal %d" (Stdlib.Domain.self () :> int) signal);
Queue.enqueue signals (Signal_retrieved (signal, fn))
in
Sys.signal signal (Signal_handle fn)
let run ?(quanta = quanta) ?(g = Random.State.make_self_init ())
?(domains = domains) ?(events = Fun.const dummy_events) fn =
Promise_uid.reset ();
let dom0 = Domain_uid.of_int 0 in
let dom0 = Domain.create ~quanta ~events g dom0 in
let prm0 = Promise.create ~forbid:false dom0.uid in
Domain.add_into_domain dom0 (Domain_create (prm0, fn));
let pool, domains = Pool.create ~quanta ~dom0 ~domains ~events () in
let result =
try
while Computation.is_running prm0.state && !(pool.fail) = false do
transfer_dom0_tasks pool;
transfer_dom0_signals pool;
Domain.run pool dom0
done;
if not !(pool.fail) then Option.get (Computation.peek prm0.state)
else Error (Failure "A domain failed", Printexc.get_callstack max_int)
with exn ->
Logs.err (fun m ->
m "[%a] failed with %S" Domain_uid.pp dom0.uid
(Printexc.to_string exn));
let bt = Printexc.get_raw_backtrace () in
Error (exn, bt)
in
Pool.kill pool;
dom0.events.finaliser ();
List.iter Stdlib.Domain.join domains;
match result with
| Ok value -> value
| Error (exn, bt) -> Printexc.raise_with_backtrace exn bt
let[@tail_mod_cons] rec drop_first_or_not_found x' = function
| [] -> raise_notrace Not_found
| x :: xs -> if x == x' then xs else x :: drop_first_or_not_found x' xs
exception On_cancellation_raised of exn
let () =
Printexc.register_printer @@ function
| On_cancellation_raised exn ->
Some ("Miou.On_cancellation_raised: " ^ Printexc.to_string exn)
| _ -> None
let protect ~on_cancellation ~finally fn =
let finally_no_exn ~cancelled =
try finally ~cancelled
with exn ->
let bt = Printexc.get_raw_backtrace () in
Printexc.raise_with_backtrace (Fun.Finally_raised exn) bt
in
let on_cancellation_no_exn () =
try on_cancellation ()
with exn ->
let bt = Printexc.get_raw_backtrace () in
Printexc.raise_with_backtrace (On_cancellation_raised exn) bt
in
match fn () with
| result ->
finally_no_exn ~cancelled:false;
result
| exception Cancelled ->
let bt = Printexc.get_raw_backtrace () in
finally_no_exn ~cancelled:true;
on_cancellation_no_exn ();
Printexc.raise_with_backtrace Cancelled bt
| exception exn ->
let bt = Printexc.get_raw_backtrace () in
finally_no_exn ~cancelled:false;
Printexc.raise_with_backtrace exn bt
module Mutex = struct
type 'a value = { trigger: Trigger.t; prm: 'a t option }
type entry = Entry : 'a value -> entry [@@unboxed]
type state =
| Unlocked
| Locked : { prm: _ t option; head: entry list; tail: entry list } -> state
let[@inline never] not_owner () = raise (Sys_error "Mutex: not owner")
let[@inline never] unlocked () = raise (Sys_error "Mutex: unlocked")
let[@inline never] owner () = raise (Sys_error "Mutex: owner")
let create () = Atomic.make Unlocked
let locked_nothing = Locked { prm= None; head= []; tail= [] }
let rec unlock_as t (self : _ t option) backoff =
match Atomic.get t with
| Unlocked -> unlocked ()
| Locked r as seen ->
let is_owner =
match (self, r.prm) with
| None, _ | _, None -> true
| Some a, Some b -> Promise_uid.equal a.uid b.uid
in
if is_owner then begin
match r.head with
| Entry { trigger; prm } :: rest ->
let after = Locked { r with prm; head= rest } in
transfer_as t self seen after trigger backoff
| [] -> begin
match List.rev r.tail with
| Entry { trigger; prm } :: rest ->
let after = Locked { prm; head= rest; tail= [] } in
transfer_as t self seen after trigger backoff
| [] ->
if not (Atomic.compare_and_set t seen Unlocked) then
unlock_as t self (Backoff.once backoff)
end
end
else not_owner ()
and transfer_as t self seen after trigger backoff =
if Atomic.compare_and_set t seen after then Trigger.signal trigger
else unlock_as t self (Backoff.once backoff)
let[@inline] unlock t =
try
let (Pack self) = Effect.perform Self in
unlock_as t (Some self) Backoff.default
with Effect.Unhandled Self -> unlock_as t None Backoff.default
let rec cleanup_as t (Entry value as entry) backoff =
match Atomic.get t with
| Locked r as seen ->
let is_equal =
match (r.prm, value.prm) with
| None, None -> true
| Some a, Some b -> Promise_uid.equal a.uid b.uid
| _ -> false
in
if is_equal then unlock_as t value.prm backoff
else if r.head != [] then
match drop_first_or_not_found entry r.head with
| head ->
let after = Locked { r with head } in
cancel_as t entry seen after backoff
| exception Not_found ->
let tail = drop_first_or_not_found entry r.tail in
let after = Locked { r with tail } in
cancel_as t entry seen after backoff
else
let tail = drop_first_or_not_found entry r.tail in
let after = Locked { r with tail } in
cancel_as t entry seen after backoff
| Unlocked -> unlocked ()
and cancel_as t entry seen after backoff =
if not (Atomic.compare_and_set t seen after) then
cleanup_as t entry (Backoff.once backoff)
let rec lock_as t self backoff =
match Atomic.get t with
| Unlocked as seen ->
let after =
match self with
| None -> locked_nothing
| Some _ -> Locked { prm= self; head= []; tail= [] }
in
if not (Atomic.compare_and_set t seen after) then
lock_as t self (Backoff.once backoff)
| Locked r as seen ->
let trigger = Trigger.create () in
let entry =
match (self, r.prm) with
| _, None -> Entry { trigger; prm= None }
| None, Some prm ->
let (Pack self) = Effect.perform Self in
if Promise_uid.equal self.uid prm.uid = false then
Entry { trigger; prm= Some self }
else owner ()
| Some self, Some prm ->
if Promise_uid.equal self.uid prm.uid = false then
Entry { trigger; prm= Some self }
else owner ()
in
let after =
if r.head == [] then
Locked { r with head= List.rev_append r.tail [ entry ]; tail= [] }
else Locked { r with tail= entry :: r.tail }
in
if Atomic.compare_and_set t seen after then begin
let on_cancellation () = cleanup_as t entry Backoff.default in
let finally ~cancelled:_ = () in
protect ~on_cancellation ~finally @@ fun () ->
ignore (Trigger.await trigger)
end
else lock_as t self (Backoff.once backoff)
let[@inline] lock t =
try
let (Pack self) = Effect.perform Self in
lock_as t (Some self) Backoff.default
with Effect.Unhandled Self -> lock_as t None Backoff.default
let try_lock t =
try
let (Pack prm) = Effect.perform Self in
Atomic.get t == Unlocked
|| Atomic.compare_and_set t Unlocked
(Locked { prm= Some prm; head= []; tail= [] })
with Effect.Unhandled Self ->
Atomic.get t == Unlocked
|| Atomic.compare_and_set t Unlocked locked_nothing
let inhibit fn = try fn () with _ -> ()
let protect t fn =
try
let (Pack self) = Effect.perform Self in
lock_as t (Some self) Backoff.default;
match fn () with
| value ->
unlock_as t (Some self) Backoff.default;
value
| exception exn ->
let bt = Printexc.get_raw_backtrace () in
inhibit (fun () -> unlock_as t (Some self) Backoff.default);
Printexc.raise_with_backtrace exn bt
with Effect.Unhandled Self -> (
lock_as t None Backoff.default;
match fn () with
| value ->
unlock_as t None Backoff.default;
value
| exception exn ->
let bt = Printexc.get_raw_backtrace () in
inhibit (fun () -> unlock_as t None Backoff.default);
Printexc.raise_with_backtrace exn bt)
type t = state Atomic.t
end
module Condition = struct
type queue = { head: Trigger.t list; tail: Trigger.t list }
type state = Empty | Queue of queue
let create () = Atomic.make Empty
let broadcast t =
if Atomic.get t != Empty then begin
match Atomic.exchange t Empty with
| Empty -> ()
| Queue state ->
List.iter Trigger.signal state.head;
List.iter Trigger.signal (List.rev state.tail)
end
let[@inline always] update_head seen head =
if head == [] && seen.tail == [] then Empty else Queue { seen with head }
let[@inline always] of_head head =
if head = [] then Empty else Queue { head; tail= [] }
let[@inline always] of_tail tail =
if tail = [] then Empty else Queue { head= []; tail }
let rec signal backoff t =
match Atomic.get t with
| Empty -> ()
| Queue state as seen -> (
match state.head with
| trigger :: head ->
signal_compare_and_set backoff t seen (update_head state head)
trigger
| [] -> (
match List.rev state.tail with
| trigger :: head ->
signal_compare_and_set backoff t seen (of_head head) trigger
| [] -> assert false))
and signal_compare_and_set backoff t seen after trigger =
if Atomic.compare_and_set t seen after then Trigger.signal trigger
else signal (Backoff.once backoff) t
let signal t = signal Backoff.default t
let rec cleanup backoff trigger t =
match Atomic.get t with
| Empty -> ()
| Queue state as seen -> (
if state.head != [] then
match drop_first_or_not_found trigger state.head with
| head ->
cleanup_compare_and_set backoff trigger t seen
(update_head state head)
| exception Not_found -> (
match drop_first_or_not_found trigger state.tail with
| tail ->
cleanup_compare_and_set backoff trigger t seen
(Queue { state with tail })
| exception Not_found -> signal t)
else
match drop_first_or_not_found trigger state.tail with
| tail ->
cleanup_compare_and_set backoff trigger t seen (of_tail tail)
| exception Not_found -> signal t)
and cleanup_compare_and_set backoff trigger t seen after =
if not (Atomic.compare_and_set t seen after) then
cleanup (Backoff.once backoff) trigger t
let rec wait backoff prm trigger t mutex =
let seen = Atomic.get t in
let after =
match seen with
| Empty -> Queue { head= [ trigger ]; tail= [] }
| Queue state ->
if state.head != [] then
Queue { state with tail= trigger :: state.tail }
else Queue { head= List.rev_append state.tail [ trigger ]; tail= [] }
in
if Atomic.compare_and_set t seen after then begin
let on_cancellation () = cleanup Backoff.default trigger t in
let finally ~cancelled:_ = () in
Mutex.unlock_as mutex (Some prm) Backoff.default;
protect ~finally ~on_cancellation @@ fun () ->
let _result = Trigger.await trigger in
let forbid = Promise.exchange prm ~forbid:true in
Mutex.lock_as mutex (Some prm) Backoff.default;
Promise.set prm ~forbid
end
else wait (Backoff.once backoff) prm trigger t mutex
let wait t mutex =
let trigger = Trigger.create () in
let (Pack self) = Effect.perform Self in
wait Backoff.default self trigger t mutex
type t = state Atomic.t
end
module Lazy = struct
exception Undefined = Stdlib.Lazy.Undefined
type 'a state =
| Fun of (unit -> 'a)
| Run : { prm: _ t; triggers: Trigger.t list } -> 'a state
| Val of 'a
| Exn of { exn: exn; trace: Printexc.raw_backtrace }
type 'a t = 'a state Atomic.t
let from_val v = Atomic.make (Val v)
let from_fun fn = Atomic.make (Fun fn)
let rec cleanup t trigger backoff =
match Atomic.get t with
| Val _ | Exn _ -> ()
| Fun _ -> failwith "impossible"
| Run r as seen -> (
match drop_first_or_not_found trigger r.triggers with
| triggers ->
let after = Run { r with triggers } in
if not (Atomic.compare_and_set t seen after) then
cleanup t trigger (Backoff.once backoff)
| exception Not_found -> ())
let rec force : type a b. a t -> b Promise.t -> Backoff.t -> a =
fun t prm backoff ->
match Atomic.get t with
| Val v -> v
| Exn r -> Printexc.raise_with_backtrace r.exn r.trace
| Fun fn as seen ->
let after = Run { prm; triggers= [] } in
if Atomic.compare_and_set t seen after then begin
let result =
match fn () with
| v -> Val v
| exception exn ->
let trace = Printexc.get_raw_backtrace () in
Exn { exn; trace }
in
match Atomic.exchange t result with
| Val _ | Exn _ | Fun _ -> failwith "impossible"
| Run r ->
List.iter Trigger.signal r.triggers;
force t prm Backoff.default
end
else force t prm (Backoff.once backoff)
| Run r as seen ->
if Promise.Uid.equal r.prm.uid prm.uid then raise Undefined
else
let trigger = Trigger.create () in
let triggers = trigger :: r.triggers in
let after = Run { r with triggers } in
if Atomic.compare_and_set t seen after then begin
let on_cancellation () = cleanup t trigger Backoff.default in
let finally ~cancelled:_ = () in
protect ~on_cancellation ~finally @@ fun () ->
ignore (Trigger.await trigger);
force t prm Backoff.default
end
else force t prm (Backoff.once backoff)
let force t =
match Atomic.get t with
| Val v -> v
| Exn r -> Printexc.raise_with_backtrace r.exn r.trace
| Fun _ | Run _ ->
let (Pack self) = Effect.perform Self in
Promise.raise_if_errored self;
force t self Backoff.default
end
module Sequence = struct
include Miou_sequence
let add direction t value = add direction t value; peek_node direction t
end