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
//
// Copyright (c) 2023 ZettaScale Technology
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
//
// Contributors:
// ZettaScale Zenoh Team, <zenoh@zettascale.tech>
//
use std::{
collections::{hash_map::Entry, HashMap},
convert::TryInto,
fmt, hint,
mem::{self, ManuallyDrop},
ops::Deref,
sync::{
atomic::{AtomicUsize, Ordering},
Arc, Mutex, RwLock, RwLockReadGuard,
},
time::{Duration, SystemTime, UNIX_EPOCH},
};
use async_trait::async_trait;
use itertools::Itertools;
use once_cell::sync::OnceCell;
use tracing::{error, info, span::EnteredSpan, trace, warn};
use uhlc::Timestamp;
#[cfg(feature = "internal")]
use uhlc::HLC;
use zenoh_collections::{IntHashMap, SingleOrVec};
use zenoh_config::{
qos::{PublisherQoSConfList, PublisherQoSConfig},
wrappers::ZenohId,
};
#[cfg(feature = "unstable")]
use zenoh_config::{wrappers::EntityGlobalId, GenericConfig};
use zenoh_core::{zconfigurable, zread, Resolve, ResolveClosure, ResolveFuture, Wait};
use zenoh_keyexpr::keyexpr_tree::{IKeyExprTree, IKeyExprTreeNode, KeBoxTree};
use zenoh_protocol::{
core::{
key_expr::{keyexpr, OwnedKeyExpr},
AtomicExprId, CongestionControl, EntityId, ExprId, Parameters, Reliability, WireExpr,
ZenohIdProto, EMPTY_EXPR_ID,
},
network::{
self,
declare::{
self, common::ext::WireExprType, queryable::ext::QueryableInfoType, Declare,
DeclareBody, DeclareKeyExpr, DeclareQueryable, DeclareSubscriber, DeclareToken,
SubscriberId, TokenId, UndeclareQueryable, UndeclareSubscriber, UndeclareToken,
},
ext,
interest::{self, InterestId, InterestMode, InterestOptions},
push, request, AtomicRequestId, DeclareFinal, Interest, Mapping, Push, Request, RequestId,
Response, ResponseFinal, UndeclareKeyExpr,
},
zenoh::{
query::{self, ext::QueryBodyType},
Del, PushBody, Put, RequestBody, ResponseBody,
},
};
use zenoh_result::ZResult;
#[cfg(feature = "shared-memory")]
use zenoh_shm::api::client_storage::ShmClientStorage;
use zenoh_task::TaskController;
use super::{
builders::close::{CloseBuilder, Closeable, Closee},
connectivity,
};
#[cfg(feature = "unstable")]
use crate::api::{cancellation::CancellationToken, sample::SourceInfo, selector::ZenohParameters};
#[cfg(feature = "internal")]
use crate::net::runtime::Runtime;
#[cfg(all(feature = "shared-memory", feature = "unstable"))]
use crate::net::runtime::ShmProviderState;
use crate::{
api::{
admin,
builders::{
publisher::{
PublicationBuilderDelete, PublicationBuilderPut, PublisherBuilder,
SessionDeleteBuilder, SessionPutBuilder,
},
querier::QuerierBuilder,
query::SessionGetBuilder,
queryable::QueryableBuilder,
session::OpenBuilder,
subscriber::SubscriberBuilder,
},
bytes::ZBytes,
cancellation::{SyncGroup, SyncGroupNotifier},
encoding::Encoding,
handlers::{Callback, CallbackParameter, DefaultHandler},
info::{Link, LinkEvent, SessionInfo, Transport, TransportEvent},
key_expr::KeyExpr,
liveliness::Liveliness,
matching::{MatchingListenerState, MatchingStatus, MatchingStatusType},
publisher::{Priority, PublisherState},
querier::QuerierState,
query::{
ConsolidationMode, LivelinessQueryState, QueryConsolidation, QueryState, QueryTarget,
Reply, ReplyKeyExpr,
},
queryable::{Query, QueryInner, QueryableState, ReplyPrimitives},
sample::{Locality, QoS, Sample, SampleKind},
selector::{Selector, REPLY_KEY_EXPR_ANY_SEL_PARAM},
subscriber::{SubscriberKind, SubscriberState},
Id,
},
net::{
primitives::Primitives,
runtime::{GenericRuntime, RuntimeBuilder},
},
query::ReplyError,
Config,
};
zconfigurable! {
pub(crate) static ref API_DATA_RECEPTION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_QUERY_RECEPTION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_REPLY_EMISSION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_REPLY_RECEPTION_CHANNEL_SIZE: usize = 256;
}
pub(crate) struct TransportEventsListenerState {
pub(crate) id: Id,
pub(crate) callback: Callback<TransportEvent>,
}
impl fmt::Debug for TransportEventsListenerState {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("TransportEventsListenerState")
.field("id", &self.id)
.finish()
}
}
pub(crate) struct LinkEventsListenerState {
pub(crate) id: Id,
pub(crate) callback: Callback<LinkEvent>,
pub(crate) transport: Option<Transport>,
}
impl fmt::Debug for LinkEventsListenerState {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("LinkEventsListenerState")
.field("id", &self.id)
.field("transport", &self.transport)
.finish()
}
}
pub(crate) struct SessionState {
pub(crate) primitives: Option<Arc<dyn Primitives>>, // @TODO replace with MaybeUninit ??
pub(crate) expr_id_counter: AtomicExprId, // @TODO: manage rollover and uniqueness
pub(crate) qid_counter: AtomicRequestId,
pub(crate) local_resources: IntHashMap<ExprId, LocalResource>,
pub(crate) remote_resources: IntHashMap<ExprId, Resource>,
pub(crate) remote_subscribers: HashMap<SubscriberId, KeyExpr<'static>>,
pub(crate) publishers: HashMap<Id, PublisherState>,
pub(crate) queriers: HashMap<Id, QuerierState>,
pub(crate) remote_tokens: HashMap<TokenId, KeyExpr<'static>>,
//pub(crate) publications: Vec<OwnedKeyExpr>,
pub(crate) subscribers: HashMap<Id, Arc<SubscriberState>>,
pub(crate) liveliness_subscribers: HashMap<Id, Arc<SubscriberState>>,
pub(crate) queryables: HashMap<Id, Arc<QueryableState>>,
pub(crate) remote_queryables: HashMap<Id, (KeyExpr<'static>, bool)>,
pub(crate) matching_listeners: HashMap<Id, Arc<MatchingListenerState>>,
pub(crate) transport_events_listeners: HashMap<Id, Arc<TransportEventsListenerState>>,
pub(crate) link_events_listeners: HashMap<Id, Arc<LinkEventsListenerState>>,
pub(crate) queries: HashMap<RequestId, QueryState>,
pub(crate) liveliness_queries: HashMap<InterestId, LivelinessQueryState>,
pub(crate) aggregated_subscribers: Vec<OwnedKeyExpr>,
pub(crate) aggregated_publishers: Vec<OwnedKeyExpr>,
pub(crate) publisher_qos_tree: KeBoxTree<PublisherQoSConfig>,
span: tracing::span::Span,
}
impl SessionState {
pub(crate) fn new(
aggregated_subscribers: Vec<OwnedKeyExpr>,
aggregated_publishers: Vec<OwnedKeyExpr>,
publisher_qos_tree: KeBoxTree<PublisherQoSConfig>,
runtime: &GenericRuntime,
) -> SessionState {
SessionState {
primitives: None,
expr_id_counter: AtomicExprId::new(1), // Note: start at 1 because 0 is reserved for NO_RESOURCE
qid_counter: AtomicRequestId::new(0),
local_resources: IntHashMap::new(),
remote_resources: IntHashMap::new(),
remote_subscribers: HashMap::new(),
publishers: HashMap::new(),
queriers: HashMap::new(),
remote_tokens: HashMap::new(),
//publications: Vec::new(),
subscribers: HashMap::new(),
liveliness_subscribers: HashMap::new(),
queryables: HashMap::new(),
remote_queryables: HashMap::new(),
matching_listeners: HashMap::new(),
transport_events_listeners: HashMap::new(),
link_events_listeners: HashMap::new(),
queries: HashMap::new(),
liveliness_queries: HashMap::new(),
aggregated_subscribers,
aggregated_publishers,
publisher_qos_tree,
span: tracing::debug_span!("sess", zid = %ZenohIdProto::from(runtime.zid()).short()), // TODO(regions): include the face id
}
}
}
pub(crate) struct SpannedPrimitives {
inner: Arc<dyn Primitives>,
_span: EnteredSpan,
}
impl Deref for SpannedPrimitives {
type Target = Arc<dyn Primitives>;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
impl SpannedPrimitives {
pub(crate) fn into_primitives(self) -> Arc<dyn Primitives> {
self.inner
}
}
impl SessionState {
#[inline]
pub(crate) fn primitives(&self) -> ZResult<SpannedPrimitives> {
let primitives = self
.primitives
.as_ref()
.cloned()
.ok_or(SessionClosedError)?;
Ok(SpannedPrimitives {
inner: primitives,
_span: self.span.clone().entered(),
})
}
#[inline]
fn get_local_res(&self, id: &ExprId) -> Option<&Resource> {
Some(&self.local_resources.get(id)?.resource)
}
#[inline]
fn get_remote_res(&self, id: &ExprId, mapping: Mapping) -> Option<&Resource> {
match mapping {
Mapping::Receiver => Some(&self.local_resources.get(id)?.resource),
Mapping::Sender => self.remote_resources.get(id),
}
}
#[inline]
fn get_res(&self, id: &ExprId, mapping: Mapping, local: bool) -> Option<&Resource> {
if local {
self.get_local_res(id)
} else {
self.get_remote_res(id, mapping)
}
}
pub(crate) fn remote_key_to_expr<'a>(&'a self, key_expr: &'a WireExpr) -> ZResult<KeyExpr<'a>> {
if key_expr.scope == EMPTY_EXPR_ID {
Ok(unsafe { keyexpr::from_str_unchecked(key_expr.suffix.as_ref()) }.into())
} else if key_expr.suffix.is_empty() {
match self.get_remote_res(&key_expr.scope, key_expr.mapping) {
Some(Resource::Node(ResourceNode { key_expr, .. })) => Ok(key_expr.into()),
Some(Resource::Prefix { prefix }) => bail!(
"Received {:?}, where {} is `{}`, which isn't a valid key expression",
key_expr,
key_expr.scope,
prefix
),
None => bail!("Remote resource {} not found", key_expr.scope),
}
} else {
[
match self.get_remote_res(&key_expr.scope, key_expr.mapping) {
Some(Resource::Node(ResourceNode { key_expr, .. })) => key_expr.as_str(),
Some(Resource::Prefix { prefix }) => prefix.as_ref(),
None => bail!("Remote resource {} not found", key_expr.scope),
},
key_expr.suffix.as_ref(),
]
.concat()
.try_into()
}
}
pub(crate) fn local_wireexpr_to_expr<'a>(
&'a self,
key_expr: &'a WireExpr,
) -> ZResult<KeyExpr<'a>> {
if key_expr.scope == EMPTY_EXPR_ID {
key_expr.suffix.as_ref().try_into()
} else if key_expr.suffix.is_empty() {
match self.get_local_res(&key_expr.scope) {
Some(Resource::Node(ResourceNode { key_expr, .. })) => Ok(key_expr.into()),
Some(Resource::Prefix { prefix }) => bail!(
"Received {:?}, where {} is `{}`, which isn't a valid key expression",
key_expr,
key_expr.scope,
prefix
),
None => bail!("Remote resource {} not found", key_expr.scope),
}
} else {
[
match self.get_local_res(&key_expr.scope) {
Some(Resource::Node(ResourceNode { key_expr, .. })) => key_expr.as_str(),
Some(Resource::Prefix { prefix }) => prefix.as_ref(),
None => bail!("Remote resource {} not found", key_expr.scope),
},
key_expr.suffix.as_ref(),
]
.concat()
.try_into()
}
}
pub(crate) fn wireexpr_to_keyexpr<'a>(
&'a self,
key_expr: &'a WireExpr,
local: bool,
) -> ZResult<KeyExpr<'a>> {
if local {
self.local_wireexpr_to_expr(key_expr)
} else {
self.remote_key_to_expr(key_expr)
}
}
pub(crate) fn subscribers(&self, kind: SubscriberKind) -> &HashMap<Id, Arc<SubscriberState>> {
match kind {
SubscriberKind::Subscriber => &self.subscribers,
SubscriberKind::LivelinessSubscriber => &self.liveliness_subscribers,
}
}
pub(crate) fn subscribers_mut(
&mut self,
kind: SubscriberKind,
) -> &mut HashMap<Id, Arc<SubscriberState>> {
match kind {
SubscriberKind::Subscriber => &mut self.subscribers,
SubscriberKind::LivelinessSubscriber => &mut self.liveliness_subscribers,
}
}
fn register_querier<'a>(
&mut self,
id: EntityId,
key_expr: &'a KeyExpr,
destination: Locality,
) -> Option<KeyExpr<'a>> {
let mut querier_state = QuerierState {
id,
remote_id: id,
key_expr: key_expr.clone().into_owned(),
destination,
};
let declared_querier =
(destination != Locality::SessionLocal)
.then(|| {
if let Some(twin_querier) = self.queriers.values().find(|p| {
p.destination != Locality::SessionLocal && &p.key_expr == key_expr
}) {
querier_state.remote_id = twin_querier.remote_id;
None
} else {
Some(key_expr.clone())
}
})
.flatten();
self.queriers.insert(id, querier_state);
declared_querier
}
fn register_subscriber<'a>(
&mut self,
id: EntityId,
key_expr: &'a KeyExpr,
origin: Locality,
callback: Callback<Sample>,
) -> (Arc<SubscriberState>, Option<KeyExpr<'a>>) {
let mut sub_state = SubscriberState {
id,
remote_id: id,
key_expr: key_expr.clone().into_owned(),
origin,
callback,
history: false,
};
let declared_sub = origin != Locality::SessionLocal;
let declared_sub = declared_sub
.then(|| {
match self
.aggregated_subscribers
.iter()
.find(|s| s.includes(key_expr))
{
Some(join_sub) => {
if let Some(joined_sub) = self
.subscribers(SubscriberKind::Subscriber)
.values()
.find(|s| {
s.origin != Locality::SessionLocal && join_sub.includes(&s.key_expr)
})
{
sub_state.remote_id = joined_sub.remote_id;
None
} else {
Some(join_sub.clone().into())
}
}
None => {
if let Some(twin_sub) = self
.subscribers(SubscriberKind::Subscriber)
.values()
.find(|s| s.origin != Locality::SessionLocal && s.key_expr == *key_expr)
{
sub_state.remote_id = twin_sub.remote_id;
None
} else {
Some(key_expr.clone())
}
}
}
})
.flatten();
let sub_state = Arc::new(sub_state);
self.subscribers_mut(SubscriberKind::Subscriber)
.insert(sub_state.id, sub_state.clone());
for res in self
.local_resources
.values_mut()
.filter_map(LocalResource::as_node_mut)
{
if key_expr.intersects(&res.key_expr) {
res.subscribers_mut(SubscriberKind::Subscriber)
.push(sub_state.clone());
}
}
for res in self
.remote_resources
.values_mut()
.filter_map(Resource::as_node_mut)
{
if key_expr.intersects(&res.key_expr) {
res.subscribers_mut(SubscriberKind::Subscriber)
.push(sub_state.clone());
}
}
(sub_state, declared_sub)
}
#[inline(always)]
fn subscriber_callbacks(
&self,
local: bool,
kind: SubscriberKind,
wire_expr: &WireExpr,
historical: bool,
) -> SubscriberCallbacks {
let mut callbacks = SingleOrVec::empty();
if wire_expr.suffix.is_empty() {
match self.get_res(&wire_expr.scope, wire_expr.mapping, local) {
Some(Resource::Node(res)) => {
for sub in res.subscribers(kind).iter() {
if (sub.origin == Locality::Any
|| (local == (sub.origin == Locality::SessionLocal)))
&& (!historical || sub.history)
{
callbacks.push((sub.callback.clone(), res.key_expr.clone().into()));
}
}
}
Some(Resource::Prefix { prefix }) => {
error!("Received Data for `{prefix}`, which isn't a key expression");
return SubscriberCallbacks::default();
}
None => {
error!("Received Data for unknown expr_id: {}", wire_expr.scope);
return SubscriberCallbacks::default();
}
}
} else {
match self.wireexpr_to_keyexpr(wire_expr, local) {
Ok(key_expr) => {
for sub in self.subscribers(kind).values() {
if (sub.origin == Locality::Any
|| (local == (sub.origin == Locality::SessionLocal)))
&& (!historical || sub.history)
&& key_expr.intersects(&sub.key_expr)
{
callbacks.push((sub.callback.clone(), key_expr.clone().into_owned()));
}
}
}
Err(err) => {
error!("Received Data for unknown key_expr: {err}");
return SubscriberCallbacks::default();
}
}
}
SubscriberCallbacks(callbacks)
}
}
impl fmt::Debug for SessionState {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"SessionState{{ subscribers: {}, liveliness_subscribers: {} }}",
self.subscribers.len(),
self.liveliness_subscribers.len()
)
}
}
#[derive(Default)]
struct SubscriberCallbacks(SingleOrVec<(Callback<Sample>, KeyExpr<'static>)>);
impl SubscriberCallbacks {
fn is_empty(&self) -> bool {
self.0.is_empty()
}
#[inline(always)]
fn call(
self,
consume: bool,
qos: push::ext::QoSType,
msg: &mut PushBody,
#[cfg(feature = "unstable")] reliability: Reliability,
) {
let zenoh_collections::single_or_vec::IntoIter { drain, last } = self.0.into_iter();
for (cb, key_expr) in drain {
#[cfg(feature = "unstable")]
cb.call_with_message((key_expr, qos, &mut msg.clone(), reliability));
#[cfg(not(feature = "unstable"))]
cb.call_with_message((key_expr, qos, &mut msg.clone()));
}
if let Some((cb, key_expr)) = last {
let mut msg = &mut *msg;
let mut msg_clone;
if !consume {
msg_clone = msg.clone();
msg = &mut msg_clone;
}
#[cfg(feature = "unstable")]
cb.call_with_message((key_expr, qos, msg, reliability));
#[cfg(not(feature = "unstable"))]
cb.call_with_message((key_expr, qos, msg));
}
}
}
pub(crate) struct ResourceNode {
pub(crate) key_expr: OwnedKeyExpr,
pub(crate) subscribers: Vec<Arc<SubscriberState>>,
pub(crate) liveliness_subscribers: Vec<Arc<SubscriberState>>,
}
impl ResourceNode {
pub(crate) fn new(key_expr: OwnedKeyExpr) -> Self {
Self {
key_expr,
subscribers: Vec::new(),
liveliness_subscribers: Vec::new(),
}
}
pub(crate) fn subscribers(&self, kind: SubscriberKind) -> &Vec<Arc<SubscriberState>> {
match kind {
SubscriberKind::Subscriber => &self.subscribers,
SubscriberKind::LivelinessSubscriber => &self.liveliness_subscribers,
}
}
pub(crate) fn subscribers_mut(
&mut self,
kind: SubscriberKind,
) -> &mut Vec<Arc<SubscriberState>> {
match kind {
SubscriberKind::Subscriber => &mut self.subscribers,
SubscriberKind::LivelinessSubscriber => &mut self.liveliness_subscribers,
}
}
}
pub(crate) enum Resource {
Prefix { prefix: Box<str> },
Node(ResourceNode),
}
impl Resource {
pub(crate) fn new(name: Box<str>) -> Self {
if keyexpr::new(name.as_ref()).is_ok() {
Self::for_keyexpr(unsafe { OwnedKeyExpr::from_boxed_str_unchecked(name) })
} else {
Self::Prefix { prefix: name }
}
}
pub(crate) fn for_keyexpr(key_expr: OwnedKeyExpr) -> Self {
Self::Node(ResourceNode::new(key_expr))
}
pub(crate) fn name(&self) -> &str {
match self {
Resource::Prefix { prefix } => prefix.as_ref(),
Resource::Node(ResourceNode { key_expr, .. }) => key_expr.as_str(),
}
}
pub(crate) fn as_node_mut(&mut self) -> Option<&mut ResourceNode> {
match self {
Resource::Prefix { .. } => None,
Resource::Node(node) => Some(node),
}
}
}
pub(crate) struct LocalResource {
resource: Resource,
declared: bool,
count: usize,
}
impl LocalResource {
pub(crate) fn as_node_mut(&mut self) -> Option<&mut ResourceNode> {
self.resource.as_node_mut()
}
}
/// A trait implemented by types that can be undeclared.
pub trait UndeclarableSealed<S> {
type Undeclaration: Resolve<ZResult<()>> + Send;
fn undeclare_inner(self, session: S) -> Self::Undeclaration;
}
impl<'a, T> UndeclarableSealed<&'a Session> for T
where
T: UndeclarableSealed<()>,
{
type Undeclaration = <T as UndeclarableSealed<()>>::Undeclaration;
fn undeclare_inner(self, _session: &'a Session) -> Self::Undeclaration {
self.undeclare_inner(())
}
}
// NOTE: `UndeclarableInner` is only pub(crate) to hide the `undeclare_inner` method. So we don't
// care about the `private_bounds` lint in this particular case.
#[allow(private_bounds)]
/// A trait implemented by types that can be undeclared.
pub trait Undeclarable<S = ()>: UndeclarableSealed<S> {}
impl<T, S> Undeclarable<S> for T where T: UndeclarableSealed<S> {}
#[allow(dead_code)] // to allow using `id` with `unstable` feature
pub(crate) struct SessionInner {
/// See [`WeakSession`] doc
strong_counter: AtomicUsize,
runtime: GenericRuntime,
state: RwLock<SessionState>,
id: EntityId,
task_controller: TaskController,
face_id: OnceCell<usize>,
pub(crate) callbacks_drop_sync_group: SyncGroup,
}
impl fmt::Debug for SessionInner {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Session")
.field("id", &self.runtime.zid())
.finish()
}
}
/// The [`Session`] is the main component of Zenoh. It holds the zenoh runtime object,
/// which maintains the state of the connection of the node to the Zenoh network.
///
/// The session allows declaring other zenoh entities like publishers, subscribers, queriers, queryables, etc.
/// and keeps them functioning. Closing the session will close all associated entities.
///
/// The session is cloneable so it's easy to share it between tasks and threads. Each clone of the
/// session is an `Arc` to the internal session object, so cloning is cheap and fast.
///
/// A Zenoh session is instantiated using [`zenoh::open`](crate::open)
/// with parameters specified in the [`Config`] object.
///
/// Objects created by the session ([`Publisher`](crate::pubsub::Publisher),
/// [`Subscriber`](crate::pubsub::Subscriber), [`Querier`](crate::query::Querier), etc.),
/// have lifetimes independent of the session, but they stop functioning if all clones of the session
/// object are dropped or the session is closed with the [`close`](crate::session::Session::close) method.
///
/// ### Background entities
///
/// Sometimes it is inconvenient to keep a reference to an object (for example,
/// a [`Queryable`](crate::query::Queryable)) solely to keep it alive. There is a way to
/// avoid keeping this reference and keep the object alive until the session is closed.
/// To do this, call the [`background`](crate::query::QueryableBuilder::background) method on the
/// corresponding builder. This causes the builder to return `()` instead of the object instance and
/// keeps the instance alive while the session is alive.
///
/// ### Difference between session and runtime
/// The session object holds all declared zenoh entities (publishers, subscribers, etc.) and
/// a shared reference to the runtime object which maintains the state of the zenoh node.
/// Closing the session will close all associated entities and drop the reference to the runtime.
///
/// Typically each session has its own runtime, but in some cases
/// the session may share the runtime with other sessions. This is the case for the plugins
/// where each plugin has its own session but all plugins share the same `zenohd` runtime
/// for efficiency.
/// In this case, all these sessions will have the same network identity
/// [`Session::zid`](crate::session::Session::zid).
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// session.put("key/expression", "value").await.unwrap();
/// # }
/// ```
#[derive(Debug)]
#[repr(transparent)]
pub struct Session(Arc<SessionInner>);
impl Session {
#[cfg(not(feature = "internal"))]
pub(crate) fn downgrade(&self) -> WeakSession {
WeakSession {
inner: ManuallyDrop::new(Session(self.0.clone())),
}
}
#[zenoh_macros::internal]
pub fn downgrade(&self) -> WeakSession {
WeakSession {
inner: ManuallyDrop::new(Session(self.0.clone())),
}
}
#[cfg(feature = "test")]
#[allow(dead_code)]
pub(crate) fn inner_weak(&self) -> std::sync::Weak<SessionInner> {
Arc::downgrade(&self.0)
}
}
impl Clone for Session {
fn clone(&self) -> Self {
self.0.strong_counter.fetch_add(1, Ordering::Relaxed);
Self(self.0.clone())
}
}
impl Drop for Session {
fn drop(&mut self) {
if self.0.strong_counter.fetch_sub(1, Ordering::Relaxed) == 1 {
if let Err(error) = self.close().wait() {
tracing::error!(error)
}
}
}
}
/// A weak reference to the session.
// `WeakSession` provides a weak-like semantic to the arc-like session, without using [`Weak`].
// Notably, it allows establishing reference cycles inside the session for the primitive
// implementation.
// When all `Session` instances are dropped, [`Session::close`] is called and cleans
// the reference cycles, allowing the underlying `Arc` to be properly reclaimed.
//
// (Although it was planned to be used initially, `Weak` was in fact causing errors in the session
// closing, because the primitive implementation seemed to be used in the closing operation.)
#[derive(Debug)]
pub struct WeakSession {
inner: ManuallyDrop<Session>,
}
impl Clone for WeakSession {
fn clone(&self) -> Self {
self.inner.downgrade()
}
}
impl Drop for WeakSession {
fn drop(&mut self) {
// SAFETY: Rust does not call drop on ManuallyDrop and all Session-allocated resources
// except Arc<SessionInner>, will be released once last "strong" Session is dropped.
unsafe { std::ptr::drop_in_place(&mut self.inner.0 as *mut _) };
}
}
impl PartialEq for Session {
fn eq(&self, other: &Self) -> bool {
Arc::ptr_eq(&self.0, &other.0)
}
}
impl PartialEq<Session> for WeakSession {
fn eq(&self, other: &Session) -> bool {
Arc::ptr_eq(&self.0, &other.0)
}
}
impl Deref for WeakSession {
type Target = Session;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
/// Error indicating the operation cannot proceed because the session is closed.
///
/// It may be returned by operations like [`Session::get`] or [`Publisher::put`](crate::api::publisher::Publisher::put) when
/// [`Session::close`] has been called before.
#[derive(Debug)]
pub struct SessionClosedError;
impl fmt::Display for SessionClosedError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "session closed")
}
}
impl std::error::Error for SessionClosedError {}
impl Session {
pub(crate) fn init(
runtime: GenericRuntime,
aggregated_subscribers: Vec<OwnedKeyExpr>,
aggregated_publishers: Vec<OwnedKeyExpr>,
) -> impl Resolve<Session> {
ResolveClosure::new(move || {
let publisher_qos = runtime
.get_config()
.get_typed::<PublisherQoSConfList>("qos/publication")
.unwrap();
let state = RwLock::new(SessionState::new(
aggregated_subscribers,
aggregated_publishers,
publisher_qos.into(),
&runtime,
));
let session = Session(Arc::new(SessionInner {
strong_counter: AtomicUsize::new(1),
runtime: runtime.clone(),
state,
id: runtime.next_id(),
task_controller: TaskController::default(),
face_id: OnceCell::new(),
callbacks_drop_sync_group: SyncGroup::default(),
}));
// Register connectivity handler
runtime.new_handler(Arc::new(connectivity::ConnectivityHandler::new(
session.downgrade(),
)));
let (_face_id, primitives) = runtime.new_primitives(Arc::new(session.downgrade()));
zwrite!(session.0.state).primitives = Some(primitives);
session.0.face_id.set(_face_id).unwrap(); // this is the only attempt to set value
admin::init(session.downgrade());
session
})
}
/// Returns the identifier of the current session. `zid()` is a convenient shortcut.
/// See [`Session::info()`](`Session::info()`) and [`SessionInfo::zid()`](`SessionInfo::zid()`) for more details.
pub fn zid(&self) -> ZenohId {
self.0.runtime.zid()
}
/// Returns the [`EntityGlobalId`] of this Session.
#[zenoh_macros::unstable]
pub fn id(&self) -> EntityGlobalId {
zenoh_protocol::core::EntityGlobalIdProto {
zid: self.zid().into(),
eid: self.0.id,
}
.into()
}
#[zenoh_macros::internal]
pub fn hlc(&self) -> Option<&HLC> {
self.0.runtime.hlc()
}
/// Close the zenoh [`Session`](Session).
///
/// Every subscriber and queryable declared will stop receiving data, and further attempts to
/// publish or query with the session or publishers will result in an error. Undeclaring an
/// entity after session closing is a no-op. Session state can be checked with
/// [`Session::is_closed`].
///
/// Sessions are automatically closed when all their instances are dropped, same as `Arc`.
/// You may still want to use this function to handle errors or close the session
/// explicitly.
/// # Examples
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let subscriber = session
/// .declare_subscriber("key/expression")
/// .await
/// .unwrap();
/// let subscriber_task = tokio::spawn(async move {
/// while let Ok(sample) = subscriber.recv_async().await {
/// println!("Received: {} {:?}", sample.key_expr(), sample.payload());
/// }
/// });
/// session.close().await.unwrap();
/// // subscriber task will end as `subscriber.recv_async()` will return `Err`
/// // subscriber undeclaration has not been sent over the wire
/// subscriber_task.await.unwrap();
/// # }
/// ```
pub fn close(&self) -> CloseBuilder<Self> {
CloseBuilder::new(self)
}
/// Check if the session has been closed.
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// assert!(!session.is_closed());
/// session.close().await.unwrap();
/// assert!(session.is_closed());
/// # }
/// ```
pub fn is_closed(&self) -> bool {
zread!(self.0.state).primitives.is_none()
}
/// Undeclare a zenoh entity declared by the session.
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let keyexpr = session.declare_keyexpr("key/expression").await.unwrap();
/// let subscriber = session
/// .declare_subscriber(&keyexpr)
/// .await
/// .unwrap();
/// session.undeclare(subscriber).await.unwrap();
/// session.undeclare(keyexpr).await.unwrap();
/// # }
/// ```
pub fn undeclare<'a, T>(&'a self, decl: T) -> impl Resolve<ZResult<()>> + 'a
where
T: Undeclarable<&'a Session> + 'a,
{
UndeclarableSealed::undeclare_inner(decl, self)
}
/// Get the current configuration of the zenoh [`Session`](Session).
///
/// The returned configuration [`Notifier`](crate::config::Notifier) can be used to read the current
/// zenoh configuration through the `get` function or
/// modify the zenoh configuration through the `insert`
/// or `insert_json5` function.
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let peers = session.config().get("connect/endpoints").unwrap();
/// # }
/// ```
#[zenoh_macros::unstable]
pub fn config(&self) -> GenericConfig {
self.0.runtime.get_config()
}
/// Get a new Timestamp from a Zenoh [`Session`].
///
/// The returned timestamp has the current time, with the Session's runtime [`ZenohId`].
///
/// # Examples
/// ### Get a new timestamp
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let timestamp = session.new_timestamp();
/// # }
/// ```
pub fn new_timestamp(&self) -> Timestamp {
match self.0.runtime.hlc() {
Some(hlc) => hlc.new_timestamp(),
None => {
// Called when the runtime is not initialized with an HLC.
// UNIX_EPOCH returns a Timespec::zero(); unwrap should be permissible here.
let now = SystemTime::now().duration_since(UNIX_EPOCH).unwrap().into();
Timestamp::new(now, self.zid().into())
}
}
}
}
impl Session {
/// Get information about the zenoh [`Session`](Session).
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let info = session.info();
/// # }
/// ```
pub fn info(&self) -> SessionInfo {
SessionInfo {
session: self.downgrade(),
}
}
/// Returns the [`ShmProviderState`](ShmProviderState) associated with the current [`Session`](Session)’s [`Runtime`](Runtime).
///
/// Each [`Runtime`](Runtime) may create its own provider to manage internal optimizations.
/// This method exposes that provider so it can also be accessed at the application level.
///
/// Note that the provider may not be immediately available or may be disabled via configuration.
/// Provider initialization is concurrent and triggered by access events (both transport-internal and through this API).
///
/// To use this provider, both *shared_memory* and *transport_optimization* config sections
/// must be enabled.
///
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let shm_provider = session.get_shm_provider();
/// assert!(shm_provider.into_option().is_none());
/// std::thread::sleep(std::time::Duration::from_millis(100));
/// let shm_provider = session.get_shm_provider();
/// assert!(shm_provider.into_option().is_some());
/// # }
/// ```
#[cfg(feature = "shared-memory")]
#[zenoh_macros::unstable]
pub fn get_shm_provider(&self) -> ShmProviderState {
self.0.runtime.get_shm_provider()
}
/// Create a [`Subscriber`](crate::pubsub::Subscriber) for the given key expression.
///
/// # Arguments
///
/// * `key_expr` - The resource key expression to subscribe to
///
/// # Examples
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let subscriber = session.declare_subscriber("key/expression")
/// .await
/// .unwrap();
/// tokio::task::spawn(async move {
/// while let Ok(sample) = subscriber.recv_async().await {
/// println!("Received: {:?}", sample);
/// }
/// }).await;
/// # }
/// ```
pub fn declare_subscriber<'b, TryIntoKeyExpr>(
&self,
key_expr: TryIntoKeyExpr,
) -> SubscriberBuilder<'_, 'b, DefaultHandler>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
SubscriberBuilder {
session: self,
key_expr: TryIntoKeyExpr::try_into(key_expr).map_err(Into::into),
origin: Locality::default(),
handler: DefaultHandler::default(),
}
}
/// Create a [`Queryable`](crate::query::Queryable) for the given key expression.
///
/// # Arguments
///
/// * `key_expr` - The key expression matching the queries the
/// [`Queryable`](crate::query::Queryable) will reply to
///
/// # Examples
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let queryable = session.declare_queryable("key/expression")
/// .await
/// .unwrap();
/// tokio::task::spawn(async move {
/// while let Ok(query) = queryable.recv_async().await {
/// query.reply(
/// "key/expression",
/// "value",
/// ).await.unwrap();
/// }
/// }).await;
/// # }
/// ```
pub fn declare_queryable<'b, TryIntoKeyExpr>(
&self,
key_expr: TryIntoKeyExpr,
) -> QueryableBuilder<'_, 'b, DefaultHandler>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
QueryableBuilder {
session: self,
key_expr: key_expr.try_into().map_err(Into::into),
complete: false,
origin: Locality::default(),
handler: DefaultHandler::default(),
}
}
/// Create a [`Publisher`](crate::pubsub::Publisher) for the given key expression.
///
/// # Arguments
///
/// * `key_expr` - The key expression matching resources to write
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let publisher = session.declare_publisher("key/expression")
/// .await
/// .unwrap();
/// publisher.put("value").await.unwrap();
/// # }
/// ```
pub fn declare_publisher<'b, TryIntoKeyExpr>(
&self,
key_expr: TryIntoKeyExpr,
) -> PublisherBuilder<'_, 'b>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
PublisherBuilder {
session: self,
key_expr: key_expr.try_into().map_err(Into::into),
encoding: Encoding::default(),
congestion_control: CongestionControl::DEFAULT,
priority: Priority::DEFAULT,
is_express: false,
#[cfg(feature = "unstable")]
reliability: Reliability::DEFAULT,
destination: Locality::default(),
}
}
/// Create a [`Querier`](crate::query::Querier) for the given key expression.
///
/// # Arguments
///
/// * `key_expr` - The key expression matching resources to query
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let querier = session.declare_querier("key/expression")
/// .await
/// .unwrap();
/// let replies = querier.get().await.unwrap();
/// # }
/// ```
pub fn declare_querier<'b, TryIntoKeyExpr>(
&self,
key_expr: TryIntoKeyExpr,
) -> QuerierBuilder<'_, 'b>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
let qos: QoS = request::ext::QoSType::REQUEST.into();
QuerierBuilder {
session: self,
key_expr: key_expr.try_into().map_err(Into::into),
qos: qos.into(),
destination: Locality::default(),
target: QueryTarget::default(),
consolidation: QueryConsolidation::default(),
timeout: self.queries_default_timeout(),
accept_replies: ReplyKeyExpr::default(),
}
}
/// Obtain a [`Liveliness`] struct tied to this Zenoh [`Session`].
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let liveliness = session
/// .liveliness()
/// .declare_token("key/expression")
/// .await
/// .unwrap();
/// # }
/// ```
pub fn liveliness(&self) -> Liveliness<'_> {
Liveliness { session: self }
}
}
impl Session {
/// Informs Zenoh that you intend to use `key_expr` multiple times and that it should optimize its transmission.
///
/// The returned `KeyExpr`'s internal structure may differ from what you would have obtained through a simple
/// `key_expr.try_into()`, to save time on detecting the optimizations that have been associated with it.
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let key_expr = session.declare_keyexpr("key/expression").await.unwrap();
/// # }
/// ```
pub fn declare_keyexpr<'a, 'b: 'a, TryIntoKeyExpr>(
&'a self,
key_expr: TryIntoKeyExpr,
) -> impl Resolve<ZResult<KeyExpr<'b>>> + 'a
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
let key_expr: ZResult<KeyExpr> = key_expr.try_into().map_err(Into::into);
ResolveClosure::new(move || key_expr?.declare(self, true))
}
pub(crate) fn declare_nonwild_prefix<'a>(&self, key_expr: KeyExpr<'a>) -> ZResult<KeyExpr<'a>> {
key_expr.declare_nonwild_prefix(self, false)
}
/// Publish [`SampleKind::Put`] sample directly from the session. This is a shortcut for declaring
/// a [`Publisher`](crate::pubsub::Publisher) and calling [`put`](crate::api::publisher::Publisher::put)
/// on it.
///
/// # Arguments
///
/// * `key_expr` - Key expression matching the resources to put
/// * `payload` - The payload to put
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
/// use zenoh::bytes::Encoding;
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// session
/// .put("key/expression", "payload")
/// .encoding(Encoding::TEXT_PLAIN)
/// .await
/// .unwrap();
/// # }
/// ```
#[inline]
pub fn put<'a, 'b: 'a, TryIntoKeyExpr, IntoZBytes>(
&'a self,
key_expr: TryIntoKeyExpr,
payload: IntoZBytes,
) -> SessionPutBuilder<'a, 'b>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
IntoZBytes: Into<ZBytes>,
{
SessionPutBuilder {
publisher: self.declare_publisher(key_expr),
kind: PublicationBuilderPut {
payload: payload.into(),
encoding: Encoding::default(),
},
timestamp: None,
attachment: None,
#[cfg(feature = "unstable")]
source_info: None,
}
}
/// Publish a [`SampleKind::Delete`] sample directly from the session. This is a shortcut for declaring
/// a [`Publisher`](crate::pubsub::Publisher) and calling [`delete`](crate::api::publisher::Publisher::delete) on it.
///
/// # Arguments
///
/// * `key_expr` - Key expression matching the resources to delete
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// session.delete("key/expression").await.unwrap();
/// # }
/// ```
#[inline]
pub fn delete<'a, 'b: 'a, TryIntoKeyExpr>(
&'a self,
key_expr: TryIntoKeyExpr,
) -> SessionDeleteBuilder<'a, 'b>
where
TryIntoKeyExpr: TryInto<KeyExpr<'b>>,
<TryIntoKeyExpr as TryInto<KeyExpr<'b>>>::Error: Into<zenoh_result::Error>,
{
SessionDeleteBuilder {
publisher: self.declare_publisher(key_expr),
kind: PublicationBuilderDelete,
timestamp: None,
attachment: None,
#[cfg(feature = "unstable")]
source_info: None,
}
}
/// Query data from the matching queryables in the system. This is a shortcut for declaring
/// a [`Querier`](crate::query::Querier) and calling [`get`](crate::api::querier::Querier::get) on it.
///
/// Unless explicitly requested via [`accept_replies`](crate::session::SessionGetBuilder::accept_replies),
/// replies are guaranteed to have
/// key expressions that match the requested `selector`.
///
/// # Arguments
///
/// * `selector` - The selection of resources to query
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// let replies = session.get("key/expression").await.unwrap();
/// while let Ok(reply) = replies.recv_async().await {
/// println!(">> Received {:?}", reply.result());
/// }
/// # }
/// ```
pub fn get<'a, 'b: 'a, TryIntoSelector>(
&'a self,
selector: TryIntoSelector,
) -> SessionGetBuilder<'a, 'b, DefaultHandler>
where
TryIntoSelector: TryInto<Selector<'b>>,
<TryIntoSelector as TryInto<Selector<'b>>>::Error: Into<zenoh_result::Error>,
{
let selector = selector.try_into().map_err(Into::into);
let qos: QoS = request::ext::QoSType::REQUEST.into();
SessionGetBuilder {
session: self,
selector,
target: QueryTarget::DEFAULT,
consolidation: QueryConsolidation::DEFAULT,
qos: qos.into(),
destination: Locality::default(),
timeout: self.queries_default_timeout(),
value: None,
attachment: None,
handler: DefaultHandler::default(),
#[cfg(feature = "unstable")]
source_info: None,
#[cfg(feature = "unstable")]
cancellation_token: None,
}
}
}
impl Session {
#[allow(clippy::new_ret_no_self)]
pub(super) fn new(
config: Config,
#[cfg(feature = "shared-memory")] shm_clients: Option<Arc<ShmClientStorage>>,
) -> impl Resolve<ZResult<Session>> {
ResolveFuture::new(async move {
tracing::debug!("Config: {:?}", &config);
let aggregated_subscribers = config.0.aggregation().subscribers().clone();
let aggregated_publishers = config.0.aggregation().publishers().clone();
#[allow(unused_mut)] // Required for shared-memory
let mut runtime = RuntimeBuilder::new(config);
#[cfg(feature = "shared-memory")]
{
runtime = runtime.shm_clients(shm_clients);
}
let mut runtime = runtime.build().await?;
let session = Self::init(
runtime.clone().into(),
aggregated_subscribers,
aggregated_publishers,
)
.await;
runtime.start().await?;
Ok(session)
})
}
pub(crate) fn runtime(&self) -> &GenericRuntime {
&self.0.runtime
}
pub(crate) fn queries_default_timeout(&self) -> Duration {
Duration::from_millis(self.0.runtime.get_config().queries_default_timeout_ms())
}
pub(crate) fn declare_prefix<'a>(
&'a self,
prefix: &'a str,
force: bool,
) -> impl Resolve<ZResult<Option<ExprId>>> + 'a {
ResolveClosure::new(move || {
trace!("declare_prefix({:?})", prefix);
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
match state
.local_resources
.iter_mut()
.find(|(_expr_id, res)| res.resource.name() == prefix)
{
Some((expr_id, res)) if force || res.declared => {
res.count += 1;
Ok(Some(*expr_id))
}
Some(_) => Ok(None),
None => {
let expr_id = state.expr_id_counter.fetch_add(1, Ordering::SeqCst);
let mut res = Resource::new(Box::from(prefix));
if let Resource::Node(res_node) = &mut res {
for kind in [
SubscriberKind::Subscriber,
SubscriberKind::LivelinessSubscriber,
] {
for sub in state.subscribers(kind).values() {
if res_node.key_expr.intersects(&sub.key_expr) {
res_node.subscribers_mut(kind).push(sub.clone());
}
}
}
}
state.local_resources.insert(
expr_id,
LocalResource {
resource: res,
declared: false,
count: 1,
},
);
drop(state);
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::DeclareKeyExpr(DeclareKeyExpr {
id: expr_id,
wire_expr: WireExpr {
scope: 0,
suffix: prefix.to_owned().into(),
mapping: Mapping::Sender,
},
}),
});
let mut state = zwrite!(self.0.state);
if let Some(res) = state.local_resources.get_mut(&expr_id) {
res.declared = true;
}
Ok(Some(expr_id))
}
}
})
}
pub(crate) fn undeclare_prefix(&self, expr_id: ExprId) -> ZResult<()> {
trace!("undedeclare_prefix({expr_id})");
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
if let Some(entry) = state.local_resources.get_mut(&expr_id) {
entry.count -= 1;
if entry.count == 0 {
state.local_resources.remove(&expr_id);
drop(state);
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::UndeclareKeyExpr(UndeclareKeyExpr { id: expr_id }),
});
}
Ok(())
} else {
bail!("Unknown prefix id: {expr_id} for session: {}", self.zid())
}
}
pub(crate) fn declare_publisher_inner(
&self,
key_expr: KeyExpr,
destination: Locality,
) -> ZResult<EntityId> {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Err(SessionClosedError.into());
}
tracing::trace!("declare_publisher({:?})", key_expr);
let id = self.0.runtime.next_id();
let mut pub_state = PublisherState {
id,
remote_id: id,
key_expr: key_expr.clone().into_owned(),
destination,
};
let declared_pub = (destination != Locality::SessionLocal)
.then(|| {
match state
.aggregated_publishers
.iter()
.find(|s| s.includes(&key_expr))
{
Some(join_pub) => {
if let Some(joined_pub) = state.publishers.values().find(|p| {
p.destination != Locality::SessionLocal
&& join_pub.includes(&p.key_expr)
}) {
pub_state.remote_id = joined_pub.remote_id;
None
} else {
Some(join_pub.clone().into())
}
}
None => {
if let Some(twin_pub) = state.publishers.values().find(|p| {
p.destination != Locality::SessionLocal && p.key_expr == key_expr
}) {
pub_state.remote_id = twin_pub.remote_id;
None
} else {
Some(key_expr.clone())
}
}
}
})
.flatten();
state.publishers.insert(id, pub_state);
if let Some(res) = declared_pub {
let primitives = state.primitives()?;
drop(state);
primitives.send_interest(&mut Interest {
id,
mode: InterestMode::CurrentFuture,
options: InterestOptions::KEYEXPRS + InterestOptions::SUBSCRIBERS,
wire_expr: Some(res.to_wire(self).to_owned()),
ext_qos: network::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
}
Ok(id)
}
pub(crate) fn undeclare_publisher_inner(&self, pid: Id) -> ZResult<()> {
let mut state = zwrite!(self.0.state);
let Ok(primitives) = state.primitives() else {
return Ok(());
};
if let Some(pub_state) = state.publishers.remove(&pid) {
trace!("undeclare_publisher({:?})", pub_state);
if pub_state.destination != Locality::SessionLocal {
// Note: there might be several publishers on the same KeyExpr.
// Before calling forget_publishers(key_expr), check if this was the last one.
if !state.publishers.values().any(|p| {
p.destination != Locality::SessionLocal && p.remote_id == pub_state.remote_id
}) {
drop(state);
primitives.send_interest(&mut Interest {
id: pub_state.remote_id,
mode: InterestMode::Final,
// Note: InterestMode::Final options are undefined in the current protocol specification,
// they are initialized here for internal use by local egress interceptors.
options: InterestOptions::SUBSCRIBERS,
wire_expr: None,
ext_qos: interest::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
}
}
Ok(())
} else {
Err(zerror!("Unable to find publisher").into())
}
}
pub(crate) fn declare_querier_inner(
&self,
key_expr: KeyExpr,
destination: Locality,
) -> ZResult<EntityId> {
tracing::trace!("declare_querier({:?})", key_expr);
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
let id = self.0.runtime.next_id();
let declared_querier = state.register_querier(id, &key_expr, destination);
if let Some(res) = declared_querier {
drop(state);
primitives.send_interest(&mut Interest {
id,
mode: InterestMode::CurrentFuture,
options: InterestOptions::KEYEXPRS + InterestOptions::QUERYABLES,
wire_expr: Some(res.to_wire(self).to_owned()),
ext_qos: interest::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
}
Ok(id)
}
pub(crate) fn undeclare_querier_inner(&self, querier_id: Id) -> ZResult<()> {
let mut state = zwrite!(self.0.state);
let Ok(primitives) = state.primitives() else {
return Ok(());
};
if let Some(querier_state) = state.queriers.remove(&querier_id) {
trace!("undeclare_querier({:?})", querier_state);
// remove all pending queries from this querier
state
.queries
.retain(|_, q| q.querier_id != Some(querier_id));
if querier_state.destination != Locality::SessionLocal {
// Note: there might be several queriers on the same KeyExpr.
// Before calling forget_queriers(key_expr), check if this was the last one.
if !state.queriers.values().any(|p| {
p.destination != Locality::SessionLocal
&& p.remote_id == querier_state.remote_id
}) {
drop(state);
primitives.send_interest(&mut Interest {
id: querier_state.remote_id,
mode: InterestMode::Final,
options: InterestOptions::empty(),
wire_expr: None,
ext_qos: interest::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
}
}
Ok(())
} else {
Err(zerror!("Unable to find querier").into())
}
}
fn register_callback_drop_notifier<T>(
&self,
external_notifier: Option<SyncGroupNotifier>,
callback: &mut Callback<T>,
) where
T: CallbackParameter,
{
let n = self.0.callbacks_drop_sync_group.notifier();
callback.set_on_drop(move || {
drop(external_notifier);
drop(n);
});
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_subscriber_inner(
&self,
key_expr: &KeyExpr,
origin: Locality,
mut callback: Callback<Sample>,
callback_drop_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<SubscriberState>> {
tracing::trace!("declare_subscriber({:?})", key_expr);
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
self.register_callback_drop_notifier(callback_drop_notifier, &mut callback);
let id = self.0.runtime.next_id();
let (sub_state, declared_sub) = state.register_subscriber(id, key_expr, origin, callback);
if let Some(key_expr) = declared_sub {
drop(state);
let wire_expr = key_expr.to_wire(self).to_owned();
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::DeclareSubscriber(DeclareSubscriber { id, wire_expr }),
});
let state = zread!(self.0.state);
self.update_matching_status(&state, &key_expr, MatchingStatusType::Subscribers, true)
} else if origin == Locality::SessionLocal {
self.update_matching_status(&state, key_expr, MatchingStatusType::Subscribers, true)
}
Ok(sub_state)
}
pub(crate) fn undeclare_subscriber_inner(&self, sid: Id, kind: SubscriberKind) -> ZResult<()> {
let mut state = zwrite!(self.0.state);
let Ok(primitives) = state.primitives() else {
return Ok(());
};
if let Some(sub_state) = state.subscribers_mut(kind).remove(&sid) {
trace!("undeclare_subscriber({:?})", sub_state);
for res in state
.local_resources
.values_mut()
.filter_map(LocalResource::as_node_mut)
{
res.subscribers_mut(kind)
.retain(|sub| sub.id != sub_state.id);
}
for res in state
.remote_resources
.values_mut()
.filter_map(Resource::as_node_mut)
{
res.subscribers_mut(kind)
.retain(|sub| sub.id != sub_state.id);
}
match kind {
SubscriberKind::Subscriber => {
if sub_state.origin != Locality::SessionLocal {
// Note: there might be several Subscribers on the same KeyExpr.
// Before calling forget_subscriber(key_expr), check if this was the last one.
if !state.subscribers(kind).values().any(|s| {
s.origin != Locality::SessionLocal && s.remote_id == sub_state.remote_id
}) {
drop(state);
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::UndeclareSubscriber(UndeclareSubscriber {
id: sub_state.remote_id,
ext_wire_expr: WireExprType {
wire_expr: WireExpr::empty(),
},
}),
});
let state = zread!(self.0.state);
self.update_matching_status(
&state,
&sub_state.key_expr,
MatchingStatusType::Subscribers,
false,
);
drop(state);
} else {
drop(state);
}
} else {
drop(state);
let state = zread!(self.0.state);
self.update_matching_status(
&state,
&sub_state.key_expr,
MatchingStatusType::Subscribers,
false,
);
drop(state);
}
}
SubscriberKind::LivelinessSubscriber => {
let primitives = state.primitives()?;
drop(state);
primitives.send_interest(&mut Interest {
id: sub_state.id,
mode: InterestMode::Final,
// Note: InterestMode::Final options are undefined in the current protocol specification,
// they are initialized here for internal use by local egress interceptors.
options: InterestOptions::TOKENS,
wire_expr: None,
ext_qos: interest::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
}
}
// We need to ensure that the `state` lock is no longer held at this point to allow
// eventual undeclaration of subscriber key expression which will happen automatically
// on `sub_state` drop, for background subscribers.
Ok(())
} else {
Err(zerror!("Unable to find subscriber").into())
}
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_queryable_inner(
&self,
key_expr: &KeyExpr,
complete: bool,
origin: Locality,
mut callback: Callback<Query>,
callback_drop_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<QueryableState>> {
tracing::trace!("declare_queryable({:?})", key_expr);
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
self.register_callback_drop_notifier(callback_drop_notifier, &mut callback);
let id = self.0.runtime.next_id();
let qable_state = Arc::new(QueryableState {
id,
key_expr: key_expr.clone().into_owned(),
complete,
origin,
callback,
});
state.queryables.insert(id, qable_state.clone());
if origin != Locality::SessionLocal {
drop(state);
let qabl_info = QueryableInfoType {
complete,
distance: 0,
};
let wire_expr = key_expr.to_wire(self).to_owned();
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::DeclareQueryable(DeclareQueryable {
id,
wire_expr,
ext_info: qabl_info,
}),
});
} else {
drop(state);
}
let state = zread!(self.0.state);
self.update_matching_status(
&state,
key_expr,
MatchingStatusType::Queryables(complete),
true,
);
Ok(qable_state)
}
pub(crate) fn close_queryable(&self, qid: Id) -> ZResult<()> {
let mut state = zwrite!(self.0.state);
let Ok(primitives) = state.primitives() else {
return Ok(());
};
if let Some(qable_state) = state.queryables.remove(&qid) {
trace!("undeclare_queryable({:?})", qable_state);
if qable_state.origin != Locality::SessionLocal {
drop(state);
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::UndeclareQueryable(UndeclareQueryable {
id: qable_state.id,
ext_wire_expr: WireExprType {
wire_expr: WireExpr::empty(),
},
}),
});
} else {
drop(state);
}
let state = zread!(self.0.state);
self.update_matching_status(
&state,
&qable_state.key_expr,
MatchingStatusType::Queryables(qable_state.complete),
false,
);
drop(state);
// We need to ensure that the `state` lock is no longer held at this point to allow
// eventual undeclaration of queryable key expression which will happen automatically
// on `qable_state` drop for background queryables.
Ok(())
} else {
Err(zerror!("Unable to find queryable").into())
}
}
pub(crate) fn declare_liveliness_inner(&self, key_expr: &KeyExpr) -> ZResult<Id> {
tracing::trace!("declare_liveliness({:?})", key_expr);
let id = self.0.runtime.next_id();
let primitives = zread!(self.0.state).primitives()?;
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: declare::ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: declare::ext::NodeIdType::DEFAULT,
body: DeclareBody::DeclareToken(DeclareToken {
id,
wire_expr: key_expr.to_wire(self).to_owned(),
}),
});
Ok(id)
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_liveliness_subscriber_inner(
&self,
key_expr: &KeyExpr,
origin: Locality,
history: bool,
mut callback: Callback<Sample>,
callback_drop_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<SubscriberState>> {
trace!("declare_liveliness_subscriber({:?})", key_expr);
let mut state = zwrite!(self.0.state);
let primitives = state.primitives()?;
self.register_callback_drop_notifier(callback_drop_notifier, &mut callback);
let id = self.0.runtime.next_id();
let sub_state = SubscriberState {
id,
remote_id: id,
key_expr: key_expr.clone().into_owned(),
origin,
callback: callback.clone(),
history,
};
let sub_state = Arc::new(sub_state);
state
.subscribers_mut(SubscriberKind::LivelinessSubscriber)
.insert(sub_state.id, sub_state.clone());
for res in state
.local_resources
.values_mut()
.filter_map(LocalResource::as_node_mut)
{
if key_expr.intersects(&res.key_expr) {
res.subscribers_mut(SubscriberKind::LivelinessSubscriber)
.push(sub_state.clone());
}
}
for res in state
.remote_resources
.values_mut()
.filter_map(Resource::as_node_mut)
{
if key_expr.intersects(&res.key_expr) {
res.subscribers_mut(SubscriberKind::LivelinessSubscriber)
.push(sub_state.clone());
}
}
let known_tokens = if history {
state
.remote_tokens
.values()
.filter(|token| key_expr.intersects(token))
.cloned()
.collect::<Vec<KeyExpr<'static>>>()
} else {
vec![]
};
drop(state);
if !known_tokens.is_empty() {
self.0
.task_controller
.spawn_with_rt(zenoh_runtime::ZRuntime::Net, async move {
for token in known_tokens {
callback.call(Sample {
key_expr: token,
payload: ZBytes::new(),
kind: SampleKind::Put,
encoding: Encoding::default(),
timestamp: None,
qos: QoS::default(),
#[cfg(feature = "unstable")]
reliability: Reliability::Reliable,
#[cfg(feature = "unstable")]
source_info: None,
attachment: None,
});
}
});
}
primitives.send_interest(&mut Interest {
id,
mode: if history {
InterestMode::CurrentFuture
} else {
InterestMode::Future
},
options: InterestOptions::KEYEXPRS + InterestOptions::TOKENS,
wire_expr: Some(key_expr.to_wire(self).to_owned()),
ext_qos: interest::ext::QoSType::INTEREST,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
Ok(sub_state)
}
pub(crate) fn undeclare_liveliness(&self, tid: Id) -> ZResult<()> {
let Ok(primitives) = zread!(self.0.state).primitives() else {
return Ok(());
};
trace!("undeclare_liveliness({:?})", tid);
primitives.send_declare(&mut Declare {
interest_id: None,
ext_qos: ext::QoSType::DECLARE,
ext_tstamp: None,
ext_nodeid: ext::NodeIdType::DEFAULT,
body: DeclareBody::UndeclareToken(UndeclareToken {
id: tid,
ext_wire_expr: WireExprType::null(),
}),
});
Ok(())
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_matches_listener_inner(
&self,
key_expr: &KeyExpr,
destination: Locality,
match_type: MatchingStatusType,
mut callback: Callback<MatchingStatus>,
callback_sync_group_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<MatchingListenerState>> {
let id = self.0.runtime.next_id();
tracing::trace!(
"declare_matches_listener({:?}: {:?}) => {id}",
match_type,
key_expr
);
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Err(SessionClosedError.into());
}
self.register_callback_drop_notifier(callback_sync_group_notifier, &mut callback);
let listener_state = Arc::new(MatchingListenerState {
id,
current: Mutex::new(false),
destination,
key_expr: key_expr.clone().into_owned(),
match_type,
callback,
});
state.matching_listeners.insert(id, listener_state.clone());
drop(state);
match listener_state.current.lock() {
Ok(mut current) => {
if self
.matching_status(key_expr, listener_state.destination, match_type)
.map(|s| s.matching())
.unwrap_or(true)
{
*current = true;
listener_state
.callback
.call(MatchingStatus { matching: true });
}
}
Err(e) => tracing::error!("Error trying to acquire MatchingListener lock: {}", e),
}
Ok(listener_state)
}
fn matching_status_local(
&self,
key_expr: &KeyExpr,
matching_type: MatchingStatusType,
) -> MatchingStatus {
let state = zread!(self.0.state);
let matching = match matching_type {
MatchingStatusType::Subscribers => state
.subscribers(SubscriberKind::Subscriber)
.values()
.any(|s| s.key_expr.intersects(key_expr)),
MatchingStatusType::Queryables(false) => state
.queryables
.values()
.any(|q| q.key_expr.intersects(key_expr)),
MatchingStatusType::Queryables(true) => state
.queryables
.values()
.any(|q| q.complete && q.key_expr.includes(key_expr)),
};
MatchingStatus { matching }
}
fn matching_status_remote(
&self,
key_expr: &KeyExpr,
destination: Locality,
matching_type: MatchingStatusType,
) -> ZResult<MatchingStatus> {
Ok(self.0.runtime.matching_status_remote(
key_expr,
destination,
matching_type,
*self.0.face_id.get().unwrap(),
))
}
pub(crate) fn matching_status(
&self,
key_expr: &KeyExpr,
destination: Locality,
matching_type: MatchingStatusType,
) -> ZResult<MatchingStatus> {
match destination {
Locality::SessionLocal => Ok(self.matching_status_local(key_expr, matching_type)),
Locality::Remote => self.matching_status_remote(key_expr, destination, matching_type),
Locality::Any => {
let local_match = self.matching_status_local(key_expr, matching_type);
if local_match.matching() {
Ok(local_match)
} else {
self.matching_status_remote(key_expr, destination, matching_type)
}
}
}
}
pub(crate) fn update_matching_status(
&self,
state: &SessionState,
key_expr: &KeyExpr,
match_type: MatchingStatusType,
status_value: bool,
) {
for msub in state.matching_listeners.values() {
if msub.is_matching(key_expr, match_type) {
// Cannot hold session lock when calling tables (matching_status())
// TODO: check which ZRuntime should be used
self.0
.task_controller
.spawn_with_rt(zenoh_runtime::ZRuntime::Net, {
let session = self.downgrade();
let msub = msub.clone();
async move {
match msub.current.lock() {
Ok(mut current) => {
if *current != status_value {
if let Ok(status) = session.matching_status(
&msub.key_expr,
msub.destination,
msub.match_type,
) {
if status.matching() == status_value {
*current = status_value;
let callback = msub.callback.clone();
callback.call(status)
}
}
}
}
Err(e) => {
tracing::error!(
"Error trying to acquire MatchingListener lock: {}",
e
);
}
}
}
});
}
}
}
pub(crate) fn undeclare_matches_listener_inner(&self, sid: Id) -> ZResult<()> {
let state = {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Ok(());
}
state.matching_listeners.remove(&sid)
};
if let Some(state) = state {
trace!("undeclare_matches_listener_inner({:?})", state);
Ok(())
} else {
Err(zerror!("Unable to find MatchingListener").into())
}
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_transport_events_listener_inner(
&self,
mut callback: Callback<TransportEvent>,
history: bool,
callback_drop_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<TransportEventsListenerState>> {
let id = self.runtime().next_id();
trace!("declare_transport_events_listener_inner() => {id}");
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Err(SessionClosedError.into());
}
self.register_callback_drop_notifier(callback_drop_notifier, &mut callback);
let listener_state = Arc::new(TransportEventsListenerState { id, callback });
state
.transport_events_listeners
.insert(id, listener_state.clone());
drop(state);
// Send history if requested
if history {
for transport in self.runtime().get_transports() {
let event = TransportEvent {
kind: SampleKind::Put,
transport,
};
listener_state.callback.call(event);
}
}
Ok(listener_state)
}
#[cfg(feature = "unstable")]
pub(crate) fn undeclare_transport_events_listener_inner(&self, sid: Id) -> ZResult<()> {
let state = {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Ok(());
}
state.transport_events_listeners.remove(&sid)
};
if let Some(state) = state {
trace!("undeclare_transport_events_listener_inner({:?})", state);
Ok(())
} else {
Err(zerror!("Unable to find TransportEventsListener").into())
}
}
pub(crate) fn broadcast_transport_event(
&self,
kind: SampleKind,
peer: &zenoh_transport::TransportPeer,
is_multicast: bool,
) {
let transport = Transport::new(peer, is_multicast);
let event = TransportEvent { kind, transport };
// Call all registered callbacks
let listeners = zread!(self.0.state)
.transport_events_listeners
.values()
.cloned()
.collect::<Vec<_>>();
for listener in listeners {
listener.callback.call(event.clone());
}
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn declare_transport_links_listener_inner(
&self,
mut callback: Callback<LinkEvent>,
history: bool,
transport: Option<Transport>,
callback_drop_notifier: Option<SyncGroupNotifier>,
) -> ZResult<Arc<LinkEventsListenerState>> {
let id = self.runtime().next_id();
trace!("declare_transport_links_listener_inner() => {id}");
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Err(SessionClosedError.into());
}
self.register_callback_drop_notifier(callback_drop_notifier, &mut callback);
let listener_state = Arc::new(LinkEventsListenerState {
id,
callback,
transport: transport.clone(),
});
state
.link_events_listeners
.insert(id, listener_state.clone());
drop(state);
// Send history if requested
if history {
for link in self.runtime().get_links(transport.as_ref()) {
let event = LinkEvent {
kind: SampleKind::Put,
link,
};
listener_state.callback.call(event);
}
}
Ok(listener_state)
}
#[cfg(feature = "unstable")]
pub(crate) fn undeclare_transport_links_listener_inner(&self, sid: Id) -> ZResult<()> {
let state = {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return Ok(());
}
state.link_events_listeners.remove(&sid)
};
if let Some(state) = state {
trace!("undeclare_transport_links_listener_inner({:?})", state);
Ok(())
} else {
Err(zerror!("Unable to find LinkEventsListener").into())
}
}
pub(crate) fn broadcast_link_event(
&self,
kind: SampleKind,
transport_zid: ZenohIdProto,
link: &zenoh_link::Link,
is_multicast: bool,
is_qos: bool,
) {
let event = LinkEvent {
kind,
link: Link::new(transport_zid.into(), link, is_qos),
};
// Call all registered callbacks, filtering by transport if specified
let listeners = zread!(self.0.state)
.link_events_listeners
.values()
.cloned()
.collect::<Vec<_>>();
for listener in listeners {
if let Some(filter_transport) = &listener.transport {
// Filter by both zid and is_multicast
if filter_transport.zid == event.link.zid
&& filter_transport.is_multicast == is_multicast
{
listener.callback.call(event.clone());
}
} else {
listener.callback.call(event.clone());
}
}
}
#[allow(clippy::too_many_arguments)] // TODO fixme
pub(crate) fn execute_subscriber_callbacks(
&self,
local: bool,
kind: SubscriberKind,
wire_expr: &WireExpr,
qos: push::ext::QoSType,
msg: &mut PushBody,
historical: bool,
#[cfg(feature = "unstable")] reliability: Reliability,
) {
let state = zread!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
let callbacks = state.subscriber_callbacks(local, kind, wire_expr, historical);
drop(state);
callbacks.call(
true,
qos,
msg,
#[cfg(feature = "unstable")]
reliability,
);
}
#[allow(clippy::too_many_arguments)] // TODO fixme
pub(crate) fn resolve_put(
&self,
key_expr: &KeyExpr,
payload: ZBytes,
kind: SampleKind,
encoding: Encoding,
congestion_control: CongestionControl,
priority: Priority,
is_express: bool,
destination: Locality,
#[cfg(feature = "unstable")] reliability: Reliability,
timestamp: Option<uhlc::Timestamp>,
#[cfg(feature = "unstable")] source_info: Option<SourceInfo>,
attachment: Option<ZBytes>,
) -> ZResult<()> {
trace!("write({:?}, [...])", key_expr);
let state = zread!(self.0.state);
let primitives = state.primitives()?;
let wire_expr = key_expr.to_wire(self);
let mut callbacks = SubscriberCallbacks::default();
if destination != Locality::Remote {
callbacks =
state.subscriber_callbacks(true, SubscriberKind::Subscriber, &wire_expr, false);
}
drop(state);
let timestamp = timestamp.or_else(|| self.0.runtime.new_timestamp());
let ext_qos = push::ext::QoSType::new(priority.into(), congestion_control, is_express);
let mut push = Push {
wire_expr: wire_expr.to_owned(),
ext_qos,
..Push::from(match kind {
SampleKind::Put => PushBody::Put(Put {
timestamp,
encoding: encoding.into(),
#[cfg(feature = "unstable")]
ext_sinfo: source_info.map(Into::into),
#[cfg(not(feature = "unstable"))]
ext_sinfo: None,
#[cfg(feature = "shared-memory")]
ext_shm: None,
ext_attachment: attachment.map(Into::into),
ext_unknown: vec![],
payload: payload.into(),
}),
SampleKind::Delete => PushBody::Del(Del {
timestamp,
#[cfg(feature = "unstable")]
ext_sinfo: source_info.map(Into::into),
#[cfg(not(feature = "unstable"))]
ext_sinfo: None,
ext_attachment: attachment.map(Into::into),
ext_unknown: vec![],
}),
})
};
let has_local_callbacks = !callbacks.is_empty();
if destination != Locality::SessionLocal {
primitives.send_push_consume(
&mut push,
#[cfg(feature = "unstable")]
reliability,
#[cfg(not(feature = "unstable"))]
Reliability::DEFAULT,
!has_local_callbacks,
);
}
if has_local_callbacks {
#[cold]
fn call_local(
callbacks: SubscriberCallbacks,
push: &mut Push,
#[cfg(feature = "unstable")] reliability: Reliability,
) {
callbacks.call(
true,
push.ext_qos,
&mut push.payload,
#[cfg(feature = "unstable")]
reliability,
);
}
call_local(
callbacks,
&mut push,
#[cfg(feature = "unstable")]
reliability,
);
}
// ext_unknown is not touched by routing/callbacks, so it must be empty
// we let the compiler knows it so it can optimize its drop out
// (`Vec<ZExtUnknown>::drop` was visible in flamegraph before this change)
match push.payload {
PushBody::Put(Put { ext_unknown, .. }) | PushBody::Del(Del { ext_unknown, .. })
if ext_unknown.is_empty() => {}
_ => unsafe { hint::unreachable_unchecked() },
}
Ok(())
}
#[cfg(feature = "internal")]
#[allow(dead_code)]
pub(crate) fn static_runtime(&self) -> Option<&Runtime> {
self.0.runtime.static_runtime()
}
// Important: this function should be called while state lock is being held, to ensure that
// on_cancel callback will not be fired until query is registered.
#[cfg(not(feature = "unstable"))]
fn register_query_cancellation(
&self,
querier_notifier: Option<SyncGroupNotifier>,
callback: &mut Callback<Reply>,
) -> ZResult<()> {
self.register_callback_drop_notifier(querier_notifier, callback);
Ok(())
}
#[cfg(feature = "unstable")]
fn register_query_cancellation<F>(
&self,
cancellation_token: Option<CancellationToken>,
querier_notifier: Option<SyncGroupNotifier>,
on_cancel: F,
callback: &mut Callback<Reply>,
) -> ZResult<()>
where
F: FnOnce() -> ZResult<()> + Clone + Send + Sync + 'static,
{
if let Some(ct) = cancellation_token {
if let Some(ct_notifier) = ct.notifier() {
if let Ok(handler_id) = ct.add_on_cancel_handler(on_cancel.clone()) {
let session_notifier = self.0.callbacks_drop_sync_group.notifier();
callback.set_on_drop(move || {
drop(session_notifier);
ct.remove_on_cancel_handler(handler_id);
drop(ct_notifier);
drop(querier_notifier);
});
return Ok(());
}
}
bail!("Query was cancelled")
}
self.register_callback_drop_notifier(querier_notifier, callback);
Ok(())
}
#[allow(unused_mut)] // for callback drop on undeclare
#[allow(clippy::too_many_arguments)]
pub(crate) fn query(
&self,
key_expr: &KeyExpr<'_>,
parameters: &Parameters<'_>,
target: QueryTarget,
consolidation: QueryConsolidation,
qos: QoS,
destination: Locality,
timeout: Duration,
value: Option<(ZBytes, Encoding)>,
attachment: Option<ZBytes>,
#[cfg(feature = "unstable")] source: Option<SourceInfo>,
mut callback: Callback<Reply>,
#[cfg(feature = "unstable")] cancellation_token: Option<CancellationToken>,
querier_id: Option<EntityId>,
querier_notifier: Option<SyncGroupNotifier>,
) -> ZResult<()> {
tracing::trace!(
"get({}, {:?}, {:?})",
Selector::borrowed(key_expr, parameters),
target,
consolidation
);
let mut state = zwrite!(self.0.state);
let consolidation = match consolidation.mode {
#[cfg(feature = "unstable")]
ConsolidationMode::Auto if parameters.time_range().is_some() => ConsolidationMode::None,
ConsolidationMode::Auto => ConsolidationMode::Latest,
mode => mode,
};
let qid = state.qid_counter.fetch_add(1, Ordering::SeqCst);
let primitives = state.primitives()?;
self.register_query_cancellation(
#[cfg(feature = "unstable")]
cancellation_token,
querier_notifier,
#[cfg(feature = "unstable")]
{
let s = self.downgrade();
move || {
let _ = s.cancel_query(qid);
Ok(())
}
},
&mut callback,
)?;
let nb_final = match destination {
Locality::Any => 2,
_ => 1,
};
let token = self.0.task_controller.get_cancellation_token();
self.0
.task_controller
.spawn_with_rt(zenoh_runtime::ZRuntime::Net, {
let session = self.downgrade();
async move {
tokio::select! {
_ = tokio::time::sleep(timeout) => {
let mut state = zwrite!(session.0.state);
if let Some(query) = state.queries.remove(&qid) {
std::mem::drop(state);
tracing::debug!("Timeout on query {}! Send error and close.", qid);
if query.reception_mode == ConsolidationMode::Latest {
for (_, reply) in query.replies.unwrap().into_iter() {
query.callback.call(reply);
}
}
query.callback.call(Reply {
result: Err(ReplyError::new("Timeout", Encoding::ZENOH_STRING)),
#[cfg(feature = "unstable")]
replier_id: None
});
}
}
_ = token.cancelled() => {}
}
}
});
tracing::trace!("Register query {} (nb_final = {})", qid, nb_final);
state.queries.insert(
qid,
QueryState {
nb_final,
key_expr: key_expr.key_expr().into(),
parameters: parameters.clone().into_owned(),
reception_mode: consolidation,
replies: (consolidation != ConsolidationMode::None).then(HashMap::new),
callback,
querier_id,
},
);
drop(state);
if destination != Locality::SessionLocal {
let wexpr = key_expr.to_wire(self).to_owned();
let ext_attachment = attachment.clone().map(Into::into);
primitives.send_request(&mut Request {
id: qid,
wire_expr: wexpr.clone(),
ext_qos: qos.into(),
ext_tstamp: None,
ext_nodeid: request::ext::NodeIdType::DEFAULT,
ext_target: target,
ext_budget: None,
ext_timeout: Some(timeout),
payload: RequestBody::Query(zenoh_protocol::zenoh::Query {
consolidation,
parameters: parameters.to_string(),
#[cfg(feature = "unstable")]
ext_sinfo: source.clone().map(Into::into),
#[cfg(not(feature = "unstable"))]
ext_sinfo: None,
ext_body: value.as_ref().map(|v| query::ext::QueryBodyType {
#[cfg(feature = "shared-memory")]
ext_shm: None,
encoding: v.1.clone().into(),
payload: v.0.clone().into(),
}),
ext_attachment,
ext_unknown: vec![],
}),
});
}
if destination != Locality::Remote {
self.handle_query(
zread!(self.0.state),
true,
key_expr,
parameters.as_str(),
qid,
target,
consolidation,
qos,
#[cfg(feature = "unstable")]
source,
value.as_ref().map(|v| query::ext::QueryBodyType {
#[cfg(feature = "shared-memory")]
ext_shm: None,
encoding: v.1.clone().into(),
payload: v.0.clone().into(),
}),
attachment,
);
}
Ok(())
}
#[cfg(feature = "unstable")]
pub(crate) fn cancel_query(&self, qid: Id) -> ZResult<()> {
tracing::debug!("Cancelling query: {qid}");
let mut state = zwrite!(self.0.state);
match state.queries.remove(&qid) {
Some(_) => bail!("Unable to find query {qid}"),
None => Ok(()),
}
}
#[allow(unused_mut)] // for callback drop on undeclare
pub(crate) fn liveliness_query(
&self,
key_expr: &KeyExpr<'_>,
timeout: Duration,
mut callback: Callback<Reply>,
#[cfg(feature = "unstable")] cancellation_token: Option<CancellationToken>,
) -> ZResult<()> {
tracing::trace!("liveliness.get({}, {:?})", key_expr, timeout);
let mut state = zwrite!(self.0.state);
// Queries must use the same id generator as liveliness subscribers.
// This is because both query's id and subscriber's id are used as interest id,
// so both must not overlap.
let id = self.0.runtime.next_id();
let primitives = state.primitives()?;
self.register_query_cancellation(
#[cfg(feature = "unstable")]
cancellation_token,
None,
#[cfg(feature = "unstable")]
{
let s = self.downgrade();
move || {
let _ = s.cancel_liveliness_query(id);
Ok(())
}
},
&mut callback,
)?;
let token = self.0.task_controller.get_cancellation_token();
self.0.task_controller
.spawn_with_rt(zenoh_runtime::ZRuntime::Net, {
let session = self.downgrade();
async move {
tokio::select! {
_ = tokio::time::sleep(timeout) => {
let mut state = zwrite!(session.0.state);
if let Some(query) = state.liveliness_queries.remove(&id) {
std::mem::drop(state);
tracing::debug!("Timeout on liveliness query {}! Send error and close.", id);
query.callback.call(Reply {
result: Err(ReplyError::new("Timeout", Encoding::ZENOH_STRING)),
#[cfg(feature = "unstable")]
replier_id: None
});
}
}
_ = token.cancelled() => {}
}
}
});
// NOTE(regions): we don't exec the callback with known tokens in
// `SessionState::remote_tokens` because the gateway resends current tokens on every query.
// While this is not trictly necessary, it is precisely how the protocol works on the wire
// as of Zenoh 1.7.2.
tracing::trace!("Register liveliness query {}", id);
let wexpr = key_expr.to_wire(self).to_owned();
state
.liveliness_queries
.insert(id, LivelinessQueryState { callback });
drop(state);
primitives.send_interest(&mut Interest {
id,
mode: InterestMode::Current,
options: InterestOptions::KEYEXPRS + InterestOptions::TOKENS,
wire_expr: Some(wexpr.clone()),
ext_qos: interest::ext::QoSType::DEFAULT,
ext_tstamp: None,
ext_nodeid: interest::ext::NodeIdType::DEFAULT,
});
Ok(())
}
#[cfg(feature = "unstable")]
pub(crate) fn cancel_liveliness_query(&self, qid: Id) -> ZResult<()> {
tracing::debug!("Cancelling liveliness query: {qid}");
let mut state = zwrite!(self.0.state);
match state.liveliness_queries.remove(&qid) {
Some(_) => bail!("Unable to find liveliness query {qid}"),
None => Ok(()),
}
}
#[allow(clippy::too_many_arguments)]
pub(crate) fn handle_query(
&self,
state: RwLockReadGuard<'_, SessionState>,
local: bool,
key_expr: &KeyExpr<'_>,
parameters: &str,
qid: RequestId,
target: QueryTarget,
_consolidation: ConsolidationMode,
qos: QoS,
#[cfg(feature = "unstable")] source_info: Option<SourceInfo>,
body: Option<QueryBodyType>,
attachment: Option<ZBytes>,
) {
let Ok(primitives) = state.primitives() else {
return;
};
let queryables = state
.queryables
.iter()
.filter(|(_, queryable)| {
(queryable.origin == Locality::Any
|| (local == (queryable.origin == Locality::SessionLocal)))
&& (queryable.complete || target != QueryTarget::AllComplete)
&& queryable.key_expr.intersects(key_expr)
})
.map(|(id, qable)| (*id, qable.callback.clone()))
.collect::<Vec<(u32, Callback<Query>)>>();
drop(state);
let zid = self.zid();
let query_inner = Arc::new(QueryInner {
key_expr: key_expr.clone().into_owned(),
parameters: parameters.to_owned().into(),
qid,
zid: zid.into(),
qos,
#[cfg(feature = "unstable")]
source_info,
primitives: if local {
ReplyPrimitives::new_local(self.downgrade())
} else {
ReplyPrimitives::new_remote(Some(self.downgrade()), primitives.into_primitives())
},
});
if !queryables.is_empty() {
let mut query = Query {
inner: query_inner,
eid: 0,
value: body.map(|b| (b.payload.into(), b.encoding.into())),
attachment,
};
for (eid, cb) in queryables {
query.eid = eid;
cb.call(query.clone());
}
}
}
pub(crate) fn get_publisher_qos_overwrite(&self, key_expr: &keyexpr) -> PublisherQoSConfig {
// get overwritten builder
let state = zread!(self.0.state);
let mut nodes_including = state
.publisher_qos_tree
.nodes_including(key_expr)
.filter(|n| n.weight().is_some())
.peekable();
if let Some(node) = nodes_including.next() {
if nodes_including.peek().is_some() {
tracing::warn!(
"Publisher declared on `{}` which is included by multiple key_exprs in qos config ({}). Using qos config for `{}`",
key_expr,
nodes_including.map(|n| n.keyexpr().to_string()).join(", "),
node.keyexpr(),
);
}
return node
.weight()
.expect("first node weight should not be None")
.clone();
}
PublisherQoSConfig::default()
}
}
impl Primitives for WeakSession {
fn send_interest(&self, msg: &mut zenoh_protocol::network::Interest) {
trace!("recv Interest {} {:?}", msg.id, msg.wire_expr);
}
fn send_declare(&self, msg: &mut zenoh_protocol::network::Declare) {
match &mut msg.body {
zenoh_protocol::network::DeclareBody::DeclareKeyExpr(m) => {
trace!("recv DeclareKeyExpr {} {:?}", m.id, m.wire_expr);
let state = &mut zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state.remote_key_to_expr(&m.wire_expr) {
Ok(key_expr) => {
let mut res_node = ResourceNode::new(key_expr.clone().into());
for kind in [
SubscriberKind::Subscriber,
SubscriberKind::LivelinessSubscriber,
] {
for sub in state.subscribers(kind).values() {
if key_expr.intersects(&sub.key_expr) {
res_node.subscribers_mut(kind).push(sub.clone());
}
}
}
state
.remote_resources
.insert(m.id, Resource::Node(res_node));
}
Err(e) => error!(
"Received Resource for invalid wire_expr `{}`: {}",
m.wire_expr, e
),
}
}
zenoh_protocol::network::DeclareBody::UndeclareKeyExpr(m) => {
trace!("recv UndeclareKeyExpr {}", m.id);
}
zenoh_protocol::network::DeclareBody::DeclareSubscriber(m) => {
trace!("recv DeclareSubscriber {} {:?}", m.id, m.wire_expr);
{
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state
.wireexpr_to_keyexpr(&m.wire_expr, false)
.map(|e| e.into_owned())
{
Ok(expr) => {
state.remote_subscribers.insert(m.id, expr.clone());
self.update_matching_status(
&state,
&expr,
MatchingStatusType::Subscribers,
true,
);
}
Err(err) => {
tracing::error!(
"Received DeclareSubscriber for unknown wire_expr: {}",
err
)
}
}
}
}
zenoh_protocol::network::DeclareBody::UndeclareSubscriber(m) => {
trace!("recv UndeclareSubscriber {:?}", m.id);
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
if let Some(expr) = state.remote_subscribers.remove(&m.id) {
self.update_matching_status(
&state,
&expr,
MatchingStatusType::Subscribers,
false,
);
} else {
tracing::error!("Received Undeclare Subscriber for unknown id: {}", m.id);
}
}
zenoh_protocol::network::DeclareBody::DeclareQueryable(m) => {
trace!("recv DeclareQueryable {} {:?}", m.id, m.wire_expr);
{
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state
.wireexpr_to_keyexpr(&m.wire_expr, false)
.map(|e| e.into_owned())
{
Ok(expr) => {
let prev = state
.remote_queryables
.insert(m.id, (expr.clone(), m.ext_info.complete));
if let Some((prev_expr, prev_complete)) = prev {
self.update_matching_status(
&state,
&prev_expr,
MatchingStatusType::Queryables(prev_complete),
false,
);
}
self.update_matching_status(
&state,
&expr,
MatchingStatusType::Queryables(m.ext_info.complete),
true,
);
}
Err(err) => {
tracing::error!(
"Received DeclareQueryable for unknown wire_expr: {}",
err
)
}
}
}
}
zenoh_protocol::network::DeclareBody::UndeclareQueryable(m) => {
trace!("recv UndeclareQueryable {:?}", m.id);
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
if let Some((expr, complete)) = state.remote_queryables.remove(&m.id) {
self.update_matching_status(
&state,
&expr,
MatchingStatusType::Queryables(complete),
false,
);
} else {
tracing::error!("Received Undeclare Queryable for unknown id: {}", m.id);
}
}
zenoh_protocol::network::DeclareBody::DeclareToken(m) => {
trace!("recv DeclareToken {:?}", m.id);
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state
.wireexpr_to_keyexpr(&m.wire_expr, false)
.map(|e| e.into_owned())
{
Ok(key_expr) => {
if let Some(interest_id) = msg.interest_id {
if let Some(query) = state.liveliness_queries.get(&interest_id) {
let reply = Reply {
result: Ok(Sample {
key_expr,
payload: ZBytes::new(),
kind: SampleKind::Put,
encoding: Encoding::default(),
timestamp: None,
qos: QoS::default(),
#[cfg(feature = "unstable")]
reliability: Reliability::Reliable,
#[cfg(feature = "unstable")]
source_info: None,
attachment: None,
}),
#[cfg(feature = "unstable")]
replier_id: None,
};
query.callback.call(reply);
return;
}
}
if let Entry::Vacant(e) = state.remote_tokens.entry(m.id) {
e.insert(key_expr.clone());
drop(state);
self.execute_subscriber_callbacks(
false,
SubscriberKind::LivelinessSubscriber,
&m.wire_expr,
Default::default(),
&mut Put::default().into(),
// interest_id is set if the Token is an Interest::Current.
// This is used to decide if subs with history=false should be called or not
msg.interest_id.is_some(),
#[cfg(feature = "unstable")]
Reliability::Reliable,
);
}
}
Err(err) => {
tracing::error!("Received DeclareToken for unknown wire_expr: {}", err)
}
}
}
zenoh_protocol::network::DeclareBody::UndeclareToken(m) => {
trace!("recv UndeclareToken {:?}", m.id);
{
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
// interest_id is set if the Token is an Interest::Current.
// This is used to decide if liveliness subs with history=false should be called or not
// NOTE: an UndeclareToken is most likely not an Interest::Current
let interest_current = msg.interest_id.is_some();
if let Some(key_expr) = state.remote_tokens.remove(&m.id) {
drop(state);
self.execute_subscriber_callbacks(
false,
SubscriberKind::LivelinessSubscriber,
&key_expr.to_wire(self),
Default::default(),
&mut Del::default().into(),
interest_current,
#[cfg(feature = "unstable")]
Reliability::Reliable,
);
} else if m.ext_wire_expr.wire_expr != WireExpr::empty() {
match state
.wireexpr_to_keyexpr(&m.ext_wire_expr.wire_expr, false)
.map(|e| e.into_owned())
{
Ok(key_expr) => {
drop(state);
self.execute_subscriber_callbacks(
false,
SubscriberKind::LivelinessSubscriber,
&key_expr.to_wire(self),
Default::default(),
&mut Del::default().into(),
interest_current,
#[cfg(feature = "unstable")]
Reliability::Reliable,
);
}
Err(err) => {
tracing::error!(
"Received UndeclareToken for unknown wire_expr: {}",
err
)
}
}
}
}
}
DeclareBody::DeclareFinal(DeclareFinal) => {
trace!("recv DeclareFinal {:?}", msg.interest_id);
let Some(interest_id) = msg.interest_id else {
tracing::error!("Received DeclareFinal without interest id");
return;
};
let mut state = zwrite!(self.0.state);
let _ = state.liveliness_queries.remove(&interest_id);
}
}
}
#[inline(always)]
fn send_push_consume(&self, msg: &mut Push, _reliability: Reliability, consume: bool) {
trace!("recv Push {:?}", msg);
let state = zread!(self.0.state);
let callbacks =
state.subscriber_callbacks(false, SubscriberKind::Subscriber, &msg.wire_expr, false);
drop(state);
callbacks.call(
consume,
msg.ext_qos,
&mut msg.payload,
#[cfg(feature = "unstable")]
_reliability,
);
}
fn send_request(&self, msg: &mut Request) {
trace!("recv Request {:?}", msg);
match &mut msg.payload {
RequestBody::Query(m) => {
let state = zread!(self.0.state);
match state
.wireexpr_to_keyexpr(&msg.wire_expr, false)
.map(|k| k.into_owned())
{
Ok(key_expr) => {
self.handle_query(
state,
false,
&key_expr,
&m.parameters,
msg.id,
msg.ext_target,
m.consolidation,
msg.ext_qos.into(),
#[cfg(feature = "unstable")]
m.ext_sinfo.map(Into::into),
mem::take(&mut m.ext_body),
mem::take(&mut m.ext_attachment).map(Into::into),
);
}
Err(err) => {
error!("Received Query for unknown key_expr: {}", err);
}
}
}
}
}
fn send_response(&self, msg: &mut Response) {
trace!("recv Response {:?}", msg);
match &mut msg.payload {
ResponseBody::Err(e) => {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state.queries.get_mut(&msg.rid) {
Some(query) => {
let callback = query.callback.clone();
std::mem::drop(state);
let new_reply = Reply {
result: Err(ReplyError {
payload: mem::take(&mut e.payload).into(),
encoding: mem::take(&mut e.encoding).into(),
}),
#[cfg(feature = "unstable")]
replier_id: mem::take(&mut msg.ext_respid).map(|rid| {
zenoh_protocol::core::EntityGlobalIdProto {
zid: rid.zid,
eid: rid.eid,
}
}),
};
callback.call(new_reply);
}
None => {
tracing::warn!("Received ReplyData for unknown Query: {}", msg.rid);
}
}
}
ResponseBody::Reply(m) => {
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
let key_expr = match state.remote_key_to_expr(&msg.wire_expr) {
Ok(key) => key.into_owned(),
Err(e) => {
error!("Received ReplyData for unknown key_expr: {}", e);
return;
}
};
match state.queries.get_mut(&msg.rid) {
Some(query) => {
if !query.parameters.contains_key(REPLY_KEY_EXPR_ANY_SEL_PARAM)
&& !query.key_expr.intersects(&key_expr)
{
tracing::warn!(
"Received Reply for `{}` from `{:?}`, which didn't match query `{}?{}`: dropping Reply.",
key_expr,
msg.ext_respid,
query.key_expr,
query.parameters
);
return;
}
let new_reply = Reply {
result: Ok(Sample::from_push(
key_expr.into_owned(),
msg.ext_qos,
&mut m.payload,
#[cfg(feature = "unstable")]
Reliability::Reliable,
)),
#[cfg(feature = "unstable")]
replier_id: mem::take(&mut msg.ext_respid).map(|rid| {
zenoh_protocol::core::EntityGlobalIdProto {
zid: rid.zid,
eid: rid.eid,
}
}),
};
let callback =
match query.reception_mode {
ConsolidationMode::None => {
Some((query.callback.clone(), new_reply))
}
ConsolidationMode::Monotonic => {
match query.replies.as_ref().unwrap().get(
new_reply.result.as_ref().unwrap().key_expr.as_keyexpr(),
) {
Some(reply) => {
if new_reply.result.as_ref().unwrap().timestamp
>= reply.result.as_ref().unwrap().timestamp
{
query.replies.as_mut().unwrap().insert(
new_reply
.result
.as_ref()
.unwrap()
.key_expr
.clone()
.into(),
new_reply.clone(),
);
Some((query.callback.clone(), new_reply))
} else {
None
}
}
None => {
query.replies.as_mut().unwrap().insert(
new_reply
.result
.as_ref()
.unwrap()
.key_expr
.clone()
.into(),
new_reply.clone(),
);
Some((query.callback.clone(), new_reply))
}
}
}
ConsolidationMode::Auto | ConsolidationMode::Latest => {
match query.replies.as_ref().unwrap().get(
new_reply.result.as_ref().unwrap().key_expr.as_keyexpr(),
) {
Some(reply) => {
if new_reply.result.as_ref().unwrap().timestamp
>= reply.result.as_ref().unwrap().timestamp
{
query.replies.as_mut().unwrap().insert(
new_reply
.result
.as_ref()
.unwrap()
.key_expr
.clone()
.into(),
new_reply,
);
}
}
None => {
query.replies.as_mut().unwrap().insert(
new_reply
.result
.as_ref()
.unwrap()
.key_expr
.clone()
.into(),
new_reply,
);
}
};
None
}
};
std::mem::drop(state);
if let Some((callback, new_reply)) = callback {
callback.call(new_reply);
}
}
None => {
tracing::warn!("Received ReplyData for unknown Query: {}", msg.rid);
}
}
}
}
}
fn send_response_final(&self, msg: &mut ResponseFinal) {
trace!("recv ResponseFinal {:?}", msg);
let mut state = zwrite!(self.0.state);
if state.primitives.is_none() {
return; // Session closing or closed
}
match state.queries.get_mut(&msg.rid) {
Some(query) => {
query.nb_final -= 1;
if query.nb_final == 0 {
let query = state.queries.remove(&msg.rid).unwrap();
std::mem::drop(state);
if query.reception_mode == ConsolidationMode::Latest {
for (_, reply) in query.replies.unwrap().into_iter() {
query.callback.call(reply);
}
}
trace!("Close query {}", msg.rid);
}
}
None => {
warn!("Received ResponseFinal for unknown Request: {}", msg.rid);
}
}
}
fn send_close(&self) {
trace!("recv Close");
}
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
impl crate::net::primitives::EPrimitives for WeakSession {
#[inline]
fn send_interest(&self, ctx: crate::net::routing::RoutingContext<&mut Interest>) -> bool {
(self as &dyn Primitives).send_interest(ctx.msg);
false
}
#[inline]
fn send_declare(&self, ctx: crate::net::routing::RoutingContext<&mut Declare>) -> bool {
(self as &dyn Primitives).send_declare(ctx.msg);
false
}
#[inline]
fn send_push(&self, msg: &mut Push, reliability: Reliability) -> bool {
(self as &dyn Primitives).send_push(msg, reliability);
false
}
#[inline]
fn send_request(&self, msg: &mut Request) -> bool {
(self as &dyn Primitives).send_request(msg);
false
}
#[inline]
fn send_response(&self, msg: &mut Response) -> bool {
(self as &dyn Primitives).send_response(msg);
false
}
#[inline]
fn send_response_final(&self, msg: &mut ResponseFinal) -> bool {
(self as &dyn Primitives).send_response_final(msg);
false
}
fn as_any(&self) -> &dyn std::any::Any {
self
}
}
/// Open a zenoh [`Session`].
///
/// # Arguments
///
/// * `config` - The [`Config`] for the zenoh session
///
/// # Examples
/// ```
/// # #[tokio::main]
/// # async fn main() {
///
/// let session = zenoh::open(zenoh::Config::default()).await.unwrap();
/// # }
/// ```
///
/// ```
/// # #[tokio::main]
/// # async fn main() {
/// use std::str::FromStr;
/// use zenoh::session::ZenohId;
///
/// let mut config = zenoh::Config::default();
/// config.set_id(Some(ZenohId::from_str("221b72df20924c15b8794c6bdb471150").unwrap()));
/// config.connect.endpoints.set(
/// ["tcp/10.10.10.10:7447", "tcp/11.11.11.11:7447"].iter().map(|s|s.parse().unwrap()).collect());
///
/// let session = zenoh::open(config).await.unwrap();
/// # }
/// ```
pub fn open<TryIntoConfig>(config: TryIntoConfig) -> OpenBuilder<TryIntoConfig>
where
TryIntoConfig: std::convert::TryInto<crate::config::Config> + Send + 'static,
<TryIntoConfig as std::convert::TryInto<crate::config::Config>>::Error: std::fmt::Debug,
{
OpenBuilder::new(config)
}
#[derive(Default)]
pub(crate) struct SessionCloseArgs {
pub(crate) wait_callbacks: bool,
}
#[async_trait]
impl Closee for WeakSession {
type CloseArgs = SessionCloseArgs;
#[allow(unused_variables)] // SessionCloseArgs are only required for wait until callback execution ends under unstable
async fn close_inner(&self, close_args: SessionCloseArgs) {
let primitives = zwrite!(self.0.state).primitives.take();
// defer the cleanup of internal data structures by taking them out of the locked state
// this is needed because callbacks may contain entities which need to acquire the
// lock to be dropped, so callback must be dropped without the lock held
// Do this step before closing runtime and transport to prevent new callbacks from being called
// while closing
{
let mut state = zwrite!(self.0.state);
let _queryables = std::mem::take(&mut state.queryables);
let _subscribers = std::mem::take(&mut state.subscribers);
let _liveliness_subscribers = std::mem::take(&mut state.liveliness_subscribers);
let _local_resources = std::mem::take(&mut state.local_resources);
let _remote_resources = std::mem::take(&mut state.remote_resources);
let _queries = std::mem::take(&mut state.queries);
let _matching_listeners = std::mem::take(&mut state.matching_listeners);
let _transport_event_listeners = std::mem::take(&mut state.transport_events_listeners);
let _link_event_listeners = std::mem::take(&mut state.link_events_listeners);
drop(state);
}
// after this point, no callbacks can be present in session anymore,
// since all existing ones have been dropped and no new ones can be created since primitives have been taken out of session state
if close_args.wait_callbacks {
self.0.callbacks_drop_sync_group.wait_async().await;
}
let Some(primitives) = primitives else {
return;
};
if let Some(r) = self.0.runtime.static_runtime() {
// session created by plugins never have a copy of static_runtime, so the code below will run only inside zenohd
info!(zid = %self.zid(), "close session");
self.0.task_controller.terminate_all_async().await;
let closee = r.get_closee();
closee.close_inner(()).await;
} else {
self.0.task_controller.terminate_all_async().await;
primitives.send_close();
}
}
}
impl Closeable for Session {
type TClosee = WeakSession;
fn get_closee(&self) -> Self::TClosee {
self.downgrade()
}
}