lightning-background-processor 0.2.0

Utilities to perform required background tasks for Rust Lightning.
Documentation
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
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
// This file is Copyright its original authors, visible in version control
// history.
//
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
// You may not use this file except in accordance with one or both of these
// licenses.

//! Utilities that take care of tasks that (1) need to happen periodically to keep Rust-Lightning
//! running properly, and (2) either can or should be run in the background.
#![cfg_attr(feature = "std", doc = "See docs for [`BackgroundProcessor`] for more details.")]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(rustdoc::private_intra_doc_links)]
#![deny(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]

#[cfg(any(test, feature = "std"))]
extern crate core;

#[cfg(not(feature = "std"))]
extern crate alloc;

#[macro_use]
extern crate lightning;
extern crate lightning_rapid_gossip_sync;

mod fwd_batch;

use fwd_batch::BatchDelay;

use lightning::chain;
use lightning::chain::chaininterface::{BroadcasterInterface, FeeEstimator};
use lightning::chain::chainmonitor::{ChainMonitor, Persist};
#[cfg(feature = "std")]
use lightning::events::EventHandler;
#[cfg(feature = "std")]
use lightning::events::EventsProvider;
use lightning::events::ReplayEvent;
use lightning::events::{Event, PathFailure};
use lightning::util::ser::Writeable;

use lightning::ln::channelmanager::AChannelManager;
use lightning::ln::msgs::OnionMessageHandler;
use lightning::ln::peer_handler::APeerManager;
use lightning::onion_message::messenger::AOnionMessenger;
use lightning::routing::gossip::{NetworkGraph, P2PGossipSync};
use lightning::routing::scoring::{ScoreUpdate, WriteableScore};
use lightning::routing::utxo::UtxoLookup;
use lightning::sign::{
	ChangeDestinationSource, ChangeDestinationSourceSync, EntropySource, OutputSpender,
};
use lightning::util::logger::Logger;
use lightning::util::persist::{
	KVStore, KVStoreSync, KVStoreSyncWrapper, CHANNEL_MANAGER_PERSISTENCE_KEY,
	CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE, CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
	NETWORK_GRAPH_PERSISTENCE_KEY, NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE,
	NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE, SCORER_PERSISTENCE_KEY,
	SCORER_PERSISTENCE_PRIMARY_NAMESPACE, SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
};
use lightning::util::sweep::{OutputSweeper, OutputSweeperSync};
#[cfg(feature = "std")]
use lightning::util::wakers::Sleeper;
use lightning_rapid_gossip_sync::RapidGossipSync;

use lightning_liquidity::ALiquidityManager;
#[cfg(feature = "std")]
use lightning_liquidity::ALiquidityManagerSync;

use core::ops::Deref;
use core::time::Duration;

#[cfg(feature = "std")]
use core::sync::atomic::{AtomicBool, Ordering};
#[cfg(feature = "std")]
use std::sync::Arc;
#[cfg(feature = "std")]
use std::thread::{self, JoinHandle};
#[cfg(feature = "std")]
use std::time::Instant;

#[cfg(not(feature = "std"))]
use alloc::boxed::Box;
#[cfg(all(not(c_bindings), not(feature = "std")))]
use alloc::sync::Arc;

/// `BackgroundProcessor` takes care of tasks that (1) need to happen periodically to keep
/// Rust-Lightning running properly, and (2) either can or should be run in the background. Its
/// responsibilities are:
/// * Processing [`Event`]s with a user-provided [`EventHandler`].
/// * Monitoring whether the [`ChannelManager`] needs to be re-persisted to disk, and if so,
///   writing it to disk/backups by invoking the callback given to it at startup.
///   [`ChannelManager`] persistence should be done in the background.
/// * Calling [`ChannelManager::timer_tick_occurred`], [`ChainMonitor::rebroadcast_pending_claims`]
///   and [`PeerManager::timer_tick_occurred`] at the appropriate intervals.
/// * Calling [`NetworkGraph::remove_stale_channels_and_tracking`] (if a [`GossipSync`] with a
///   [`NetworkGraph`] is provided to [`BackgroundProcessor::start`]).
///
/// It will also call [`PeerManager::process_events`] periodically though this shouldn't be relied
/// upon as doing so may result in high latency.
///
/// # Note
///
/// If [`ChannelManager`] persistence fails and the persisted manager becomes out-of-date, then
/// there is a risk of channels force-closing on startup when the manager realizes it's outdated.
/// However, as long as [`ChannelMonitor`] backups are sound, no funds besides those used for
/// unilateral chain closure fees are at risk.
///
/// [`ChannelManager`]: lightning::ln::channelmanager::ChannelManager
/// [`ChannelManager::timer_tick_occurred`]: lightning::ln::channelmanager::ChannelManager::timer_tick_occurred
/// [`ChannelMonitor`]: lightning::chain::channelmonitor::ChannelMonitor
/// [`Event`]: lightning::events::Event
/// [`PeerManager::timer_tick_occurred`]: lightning::ln::peer_handler::PeerManager::timer_tick_occurred
/// [`PeerManager::process_events`]: lightning::ln::peer_handler::PeerManager::process_events
#[cfg(feature = "std")]
#[must_use = "BackgroundProcessor will immediately stop on drop. It should be stored until shutdown."]
pub struct BackgroundProcessor {
	stop_thread: Arc<AtomicBool>,
	thread_handle: Option<JoinHandle<Result<(), std::io::Error>>>,
}

#[cfg(not(test))]
const FRESHNESS_TIMER: Duration = Duration::from_secs(60);
#[cfg(test)]
const FRESHNESS_TIMER: Duration = Duration::from_secs(1);

#[cfg(all(not(test), not(debug_assertions)))]
const PING_TIMER: Duration = Duration::from_secs(10);
/// Signature operations take a lot longer without compiler optimisations.
/// Increasing the ping timer allows for this but slower devices will be disconnected if the
/// timeout is reached.
#[cfg(all(not(test), debug_assertions))]
const PING_TIMER: Duration = Duration::from_secs(30);
#[cfg(test)]
const PING_TIMER: Duration = Duration::from_secs(1);

#[cfg(not(test))]
const ONION_MESSAGE_HANDLER_TIMER: Duration = Duration::from_secs(10);
#[cfg(test)]
const ONION_MESSAGE_HANDLER_TIMER: Duration = Duration::from_secs(1);

/// Prune the network graph of stale entries hourly.
const NETWORK_PRUNE_TIMER: Duration = Duration::from_secs(60 * 60);

#[cfg(not(test))]
const SCORER_PERSIST_TIMER: Duration = Duration::from_secs(60 * 5);
#[cfg(test)]
const SCORER_PERSIST_TIMER: Duration = Duration::from_secs(1);

#[cfg(not(test))]
const FIRST_NETWORK_PRUNE_TIMER: Duration = Duration::from_secs(60);
#[cfg(test)]
const FIRST_NETWORK_PRUNE_TIMER: Duration = Duration::from_secs(1);

#[cfg(not(test))]
const REBROADCAST_TIMER: Duration = Duration::from_secs(30);
#[cfg(test)]
const REBROADCAST_TIMER: Duration = Duration::from_secs(1);

#[cfg(not(test))]
const SWEEPER_TIMER: Duration = Duration::from_secs(30);
#[cfg(test)]
const SWEEPER_TIMER: Duration = Duration::from_secs(1);

/// core::cmp::min is not currently const, so we define a trivial (and equivalent) replacement
const fn min_duration(a: Duration, b: Duration) -> Duration {
	if a.as_nanos() < b.as_nanos() {
		a
	} else {
		b
	}
}
const FASTEST_TIMER: Duration = min_duration(
	min_duration(FRESHNESS_TIMER, PING_TIMER),
	min_duration(SCORER_PERSIST_TIMER, min_duration(FIRST_NETWORK_PRUNE_TIMER, REBROADCAST_TIMER)),
);

/// Either [`P2PGossipSync`] or [`RapidGossipSync`].
pub enum GossipSync<
	P: Deref<Target = P2PGossipSync<G, U, L>>,
	R: Deref<Target = RapidGossipSync<G, L>>,
	G: Deref<Target = NetworkGraph<L>>,
	U: Deref,
	L: Deref,
> where
	U::Target: UtxoLookup,
	L::Target: Logger,
{
	/// Gossip sync via the lightning peer-to-peer network as defined by BOLT 7.
	P2P(P),
	/// Rapid gossip sync from a trusted server.
	Rapid(R),
	/// No gossip sync.
	None,
}

impl<
		P: Deref<Target = P2PGossipSync<G, U, L>>,
		R: Deref<Target = RapidGossipSync<G, L>>,
		G: Deref<Target = NetworkGraph<L>>,
		U: Deref,
		L: Deref,
	> GossipSync<P, R, G, U, L>
where
	U::Target: UtxoLookup,
	L::Target: Logger,
{
	fn network_graph(&self) -> Option<&G> {
		match self {
			GossipSync::P2P(gossip_sync) => Some(gossip_sync.network_graph()),
			GossipSync::Rapid(gossip_sync) => Some(gossip_sync.network_graph()),
			GossipSync::None => None,
		}
	}

	fn prunable_network_graph(&self) -> Option<&G> {
		match self {
			GossipSync::P2P(gossip_sync) => Some(gossip_sync.network_graph()),
			GossipSync::Rapid(gossip_sync) => {
				if gossip_sync.is_initial_sync_complete() {
					Some(gossip_sync.network_graph())
				} else {
					None
				}
			},
			GossipSync::None => None,
		}
	}
}

/// This is not exported to bindings users as the bindings concretize everything and have constructors for us
impl<
		P: Deref<Target = P2PGossipSync<G, U, L>>,
		G: Deref<Target = NetworkGraph<L>>,
		U: Deref,
		L: Deref,
	> GossipSync<P, &RapidGossipSync<G, L>, G, U, L>
where
	U::Target: UtxoLookup,
	L::Target: Logger,
{
	/// Initializes a new [`GossipSync::P2P`] variant.
	pub fn p2p(gossip_sync: P) -> Self {
		GossipSync::P2P(gossip_sync)
	}
}

/// This is not exported to bindings users as the bindings concretize everything and have constructors for us
impl<
		'a,
		R: Deref<Target = RapidGossipSync<G, L>>,
		G: Deref<Target = NetworkGraph<L>>,
		L: Deref,
	>
	GossipSync<
		&P2PGossipSync<G, &'a (dyn UtxoLookup + Send + Sync), L>,
		R,
		G,
		&'a (dyn UtxoLookup + Send + Sync),
		L,
	> where
	L::Target: Logger,
{
	/// Initializes a new [`GossipSync::Rapid`] variant.
	pub fn rapid(gossip_sync: R) -> Self {
		GossipSync::Rapid(gossip_sync)
	}
}

/// This is not exported to bindings users as the bindings concretize everything and have constructors for us
impl<'a, L: Deref>
	GossipSync<
		&P2PGossipSync<&'a NetworkGraph<L>, &'a (dyn UtxoLookup + Send + Sync), L>,
		&RapidGossipSync<&'a NetworkGraph<L>, L>,
		&'a NetworkGraph<L>,
		&'a (dyn UtxoLookup + Send + Sync),
		L,
	> where
	L::Target: Logger,
{
	/// Initializes a new [`GossipSync::None`] variant.
	pub fn none() -> Self {
		GossipSync::None
	}
}

fn handle_network_graph_update<L: Deref>(network_graph: &NetworkGraph<L>, event: &Event)
where
	L::Target: Logger,
{
	if let Event::PaymentPathFailed {
		failure: PathFailure::OnPath { network_update: Some(ref upd) },
		..
	} = event
	{
		network_graph.handle_network_update(upd);
	}
}

/// Updates scorer based on event and returns whether an update occurred so we can decide whether
/// to persist.
fn update_scorer<'a, S: Deref<Target = SC>, SC: 'a + WriteableScore<'a>>(
	scorer: &'a S, event: &Event, duration_since_epoch: Duration,
) -> bool {
	match event {
		Event::PaymentPathFailed { ref path, short_channel_id: Some(scid), .. } => {
			let mut score = scorer.write_lock();
			score.payment_path_failed(path, *scid, duration_since_epoch);
		},
		Event::PaymentPathFailed { ref path, payment_failed_permanently: true, .. } => {
			// Reached if the destination explicitly failed it back. We treat this as a successful probe
			// because the payment made it all the way to the destination with sufficient liquidity.
			let mut score = scorer.write_lock();
			score.probe_successful(path, duration_since_epoch);
		},
		Event::PaymentPathSuccessful { path, .. } => {
			let mut score = scorer.write_lock();
			score.payment_path_successful(path, duration_since_epoch);
		},
		Event::ProbeSuccessful { path, .. } => {
			let mut score = scorer.write_lock();
			score.probe_successful(path, duration_since_epoch);
		},
		Event::ProbeFailed { path, short_channel_id: Some(scid), .. } => {
			let mut score = scorer.write_lock();
			score.probe_failed(path, *scid, duration_since_epoch);
		},
		_ => return false,
	}
	true
}

#[cfg(all(not(c_bindings), feature = "std"))]
type ScorerWrapper<T> = std::sync::RwLock<T>;

#[cfg(all(not(c_bindings), not(feature = "std")))]
type ScorerWrapper<T> = core::cell::RefCell<T>;

#[cfg(not(c_bindings))]
type DynRouter = lightning::routing::router::DefaultRouter<
	&'static NetworkGraph<&'static (dyn Logger + Send + Sync)>,
	&'static (dyn Logger + Send + Sync),
	&'static (dyn EntropySource + Send + Sync),
	&'static ScorerWrapper<
		lightning::routing::scoring::ProbabilisticScorer<
			&'static NetworkGraph<&'static (dyn Logger + Send + Sync)>,
			&'static (dyn Logger + Send + Sync),
		>,
	>,
	lightning::routing::scoring::ProbabilisticScoringFeeParameters,
	lightning::routing::scoring::ProbabilisticScorer<
		&'static NetworkGraph<&'static (dyn Logger + Send + Sync)>,
		&'static (dyn Logger + Send + Sync),
	>,
>;

#[cfg(not(c_bindings))]
type DynMessageRouter = lightning::onion_message::messenger::DefaultMessageRouter<
	&'static NetworkGraph<&'static (dyn Logger + Send + Sync)>,
	&'static (dyn Logger + Send + Sync),
	&'static (dyn EntropySource + Send + Sync),
>;

#[cfg(all(not(c_bindings), not(taproot)))]
type DynSignerProvider = dyn lightning::sign::SignerProvider<EcdsaSigner = lightning::sign::InMemorySigner>
	+ Send
	+ Sync;

#[cfg(all(not(c_bindings), taproot))]
type DynSignerProvider = (dyn lightning::sign::SignerProvider<
	EcdsaSigner = lightning::sign::InMemorySigner,
	TaprootSigner = lightning::sign::InMemorySigner,
> + Send
     + Sync);

#[cfg(not(c_bindings))]
type DynChannelManager = lightning::ln::channelmanager::ChannelManager<
	&'static (dyn chain::Watch<lightning::sign::InMemorySigner> + Send + Sync),
	&'static (dyn BroadcasterInterface + Send + Sync),
	&'static (dyn EntropySource + Send + Sync),
	&'static (dyn lightning::sign::NodeSigner + Send + Sync),
	&'static DynSignerProvider,
	&'static (dyn FeeEstimator + Send + Sync),
	&'static DynRouter,
	&'static DynMessageRouter,
	&'static (dyn Logger + Send + Sync),
>;

/// When initializing a background processor without an onion messenger, this can be used to avoid
/// specifying a concrete `OnionMessenger` type.
#[cfg(not(c_bindings))]
pub const NO_ONION_MESSENGER: Option<
	Arc<
		dyn AOnionMessenger<
				EntropySource = dyn EntropySource + Send + Sync,
				ES = &(dyn EntropySource + Send + Sync),
				NodeSigner = dyn lightning::sign::NodeSigner + Send + Sync,
				NS = &(dyn lightning::sign::NodeSigner + Send + Sync),
				Logger = dyn Logger + Send + Sync,
				L = &'static (dyn Logger + Send + Sync),
				NodeIdLookUp = DynChannelManager,
				NL = &'static DynChannelManager,
				MessageRouter = DynMessageRouter,
				MR = &'static DynMessageRouter,
				OffersMessageHandler = lightning::ln::peer_handler::IgnoringMessageHandler,
				OMH = &'static lightning::ln::peer_handler::IgnoringMessageHandler,
				AsyncPaymentsMessageHandler = lightning::ln::peer_handler::IgnoringMessageHandler,
				APH = &'static lightning::ln::peer_handler::IgnoringMessageHandler,
				DNSResolverMessageHandler = lightning::ln::peer_handler::IgnoringMessageHandler,
				DRH = &'static lightning::ln::peer_handler::IgnoringMessageHandler,
				CustomOnionMessageHandler = lightning::ln::peer_handler::IgnoringMessageHandler,
				CMH = &'static lightning::ln::peer_handler::IgnoringMessageHandler,
			> + Send
			+ Sync,
	>,
> = None;

/// When initializing a background processor without a liquidity manager, this can be used to avoid
/// specifying a concrete `LiquidityManager` type.
#[cfg(not(c_bindings))]
pub const NO_LIQUIDITY_MANAGER: Option<
	Arc<
		dyn ALiquidityManager<
				EntropySource = dyn EntropySource + Send + Sync,
				ES = &(dyn EntropySource + Send + Sync),
				NodeSigner = dyn lightning::sign::NodeSigner + Send + Sync,
				NS = &(dyn lightning::sign::NodeSigner + Send + Sync),
				AChannelManager = DynChannelManager,
				CM = &DynChannelManager,
				Filter = dyn chain::Filter + Send + Sync,
				C = &(dyn chain::Filter + Send + Sync),
				KVStore = dyn lightning::util::persist::KVStore + Send + Sync,
				K = &(dyn lightning::util::persist::KVStore + Send + Sync),
				TimeProvider = dyn lightning_liquidity::utils::time::TimeProvider + Send + Sync,
				TP = &(dyn lightning_liquidity::utils::time::TimeProvider + Send + Sync),
				BroadcasterInterface = dyn lightning::chain::chaininterface::BroadcasterInterface
				                           + Send
				                           + Sync,
				T = &(dyn BroadcasterInterface + Send + Sync),
			> + Send
			+ Sync,
	>,
> = None;

/// When initializing a background processor without a liquidity manager, this can be used to avoid
/// specifying a concrete `LiquidityManagerSync` type.
#[cfg(all(not(c_bindings), feature = "std"))]
pub const NO_LIQUIDITY_MANAGER_SYNC: Option<
	Arc<
		dyn ALiquidityManagerSync<
				EntropySource = dyn EntropySource + Send + Sync,
				ES = &(dyn EntropySource + Send + Sync),
				NodeSigner = dyn lightning::sign::NodeSigner + Send + Sync,
				NS = &(dyn lightning::sign::NodeSigner + Send + Sync),
				AChannelManager = DynChannelManager,
				CM = &DynChannelManager,
				Filter = dyn chain::Filter + Send + Sync,
				C = &(dyn chain::Filter + Send + Sync),
				KVStoreSync = dyn lightning::util::persist::KVStoreSync + Send + Sync,
				KS = &(dyn lightning::util::persist::KVStoreSync + Send + Sync),
				TimeProvider = dyn lightning_liquidity::utils::time::TimeProvider + Send + Sync,
				TP = &(dyn lightning_liquidity::utils::time::TimeProvider + Send + Sync),
				BroadcasterInterface = dyn lightning::chain::chaininterface::BroadcasterInterface
				                           + Send
				                           + Sync,
				T = &(dyn BroadcasterInterface + Send + Sync),
			> + Send
			+ Sync,
	>,
> = None;

pub(crate) mod futures_util {
	use core::future::Future;
	use core::marker::Unpin;
	use core::pin::Pin;
	use core::task::{Poll, RawWaker, RawWakerVTable, Waker};
	pub(crate) struct Selector<
		A: Future<Output = ()> + Unpin,
		B: Future<Output = ()> + Unpin,
		C: Future<Output = ()> + Unpin,
		D: Future<Output = ()> + Unpin,
		E: Future<Output = bool> + Unpin,
	> {
		pub a: A,
		pub b: B,
		pub c: C,
		pub d: D,
		pub e: E,
	}

	pub(crate) enum SelectorOutput {
		A,
		B,
		C,
		D,
		E(bool),
	}

	impl<
			A: Future<Output = ()> + Unpin,
			B: Future<Output = ()> + Unpin,
			C: Future<Output = ()> + Unpin,
			D: Future<Output = ()> + Unpin,
			E: Future<Output = bool> + Unpin,
		> Future for Selector<A, B, C, D, E>
	{
		type Output = SelectorOutput;
		fn poll(
			mut self: Pin<&mut Self>, ctx: &mut core::task::Context<'_>,
		) -> Poll<SelectorOutput> {
			match Pin::new(&mut self.a).poll(ctx) {
				Poll::Ready(()) => {
					return Poll::Ready(SelectorOutput::A);
				},
				Poll::Pending => {},
			}
			match Pin::new(&mut self.b).poll(ctx) {
				Poll::Ready(()) => {
					return Poll::Ready(SelectorOutput::B);
				},
				Poll::Pending => {},
			}
			match Pin::new(&mut self.c).poll(ctx) {
				Poll::Ready(()) => {
					return Poll::Ready(SelectorOutput::C);
				},
				Poll::Pending => {},
			}
			match Pin::new(&mut self.d).poll(ctx) {
				Poll::Ready(()) => {
					return Poll::Ready(SelectorOutput::D);
				},
				Poll::Pending => {},
			}
			match Pin::new(&mut self.e).poll(ctx) {
				Poll::Ready(res) => {
					return Poll::Ready(SelectorOutput::E(res));
				},
				Poll::Pending => {},
			}
			Poll::Pending
		}
	}

	/// A selector that takes a future wrapped in an option that will be polled if it is `Some` and
	/// will always be pending otherwise.
	pub(crate) struct OptionalSelector<F: Future<Output = ()> + Unpin> {
		pub optional_future: Option<F>,
	}

	impl<F: Future<Output = ()> + Unpin> Future for OptionalSelector<F> {
		type Output = ();
		fn poll(mut self: Pin<&mut Self>, ctx: &mut core::task::Context<'_>) -> Poll<Self::Output> {
			match self.optional_future.as_mut() {
				Some(f) => match Pin::new(f).poll(ctx) {
					Poll::Ready(()) => {
						self.optional_future.take();
						Poll::Ready(())
					},
					Poll::Pending => Poll::Pending,
				},
				None => Poll::Pending,
			}
		}
	}

	// If we want to poll a future without an async context to figure out if it has completed or
	// not without awaiting, we need a Waker, which needs a vtable...we fill it with dummy values
	// but sadly there's a good bit of boilerplate here.
	fn dummy_waker_clone(_: *const ()) -> RawWaker {
		RawWaker::new(core::ptr::null(), &DUMMY_WAKER_VTABLE)
	}
	fn dummy_waker_action(_: *const ()) {}

	const DUMMY_WAKER_VTABLE: RawWakerVTable = RawWakerVTable::new(
		dummy_waker_clone,
		dummy_waker_action,
		dummy_waker_action,
		dummy_waker_action,
	);
	pub(crate) fn dummy_waker() -> Waker {
		unsafe { Waker::from_raw(RawWaker::new(core::ptr::null(), &DUMMY_WAKER_VTABLE)) }
	}

	enum JoinerResult<ERR, F: Future<Output = Result<(), ERR>> + Unpin> {
		Pending(Option<F>),
		Ready(Result<(), ERR>),
	}

	pub(crate) struct Joiner<
		ERR,
		A: Future<Output = Result<(), ERR>> + Unpin,
		B: Future<Output = Result<(), ERR>> + Unpin,
		C: Future<Output = Result<(), ERR>> + Unpin,
		D: Future<Output = Result<(), ERR>> + Unpin,
		E: Future<Output = Result<(), ERR>> + Unpin,
	> {
		a: JoinerResult<ERR, A>,
		b: JoinerResult<ERR, B>,
		c: JoinerResult<ERR, C>,
		d: JoinerResult<ERR, D>,
		e: JoinerResult<ERR, E>,
	}

	impl<
			ERR,
			A: Future<Output = Result<(), ERR>> + Unpin,
			B: Future<Output = Result<(), ERR>> + Unpin,
			C: Future<Output = Result<(), ERR>> + Unpin,
			D: Future<Output = Result<(), ERR>> + Unpin,
			E: Future<Output = Result<(), ERR>> + Unpin,
		> Joiner<ERR, A, B, C, D, E>
	{
		pub(crate) fn new() -> Self {
			Self {
				a: JoinerResult::Pending(None),
				b: JoinerResult::Pending(None),
				c: JoinerResult::Pending(None),
				d: JoinerResult::Pending(None),
				e: JoinerResult::Pending(None),
			}
		}

		pub(crate) fn set_a(&mut self, fut: A) {
			self.a = JoinerResult::Pending(Some(fut));
		}
		pub(crate) fn set_a_res(&mut self, res: Result<(), ERR>) {
			self.a = JoinerResult::Ready(res);
		}
		pub(crate) fn set_b(&mut self, fut: B) {
			self.b = JoinerResult::Pending(Some(fut));
		}
		pub(crate) fn set_c(&mut self, fut: C) {
			self.c = JoinerResult::Pending(Some(fut));
		}
		pub(crate) fn set_d(&mut self, fut: D) {
			self.d = JoinerResult::Pending(Some(fut));
		}
		pub(crate) fn set_e(&mut self, fut: E) {
			self.e = JoinerResult::Pending(Some(fut));
		}
	}

	impl<
			ERR,
			A: Future<Output = Result<(), ERR>> + Unpin,
			B: Future<Output = Result<(), ERR>> + Unpin,
			C: Future<Output = Result<(), ERR>> + Unpin,
			D: Future<Output = Result<(), ERR>> + Unpin,
			E: Future<Output = Result<(), ERR>> + Unpin,
		> Future for Joiner<ERR, A, B, C, D, E>
	where
		Joiner<ERR, A, B, C, D, E>: Unpin,
	{
		type Output = [Result<(), ERR>; 5];
		fn poll(mut self: Pin<&mut Self>, ctx: &mut core::task::Context<'_>) -> Poll<Self::Output> {
			let mut all_complete = true;
			macro_rules! handle {
				($val: ident) => {
					match &mut (self.$val) {
						JoinerResult::Pending(None) => {
							self.$val = JoinerResult::Ready(Ok(()));
						},
						JoinerResult::<ERR, _>::Pending(Some(ref mut val)) => {
							match Pin::new(val).poll(ctx) {
								Poll::Ready(res) => {
									self.$val = JoinerResult::Ready(res);
								},
								Poll::Pending => {
									all_complete = false;
								},
							}
						},
						JoinerResult::Ready(_) => {},
					}
				};
			}
			handle!(a);
			handle!(b);
			handle!(c);
			handle!(d);
			handle!(e);

			if all_complete {
				let mut res = [Ok(()), Ok(()), Ok(()), Ok(()), Ok(())];
				if let JoinerResult::Ready(ref mut val) = &mut self.a {
					core::mem::swap(&mut res[0], val);
				}
				if let JoinerResult::Ready(ref mut val) = &mut self.b {
					core::mem::swap(&mut res[1], val);
				}
				if let JoinerResult::Ready(ref mut val) = &mut self.c {
					core::mem::swap(&mut res[2], val);
				}
				if let JoinerResult::Ready(ref mut val) = &mut self.d {
					core::mem::swap(&mut res[3], val);
				}
				if let JoinerResult::Ready(ref mut val) = &mut self.e {
					core::mem::swap(&mut res[4], val);
				}
				Poll::Ready(res)
			} else {
				Poll::Pending
			}
		}
	}
}
use core::task;
use futures_util::{dummy_waker, Joiner, OptionalSelector, Selector, SelectorOutput};

/// Processes background events in a future.
///
/// `sleeper` should return a future which completes in the given amount of time and returns a
/// boolean indicating whether the background processing should exit. Once `sleeper` returns a
/// future which outputs `true`, the loop will exit and this function's future will complete.
/// The `sleeper` future is free to return early after it has triggered the exit condition.
///
#[cfg_attr(
	feature = "std",
	doc = " See [`BackgroundProcessor::start`] for information on which actions this handles.\n"
)]
/// The `mobile_interruptable_platform` flag should be set if we're currently running on a
/// mobile device, where we may need to check for interruption of the application regularly. If you
/// are unsure, you should set the flag, as the performance impact of it is minimal unless there
/// are hundreds or thousands of simultaneous process calls running.
///
/// The `fetch_time` parameter should return the current wall clock time, if one is available. If
/// no time is available, some features may be disabled, however the node will still operate fine.
///
/// For example, in order to process background events in a [Tokio](https://tokio.rs/) task, you
/// could setup `process_events_async` like this:
/// ```
/// # use lightning::io;
/// # use lightning::events::ReplayEvent;
/// # use std::sync::{Arc, RwLock};
/// # use std::sync::atomic::{AtomicBool, Ordering};
/// # use std::time::SystemTime;
/// # use lightning_background_processor::{process_events_async, GossipSync};
/// # use core::future::Future;
/// # use core::pin::Pin;
/// # use lightning_liquidity::utils::time::TimeProvider;
/// # struct Logger {}
/// # impl lightning::util::logger::Logger for Logger {
/// #     fn log(&self, _record: lightning::util::logger::Record) {}
/// # }
/// # struct StoreSync {}
/// # impl lightning::util::persist::KVStoreSync for StoreSync {
/// #     fn read(&self, primary_namespace: &str, secondary_namespace: &str, key: &str) -> io::Result<Vec<u8>> { Ok(Vec::new()) }
/// #     fn write(&self, primary_namespace: &str, secondary_namespace: &str, key: &str, buf: Vec<u8>) -> io::Result<()> { Ok(()) }
/// #     fn remove(&self, primary_namespace: &str, secondary_namespace: &str, key: &str, lazy: bool) -> io::Result<()> { Ok(()) }
/// #     fn list(&self, primary_namespace: &str, secondary_namespace: &str) -> io::Result<Vec<String>> { Ok(Vec::new()) }
/// # }
/// # struct Store {}
/// # impl lightning::util::persist::KVStore for Store {
/// #     fn read(&self, primary_namespace: &str, secondary_namespace: &str, key: &str) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, io::Error>> + 'static + Send>> { todo!() }
/// #     fn write(&self, primary_namespace: &str, secondary_namespace: &str, key: &str, buf: Vec<u8>) -> Pin<Box<dyn Future<Output = Result<(), io::Error>> + 'static + Send>> { todo!() }
/// #     fn remove(&self, primary_namespace: &str, secondary_namespace: &str, key: &str, lazy: bool) -> Pin<Box<dyn Future<Output = Result<(), io::Error>> + 'static + Send>> { todo!() }
/// #     fn list(&self, primary_namespace: &str, secondary_namespace: &str) -> Pin<Box<dyn Future<Output = Result<Vec<String>, io::Error>> + 'static + Send>> { todo!() }
/// # }
/// # use core::time::Duration;
/// # struct DefaultTimeProvider;
/// #
/// # impl TimeProvider for DefaultTimeProvider {
/// #    fn duration_since_epoch(&self) -> Duration {
/// #        use std::time::{SystemTime, UNIX_EPOCH};
/// #        SystemTime::now().duration_since(UNIX_EPOCH).expect("system time before Unix epoch")
/// #    }
/// # }
/// # struct EventHandler {}
/// # impl EventHandler {
/// #     async fn handle_event(&self, _: lightning::events::Event) -> Result<(), ReplayEvent> { Ok(()) }
/// # }
/// # #[derive(Eq, PartialEq, Clone, Hash)]
/// # struct SocketDescriptor {}
/// # impl lightning::ln::peer_handler::SocketDescriptor for SocketDescriptor {
/// #     fn send_data(&mut self, _data: &[u8], _continue_read: bool) -> usize { 0 }
/// #     fn disconnect_socket(&mut self) {}
/// # }
/// # type ChainMonitor<B, F, FE> = lightning::chain::chainmonitor::ChainMonitor<lightning::sign::InMemorySigner, Arc<F>, Arc<B>, Arc<FE>, Arc<Logger>, Arc<StoreSync>, Arc<lightning::sign::KeysManager>>;
/// # type NetworkGraph = lightning::routing::gossip::NetworkGraph<Arc<Logger>>;
/// # type P2PGossipSync<UL> = lightning::routing::gossip::P2PGossipSync<Arc<NetworkGraph>, Arc<UL>, Arc<Logger>>;
/// # type ChannelManager<B, F, FE> = lightning::ln::channelmanager::SimpleArcChannelManager<ChainMonitor<B, F, FE>, B, FE, Logger>;
/// # type OnionMessenger<B, F, FE> = lightning::onion_message::messenger::OnionMessenger<Arc<lightning::sign::KeysManager>, Arc<lightning::sign::KeysManager>, Arc<Logger>, Arc<ChannelManager<B, F, FE>>, Arc<lightning::onion_message::messenger::DefaultMessageRouter<Arc<NetworkGraph>, Arc<Logger>, Arc<lightning::sign::KeysManager>>>, Arc<ChannelManager<B, F, FE>>, lightning::ln::peer_handler::IgnoringMessageHandler, lightning::ln::peer_handler::IgnoringMessageHandler, lightning::ln::peer_handler::IgnoringMessageHandler>;
/// # type LiquidityManager<B, F, FE> = lightning_liquidity::LiquidityManager<Arc<lightning::sign::KeysManager>, Arc<lightning::sign::KeysManager>, Arc<ChannelManager<B, F, FE>>, Arc<F>, Arc<Store>, Arc<DefaultTimeProvider>, Arc<B>>;
/// # type Scorer = RwLock<lightning::routing::scoring::ProbabilisticScorer<Arc<NetworkGraph>, Arc<Logger>>>;
/// # type PeerManager<B, F, FE, UL> = lightning::ln::peer_handler::SimpleArcPeerManager<SocketDescriptor, ChainMonitor<B, F, FE>, B, FE, Arc<UL>, Logger, F, StoreSync>;
/// # type OutputSweeper<B, D, FE, F, O> = lightning::util::sweep::OutputSweeper<Arc<B>, Arc<D>, Arc<FE>, Arc<F>, Arc<Store>, Arc<Logger>, Arc<O>>;
///
/// # struct Node<
/// #     B: lightning::chain::chaininterface::BroadcasterInterface + Send + Sync + 'static,
/// #     F: lightning::chain::Filter + Send + Sync + 'static,
/// #     FE: lightning::chain::chaininterface::FeeEstimator + Send + Sync + 'static,
/// #     UL: lightning::routing::utxo::UtxoLookup + Send + Sync + 'static,
/// #     D: lightning::sign::ChangeDestinationSource + Send + Sync + 'static,
/// #     O: lightning::sign::OutputSpender + Send + Sync + 'static,
/// # > {
/// #     peer_manager: Arc<PeerManager<B, F, FE, UL>>,
/// #     event_handler: Arc<EventHandler>,
/// #     channel_manager: Arc<ChannelManager<B, F, FE>>,
/// #     onion_messenger: Arc<OnionMessenger<B, F, FE>>,
/// #     liquidity_manager: Arc<LiquidityManager<B, F, FE>>,
/// #     chain_monitor: Arc<ChainMonitor<B, F, FE>>,
/// #     gossip_sync: Arc<P2PGossipSync<UL>>,
/// #     persister: Arc<Store>,
/// #     logger: Arc<Logger>,
/// #     scorer: Arc<Scorer>,
/// #     sweeper: Arc<OutputSweeper<B, D, FE, F, O>>,
/// # }
/// #
/// # async fn setup_background_processing<
/// #     B: lightning::chain::chaininterface::BroadcasterInterface + Send + Sync + 'static,
/// #     F: lightning::chain::Filter + Send + Sync + 'static,
/// #     FE: lightning::chain::chaininterface::FeeEstimator + Send + Sync + 'static,
/// #     UL: lightning::routing::utxo::UtxoLookup + Send + Sync + 'static,
/// #     D: lightning::sign::ChangeDestinationSource + Send + Sync + 'static,
/// #     O: lightning::sign::OutputSpender + Send + Sync + 'static,
/// # >(node: Node<B, F, FE, UL, D, O>) {
///	let background_persister = Arc::clone(&node.persister);
///	let background_event_handler = Arc::clone(&node.event_handler);
///	let background_chain_mon = Arc::clone(&node.chain_monitor);
///	let background_chan_man = Arc::clone(&node.channel_manager);
///	let background_gossip_sync = GossipSync::p2p(Arc::clone(&node.gossip_sync));
///	let background_peer_man = Arc::clone(&node.peer_manager);
///	let background_onion_messenger = Arc::clone(&node.onion_messenger);
///	let background_liquidity_manager = Arc::clone(&node.liquidity_manager);
///	let background_logger = Arc::clone(&node.logger);
///	let background_scorer = Arc::clone(&node.scorer);
///	let background_sweeper = Arc::clone(&node.sweeper);
///	// Setup the sleeper.
#[cfg_attr(
	feature = "std",
	doc = "	let (stop_sender, stop_receiver) = tokio::sync::watch::channel(());"
)]
#[cfg_attr(feature = "std", doc = "")]
///	let sleeper = move |d| {
#[cfg_attr(feature = "std", doc = "		let mut receiver = stop_receiver.clone();")]
///		Box::pin(async move {
///			tokio::select!{
///				_ = tokio::time::sleep(d) => false,
#[cfg_attr(feature = "std", doc = "				_ = receiver.changed() => true,")]
///			}
///		})
///	};
///
///	let mobile_interruptable_platform = false;
///
#[cfg_attr(feature = "std", doc = "	let handle = tokio::spawn(async move {")]
#[cfg_attr(
	not(feature = "std"),
	doc = "	let rt = tokio::runtime::Builder::new_current_thread().build().unwrap();"
)]
#[cfg_attr(not(feature = "std"), doc = "	rt.block_on(async move {")]
///		process_events_async(
///			background_persister,
///			|e| background_event_handler.handle_event(e),
///			background_chain_mon,
///			background_chan_man,
///			Some(background_onion_messenger),
///			background_gossip_sync,
///			background_peer_man,
///			Some(background_liquidity_manager),
///			Some(background_sweeper),
///			background_logger,
///			Some(background_scorer),
///			sleeper,
///			mobile_interruptable_platform,
///			|| Some(SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap())
///		)
///		.await
///		.expect("Failed to process events");
///	});
///
///	// Stop the background processing.
#[cfg_attr(feature = "std", doc = "	stop_sender.send(()).unwrap();")]
#[cfg_attr(feature = "std", doc = "	handle.await.unwrap()")]
///	# }
///```
pub async fn process_events_async<
	'a,
	UL: Deref,
	CF: Deref,
	T: Deref,
	F: Deref,
	G: Deref<Target = NetworkGraph<L>>,
	L: Deref,
	P: Deref,
	EventHandlerFuture: core::future::Future<Output = Result<(), ReplayEvent>>,
	EventHandler: Fn(Event) -> EventHandlerFuture,
	ES: Deref,
	M: Deref<Target = ChainMonitor<<CM::Target as AChannelManager>::Signer, CF, T, F, L, P, ES>>,
	CM: Deref,
	OM: Deref,
	PGS: Deref<Target = P2PGossipSync<G, UL, L>>,
	RGS: Deref<Target = RapidGossipSync<G, L>>,
	PM: Deref,
	LM: Deref,
	D: Deref,
	O: Deref,
	K: Deref,
	OS: Deref<Target = OutputSweeper<T, D, F, CF, K, L, O>>,
	S: Deref<Target = SC>,
	SC: for<'b> WriteableScore<'b>,
	SleepFuture: core::future::Future<Output = bool> + core::marker::Unpin,
	Sleeper: Fn(Duration) -> SleepFuture,
	FetchTime: Fn() -> Option<Duration>,
>(
	kv_store: K, event_handler: EventHandler, chain_monitor: M, channel_manager: CM,
	onion_messenger: Option<OM>, gossip_sync: GossipSync<PGS, RGS, G, UL, L>, peer_manager: PM,
	liquidity_manager: Option<LM>, sweeper: Option<OS>, logger: L, scorer: Option<S>,
	sleeper: Sleeper, mobile_interruptable_platform: bool, fetch_time: FetchTime,
) -> Result<(), lightning::io::Error>
where
	UL::Target: UtxoLookup,
	CF::Target: chain::Filter,
	T::Target: BroadcasterInterface,
	F::Target: FeeEstimator,
	L::Target: Logger,
	P::Target: Persist<<CM::Target as AChannelManager>::Signer>,
	ES::Target: EntropySource,
	CM::Target: AChannelManager,
	OM::Target: AOnionMessenger,
	PM::Target: APeerManager,
	LM::Target: ALiquidityManager,
	O::Target: OutputSpender,
	D::Target: ChangeDestinationSource,
	K::Target: KVStore,
{
	let async_event_handler = |event| {
		let network_graph = gossip_sync.network_graph();
		let event_handler = &event_handler;
		let scorer = &scorer;
		let logger = &logger;
		let kv_store = &kv_store;
		let fetch_time = &fetch_time;
		// We should be able to drop the Box once our MSRV is 1.68
		Box::pin(async move {
			if let Some(network_graph) = network_graph {
				handle_network_graph_update(network_graph, &event)
			}
			if let Some(ref scorer) = scorer {
				if let Some(duration_since_epoch) = fetch_time() {
					if update_scorer(scorer, &event, duration_since_epoch) {
						log_trace!(logger, "Persisting scorer after update");
						if let Err(e) = kv_store
							.write(
								SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
								SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
								SCORER_PERSISTENCE_KEY,
								scorer.encode(),
							)
							.await
						{
							log_error!(logger, "Error: Failed to persist scorer, check your disk and permissions {}", e);
							// We opt not to abort early on persistence failure here as persisting
							// the scorer is non-critical and we still hope that it will have
							// resolved itself when it is potentially critical in event handling
							// below.
						}
					}
				}
			}
			event_handler(event).await
		})
	};
	let mut batch_delay = BatchDelay::new();

	log_trace!(logger, "Calling ChannelManager's timer_tick_occurred on startup");
	channel_manager.get_cm().timer_tick_occurred();
	log_trace!(logger, "Rebroadcasting monitor's pending claims on startup");
	chain_monitor.rebroadcast_pending_claims();

	let mut last_freshness_call = sleeper(FRESHNESS_TIMER);
	let mut last_onion_message_handler_call = sleeper(ONION_MESSAGE_HANDLER_TIMER);
	let mut last_ping_call = sleeper(PING_TIMER);
	let mut last_prune_call = sleeper(FIRST_NETWORK_PRUNE_TIMER);
	let mut last_scorer_persist_call = sleeper(SCORER_PERSIST_TIMER);
	let mut last_rebroadcast_call = sleeper(REBROADCAST_TIMER);
	let mut last_sweeper_call = sleeper(SWEEPER_TIMER);
	let mut have_pruned = false;
	let mut have_decayed_scorer = false;

	let mut last_forwards_processing_call = sleeper(batch_delay.get());

	loop {
		channel_manager.get_cm().process_pending_events_async(async_event_handler).await;
		chain_monitor.process_pending_events_async(async_event_handler).await;
		if let Some(om) = &onion_messenger {
			om.get_om().process_pending_events_async(async_event_handler).await
		}

		// Note that the PeerManager::process_events may block on ChannelManager's locks,
		// hence it comes last here. When the ChannelManager finishes whatever it's doing,
		// we want to ensure we get into `persist_manager` as quickly as we can, especially
		// without running the normal event processing above and handing events to users.
		//
		// Specifically, on an *extremely* slow machine, we may see ChannelManager start
		// processing a message effectively at any point during this loop. In order to
		// minimize the time between such processing completing and persisting the updated
		// ChannelManager, we want to minimize methods blocking on a ChannelManager
		// generally, and as a fallback place such blocking only immediately before
		// persistence.
		peer_manager.as_ref().process_events();
		match check_and_reset_sleeper(&mut last_forwards_processing_call, || {
			sleeper(batch_delay.next())
		}) {
			Some(false) => {
				channel_manager.get_cm().process_pending_htlc_forwards();
			},
			Some(true) => break,
			None => {},
		}

		// We wait up to 100ms, but track how long it takes to detect being put to sleep,
		// see `await_start`'s use below.
		let mut await_start = None;
		if mobile_interruptable_platform {
			await_start = Some(sleeper(Duration::from_secs(1)));
		}
		let om_fut = if let Some(om) = onion_messenger.as_ref() {
			let fut = om.get_om().get_update_future();
			OptionalSelector { optional_future: Some(fut) }
		} else {
			OptionalSelector { optional_future: None }
		};
		let lm_fut = if let Some(lm) = liquidity_manager.as_ref() {
			let fut = lm.get_lm().get_pending_msgs_or_needs_persist_future();
			OptionalSelector { optional_future: Some(fut) }
		} else {
			OptionalSelector { optional_future: None }
		};
		let needs_processing = channel_manager.get_cm().needs_pending_htlc_processing();
		let sleep_delay = match (needs_processing, mobile_interruptable_platform) {
			(true, true) => batch_delay.get().min(Duration::from_millis(100)),
			(true, false) => batch_delay.get().min(FASTEST_TIMER),
			(false, true) => Duration::from_millis(100),
			(false, false) => FASTEST_TIMER,
		};
		let fut = Selector {
			a: channel_manager.get_cm().get_event_or_persistence_needed_future(),
			b: chain_monitor.get_update_future(),
			c: om_fut,
			d: lm_fut,
			e: sleeper(sleep_delay),
		};
		match fut.await {
			SelectorOutput::A | SelectorOutput::B | SelectorOutput::C | SelectorOutput::D => {},
			SelectorOutput::E(exit) => {
				if exit {
					break;
				}
			},
		}

		let await_slow = if mobile_interruptable_platform {
			// Specify a zero new sleeper timeout because we won't use the new sleeper. It is re-initialized in the next
			// loop iteration.
			match check_and_reset_sleeper(&mut await_start.unwrap(), || sleeper(Duration::ZERO)) {
				Some(true) => break,
				Some(false) => true,
				None => false,
			}
		} else {
			false
		};
		match check_and_reset_sleeper(&mut last_freshness_call, || sleeper(FRESHNESS_TIMER)) {
			Some(false) => {
				log_trace!(logger, "Calling ChannelManager's timer_tick_occurred");
				channel_manager.get_cm().timer_tick_occurred();
			},
			Some(true) => break,
			None => {},
		}

		let mut futures = Joiner::new();

		if channel_manager.get_cm().get_and_clear_needs_persistence() {
			log_trace!(logger, "Persisting ChannelManager...");

			let fut = async {
				kv_store
					.write(
						CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
						CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
						CHANNEL_MANAGER_PERSISTENCE_KEY,
						channel_manager.get_cm().encode(),
					)
					.await
			};
			// TODO: Once our MSRV is 1.68 we should be able to drop the Box
			let mut fut = Box::pin(fut);

			// Because persisting the ChannelManager is important to avoid accidental
			// force-closures, go ahead and poll the future once before we do slightly more
			// CPU-intensive tasks in the form of NetworkGraph pruning or scorer time-stepping
			// below. This will get it moving but won't block us for too long if the underlying
			// future is actually async.
			use core::future::Future;
			let mut waker = dummy_waker();
			let mut ctx = task::Context::from_waker(&mut waker);
			match core::pin::Pin::new(&mut fut).poll(&mut ctx) {
				task::Poll::Ready(res) => futures.set_a_res(res),
				task::Poll::Pending => futures.set_a(fut),
			}

			log_trace!(logger, "Done persisting ChannelManager.");
		}

		// Note that we want to run a graph prune once not long after startup before
		// falling back to our usual hourly prunes. This avoids short-lived clients never
		// pruning their network graph. We run once 60 seconds after startup before
		// continuing our normal cadence. For RGS, since 60 seconds is likely too long,
		// we prune after an initial sync completes.
		let prune_timer = if gossip_sync.prunable_network_graph().is_some() {
			NETWORK_PRUNE_TIMER
		} else {
			FIRST_NETWORK_PRUNE_TIMER
		};
		let prune_timer_elapsed = {
			match check_and_reset_sleeper(&mut last_prune_call, || sleeper(prune_timer)) {
				Some(false) => true,
				Some(true) => break,
				None => false,
			}
		};

		let should_prune = match gossip_sync {
			GossipSync::Rapid(_) => !have_pruned || prune_timer_elapsed,
			_ => prune_timer_elapsed,
		};
		if should_prune {
			// The network graph must not be pruned while rapid sync completion is pending
			if let Some(network_graph) = gossip_sync.prunable_network_graph() {
				if let Some(duration_since_epoch) = fetch_time() {
					log_trace!(logger, "Pruning and persisting network graph.");
					network_graph.remove_stale_channels_and_tracking_with_time(
						duration_since_epoch.as_secs(),
					);
				} else {
					log_warn!(logger, "Not pruning network graph, consider implementing the fetch_time argument or calling remove_stale_channels_and_tracking_with_time manually.");
					log_trace!(logger, "Persisting network graph.");
				}
				let fut = async {
					if let Err(e) = kv_store
						.write(
							NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE,
							NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE,
							NETWORK_GRAPH_PERSISTENCE_KEY,
							network_graph.encode(),
						)
						.await
					{
						log_error!(logger, "Error: Failed to persist network graph, check your disk and permissions {}",e);
					}

					Ok(())
				};

				// TODO: Once our MSRV is 1.68 we should be able to drop the Box
				futures.set_b(Box::pin(fut));

				have_pruned = true;
			}
		}
		if !have_decayed_scorer {
			if let Some(ref scorer) = scorer {
				if let Some(duration_since_epoch) = fetch_time() {
					log_trace!(logger, "Calling time_passed on scorer at startup");
					scorer.write_lock().time_passed(duration_since_epoch);
				}
			}
			have_decayed_scorer = true;
		}
		match check_and_reset_sleeper(&mut last_scorer_persist_call, || {
			sleeper(SCORER_PERSIST_TIMER)
		}) {
			Some(false) => {
				if let Some(ref scorer) = scorer {
					if let Some(duration_since_epoch) = fetch_time() {
						log_trace!(logger, "Calling time_passed and persisting scorer");
						scorer.write_lock().time_passed(duration_since_epoch);
					} else {
						log_trace!(logger, "Persisting scorer");
					}
					let fut = async {
						if let Err(e) = kv_store
							.write(
								SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
								SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
								SCORER_PERSISTENCE_KEY,
								scorer.encode(),
							)
							.await
						{
							log_error!(
							logger,
							"Error: Failed to persist scorer, check your disk and permissions {}",
							e
						);
						}

						Ok(())
					};

					// TODO: Once our MSRV is 1.68 we should be able to drop the Box
					futures.set_c(Box::pin(fut));
				}
			},
			Some(true) => break,
			None => {},
		}
		match check_and_reset_sleeper(&mut last_sweeper_call, || sleeper(SWEEPER_TIMER)) {
			Some(false) => {
				log_trace!(logger, "Regenerating sweeper spends if necessary");
				if let Some(ref sweeper) = sweeper {
					let fut = async {
						let _ = sweeper.regenerate_and_broadcast_spend_if_necessary().await;

						Ok(())
					};

					// TODO: Once our MSRV is 1.68 we should be able to drop the Box
					futures.set_d(Box::pin(fut));
				}
			},
			Some(true) => break,
			None => {},
		}

		if let Some(liquidity_manager) = liquidity_manager.as_ref() {
			log_trace!(logger, "Persisting LiquidityManager...");
			let fut = async {
				liquidity_manager.get_lm().persist().await.map_err(|e| {
					log_error!(logger, "Persisting LiquidityManager failed: {}", e);
					e
				})
			};
			futures.set_e(Box::pin(fut));
		}

		// Run persistence tasks in parallel and exit if any of them returns an error.
		for res in futures.await {
			res?;
		}

		match check_and_reset_sleeper(&mut last_onion_message_handler_call, || {
			sleeper(ONION_MESSAGE_HANDLER_TIMER)
		}) {
			Some(false) => {
				if let Some(om) = &onion_messenger {
					log_trace!(logger, "Calling OnionMessageHandler's timer_tick_occurred");
					om.get_om().timer_tick_occurred();
				}
			},
			Some(true) => break,
			None => {},
		}

		// Peer manager timer tick. If we were interrupted on a mobile platform, we disconnect all peers.
		if await_slow {
			// On various platforms, we may be starved of CPU cycles for several reasons.
			// E.g. on iOS, if we've been in the background, we will be entirely paused.
			// Similarly, if we're on a desktop platform and the device has been asleep, we
			// may not get any cycles.
			// We detect this by checking if our max-100ms-sleep, above, ran longer than a
			// full second, at which point we assume sockets may have been killed (they
			// appear to be at least on some platforms, even if it has only been a second).
			// Note that we have to take care to not get here just because user event
			// processing was slow at the top of the loop. For example, the sample client
			// may call Bitcoin Core RPCs during event handling, which very often takes
			// more than a handful of seconds to complete, and shouldn't disconnect all our
			// peers.
			log_trace!(logger, "100ms sleep took more than a second, disconnecting peers.");
			peer_manager.as_ref().disconnect_all_peers();
			last_ping_call = sleeper(PING_TIMER);
		} else {
			match check_and_reset_sleeper(&mut last_ping_call, || sleeper(PING_TIMER)) {
				Some(false) => {
					log_trace!(logger, "Calling PeerManager's timer_tick_occurred");
					peer_manager.as_ref().timer_tick_occurred();
				},
				Some(true) => break,
				_ => {},
			}
		}

		// Rebroadcast pending claims.
		match check_and_reset_sleeper(&mut last_rebroadcast_call, || sleeper(REBROADCAST_TIMER)) {
			Some(false) => {
				log_trace!(logger, "Rebroadcasting monitor's pending claims");
				chain_monitor.rebroadcast_pending_claims();
			},
			Some(true) => break,
			None => {},
		}
	}
	log_trace!(logger, "Terminating background processor.");

	// After we exit, ensure we persist the ChannelManager one final time - this avoids
	// some races where users quit while channel updates were in-flight, with
	// ChannelMonitor update(s) persisted without a corresponding ChannelManager update.
	kv_store
		.write(
			CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
			CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
			CHANNEL_MANAGER_PERSISTENCE_KEY,
			channel_manager.get_cm().encode(),
		)
		.await?;
	if let Some(ref scorer) = scorer {
		kv_store
			.write(
				SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
				SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
				SCORER_PERSISTENCE_KEY,
				scorer.encode(),
			)
			.await?;
	}
	if let Some(network_graph) = gossip_sync.network_graph() {
		kv_store
			.write(
				NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE,
				NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE,
				NETWORK_GRAPH_PERSISTENCE_KEY,
				network_graph.encode(),
			)
			.await?;
	}
	Ok(())
}

fn check_and_reset_sleeper<
	SleepFuture: core::future::Future<Output = bool> + core::marker::Unpin,
>(
	fut: &mut SleepFuture, mut new_sleeper: impl FnMut() -> SleepFuture,
) -> Option<bool> {
	let mut waker = dummy_waker();
	let mut ctx = task::Context::from_waker(&mut waker);
	match core::pin::Pin::new(&mut *fut).poll(&mut ctx) {
		task::Poll::Ready(exit) => {
			*fut = new_sleeper();
			Some(exit)
		},
		task::Poll::Pending => None,
	}
}

/// Async events processor that is based on [`process_events_async`] but allows for [`KVStoreSync`] to be used for
/// synchronous background persistence.
pub async fn process_events_async_with_kv_store_sync<
	UL: Deref,
	CF: Deref,
	T: Deref,
	F: Deref,
	G: Deref<Target = NetworkGraph<L>>,
	L: Deref,
	P: Deref,
	EventHandlerFuture: core::future::Future<Output = Result<(), ReplayEvent>>,
	EventHandler: Fn(Event) -> EventHandlerFuture,
	ES: Deref,
	M: Deref<Target = ChainMonitor<<CM::Target as AChannelManager>::Signer, CF, T, F, L, P, ES>>,
	CM: Deref,
	OM: Deref,
	PGS: Deref<Target = P2PGossipSync<G, UL, L>>,
	RGS: Deref<Target = RapidGossipSync<G, L>>,
	PM: Deref,
	LM: Deref,
	D: Deref,
	O: Deref,
	K: Deref,
	OS: Deref<Target = OutputSweeperSync<T, D, F, CF, K, L, O>>,
	S: Deref<Target = SC>,
	SC: for<'b> WriteableScore<'b>,
	SleepFuture: core::future::Future<Output = bool> + core::marker::Unpin,
	Sleeper: Fn(Duration) -> SleepFuture,
	FetchTime: Fn() -> Option<Duration>,
>(
	kv_store: K, event_handler: EventHandler, chain_monitor: M, channel_manager: CM,
	onion_messenger: Option<OM>, gossip_sync: GossipSync<PGS, RGS, G, UL, L>, peer_manager: PM,
	liquidity_manager: Option<LM>, sweeper: Option<OS>, logger: L, scorer: Option<S>,
	sleeper: Sleeper, mobile_interruptable_platform: bool, fetch_time: FetchTime,
) -> Result<(), lightning::io::Error>
where
	UL::Target: UtxoLookup,
	CF::Target: chain::Filter,
	T::Target: BroadcasterInterface,
	F::Target: FeeEstimator,
	L::Target: Logger,
	P::Target: Persist<<CM::Target as AChannelManager>::Signer>,
	ES::Target: EntropySource,
	CM::Target: AChannelManager,
	OM::Target: AOnionMessenger,
	PM::Target: APeerManager,
	LM::Target: ALiquidityManager,
	O::Target: OutputSpender,
	D::Target: ChangeDestinationSourceSync,
	K::Target: KVStoreSync,
{
	let kv_store = KVStoreSyncWrapper(kv_store);
	process_events_async(
		kv_store,
		event_handler,
		chain_monitor,
		channel_manager,
		onion_messenger,
		gossip_sync,
		peer_manager,
		liquidity_manager,
		sweeper.as_ref().map(|os| os.sweeper_async()),
		logger,
		scorer,
		sleeper,
		mobile_interruptable_platform,
		fetch_time,
	)
	.await
}

#[cfg(feature = "std")]
impl BackgroundProcessor {
	/// Start a background thread that takes care of responsibilities enumerated in the [top-level
	/// documentation].
	///
	/// The thread runs indefinitely unless the object is dropped, [`stop`] is called, or
	/// [`KVStoreSync`] returns an error. In case of an error, the error is retrieved by calling
	/// either [`join`] or [`stop`].
	///
	/// # Data Persistence
	///
	/// [`KVStoreSync`] is responsible for writing out the [`ChannelManager`] to disk, and/or
	/// uploading to one or more backup services. See [`ChannelManager::write`] for writing out a
	/// [`ChannelManager`]. See the `lightning-persister` crate for LDK's
	/// provided implementation.
	///
	/// [`KVStoreSync`] is also responsible for writing out the [`NetworkGraph`] to disk, if
	/// [`GossipSync`] is supplied. See [`NetworkGraph::write`] for writing out a [`NetworkGraph`].
	/// See the `lightning-persister` crate for LDK's provided implementation.
	///
	/// Typically, users should either implement [`KVStoreSync`] to never return an
	/// error or call [`join`] and handle any error that may arise. For the latter case,
	/// `BackgroundProcessor` must be restarted by calling `start` again after handling the error.
	///
	/// # Event Handling
	///
	/// `event_handler` is responsible for handling events that users should be notified of (e.g.,
	/// payment failed). [`BackgroundProcessor`] may decorate the given [`EventHandler`] with common
	/// functionality implemented by other handlers.
	/// * [`P2PGossipSync`] if given will update the [`NetworkGraph`] based on payment failures.
	///
	/// # Rapid Gossip Sync
	///
	/// If rapid gossip sync is meant to run at startup, pass [`RapidGossipSync`] via `gossip_sync`
	/// to indicate that the [`BackgroundProcessor`] should not prune the [`NetworkGraph`] instance
	/// until the [`RapidGossipSync`] instance completes its first sync.
	///
	/// [top-level documentation]: BackgroundProcessor
	/// [`join`]: Self::join
	/// [`stop`]: Self::stop
	/// [`ChannelManager`]: lightning::ln::channelmanager::ChannelManager
	/// [`ChannelManager::write`]: lightning::ln::channelmanager::ChannelManager#impl-Writeable
	/// [`NetworkGraph`]: lightning::routing::gossip::NetworkGraph
	/// [`NetworkGraph::write`]: lightning::routing::gossip::NetworkGraph#impl-Writeable
	pub fn start<
		'a,
		UL: 'static + Deref,
		CF: 'static + Deref,
		T: 'static + Deref,
		F: 'static + Deref + Send,
		G: 'static + Deref<Target = NetworkGraph<L>>,
		L: 'static + Deref + Send,
		P: 'static + Deref,
		EH: 'static + EventHandler + Send,
		ES: 'static + Deref + Send,
		M: 'static
			+ Deref<
				Target = ChainMonitor<<CM::Target as AChannelManager>::Signer, CF, T, F, L, P, ES>,
			>
			+ Send
			+ Sync,
		CM: 'static + Deref + Send,
		OM: 'static + Deref + Send,
		PGS: 'static + Deref<Target = P2PGossipSync<G, UL, L>> + Send,
		RGS: 'static + Deref<Target = RapidGossipSync<G, L>> + Send,
		PM: 'static + Deref + Send,
		LM: 'static + Deref + Send,
		S: 'static + Deref<Target = SC> + Send + Sync,
		SC: for<'b> WriteableScore<'b>,
		D: 'static + Deref,
		O: 'static + Deref,
		K: 'static + Deref + Send,
		OS: 'static + Deref<Target = OutputSweeperSync<T, D, F, CF, K, L, O>> + Send,
	>(
		kv_store: K, event_handler: EH, chain_monitor: M, channel_manager: CM,
		onion_messenger: Option<OM>, gossip_sync: GossipSync<PGS, RGS, G, UL, L>, peer_manager: PM,
		liquidity_manager: Option<LM>, sweeper: Option<OS>, logger: L, scorer: Option<S>,
	) -> Self
	where
		UL::Target: 'static + UtxoLookup,
		CF::Target: 'static + chain::Filter,
		T::Target: 'static + BroadcasterInterface,
		F::Target: 'static + FeeEstimator,
		L::Target: 'static + Logger,
		P::Target: 'static + Persist<<CM::Target as AChannelManager>::Signer>,
		ES::Target: 'static + EntropySource,
		CM::Target: AChannelManager,
		OM::Target: AOnionMessenger,
		PM::Target: APeerManager,
		LM::Target: ALiquidityManagerSync,
		D::Target: ChangeDestinationSourceSync,
		O::Target: 'static + OutputSpender,
		K::Target: 'static + KVStoreSync,
	{
		let stop_thread = Arc::new(AtomicBool::new(false));
		let stop_thread_clone = Arc::clone(&stop_thread);
		let handle = thread::spawn(move || -> Result<(), std::io::Error> {
			let event_handler = |event| {
				let network_graph = gossip_sync.network_graph();
				if let Some(network_graph) = network_graph {
					handle_network_graph_update(network_graph, &event)
				}
				if let Some(ref scorer) = scorer {
					use std::time::SystemTime;
					let duration_since_epoch = SystemTime::now()
						.duration_since(SystemTime::UNIX_EPOCH)
						.expect("Time should be sometime after 1970");
					if update_scorer(scorer, &event, duration_since_epoch) {
						log_trace!(logger, "Persisting scorer after update");
						if let Err(e) = kv_store.write(
							SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
							SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
							SCORER_PERSISTENCE_KEY,
							scorer.encode(),
						) {
							log_error!(logger, "Error: Failed to persist scorer, check your disk and permissions {}", e)
						}
					}
				}
				event_handler.handle_event(event)
			};
			let mut batch_delay = BatchDelay::new();

			log_trace!(logger, "Calling ChannelManager's timer_tick_occurred on startup");
			channel_manager.get_cm().timer_tick_occurred();
			log_trace!(logger, "Rebroadcasting monitor's pending claims on startup");
			chain_monitor.rebroadcast_pending_claims();

			let mut last_freshness_call = Instant::now();
			let mut last_onion_message_handler_call = Instant::now();
			let mut last_ping_call = Instant::now();
			let mut last_prune_call = Instant::now();
			let mut last_scorer_persist_call = Instant::now();
			let mut last_rebroadcast_call = Instant::now();
			let mut last_sweeper_call = Instant::now();
			let mut have_pruned = false;
			let mut have_decayed_scorer = false;

			let mut cur_batch_delay = batch_delay.get();
			let mut last_forwards_processing_call = Instant::now();

			loop {
				channel_manager.get_cm().process_pending_events(&event_handler);
				chain_monitor.process_pending_events(&event_handler);
				if let Some(om) = &onion_messenger {
					om.get_om().process_pending_events(&event_handler)
				};

				// Note that the PeerManager::process_events may block on ChannelManager's locks,
				// hence it comes last here. When the ChannelManager finishes whatever it's doing,
				// we want to ensure we get into `persist_manager` as quickly as we can, especially
				// without running the normal event processing above and handing events to users.
				//
				// Specifically, on an *extremely* slow machine, we may see ChannelManager start
				// processing a message effectively at any point during this loop. In order to
				// minimize the time between such processing completing and persisting the updated
				// ChannelManager, we want to minimize methods blocking on a ChannelManager
				// generally, and as a fallback place such blocking only immediately before
				// persistence.
				peer_manager.as_ref().process_events();
				if last_forwards_processing_call.elapsed() > cur_batch_delay {
					channel_manager.get_cm().process_pending_htlc_forwards();
					cur_batch_delay = batch_delay.next();
					last_forwards_processing_call = Instant::now();
				}
				if stop_thread.load(Ordering::Acquire) {
					log_trace!(logger, "Terminating background processor.");
					break;
				}
				let sleeper = match (onion_messenger.as_ref(), liquidity_manager.as_ref()) {
					(Some(om), Some(lm)) => Sleeper::from_four_futures(
						&channel_manager.get_cm().get_event_or_persistence_needed_future(),
						&chain_monitor.get_update_future(),
						&om.get_om().get_update_future(),
						&lm.get_lm().get_pending_msgs_or_needs_persist_future(),
					),
					(Some(om), None) => Sleeper::from_three_futures(
						&channel_manager.get_cm().get_event_or_persistence_needed_future(),
						&chain_monitor.get_update_future(),
						&om.get_om().get_update_future(),
					),
					(None, Some(lm)) => Sleeper::from_three_futures(
						&channel_manager.get_cm().get_event_or_persistence_needed_future(),
						&chain_monitor.get_update_future(),
						&lm.get_lm().get_pending_msgs_or_needs_persist_future(),
					),
					(None, None) => Sleeper::from_two_futures(
						&channel_manager.get_cm().get_event_or_persistence_needed_future(),
						&chain_monitor.get_update_future(),
					),
				};
				let batch_delay = if channel_manager.get_cm().needs_pending_htlc_processing() {
					batch_delay.get()
				} else {
					Duration::MAX
				};
				let fastest_timeout = batch_delay.min(Duration::from_millis(100));
				sleeper.wait_timeout(fastest_timeout);
				if stop_thread.load(Ordering::Acquire) {
					log_trace!(logger, "Terminating background processor.");
					break;
				}
				if last_freshness_call.elapsed() > FRESHNESS_TIMER {
					log_trace!(logger, "Calling ChannelManager's timer_tick_occurred");
					channel_manager.get_cm().timer_tick_occurred();
					last_freshness_call = Instant::now();
				}
				if channel_manager.get_cm().get_and_clear_needs_persistence() {
					log_trace!(logger, "Persisting ChannelManager...");
					(kv_store.write(
						CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
						CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
						CHANNEL_MANAGER_PERSISTENCE_KEY,
						channel_manager.get_cm().encode(),
					))?;
					log_trace!(logger, "Done persisting ChannelManager.");
				}

				if let Some(liquidity_manager) = liquidity_manager.as_ref() {
					log_trace!(logger, "Persisting LiquidityManager...");
					let _ = liquidity_manager.get_lm().persist().map_err(|e| {
						log_error!(logger, "Persisting LiquidityManager failed: {}", e);
					});
				}

				// Note that we want to run a graph prune once not long after startup before
				// falling back to our usual hourly prunes. This avoids short-lived clients never
				// pruning their network graph. We run once 60 seconds after startup before
				// continuing our normal cadence. For RGS, since 60 seconds is likely too long,
				// we prune after an initial sync completes.
				let prune_timer =
					if have_pruned { NETWORK_PRUNE_TIMER } else { FIRST_NETWORK_PRUNE_TIMER };
				let prune_timer_elapsed = last_prune_call.elapsed() > prune_timer;
				let should_prune = match gossip_sync {
					GossipSync::Rapid(_) => !have_pruned || prune_timer_elapsed,
					_ => prune_timer_elapsed,
				};
				if should_prune {
					// The network graph must not be pruned while rapid sync completion is pending
					if let Some(network_graph) = gossip_sync.prunable_network_graph() {
						let duration_since_epoch = std::time::SystemTime::now()
							.duration_since(std::time::SystemTime::UNIX_EPOCH)
							.expect("Time should be sometime after 1970");

						log_trace!(logger, "Pruning and persisting network graph.");
						network_graph.remove_stale_channels_and_tracking_with_time(
							duration_since_epoch.as_secs(),
						);
						if let Err(e) = kv_store.write(
							NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE,
							NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE,
							NETWORK_GRAPH_PERSISTENCE_KEY,
							network_graph.encode(),
						) {
							log_error!(logger, "Error: Failed to persist network graph, check your disk and permissions {}", e);
						}
						have_pruned = true;
					}
					last_prune_call = Instant::now();
				}
				if !have_decayed_scorer {
					if let Some(ref scorer) = scorer {
						let duration_since_epoch = std::time::SystemTime::now()
							.duration_since(std::time::SystemTime::UNIX_EPOCH)
							.expect("Time should be sometime after 1970");
						log_trace!(logger, "Calling time_passed on scorer at startup");
						scorer.write_lock().time_passed(duration_since_epoch);
					}
					have_decayed_scorer = true;
				}
				if last_scorer_persist_call.elapsed() > SCORER_PERSIST_TIMER {
					if let Some(ref scorer) = scorer {
						let duration_since_epoch = std::time::SystemTime::now()
							.duration_since(std::time::SystemTime::UNIX_EPOCH)
							.expect("Time should be sometime after 1970");
						log_trace!(logger, "Calling time_passed and persisting scorer");
						scorer.write_lock().time_passed(duration_since_epoch);
						if let Err(e) = kv_store.write(
							SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
							SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
							SCORER_PERSISTENCE_KEY,
							scorer.encode(),
						) {
							log_error!(logger, "Error: Failed to persist scorer, check your disk and permissions {}", e);
						}
					}
					last_scorer_persist_call = Instant::now();
				}
				if last_sweeper_call.elapsed() > SWEEPER_TIMER {
					log_trace!(logger, "Regenerating sweeper spends if necessary");
					if let Some(ref sweeper) = sweeper {
						let _ = sweeper.regenerate_and_broadcast_spend_if_necessary();
					}
					last_sweeper_call = Instant::now();
				}
				if last_onion_message_handler_call.elapsed() > ONION_MESSAGE_HANDLER_TIMER {
					if let Some(om) = &onion_messenger {
						log_trace!(logger, "Calling OnionMessageHandler's timer_tick_occurred");
						om.get_om().timer_tick_occurred();
					}
					last_onion_message_handler_call = Instant::now();
				}
				if last_ping_call.elapsed() > PING_TIMER {
					log_trace!(logger, "Calling PeerManager's timer_tick_occurred");
					peer_manager.as_ref().timer_tick_occurred();
					last_ping_call = Instant::now();
				}
				if last_rebroadcast_call.elapsed() > REBROADCAST_TIMER {
					log_trace!(logger, "Rebroadcasting monitor's pending claims");
					chain_monitor.rebroadcast_pending_claims();
					last_rebroadcast_call = Instant::now();
				}
			}

			// After we exit, ensure we persist the ChannelManager one final time - this avoids
			// some races where users quit while channel updates were in-flight, with
			// ChannelMonitor update(s) persisted without a corresponding ChannelManager update.
			kv_store.write(
				CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
				CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE,
				CHANNEL_MANAGER_PERSISTENCE_KEY,
				channel_manager.get_cm().encode(),
			)?;
			if let Some(ref scorer) = scorer {
				kv_store.write(
					SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
					SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
					SCORER_PERSISTENCE_KEY,
					scorer.encode(),
				)?;
			}
			if let Some(network_graph) = gossip_sync.network_graph() {
				kv_store.write(
					NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE,
					NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE,
					NETWORK_GRAPH_PERSISTENCE_KEY,
					network_graph.encode(),
				)?;
			}
			Ok(())
		});
		Self { stop_thread: stop_thread_clone, thread_handle: Some(handle) }
	}

	/// Join `BackgroundProcessor`'s thread, returning any error that occurred while persisting
	/// [`ChannelManager`].
	///
	/// # Panics
	///
	/// This function panics if the background thread has panicked such as while persisting or
	/// handling events.
	///
	/// [`ChannelManager`]: lightning::ln::channelmanager::ChannelManager
	pub fn join(mut self) -> Result<(), std::io::Error> {
		assert!(self.thread_handle.is_some());
		self.join_thread()
	}

	/// Stop `BackgroundProcessor`'s thread, returning any error that occurred while persisting
	/// [`ChannelManager`].
	///
	/// # Panics
	///
	/// This function panics if the background thread has panicked such as while persisting or
	/// handling events.
	///
	/// [`ChannelManager`]: lightning::ln::channelmanager::ChannelManager
	pub fn stop(mut self) -> Result<(), std::io::Error> {
		assert!(self.thread_handle.is_some());
		self.stop_and_join_thread()
	}

	fn stop_and_join_thread(&mut self) -> Result<(), std::io::Error> {
		self.stop_thread.store(true, Ordering::Release);
		self.join_thread()
	}

	fn join_thread(&mut self) -> Result<(), std::io::Error> {
		match self.thread_handle.take() {
			Some(handle) => handle.join().unwrap(),
			None => Ok(()),
		}
	}
}

#[cfg(feature = "std")]
impl Drop for BackgroundProcessor {
	fn drop(&mut self) {
		self.stop_and_join_thread().unwrap();
	}
}

#[cfg(all(feature = "std", test))]
mod tests {
	use super::{BackgroundProcessor, GossipSync, FRESHNESS_TIMER};
	use bitcoin::constants::{genesis_block, ChainHash};
	use bitcoin::hashes::Hash;
	use bitcoin::locktime::absolute::LockTime;
	use bitcoin::network::Network;
	use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
	use bitcoin::transaction::Version;
	use bitcoin::transaction::{Transaction, TxOut};
	use bitcoin::{Amount, ScriptBuf, Txid};
	use core::sync::atomic::{AtomicBool, Ordering};
	use lightning::chain::channelmonitor::ANTI_REORG_DELAY;
	use lightning::chain::transaction::OutPoint;
	use lightning::chain::{chainmonitor, BestBlock, Confirm, Filter};
	use lightning::events::{Event, PathFailure, ReplayEvent};
	use lightning::ln::channelmanager;
	use lightning::ln::channelmanager::{
		ChainParameters, PaymentId, BREAKDOWN_TIMEOUT, MIN_CLTV_EXPIRY_DELTA,
	};
	use lightning::ln::functional_test_utils::*;
	use lightning::ln::msgs::{BaseMessageHandler, ChannelMessageHandler, Init, MessageSendEvent};
	use lightning::ln::peer_handler::{
		IgnoringMessageHandler, MessageHandler, PeerManager, SocketDescriptor,
	};
	use lightning::ln::types::ChannelId;
	use lightning::onion_message::messenger::{DefaultMessageRouter, OnionMessenger};
	use lightning::routing::gossip::{NetworkGraph, P2PGossipSync};
	use lightning::routing::router::{CandidateRouteHop, DefaultRouter, Path, RouteHop};
	use lightning::routing::scoring::{ChannelUsage, LockableScore, ScoreLookUp, ScoreUpdate};
	use lightning::sign::{ChangeDestinationSourceSync, InMemorySigner, KeysManager, NodeSigner};
	use lightning::types::features::{ChannelFeatures, NodeFeatures};
	use lightning::types::payment::PaymentHash;
	use lightning::util::config::UserConfig;
	use lightning::util::persist::{
		KVStoreSync, KVStoreSyncWrapper, CHANNEL_MANAGER_PERSISTENCE_KEY,
		CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE,
		CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE, NETWORK_GRAPH_PERSISTENCE_KEY,
		NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE, NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE,
		SCORER_PERSISTENCE_KEY, SCORER_PERSISTENCE_PRIMARY_NAMESPACE,
		SCORER_PERSISTENCE_SECONDARY_NAMESPACE,
	};
	use lightning::util::ser::Writeable;
	use lightning::util::sweep::{
		OutputSpendStatus, OutputSweeper, OutputSweeperSync, PRUNE_DELAY_BLOCKS,
	};
	use lightning::util::test_utils;
	use lightning::{get_event, get_event_msg};
	use lightning_liquidity::utils::time::DefaultTimeProvider;
	use lightning_liquidity::{ALiquidityManagerSync, LiquidityManager, LiquidityManagerSync};
	use lightning_persister::fs_store::FilesystemStore;
	use lightning_rapid_gossip_sync::RapidGossipSync;
	use std::collections::VecDeque;
	use std::path::PathBuf;
	use std::sync::mpsc::SyncSender;
	use std::sync::Arc;
	use std::time::Duration;
	use std::{env, fs};

	const EVENT_DEADLINE: Duration =
		Duration::from_millis(5 * (FRESHNESS_TIMER.as_millis() as u64));

	#[derive(Clone, Hash, PartialEq, Eq)]
	struct TestDescriptor {}
	impl SocketDescriptor for TestDescriptor {
		fn send_data(&mut self, _data: &[u8], _continue_read: bool) -> usize {
			0
		}

		fn disconnect_socket(&mut self) {}
	}

	#[cfg(c_bindings)]
	type LockingWrapper<T> = lightning::routing::scoring::MultiThreadedLockableScore<T>;
	#[cfg(not(c_bindings))]
	type LockingWrapper<T> = std::sync::Mutex<T>;

	type ChannelManager = channelmanager::ChannelManager<
		Arc<ChainMonitor>,
		Arc<test_utils::TestBroadcaster>,
		Arc<KeysManager>,
		Arc<KeysManager>,
		Arc<KeysManager>,
		Arc<test_utils::TestFeeEstimator>,
		Arc<
			DefaultRouter<
				Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
				Arc<test_utils::TestLogger>,
				Arc<KeysManager>,
				Arc<LockingWrapper<TestScorer>>,
				(),
				TestScorer,
			>,
		>,
		Arc<
			DefaultMessageRouter<
				Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
				Arc<test_utils::TestLogger>,
				Arc<KeysManager>,
			>,
		>,
		Arc<test_utils::TestLogger>,
	>;

	type ChainMonitor = chainmonitor::ChainMonitor<
		InMemorySigner,
		Arc<test_utils::TestChainSource>,
		Arc<test_utils::TestBroadcaster>,
		Arc<test_utils::TestFeeEstimator>,
		Arc<test_utils::TestLogger>,
		Arc<Persister>,
		Arc<KeysManager>,
	>;

	type PGS = Arc<
		P2PGossipSync<
			Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
			Arc<test_utils::TestChainSource>,
			Arc<test_utils::TestLogger>,
		>,
	>;
	type RGS = Arc<
		RapidGossipSync<
			Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
			Arc<test_utils::TestLogger>,
		>,
	>;

	type OM = OnionMessenger<
		Arc<KeysManager>,
		Arc<KeysManager>,
		Arc<test_utils::TestLogger>,
		Arc<ChannelManager>,
		Arc<
			DefaultMessageRouter<
				Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
				Arc<test_utils::TestLogger>,
				Arc<KeysManager>,
			>,
		>,
		IgnoringMessageHandler,
		Arc<ChannelManager>,
		IgnoringMessageHandler,
		IgnoringMessageHandler,
	>;

	type LM = LiquidityManagerSync<
		Arc<KeysManager>,
		Arc<KeysManager>,
		Arc<ChannelManager>,
		Arc<dyn Filter + Sync + Send>,
		Arc<Persister>,
		DefaultTimeProvider,
		Arc<test_utils::TestBroadcaster>,
	>;

	struct Node {
		node: Arc<ChannelManager>,
		messenger: Arc<OM>,
		p2p_gossip_sync: PGS,
		rapid_gossip_sync: RGS,
		peer_manager: Arc<
			PeerManager<
				TestDescriptor,
				Arc<test_utils::TestChannelMessageHandler>,
				Arc<test_utils::TestRoutingMessageHandler>,
				Arc<OM>,
				Arc<test_utils::TestLogger>,
				IgnoringMessageHandler,
				Arc<KeysManager>,
				IgnoringMessageHandler,
			>,
		>,
		liquidity_manager: Arc<LM>,
		chain_monitor: Arc<ChainMonitor>,
		kv_store: Arc<Persister>,
		tx_broadcaster: Arc<test_utils::TestBroadcaster>,
		network_graph: Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
		logger: Arc<test_utils::TestLogger>,
		best_block: BestBlock,
		scorer: Arc<LockingWrapper<TestScorer>>,
		sweeper: Arc<
			OutputSweeperSync<
				Arc<test_utils::TestBroadcaster>,
				Arc<TestWallet>,
				Arc<test_utils::TestFeeEstimator>,
				Arc<test_utils::TestChainSource>,
				Arc<Persister>,
				Arc<test_utils::TestLogger>,
				Arc<KeysManager>,
			>,
		>,
	}

	impl Node {
		fn p2p_gossip_sync(
			&self,
		) -> GossipSync<
			PGS,
			RGS,
			Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
			Arc<test_utils::TestChainSource>,
			Arc<test_utils::TestLogger>,
		> {
			GossipSync::P2P(Arc::clone(&self.p2p_gossip_sync))
		}

		fn rapid_gossip_sync(
			&self,
		) -> GossipSync<
			PGS,
			RGS,
			Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
			Arc<test_utils::TestChainSource>,
			Arc<test_utils::TestLogger>,
		> {
			GossipSync::Rapid(Arc::clone(&self.rapid_gossip_sync))
		}

		fn no_gossip_sync(
			&self,
		) -> GossipSync<
			PGS,
			RGS,
			Arc<NetworkGraph<Arc<test_utils::TestLogger>>>,
			Arc<test_utils::TestChainSource>,
			Arc<test_utils::TestLogger>,
		> {
			GossipSync::None
		}
	}

	impl Drop for Node {
		fn drop(&mut self) {
			let data_dir = self.kv_store.get_data_dir();
			match fs::remove_dir_all(data_dir.clone()) {
				Err(e) => {
					println!("Failed to remove test store directory {}: {}", data_dir.display(), e)
				},
				_ => {},
			}
		}
	}

	struct Persister {
		graph_error: Option<(std::io::ErrorKind, &'static str)>,
		graph_persistence_notifier: Option<SyncSender<()>>,
		manager_error: Option<(std::io::ErrorKind, &'static str)>,
		scorer_error: Option<(std::io::ErrorKind, &'static str)>,
		kv_store: FilesystemStore,
	}

	impl Persister {
		fn new(data_dir: PathBuf) -> Self {
			let kv_store = FilesystemStore::new(data_dir);
			Self {
				graph_error: None,
				graph_persistence_notifier: None,
				manager_error: None,
				scorer_error: None,
				kv_store,
			}
		}

		fn with_graph_error(self, error: std::io::ErrorKind, message: &'static str) -> Self {
			Self { graph_error: Some((error, message)), ..self }
		}

		fn with_graph_persistence_notifier(self, sender: SyncSender<()>) -> Self {
			Self { graph_persistence_notifier: Some(sender), ..self }
		}

		fn with_manager_error(self, error: std::io::ErrorKind, message: &'static str) -> Self {
			Self { manager_error: Some((error, message)), ..self }
		}

		fn with_scorer_error(self, error: std::io::ErrorKind, message: &'static str) -> Self {
			Self { scorer_error: Some((error, message)), ..self }
		}

		pub fn get_data_dir(&self) -> PathBuf {
			self.kv_store.get_data_dir()
		}
	}

	impl KVStoreSync for Persister {
		fn read(
			&self, primary_namespace: &str, secondary_namespace: &str, key: &str,
		) -> lightning::io::Result<Vec<u8>> {
			self.kv_store.read(primary_namespace, secondary_namespace, key)
		}

		fn write(
			&self, primary_namespace: &str, secondary_namespace: &str, key: &str, buf: Vec<u8>,
		) -> lightning::io::Result<()> {
			if primary_namespace == CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE
				&& secondary_namespace == CHANNEL_MANAGER_PERSISTENCE_SECONDARY_NAMESPACE
				&& key == CHANNEL_MANAGER_PERSISTENCE_KEY
			{
				if let Some((error, message)) = self.manager_error {
					return Err(std::io::Error::new(error, message).into());
				}
			}

			if primary_namespace == NETWORK_GRAPH_PERSISTENCE_PRIMARY_NAMESPACE
				&& secondary_namespace == NETWORK_GRAPH_PERSISTENCE_SECONDARY_NAMESPACE
				&& key == NETWORK_GRAPH_PERSISTENCE_KEY
			{
				if let Some(sender) = &self.graph_persistence_notifier {
					match sender.send(()) {
						Ok(()) => {},
						Err(std::sync::mpsc::SendError(())) => {
							println!("Persister failed to notify as receiver went away.")
						},
					}
				};

				if let Some((error, message)) = self.graph_error {
					return Err(std::io::Error::new(error, message).into());
				}
			}

			if primary_namespace == SCORER_PERSISTENCE_PRIMARY_NAMESPACE
				&& secondary_namespace == SCORER_PERSISTENCE_SECONDARY_NAMESPACE
				&& key == SCORER_PERSISTENCE_KEY
			{
				if let Some((error, message)) = self.scorer_error {
					return Err(std::io::Error::new(error, message).into());
				}
			}

			self.kv_store.write(primary_namespace, secondary_namespace, key, buf)
		}

		fn remove(
			&self, primary_namespace: &str, secondary_namespace: &str, key: &str, lazy: bool,
		) -> lightning::io::Result<()> {
			self.kv_store.remove(primary_namespace, secondary_namespace, key, lazy)
		}

		fn list(
			&self, primary_namespace: &str, secondary_namespace: &str,
		) -> lightning::io::Result<Vec<String>> {
			self.kv_store.list(primary_namespace, secondary_namespace)
		}
	}

	struct TestScorer {
		event_expectations: Option<VecDeque<TestResult>>,
	}

	#[derive(Debug)]
	enum TestResult {
		PaymentFailure { path: Path, short_channel_id: u64 },
		PaymentSuccess { path: Path },
		ProbeFailure { path: Path },
		ProbeSuccess { path: Path },
	}

	impl TestScorer {
		fn new() -> Self {
			Self { event_expectations: None }
		}

		fn expect(&mut self, expectation: TestResult) {
			self.event_expectations.get_or_insert_with(VecDeque::new).push_back(expectation);
		}
	}

	impl lightning::util::ser::Writeable for TestScorer {
		fn write<W: lightning::util::ser::Writer>(
			&self, _: &mut W,
		) -> Result<(), lightning::io::Error> {
			Ok(())
		}
	}

	impl ScoreLookUp for TestScorer {
		type ScoreParams = ();
		fn channel_penalty_msat(
			&self, _candidate: &CandidateRouteHop, _usage: ChannelUsage,
			_score_params: &Self::ScoreParams,
		) -> u64 {
			unimplemented!();
		}
	}

	impl ScoreUpdate for TestScorer {
		fn payment_path_failed(
			&mut self, actual_path: &Path, actual_short_channel_id: u64, _: Duration,
		) {
			if let Some(expectations) = &mut self.event_expectations {
				match expectations.pop_front().unwrap() {
					TestResult::PaymentFailure { path, short_channel_id } => {
						assert_eq!(actual_path, &path);
						assert_eq!(actual_short_channel_id, short_channel_id);
					},
					TestResult::PaymentSuccess { path } => {
						panic!("Unexpected successful payment path: {:?}", path)
					},
					TestResult::ProbeFailure { path } => {
						panic!("Unexpected probe failure: {:?}", path)
					},
					TestResult::ProbeSuccess { path } => {
						panic!("Unexpected probe success: {:?}", path)
					},
				}
			}
		}

		fn payment_path_successful(&mut self, actual_path: &Path, _: Duration) {
			if let Some(expectations) = &mut self.event_expectations {
				match expectations.pop_front().unwrap() {
					TestResult::PaymentFailure { path, .. } => {
						panic!("Unexpected payment path failure: {:?}", path)
					},
					TestResult::PaymentSuccess { path } => {
						assert_eq!(actual_path, &path);
					},
					TestResult::ProbeFailure { path } => {
						panic!("Unexpected probe failure: {:?}", path)
					},
					TestResult::ProbeSuccess { path } => {
						panic!("Unexpected probe success: {:?}", path)
					},
				}
			}
		}

		fn probe_failed(&mut self, actual_path: &Path, _: u64, _: Duration) {
			if let Some(expectations) = &mut self.event_expectations {
				match expectations.pop_front().unwrap() {
					TestResult::PaymentFailure { path, .. } => {
						panic!("Unexpected payment path failure: {:?}", path)
					},
					TestResult::PaymentSuccess { path } => {
						panic!("Unexpected payment path success: {:?}", path)
					},
					TestResult::ProbeFailure { path } => {
						assert_eq!(actual_path, &path);
					},
					TestResult::ProbeSuccess { path } => {
						panic!("Unexpected probe success: {:?}", path)
					},
				}
			}
		}
		fn probe_successful(&mut self, actual_path: &Path, _: Duration) {
			if let Some(expectations) = &mut self.event_expectations {
				match expectations.pop_front().unwrap() {
					TestResult::PaymentFailure { path, .. } => {
						panic!("Unexpected payment path failure: {:?}", path)
					},
					TestResult::PaymentSuccess { path } => {
						panic!("Unexpected payment path success: {:?}", path)
					},
					TestResult::ProbeFailure { path } => {
						panic!("Unexpected probe failure: {:?}", path)
					},
					TestResult::ProbeSuccess { path } => {
						assert_eq!(actual_path, &path);
					},
				}
			}
		}
		fn time_passed(&mut self, _: Duration) {}
	}

	#[cfg(c_bindings)]
	impl lightning::routing::scoring::Score for TestScorer {}

	impl Drop for TestScorer {
		fn drop(&mut self) {
			if std::thread::panicking() {
				return;
			}

			if let Some(event_expectations) = &self.event_expectations {
				if !event_expectations.is_empty() {
					panic!("Unsatisfied event expectations: {:?}", event_expectations);
				}
			}
		}
	}

	struct TestWallet {}

	impl ChangeDestinationSourceSync for TestWallet {
		fn get_change_destination_script(&self) -> Result<ScriptBuf, ()> {
			Ok(ScriptBuf::new())
		}
	}

	fn get_full_filepath(filepath: String, filename: String) -> String {
		let mut path = PathBuf::from(filepath);
		path.push(filename);
		path.to_str().unwrap().to_string()
	}

	fn create_nodes(num_nodes: usize, persist_dir: &str) -> (String, Vec<Node>) {
		let persist_temp_path = env::temp_dir().join(persist_dir);
		let persist_dir = persist_temp_path.to_string_lossy().to_string();
		let network = Network::Bitcoin;
		let mut nodes = Vec::new();
		for i in 0..num_nodes {
			let tx_broadcaster = Arc::new(test_utils::TestBroadcaster::new(network));
			let fee_estimator = Arc::new(test_utils::TestFeeEstimator::new(253));
			let logger = Arc::new(test_utils::TestLogger::with_id(format!("node {}", i)));
			let genesis_block = genesis_block(network);
			let network_graph = Arc::new(NetworkGraph::new(network, Arc::clone(&logger)));
			let scorer = Arc::new(LockingWrapper::new(TestScorer::new()));
			let now = Duration::from_secs(genesis_block.header.time as u64);
			let seed = [i as u8; 32];
			let keys_manager =
				Arc::new(KeysManager::new(&seed, now.as_secs(), now.subsec_nanos(), true));
			let router = Arc::new(DefaultRouter::new(
				Arc::clone(&network_graph),
				Arc::clone(&logger),
				Arc::clone(&keys_manager),
				Arc::clone(&scorer),
				Default::default(),
			));
			let msg_router = Arc::new(DefaultMessageRouter::new(
				Arc::clone(&network_graph),
				Arc::clone(&keys_manager),
			));
			let chain_source = Arc::new(test_utils::TestChainSource::new(Network::Bitcoin));
			let kv_store =
				Arc::new(Persister::new(format!("{}_persister_{}", &persist_dir, i).into()));
			let now = Duration::from_secs(genesis_block.header.time as u64);
			let keys_manager =
				Arc::new(KeysManager::new(&seed, now.as_secs(), now.subsec_nanos(), true));
			let chain_monitor = Arc::new(chainmonitor::ChainMonitor::new(
				Some(Arc::clone(&chain_source)),
				Arc::clone(&tx_broadcaster),
				Arc::clone(&logger),
				Arc::clone(&fee_estimator),
				Arc::clone(&kv_store),
				Arc::clone(&keys_manager),
				keys_manager.get_peer_storage_key(),
			));
			let best_block = BestBlock::from_network(network);
			let params = ChainParameters { network, best_block };
			let manager = Arc::new(ChannelManager::new(
				Arc::clone(&fee_estimator),
				Arc::clone(&chain_monitor),
				Arc::clone(&tx_broadcaster),
				Arc::clone(&router),
				Arc::clone(&msg_router),
				Arc::clone(&logger),
				Arc::clone(&keys_manager),
				Arc::clone(&keys_manager),
				Arc::clone(&keys_manager),
				UserConfig::default(),
				params,
				genesis_block.header.time,
			));
			let messenger = Arc::new(OnionMessenger::new(
				Arc::clone(&keys_manager),
				Arc::clone(&keys_manager),
				Arc::clone(&logger),
				Arc::clone(&manager),
				Arc::clone(&msg_router),
				IgnoringMessageHandler {},
				Arc::clone(&manager),
				IgnoringMessageHandler {},
				IgnoringMessageHandler {},
			));
			let wallet = Arc::new(TestWallet {});
			let sweeper = Arc::new(OutputSweeperSync::new(
				best_block,
				Arc::clone(&tx_broadcaster),
				Arc::clone(&fee_estimator),
				None::<Arc<test_utils::TestChainSource>>,
				Arc::clone(&keys_manager),
				wallet,
				Arc::clone(&kv_store),
				Arc::clone(&logger),
			));
			let p2p_gossip_sync = Arc::new(P2PGossipSync::new(
				Arc::clone(&network_graph),
				Some(Arc::clone(&chain_source)),
				Arc::clone(&logger),
			));
			let rapid_gossip_sync =
				Arc::new(RapidGossipSync::new(Arc::clone(&network_graph), Arc::clone(&logger)));
			let msg_handler = MessageHandler {
				chan_handler: Arc::new(test_utils::TestChannelMessageHandler::new(
					ChainHash::using_genesis_block(Network::Testnet),
				)),
				route_handler: Arc::new(test_utils::TestRoutingMessageHandler::new()),
				onion_message_handler: Arc::clone(&messenger),
				custom_message_handler: IgnoringMessageHandler {},
				send_only_message_handler: IgnoringMessageHandler {},
			};
			let peer_manager = Arc::new(PeerManager::new(
				msg_handler,
				0,
				&seed,
				Arc::clone(&logger),
				Arc::clone(&keys_manager),
			));
			let liquidity_manager = Arc::new(
				LiquidityManagerSync::new(
					Arc::clone(&keys_manager),
					Arc::clone(&keys_manager),
					Arc::clone(&manager),
					None,
					None,
					Arc::clone(&kv_store),
					Arc::clone(&tx_broadcaster),
					None,
					None,
				)
				.unwrap(),
			);
			let node = Node {
				node: manager,
				p2p_gossip_sync,
				rapid_gossip_sync,
				peer_manager,
				liquidity_manager,
				chain_monitor,
				kv_store,
				tx_broadcaster,
				network_graph,
				logger,
				best_block,
				scorer,
				sweeper,
				messenger,
			};
			nodes.push(node);
		}

		for i in 0..num_nodes {
			for j in (i + 1)..num_nodes {
				let init_i = Init {
					features: nodes[j].node.init_features(),
					networks: None,
					remote_network_address: None,
				};
				nodes[i]
					.node
					.peer_connected(nodes[j].node.get_our_node_id(), &init_i, true)
					.unwrap();
				let init_j = Init {
					features: nodes[i].node.init_features(),
					networks: None,
					remote_network_address: None,
				};
				nodes[j]
					.node
					.peer_connected(nodes[i].node.get_our_node_id(), &init_j, false)
					.unwrap();
			}
		}

		(persist_dir, nodes)
	}

	macro_rules! open_channel {
		($node_a: expr, $node_b: expr, $channel_value: expr) => {{
			begin_open_channel!($node_a, $node_b, $channel_value);
			let events = $node_a.node.get_and_clear_pending_events();
			assert_eq!(events.len(), 1);
			let (temporary_channel_id, tx) =
				handle_funding_generation_ready!(events[0], $channel_value);
			$node_a
				.node
				.funding_transaction_generated(
					temporary_channel_id,
					$node_b.node.get_our_node_id(),
					tx.clone(),
				)
				.unwrap();
			let msg_a = get_event_msg!(
				$node_a,
				MessageSendEvent::SendFundingCreated,
				$node_b.node.get_our_node_id()
			);
			$node_b.node.handle_funding_created($node_a.node.get_our_node_id(), &msg_a);
			get_event!($node_b, Event::ChannelPending);
			let msg_b = get_event_msg!(
				$node_b,
				MessageSendEvent::SendFundingSigned,
				$node_a.node.get_our_node_id()
			);
			$node_a.node.handle_funding_signed($node_b.node.get_our_node_id(), &msg_b);
			get_event!($node_a, Event::ChannelPending);
			tx
		}};
	}

	macro_rules! begin_open_channel {
		($node_a: expr, $node_b: expr, $channel_value: expr) => {{
			$node_a
				.node
				.create_channel($node_b.node.get_our_node_id(), $channel_value, 100, 42, None, None)
				.unwrap();
			let msg_a = get_event_msg!(
				$node_a,
				MessageSendEvent::SendOpenChannel,
				$node_b.node.get_our_node_id()
			);
			$node_b.node.handle_open_channel($node_a.node.get_our_node_id(), &msg_a);
			let msg_b = get_event_msg!(
				$node_b,
				MessageSendEvent::SendAcceptChannel,
				$node_a.node.get_our_node_id()
			);
			$node_a.node.handle_accept_channel($node_b.node.get_our_node_id(), &msg_b);
		}};
	}

	macro_rules! handle_funding_generation_ready {
		($event: expr, $channel_value: expr) => {{
			match $event {
				Event::FundingGenerationReady {
					temporary_channel_id,
					channel_value_satoshis,
					ref output_script,
					user_channel_id,
					..
				} => {
					assert_eq!(channel_value_satoshis, $channel_value);
					assert_eq!(user_channel_id, 42);

					let tx = Transaction {
						version: Version::ONE,
						lock_time: LockTime::ZERO,
						input: Vec::new(),
						output: vec![TxOut {
							value: Amount::from_sat(channel_value_satoshis),
							script_pubkey: output_script.clone(),
						}],
					};
					(temporary_channel_id, tx)
				},
				_ => panic!("Unexpected event"),
			}
		}};
	}

	fn confirm_transaction_depth(node: &mut Node, tx: &Transaction, depth: u32) {
		for i in 1..=depth {
			let prev_blockhash = node.best_block.block_hash;
			let height = node.best_block.height + 1;
			let header = create_dummy_header(prev_blockhash, height);
			let txdata = vec![(0, tx)];
			node.best_block = BestBlock::new(header.block_hash(), height);
			match i {
				1 => {
					node.node.transactions_confirmed(&header, &txdata, height);
					node.chain_monitor.transactions_confirmed(&header, &txdata, height);
					node.sweeper.transactions_confirmed(&header, &txdata, height);
				},
				x if x == depth => {
					// We need the TestBroadcaster to know about the new height so that it doesn't think
					// we're violating the time lock requirements of transactions broadcasted at that
					// point.
					let block = (genesis_block(Network::Bitcoin), height);
					node.tx_broadcaster.blocks.lock().unwrap().push(block);
					node.node.best_block_updated(&header, height);
					node.chain_monitor.best_block_updated(&header, height);
					node.sweeper.best_block_updated(&header, height);
				},
				_ => {},
			}
		}
	}

	fn advance_chain(node: &mut Node, num_blocks: u32) {
		for i in 1..=num_blocks {
			let prev_blockhash = node.best_block.block_hash;
			let height = node.best_block.height + 1;
			let header = create_dummy_header(prev_blockhash, height);
			node.best_block = BestBlock::new(header.block_hash(), height);
			if i == num_blocks {
				// We need the TestBroadcaster to know about the new height so that it doesn't think
				// we're violating the time lock requirements of transactions broadcasted at that
				// point.
				let block = (genesis_block(Network::Bitcoin), height);
				node.tx_broadcaster.blocks.lock().unwrap().push(block);
				node.node.best_block_updated(&header, height);
				node.chain_monitor.best_block_updated(&header, height);
				node.sweeper.best_block_updated(&header, height);
			}
		}
	}

	fn confirm_transaction(node: &mut Node, tx: &Transaction) {
		confirm_transaction_depth(node, tx, ANTI_REORG_DELAY);
	}

	#[test]
	fn test_background_processor() {
		// Test that when a new channel is created, the ChannelManager needs to be re-persisted with
		// updates. Also test that when new updates are available, the manager signals that it needs
		// re-persistence and is successfully re-persisted.
		let (persist_dir, nodes) = create_nodes(2, "test_background_processor");

		// Go through the channel creation process so that each node has something to persist. Since
		// open_channel consumes events, it must complete before starting BackgroundProcessor to
		// avoid a race with processing events.
		let tx = open_channel!(nodes[0], nodes[1], 100000);

		// Initiate the background processors to watch each node.
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir));
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].p2p_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		macro_rules! check_persisted_data {
			($node: expr, $filepath: expr) => {
				let mut expected_bytes = Vec::new();
				loop {
					expected_bytes.clear();
					match $node.write(&mut expected_bytes) {
						Ok(()) => match std::fs::read($filepath) {
							Ok(bytes) => {
								if bytes == expected_bytes {
									break;
								} else {
									continue;
								}
							},
							Err(_) => continue,
						},
						Err(e) => panic!("Unexpected error: {}", e),
					}
				}
			};
		}

		// Check that the initial channel manager data is persisted as expected.
		let filepath =
			get_full_filepath(format!("{}_persister_0", &persist_dir), "manager".to_string());
		check_persisted_data!(nodes[0].node, filepath.clone());

		loop {
			if !nodes[0].node.get_event_or_persist_condvar_value() {
				break;
			}
		}

		// Force-close the channel.
		let error_message = "Channel force-closed";
		nodes[0]
			.node
			.force_close_broadcasting_latest_txn(
				&ChannelId::v1_from_funding_outpoint(OutPoint {
					txid: tx.compute_txid(),
					index: 0,
				}),
				&nodes[1].node.get_our_node_id(),
				error_message.to_string(),
			)
			.unwrap();

		// Check that the force-close updates are persisted.
		check_persisted_data!(nodes[0].node, filepath.clone());
		loop {
			if !nodes[0].node.get_event_or_persist_condvar_value() {
				break;
			}
		}

		// Check network graph is persisted
		let filepath =
			get_full_filepath(format!("{}_persister_0", &persist_dir), "network_graph".to_string());
		check_persisted_data!(nodes[0].network_graph, filepath.clone());

		// Check scorer is persisted
		let filepath =
			get_full_filepath(format!("{}_persister_0", &persist_dir), "scorer".to_string());
		check_persisted_data!(nodes[0].scorer, filepath.clone());

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}
	}

	#[test]
	fn test_timer_tick_called() {
		// Test that:
		// - `ChannelManager::timer_tick_occurred` is called every `FRESHNESS_TIMER`,
		// - `ChainMonitor::rebroadcast_pending_claims` is called every `REBROADCAST_TIMER`,
		// - `PeerManager::timer_tick_occurred` is called every `PING_TIMER`, and
		// - `OnionMessageHandler::timer_tick_occurred` is called every `ONION_MESSAGE_HANDLER_TIMER`.
		let (_, nodes) = create_nodes(1, "test_timer_tick_called");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir));
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);
		loop {
			let log_entries = nodes[0].logger.lines.lock().unwrap();
			let desired_log_1 = "Calling ChannelManager's timer_tick_occurred".to_string();
			let desired_log_2 = "Calling PeerManager's timer_tick_occurred".to_string();
			let desired_log_3 = "Rebroadcasting monitor's pending claims".to_string();
			let desired_log_4 = "Calling OnionMessageHandler's timer_tick_occurred".to_string();
			if log_entries.get(&("lightning_background_processor", desired_log_1)).is_some()
				&& log_entries.get(&("lightning_background_processor", desired_log_2)).is_some()
				&& log_entries.get(&("lightning_background_processor", desired_log_3)).is_some()
				&& log_entries.get(&("lightning_background_processor", desired_log_4)).is_some()
			{
				break;
			}
		}

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}
	}

	#[test]
	fn test_channel_manager_persist_error() {
		// Test that if we encounter an error during manager persistence, the thread panics.
		let (_, nodes) = create_nodes(2, "test_persist_error");
		open_channel!(nodes[0], nodes[1], 100000);

		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(
			Persister::new(data_dir).with_manager_error(std::io::ErrorKind::Other, "test"),
		);
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);
		match bg_processor.join() {
			Ok(_) => panic!("Expected error persisting manager"),
			Err(e) => {
				assert_eq!(e.kind(), std::io::ErrorKind::Other);
				assert_eq!(e.get_ref().unwrap().to_string(), "test");
			},
		}
	}

	#[tokio::test]
	async fn test_channel_manager_persist_error_async() {
		// Test that if we encounter an error during manager persistence, the thread panics.
		let (_, nodes) = create_nodes(2, "test_persist_error_sync");
		open_channel!(nodes[0], nodes[1], 100000);

		let data_dir = nodes[0].kv_store.get_data_dir();
		let kv_store_sync = Arc::new(
			Persister::new(data_dir).with_manager_error(std::io::ErrorKind::Other, "test"),
		);
		let kv_store = KVStoreSyncWrapper(kv_store_sync);

		// Yes, you can unsafe { turn off the borrow checker }
		let lm_async: &'static LiquidityManager<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].liquidity_manager.get_lm_async()
				as *const LiquidityManager<_, _, _, _, _, _, _>)
				as &'static LiquidityManager<_, _, _, _, _, _, _>
		};
		let sweeper_async: &'static OutputSweeper<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].sweeper.sweeper_async() as *const OutputSweeper<_, _, _, _, _, _, _>)
				as &'static OutputSweeper<_, _, _, _, _, _, _>
		};

		let bp_future = super::process_events_async(
			kv_store,
			|_: _| async { Ok(()) },
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].rapid_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(lm_async),
			Some(sweeper_async),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
			move |dur: Duration| {
				Box::pin(async move {
					tokio::time::sleep(dur).await;
					false // Never exit
				})
			},
			false,
			|| Some(Duration::ZERO),
		);
		match bp_future.await {
			Ok(_) => panic!("Expected error persisting manager"),
			Err(e) => {
				assert_eq!(e.kind(), lightning::io::ErrorKind::Other);
				assert_eq!(e.get_ref().unwrap().to_string(), "test");
			},
		}
	}

	#[test]
	fn test_network_graph_persist_error() {
		// Test that if we encounter an error during network graph persistence, an error gets returned.
		let (_, nodes) = create_nodes(2, "test_persist_network_graph_error");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister =
			Arc::new(Persister::new(data_dir).with_graph_error(std::io::ErrorKind::Other, "test"));
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].p2p_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		match bg_processor.stop() {
			Ok(_) => panic!("Expected error persisting network graph"),
			Err(e) => {
				assert_eq!(e.kind(), std::io::ErrorKind::Other);
				assert_eq!(e.get_ref().unwrap().to_string(), "test");
			},
		}
	}

	#[test]
	fn test_scorer_persist_error() {
		// Test that if we encounter an error during scorer persistence, an error gets returned.
		let (_, nodes) = create_nodes(2, "test_persist_scorer_error");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister =
			Arc::new(Persister::new(data_dir).with_scorer_error(std::io::ErrorKind::Other, "test"));
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		match bg_processor.stop() {
			Ok(_) => panic!("Expected error persisting scorer"),
			Err(e) => {
				assert_eq!(e.kind(), std::io::ErrorKind::Other);
				assert_eq!(e.get_ref().unwrap().to_string(), "test");
			},
		}
	}

	#[test]
	fn test_background_event_handling() {
		let (_, mut nodes) = create_nodes(2, "test_background_event_handling");
		let node_0_id = nodes[0].node.get_our_node_id();
		let node_1_id = nodes[1].node.get_our_node_id();

		let channel_value = 100000;
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir.clone()));

		// Set up a background event handler for FundingGenerationReady events.
		let (funding_generation_send, funding_generation_recv) = std::sync::mpsc::sync_channel(1);
		let (channel_pending_send, channel_pending_recv) = std::sync::mpsc::sync_channel(1);
		let event_handler = move |event: Event| {
			match event {
				Event::FundingGenerationReady { .. } => funding_generation_send
					.send(handle_funding_generation_ready!(event, channel_value))
					.unwrap(),
				Event::ChannelPending { .. } => channel_pending_send.send(()).unwrap(),
				Event::ChannelReady { .. } => {},
				_ => panic!("Unexpected event: {:?}", event),
			}
			Ok(())
		};

		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		// Open a channel and check that the FundingGenerationReady event was handled.
		begin_open_channel!(nodes[0], nodes[1], channel_value);
		let (temporary_channel_id, funding_tx) = funding_generation_recv
			.recv_timeout(EVENT_DEADLINE)
			.expect("FundingGenerationReady not handled within deadline");
		nodes[0]
			.node
			.funding_transaction_generated(temporary_channel_id, node_1_id, funding_tx.clone())
			.unwrap();
		let msg_0 = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, node_1_id);
		nodes[1].node.handle_funding_created(node_0_id, &msg_0);
		get_event!(nodes[1], Event::ChannelPending);
		let msg_1 = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, node_0_id);
		nodes[0].node.handle_funding_signed(node_1_id, &msg_1);
		channel_pending_recv
			.recv_timeout(EVENT_DEADLINE)
			.expect("ChannelPending not handled within deadline");

		// Confirm the funding transaction.
		confirm_transaction(&mut nodes[0], &funding_tx);
		let as_funding = get_event_msg!(nodes[0], MessageSendEvent::SendChannelReady, node_1_id);
		confirm_transaction(&mut nodes[1], &funding_tx);
		let bs_funding = get_event_msg!(nodes[1], MessageSendEvent::SendChannelReady, node_0_id);
		nodes[0].node.handle_channel_ready(node_1_id, &bs_funding);
		let _as_channel_update =
			get_event_msg!(nodes[0], MessageSendEvent::SendChannelUpdate, node_1_id);
		nodes[1].node.handle_channel_ready(node_0_id, &as_funding);
		let _bs_channel_update =
			get_event_msg!(nodes[1], MessageSendEvent::SendChannelUpdate, node_0_id);
		let broadcast_funding =
			nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().pop().unwrap();
		assert_eq!(broadcast_funding.compute_txid(), funding_tx.compute_txid());
		assert!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().is_empty());

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}

		// Set up a background event handler for SpendableOutputs events.
		let (sender, receiver) = std::sync::mpsc::sync_channel(1);
		let event_handler = move |event: Event| {
			match event {
				Event::SpendableOutputs { .. } => sender.send(event).unwrap(),
				Event::ChannelReady { .. } => {},
				Event::ChannelClosed { .. } => {},
				_ => panic!("Unexpected event: {:?}", event),
			}
			Ok(())
		};
		let persister = Arc::new(Persister::new(data_dir));
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		// Force close the channel and check that the SpendableOutputs event was handled.
		let error_message = "Channel force-closed";
		nodes[0]
			.node
			.force_close_broadcasting_latest_txn(
				&nodes[0].node.list_channels()[0].channel_id,
				&node_1_id,
				error_message.to_string(),
			)
			.unwrap();
		let commitment_tx = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().pop().unwrap();
		confirm_transaction_depth(&mut nodes[0], &commitment_tx, BREAKDOWN_TIMEOUT as u32);

		let event =
			receiver.recv_timeout(EVENT_DEADLINE).expect("Events not handled within deadline");
		match event {
			Event::SpendableOutputs { outputs, channel_id } => {
				nodes[0]
					.sweeper
					.track_spendable_outputs(outputs, channel_id, false, Some(153))
					.unwrap();
			},
			_ => panic!("Unexpected event: {:?}", event),
		}

		// Check we don't generate an initial sweeping tx until we reach the required height.
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		if let Some(sweep_tx_0) = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().pop() {
			assert!(!tracked_output.is_spent_in(&sweep_tx_0));
			match tracked_output.status {
				OutputSpendStatus::PendingInitialBroadcast { delayed_until_height } => {
					assert_eq!(delayed_until_height, Some(153));
				},
				_ => panic!("Unexpected status"),
			}
		}

		advance_chain(&mut nodes[0], 3);

		let tx_broadcaster = Arc::clone(&nodes[0].tx_broadcaster);
		let wait_for_sweep_tx = || -> Transaction {
			loop {
				let sweep_tx = tx_broadcaster.txn_broadcasted.lock().unwrap().pop();
				if let Some(sweep_tx) = sweep_tx {
					return sweep_tx;
				}

				std::thread::sleep(Duration::from_millis(10));
			}
		};

		// Check we generate an initial sweeping tx.
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let sweep_tx_0 = wait_for_sweep_tx();
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		match tracked_output.status {
			OutputSpendStatus::PendingFirstConfirmation { latest_spending_tx, .. } => {
				assert_eq!(sweep_tx_0.compute_txid(), latest_spending_tx.compute_txid());
			},
			_ => panic!("Unexpected status"),
		}

		// Check we regenerate and rebroadcast the sweeping tx each block.
		advance_chain(&mut nodes[0], 1);
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let sweep_tx_1 = wait_for_sweep_tx();
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		match tracked_output.status {
			OutputSpendStatus::PendingFirstConfirmation { latest_spending_tx, .. } => {
				assert_eq!(sweep_tx_1.compute_txid(), latest_spending_tx.compute_txid());
			},
			_ => panic!("Unexpected status"),
		}
		assert_ne!(sweep_tx_0, sweep_tx_1);

		advance_chain(&mut nodes[0], 1);
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let sweep_tx_2 = wait_for_sweep_tx();
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		match tracked_output.status {
			OutputSpendStatus::PendingFirstConfirmation { latest_spending_tx, .. } => {
				assert_eq!(sweep_tx_2.compute_txid(), latest_spending_tx.compute_txid());
			},
			_ => panic!("Unexpected status"),
		}
		assert_ne!(sweep_tx_0, sweep_tx_2);
		assert_ne!(sweep_tx_1, sweep_tx_2);

		// Check we still track the spendable outputs up to ANTI_REORG_DELAY confirmations.
		confirm_transaction_depth(&mut nodes[0], &sweep_tx_2, 5);
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		match tracked_output.status {
			OutputSpendStatus::PendingThresholdConfirmations { latest_spending_tx, .. } => {
				assert_eq!(sweep_tx_2.compute_txid(), latest_spending_tx.compute_txid());
			},
			_ => panic!("Unexpected status"),
		}

		// Check we still see the transaction as confirmed if we unconfirm any untracked
		// transaction. (We previously had a bug that would mark tracked transactions as
		// unconfirmed if any transaction at an unknown block height would be unconfirmed.)
		let unconf_txid = Txid::from_slice(&[0; 32]).unwrap();
		nodes[0].sweeper.transaction_unconfirmed(&unconf_txid);

		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 1);
		let tracked_output = nodes[0].sweeper.tracked_spendable_outputs().first().unwrap().clone();
		match tracked_output.status {
			OutputSpendStatus::PendingThresholdConfirmations { latest_spending_tx, .. } => {
				assert_eq!(sweep_tx_2.compute_txid(), latest_spending_tx.compute_txid());
			},
			_ => panic!("Unexpected status"),
		}

		// Check we stop tracking the spendable outputs when one of the txs reaches
		// PRUNE_DELAY_BLOCKS confirmations.
		confirm_transaction_depth(&mut nodes[0], &sweep_tx_0, PRUNE_DELAY_BLOCKS);
		assert_eq!(nodes[0].sweeper.tracked_spendable_outputs().len(), 0);

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}
	}

	#[test]
	fn test_event_handling_failures_are_replayed() {
		let (_, nodes) = create_nodes(2, "test_event_handling_failures_are_replayed");
		let channel_value = 100000;
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir.clone()));

		let (first_event_send, first_event_recv) = std::sync::mpsc::sync_channel(1);
		let (second_event_send, second_event_recv) = std::sync::mpsc::sync_channel(1);
		let should_fail_event_handling = Arc::new(AtomicBool::new(true));
		let event_handler = move |event: Event| {
			if let Ok(true) = should_fail_event_handling.compare_exchange(
				true,
				false,
				Ordering::Acquire,
				Ordering::Relaxed,
			) {
				first_event_send.send(event).unwrap();
				return Err(ReplayEvent());
			}

			second_event_send.send(event).unwrap();
			Ok(())
		};

		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		begin_open_channel!(nodes[0], nodes[1], channel_value);
		assert_eq!(
			first_event_recv.recv_timeout(EVENT_DEADLINE).unwrap(),
			second_event_recv.recv_timeout(EVENT_DEADLINE).unwrap()
		);

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}
	}

	#[test]
	fn test_scorer_persistence() {
		let (_, nodes) = create_nodes(2, "test_scorer_persistence");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir));
		let event_handler = |_: _| Ok(());
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		loop {
			let log_entries = nodes[0].logger.lines.lock().unwrap();
			let expected_log = "Calling time_passed and persisting scorer".to_string();
			if log_entries.get(&("lightning_background_processor", expected_log)).is_some() {
				break;
			}
		}

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}
	}

	macro_rules! do_test_not_pruning_network_graph_until_graph_sync_completion {
		($nodes: expr, $receive: expr, $sleep: expr) => {
			let features = ChannelFeatures::empty();
			$nodes[0]
				.network_graph
				.add_channel_from_partial_announcement(
					42,
					None,
					53,
					features,
					$nodes[0].node.get_our_node_id().into(),
					$nodes[1].node.get_our_node_id().into(),
				)
				.expect("Failed to update channel from partial announcement");
			let original_graph_description = $nodes[0].network_graph.to_string();
			assert!(original_graph_description.contains("42: features: 0000, node_one:"));
			assert_eq!($nodes[0].network_graph.read_only().channels().len(), 1);

			loop {
				$sleep;
				let log_entries = $nodes[0].logger.lines.lock().unwrap();
				let loop_counter = "Calling ChannelManager's timer_tick_occurred".to_string();
				if *log_entries.get(&("lightning_background_processor", loop_counter)).unwrap_or(&0)
					> 1
				{
					// Wait until the loop has gone around at least twice.
					break;
				}
			}

			let initialization_input = vec![
				76, 68, 75, 1, 111, 226, 140, 10, 182, 241, 179, 114, 193, 166, 162, 70, 174, 99,
				247, 79, 147, 30, 131, 101, 225, 90, 8, 156, 104, 214, 25, 0, 0, 0, 0, 0, 97, 227,
				98, 218, 0, 0, 0, 4, 2, 22, 7, 207, 206, 25, 164, 197, 231, 230, 231, 56, 102, 61,
				250, 251, 187, 172, 38, 46, 79, 247, 108, 44, 155, 48, 219, 238, 252, 53, 192, 6,
				67, 2, 36, 125, 157, 176, 223, 175, 234, 116, 94, 248, 201, 225, 97, 235, 50, 47,
				115, 172, 63, 136, 88, 216, 115, 11, 111, 217, 114, 84, 116, 124, 231, 107, 2, 158,
				1, 242, 121, 152, 106, 204, 131, 186, 35, 93, 70, 216, 10, 237, 224, 183, 89, 95,
				65, 3, 83, 185, 58, 138, 181, 64, 187, 103, 127, 68, 50, 2, 201, 19, 17, 138, 136,
				149, 185, 226, 156, 137, 175, 110, 32, 237, 0, 217, 90, 31, 100, 228, 149, 46, 219,
				175, 168, 77, 4, 143, 38, 128, 76, 97, 0, 0, 0, 2, 0, 0, 255, 8, 153, 192, 0, 2,
				27, 0, 0, 0, 1, 0, 0, 255, 2, 68, 226, 0, 6, 11, 0, 1, 2, 3, 0, 0, 0, 2, 0, 40, 0,
				0, 0, 0, 0, 0, 3, 232, 0, 0, 3, 232, 0, 0, 0, 1, 0, 0, 0, 0, 58, 85, 116, 216, 255,
				8, 153, 192, 0, 2, 27, 0, 0, 25, 0, 0, 0, 1, 0, 0, 0, 125, 255, 2, 68, 226, 0, 6,
				11, 0, 1, 5, 0, 0, 0, 0, 29, 129, 25, 192,
			];
			$nodes[0]
				.rapid_gossip_sync
				.update_network_graph_no_std(&initialization_input[..], Some(1642291930))
				.unwrap();

			// this should have added two channels and pruned the previous one.
			assert_eq!($nodes[0].network_graph.read_only().channels().len(), 2);

			$receive.expect("Network graph not pruned within deadline");

			// all channels should now be pruned
			assert_eq!($nodes[0].network_graph.read_only().channels().len(), 0);
		};
	}

	#[test]
	fn test_not_pruning_network_graph_until_graph_sync_completion() {
		let (sender, receiver) = std::sync::mpsc::sync_channel(1);

		let (_, nodes) =
			create_nodes(2, "test_not_pruning_network_graph_until_graph_sync_completion");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir).with_graph_persistence_notifier(sender));

		let event_handler = |_: _| Ok(());
		let background_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].rapid_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		do_test_not_pruning_network_graph_until_graph_sync_completion!(
			nodes,
			receiver.recv_timeout(super::FIRST_NETWORK_PRUNE_TIMER * 5),
			std::thread::sleep(Duration::from_millis(1))
		);

		background_processor.stop().unwrap();
	}

	#[tokio::test]
	async fn test_not_pruning_network_graph_until_graph_sync_completion_async() {
		let (sender, receiver) = std::sync::mpsc::sync_channel(1);

		let (_, nodes) =
			create_nodes(2, "test_not_pruning_network_graph_until_graph_sync_completion_async");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let kv_store_sync =
			Arc::new(Persister::new(data_dir).with_graph_persistence_notifier(sender));
		let kv_store = KVStoreSyncWrapper(kv_store_sync);

		// Yes, you can unsafe { turn off the borrow checker }
		let lm_async: &'static LiquidityManager<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].liquidity_manager.get_lm_async()
				as *const LiquidityManager<_, _, _, _, _, _, _>)
				as &'static LiquidityManager<_, _, _, _, _, _, _>
		};
		let sweeper_async: &'static OutputSweeper<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].sweeper.sweeper_async() as *const OutputSweeper<_, _, _, _, _, _, _>)
				as &'static OutputSweeper<_, _, _, _, _, _, _>
		};

		let (exit_sender, exit_receiver) = tokio::sync::watch::channel(());
		let bp_future = super::process_events_async(
			kv_store,
			|_: _| async { Ok(()) },
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].rapid_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(lm_async),
			Some(sweeper_async),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
			move |dur: Duration| {
				let mut exit_receiver = exit_receiver.clone();
				Box::pin(async move {
					tokio::select! {
						_ = tokio::time::sleep(dur) => false,
						_ = exit_receiver.changed() => true,
					}
				})
			},
			false,
			|| Some(Duration::from_secs(1696300000)),
		);

		let t1 = tokio::spawn(bp_future);
		let t2 = tokio::spawn(async move {
			do_test_not_pruning_network_graph_until_graph_sync_completion!(
				nodes,
				{
					let mut i = 0;
					loop {
						tokio::time::sleep(super::FIRST_NETWORK_PRUNE_TIMER).await;
						if let Ok(()) = receiver.try_recv() {
							break Ok::<(), ()>(());
						}
						assert!(i < 5);
						i += 1;
					}
				},
				tokio::time::sleep(Duration::from_millis(1)).await
			);
			exit_sender.send(()).unwrap();
		});
		let (r1, r2) = tokio::join!(t1, t2);
		r1.unwrap().unwrap();
		r2.unwrap()
	}

	macro_rules! do_test_payment_path_scoring {
		($nodes: expr, $receive: expr) => {
			// Ensure that we update the scorer when relevant events are processed. In this case, we ensure
			// that we update the scorer upon a payment path succeeding (note that the channel must be
			// public or else we won't score it).
			// A background event handler for FundingGenerationReady events must be hooked up to a
			// running background processor.
			let scored_scid = 4242;
			let secp_ctx = Secp256k1::new();
			let node_1_privkey = SecretKey::from_slice(&[42; 32]).unwrap();
			let node_1_id = PublicKey::from_secret_key(&secp_ctx, &node_1_privkey);

			let path = Path { hops: vec![RouteHop {
				pubkey: node_1_id,
				node_features: NodeFeatures::empty(),
				short_channel_id: scored_scid,
				channel_features: ChannelFeatures::empty(),
				fee_msat: 0,
				cltv_expiry_delta: MIN_CLTV_EXPIRY_DELTA as u32,
				maybe_announced_channel: true,
			}], blinded_tail: None };

			$nodes[0].scorer.write_lock().expect(TestResult::PaymentFailure { path: path.clone(), short_channel_id: scored_scid });
			$nodes[0].node.push_pending_event(Event::PaymentPathFailed {
				payment_id: None,
				payment_hash: PaymentHash([42; 32]),
				payment_failed_permanently: false,
				failure: PathFailure::OnPath { network_update: None },
				path: path.clone(),
				short_channel_id: Some(scored_scid),
				error_code: None,
				error_data: None,
				hold_times: Vec::new(),
			});
			let event = $receive.expect("PaymentPathFailed not handled within deadline");
			match event {
				Event::PaymentPathFailed { .. } => {},
				_ => panic!("Unexpected event"),
			}

			// Ensure we'll score payments that were explicitly failed back by the destination as
			// ProbeSuccess.
			$nodes[0].scorer.write_lock().expect(TestResult::ProbeSuccess { path: path.clone() });
			$nodes[0].node.push_pending_event(Event::PaymentPathFailed {
				payment_id: None,
				payment_hash: PaymentHash([42; 32]),
				payment_failed_permanently: true,
				failure: PathFailure::OnPath { network_update: None },
				path: path.clone(),
				short_channel_id: None,
				error_code: None,
				error_data: None,
				hold_times: Vec::new(),
			});
			let event = $receive.expect("PaymentPathFailed not handled within deadline");
			match event {
				Event::PaymentPathFailed { .. } => {},
				_ => panic!("Unexpected event"),
			}

			$nodes[0].scorer.write_lock().expect(TestResult::PaymentSuccess { path: path.clone() });
			$nodes[0].node.push_pending_event(Event::PaymentPathSuccessful {
				payment_id: PaymentId([42; 32]),
				payment_hash: None,
				path: path.clone(),
				hold_times: Vec::new(),
			});
			let event = $receive.expect("PaymentPathSuccessful not handled within deadline");
			match event {
				Event::PaymentPathSuccessful { .. } => {},
				_ => panic!("Unexpected event"),
			}

			$nodes[0].scorer.write_lock().expect(TestResult::ProbeSuccess { path: path.clone() });
			$nodes[0].node.push_pending_event(Event::ProbeSuccessful {
				payment_id: PaymentId([42; 32]),
				payment_hash: PaymentHash([42; 32]),
				path: path.clone(),
			});
			let event = $receive.expect("ProbeSuccessful not handled within deadline");
			match event {
				Event::ProbeSuccessful  { .. } => {},
				_ => panic!("Unexpected event"),
			}

			$nodes[0].scorer.write_lock().expect(TestResult::ProbeFailure { path: path.clone() });
			$nodes[0].node.push_pending_event(Event::ProbeFailed {
				payment_id: PaymentId([42; 32]),
				payment_hash: PaymentHash([42; 32]),
				path,
				short_channel_id: Some(scored_scid),
			});
			let event = $receive.expect("ProbeFailure not handled within deadline");
			match event {
				Event::ProbeFailed { .. } => {},
				_ => panic!("Unexpected event"),
			}
		}
	}

	#[test]
	fn test_payment_path_scoring() {
		let (sender, receiver) = std::sync::mpsc::sync_channel(1);
		let event_handler = move |event: Event| {
			match event {
				Event::PaymentPathFailed { .. } => sender.send(event).unwrap(),
				Event::PaymentPathSuccessful { .. } => sender.send(event).unwrap(),
				Event::ProbeSuccessful { .. } => sender.send(event).unwrap(),
				Event::ProbeFailed { .. } => sender.send(event).unwrap(),
				_ => panic!("Unexpected event: {:?}", event),
			}
			Ok(())
		};

		let (_, nodes) = create_nodes(1, "test_payment_path_scoring");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let persister = Arc::new(Persister::new(data_dir));
		let bg_processor = BackgroundProcessor::start(
			persister,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(Arc::clone(&nodes[0].liquidity_manager)),
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		do_test_payment_path_scoring!(nodes, receiver.recv_timeout(EVENT_DEADLINE));

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}

		let log_entries = nodes[0].logger.lines.lock().unwrap();
		let expected_log = "Persisting scorer after update".to_string();
		assert_eq!(*log_entries.get(&("lightning_background_processor", expected_log)).unwrap(), 5);
	}

	#[tokio::test]
	async fn test_payment_path_scoring_async() {
		let (sender, mut receiver) = tokio::sync::mpsc::channel(1);
		let event_handler = move |event: Event| {
			let sender_ref = sender.clone();
			async move {
				match event {
					Event::PaymentPathFailed { .. } => sender_ref.send(event).await.unwrap(),
					Event::PaymentPathSuccessful { .. } => sender_ref.send(event).await.unwrap(),
					Event::ProbeSuccessful { .. } => sender_ref.send(event).await.unwrap(),
					Event::ProbeFailed { .. } => sender_ref.send(event).await.unwrap(),
					_ => panic!("Unexpected event: {:?}", event),
				}
				Ok(())
			}
		};

		let (_, nodes) = create_nodes(1, "test_payment_path_scoring_async");
		let data_dir = nodes[0].kv_store.get_data_dir();
		let kv_store_sync = Arc::new(Persister::new(data_dir));
		let kv_store = KVStoreSyncWrapper(kv_store_sync);

		let (exit_sender, exit_receiver) = tokio::sync::watch::channel(());

		// Yes, you can unsafe { turn off the borrow checker }
		let lm_async: &'static LiquidityManager<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].liquidity_manager.get_lm_async()
				as *const LiquidityManager<_, _, _, _, _, _, _>)
				as &'static LiquidityManager<_, _, _, _, _, _, _>
		};
		let sweeper_async: &'static OutputSweeper<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].sweeper.sweeper_async() as *const OutputSweeper<_, _, _, _, _, _, _>)
				as &'static OutputSweeper<_, _, _, _, _, _, _>
		};

		let bp_future = super::process_events_async(
			kv_store,
			event_handler,
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			Some(Arc::clone(&nodes[0].messenger)),
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			Some(lm_async),
			Some(sweeper_async),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
			move |dur: Duration| {
				let mut exit_receiver = exit_receiver.clone();
				Box::pin(async move {
					tokio::select! {
						_ = tokio::time::sleep(dur) => false,
						_ = exit_receiver.changed() => true,
					}
				})
			},
			false,
			|| Some(Duration::ZERO),
		);
		let t1 = tokio::spawn(bp_future);
		let t2 = tokio::spawn(async move {
			do_test_payment_path_scoring!(nodes, receiver.recv().await);
			exit_sender.send(()).unwrap();

			let log_entries = nodes[0].logger.lines.lock().unwrap();
			let expected_log = "Persisting scorer after update".to_string();
			assert_eq!(
				*log_entries.get(&("lightning_background_processor", expected_log)).unwrap(),
				5
			);
		});

		let (r1, r2) = tokio::join!(t1, t2);
		r1.unwrap().unwrap();
		r2.unwrap()
	}

	#[tokio::test]
	#[cfg(not(c_bindings))]
	async fn test_no_consts() {
		// Compile-test the NO_* constants can be used.
		let (_, nodes) = create_nodes(1, "test_no_consts");
		let bg_processor = BackgroundProcessor::start(
			Arc::clone(&nodes[0].kv_store),
			move |_: Event| Ok(()),
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			crate::NO_ONION_MESSENGER,
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			crate::NO_LIQUIDITY_MANAGER_SYNC,
			Some(Arc::clone(&nodes[0].sweeper)),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
		);

		if !std::thread::panicking() {
			bg_processor.stop().unwrap();
		}

		let kv_store = KVStoreSyncWrapper(Arc::clone(&nodes[0].kv_store));
		let (exit_sender, exit_receiver) = tokio::sync::watch::channel(());
		let sweeper_async: &'static OutputSweeper<_, _, _, _, _, _, _> = unsafe {
			&*(nodes[0].sweeper.sweeper_async() as *const OutputSweeper<_, _, _, _, _, _, _>)
				as &'static OutputSweeper<_, _, _, _, _, _, _>
		};
		let bp_future = super::process_events_async(
			kv_store,
			move |_: Event| async move { Ok(()) },
			Arc::clone(&nodes[0].chain_monitor),
			Arc::clone(&nodes[0].node),
			crate::NO_ONION_MESSENGER,
			nodes[0].no_gossip_sync(),
			Arc::clone(&nodes[0].peer_manager),
			crate::NO_LIQUIDITY_MANAGER,
			Some(sweeper_async),
			Arc::clone(&nodes[0].logger),
			Some(Arc::clone(&nodes[0].scorer)),
			move |dur: Duration| {
				let mut exit_receiver = exit_receiver.clone();
				Box::pin(async move {
					tokio::select! {
						_ = tokio::time::sleep(dur) => false,
						_ = exit_receiver.changed() => true,
					}
				})
			},
			false,
			|| Some(Duration::ZERO),
		);
		let t1 = tokio::spawn(bp_future);
		exit_sender.send(()).unwrap();
		t1.await.unwrap().unwrap();
	}
}