dyniak 1.4.1

Riak-compatible protocol surface (HTTP + PBC) and storage bridge for the Dynomite Rust port
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
//! HTTP route table and per-route handlers for the Riak HTTP gateway.
//!
//! The route surface mirrors the subset of Riak's HTTP API that the
//! v0.0.1 slice supports. Unrecognised routes return `404 Not
//! Found`. Recognised routes that the underlying
//! [`dynomite::embed::Datastore`] cannot serve (for example
//! list-keys against an in-memory store) return `501 Not
//! Implemented`. List endpoints stream their response body in
//! HTTP/1.1 chunked transfer-encoding for negotiated `application/json`
//! and use a length-prefixed framing for opaque codecs.
//!
//! # Coverage
//!
//! | Method      | Path                                     | Description                 |
//! |-------------|------------------------------------------|-----------------------------|
//! | GET, HEAD   | `/ping`                                  | Liveness probe              |
//! | GET         | `/stats`                                 | Server name and version     |
//! | GET, HEAD   | `/buckets/{bucket}/keys/{key}`           | Fetch object               |
//! | PUT         | `/buckets/{bucket}/keys/{key}`           | Store object               |
//! | POST        | `/buckets/{bucket}/keys/{key}`           | Store object (key required)|
//! | DELETE      | `/buckets/{bucket}/keys/{key}`           | Delete object              |
//! | GET         | `/buckets?buckets=true`                  | List buckets (chunked)     |
//! | GET         | `/buckets/{bucket}/keys?keys=true`       | List keys (chunked)        |
//! | GET         | `/buckets/{bucket}/props`                | Get bucket props            |
//! | PUT         | `/buckets/{bucket}/props`                | Set bucket props            |
//!
//! # Datastore semantics
//!
//! Object K/V requests (`GET` / `PUT` / `DELETE` on
//! `/buckets/{bucket}/keys/{key}`) are served against the real
//! object store when the backend exposes one. The handler probes
//! [`dynomite::embed::Datastore::as_any`] for a
//! [`crate::datastore::NoxuDatastore`] (the `object_store` helper);
//! on a hit it reads / writes / deletes the stored
//! [`crate::proto::http::object::HttpObject`] envelope, re-encoding
//! it under the negotiated codec. The envelope is persisted in a
//! canonical, codec-independent form, so a value stored under one
//! encoding is fetchable under any other.
//!
//! Backends without an object layer (the in-memory store used in
//! tests) fall back to the documented trampoline: every K/V request
//! is routed through [`dynomite::embed::Datastore::dispatch`] for the
//! substrate's per-request accounting, a `GET` then replies
//! `404 Not Found`, and `PUT` / `DELETE` reply `204 No Content`.
//! Every path -- real or fallback -- ticks the dispatch counter the
//! same way [`crate::server::handle_conn`] does on the PBC side.

use std::convert::Infallible;
use std::sync::Arc;

use bytes::Bytes;
use futures_core::Stream;
use futures_util::StreamExt;
use http_body_util::{combinators::UnsyncBoxBody, BodyExt, Full, StreamBody};
use hyper::body::{Frame as HttpFrame, Incoming};
use hyper::header::{ACCEPT, CONTENT_TYPE, TRANSFER_ENCODING};
use hyper::{HeaderMap, Method, Request, Response, StatusCode};

use dynomite::embed::hooks::DatastoreByteStream;
use dynomite::embed::Datastore;
use dynomite::msg::{Msg, MsgType};

#[cfg(feature = "noxu")]
use dyn_encoding::WireValue;

use crate::proto::http::content_type::{select_codec, SUPPORTED_CONTENT_TYPES};
#[cfg(feature = "noxu")]
use crate::proto::http::object::{object_codecs, HttpIndex, HttpLink, HttpObject};
use crate::txn::{HttpTxnRequest, HttpTxnResponse, TransactionalStore, TxnOutcome, TxnStoreError};

/// Body type the gateway emits.
///
/// The gateway used to fully buffer every response in [`Full`].
/// Streaming list-buckets / list-keys forced the boxed body shape
/// so a buffered handler and a chunked handler can coexist behind
/// one return type. The error type is unified to [`Infallible`];
/// streaming handlers that observe a datastore error fold it into
/// a final body chunk and finish the stream cleanly so the hyper
/// layer never sees a body-level error.
pub(crate) type ResponseBody = UnsyncBoxBody<Bytes, Infallible>;

/// Maximum number of entries packed into a single streaming JSON
/// or codec chunk for list-buckets / list-keys.
///
/// Matches the PBC framer's chunk size so a tee-tail comparison
/// of the two transports stays apples-to-apples.
pub(crate) const HTTP_LIST_CHUNK_SIZE: usize = 256;

/// Wrap an in-memory byte payload in the boxed body shape.
fn buffered_body(bytes: Bytes) -> ResponseBody {
    BodyExt::boxed_unsync(Full::new(bytes))
}

/// Maximum HTTP request body the gateway will accept. Mirrors the
/// PBC framer's 16 MiB cap.
const MAX_BODY_LEN: usize = 16 * 1024 * 1024;

/// Server name reported through `/stats` and the `Server` header.
const SERVER_NAME: &str = "dyniak";

/// Server version reported through `/stats`. Bumped in lockstep with
/// the crate version.
const SERVER_VERSION: &str = env!("CARGO_PKG_VERSION");

/// Per-request gateway context: the datastore the handlers delegate
/// to, plus the optional search registry that lights up the index /
/// search routes.
///
/// The context is built once per server (cheap to clone: every field
/// is an [`Arc`]) and cloned per request. A plain
/// `Arc<dyn Datastore>` converts into a search-less context through
/// [`From`], so the call sites that predate the search surface keep
/// compiling unchanged.
#[derive(Clone)]
pub(crate) struct RouteCtx {
    pub(crate) datastore: Arc<dyn Datastore>,
    #[cfg(feature = "search")]
    pub(crate) search: Option<Arc<crate::proto::http::search::SearchState>>,
    /// Optional Wasm phase store. When `Some`, a
    /// [`crate::mapreduce::Phase::WasmModule`] job submitted to
    /// `POST /mapred` is dispatched through the store; when `None`
    /// such a job surfaces the typed
    /// [`crate::mapreduce::MrError::WasmNotImplemented`] error.
    #[cfg(feature = "wasm")]
    pub(crate) wasm: Option<Arc<crate::mapreduce::wasm::WasmModuleStore>>,
    /// Optional cross-node replica routing hooks. When `Some`, an
    /// object `PUT` / `DELETE` fans a [`crate::router::PeerOp`] out to
    /// every replica on the key's preference list (fire-and-forget)
    /// before persisting locally, mirroring the PBC routing path.
    /// When `None` the write is local-only (single-node / test
    /// configurations).
    pub(crate) hooks: Option<crate::router::RoutingHooks>,
}

impl RouteCtx {
    /// Build a context with neither search registry nor Wasm store
    /// wired in.
    pub(crate) fn new(datastore: Arc<dyn Datastore>) -> Self {
        Self {
            datastore,
            #[cfg(feature = "search")]
            search: None,
            #[cfg(feature = "wasm")]
            wasm: None,
            hooks: None,
        }
    }

    /// Build a context with a search registry wired in.
    #[cfg(feature = "search")]
    pub(crate) fn with_search(
        datastore: Arc<dyn Datastore>,
        search: Arc<crate::proto::http::search::SearchState>,
    ) -> Self {
        Self {
            datastore,
            search: Some(search),
            #[cfg(feature = "wasm")]
            wasm: None,
            hooks: None,
        }
    }

    /// Build a context with a Wasm phase store wired in.
    #[cfg(feature = "wasm")]
    pub(crate) fn with_wasm(
        datastore: Arc<dyn Datastore>,
        wasm: Arc<crate::mapreduce::wasm::WasmModuleStore>,
    ) -> Self {
        Self {
            datastore,
            #[cfg(feature = "search")]
            search: None,
            wasm: Some(wasm),
            hooks: None,
        }
    }

    /// Attach cross-node replica routing hooks to an existing
    /// context, returning the updated context. Used by the
    /// routing-enabled serve paths.
    pub(crate) fn set_hooks(mut self, hooks: crate::router::RoutingHooks) -> Self {
        self.hooks = Some(hooks);
        self
    }

    /// Attach a Wasm module store to an existing context, returning
    /// the updated context. Used by the combined search-and-wasm
    /// serve path, which first builds a search-carrying context and
    /// then layers the Wasm store on top.
    #[cfg(all(feature = "wasm", feature = "search"))]
    pub(crate) fn set_wasm(mut self, wasm: Arc<crate::mapreduce::wasm::WasmModuleStore>) -> Self {
        self.wasm = Some(wasm);
        self
    }
}

impl From<Arc<dyn Datastore>> for RouteCtx {
    fn from(datastore: Arc<dyn Datastore>) -> Self {
        Self::new(datastore)
    }
}

/// Dispatch entry point. Reads the request, walks the route table,
/// and produces a single buffered response.
///
/// This function never returns an error: every failure path is
/// turned into an HTTP response so the hyper service contract is
/// satisfied with `Result<_, Infallible>`.
pub(crate) async fn dispatch(req: Request<Incoming>, ctx: RouteCtx) -> Response<ResponseBody> {
    let (parts, body) = req.into_parts();
    let Some(route) = Route::parse(&parts.method, parts.uri.path(), parts.uri.query()) else {
        return text_response(StatusCode::NOT_FOUND, "not found");
    };

    let body_bytes = match collect_body(body).await {
        Ok(b) => b,
        Err(resp) => return resp,
    };

    handle_route(route, &parts.method, &parts.headers, body_bytes, ctx).await
}

/// Riak-recognised route classification.
#[derive(Debug, Eq, PartialEq)]
enum Route<'a> {
    /// `GET|HEAD /ping`
    Ping,
    /// `GET /stats`
    Stats,
    /// `GET|HEAD /buckets/{bucket}/keys/{key}`
    GetObject { bucket: &'a str, key: &'a str },
    /// `PUT /buckets/{bucket}/keys/{key}`
    PutObject { bucket: &'a str, key: &'a str },
    /// `POST /buckets/{bucket}/keys/{key}` (Riak HTTP requires the
    /// key path component even for server-assigned keys; we accept
    /// it for parity).
    PostObject { bucket: &'a str, key: &'a str },
    /// `DELETE /buckets/{bucket}/keys/{key}`
    DeleteObject { bucket: &'a str, key: &'a str },
    /// `GET /buckets?buckets=true`
    ListBuckets,
    /// `GET /buckets/{bucket}/keys?keys=true`
    ListKeys { bucket: &'a str },
    /// `GET /buckets/{bucket}/props`
    GetProps { bucket: &'a str },
    /// `PUT /buckets/{bucket}/props`
    SetProps { bucket: &'a str },
    /// `POST /mapred` -- submit a MapReduce job. Added by the
    /// v0.0.3 MapReduce slice.
    MapRed,
    /// `POST /transactions` (cluster-wide) or
    /// `POST /buckets/{bucket}/transactions` (bucket-scoped) --
    /// submit a multi-key atomic transaction batch. A dyniak
    /// extension beyond Riak's per-key eventual consistency.
    Transaction { bucket: Option<&'a str> },
    /// `POST /ramp/transactions` -- submit a RAMP-Fast multi-key
    /// write transaction (read-atomic isolation, non-blocking).
    RampWrite,
    /// `POST /ramp/read` -- run a RAMP-Fast multi-key read that
    /// returns a fracture-free snapshot.
    RampRead,
    /// `PUT /buckets/{bucket}/index/text/{field}` -- declare a text
    /// index on a logical document field. Search extension.
    #[cfg(feature = "search")]
    DeclareTextIndex { bucket: &'a str, field: &'a str },
    /// `POST /buckets/{bucket}/index/vector` -- create the bucket's
    /// vector index. Search extension.
    #[cfg(feature = "search")]
    CreateVectorIndex { bucket: &'a str },
    /// `GET /buckets/{bucket}/index` -- list declared indexes.
    #[cfg(feature = "search")]
    ListIndexes { bucket: &'a str },
    /// `GET /buckets/{bucket}/search/text/{field}?q=<substr>`.
    #[cfg(feature = "search")]
    SearchText {
        bucket: &'a str,
        field: &'a str,
        query: Option<&'a str>,
    },
    /// `GET /buckets/{bucket}/search/regex/{field}?pattern=<re>&k=<n>`.
    #[cfg(feature = "search")]
    SearchRegex {
        bucket: &'a str,
        field: &'a str,
        query: Option<&'a str>,
    },
    /// `POST /buckets/{bucket}/search/vector` -- KNN query.
    #[cfg(feature = "search")]
    SearchVector { bucket: &'a str },
}

impl<'a> Route<'a> {
    /// Match a method+path+query triple against the route table.
    fn parse(method: &Method, path: &'a str, query: Option<&'a str>) -> Option<Self> {
        let parts: Vec<&str> = path.trim_matches('/').split('/').collect();
        let m = method.as_str();
        match (m, parts.as_slice()) {
            ("GET" | "HEAD", ["ping"]) => Some(Self::Ping),
            ("GET", ["stats"]) => Some(Self::Stats),
            ("GET", ["buckets"]) if has_flag(query, "buckets", "true") => Some(Self::ListBuckets),
            ("GET" | "HEAD", ["buckets", b, "keys", k]) => {
                Some(Self::GetObject { bucket: b, key: k })
            }
            ("PUT", ["buckets", b, "keys", k]) => Some(Self::PutObject { bucket: b, key: k }),
            ("POST", ["buckets", b, "keys", k]) => Some(Self::PostObject { bucket: b, key: k }),
            ("DELETE", ["buckets", b, "keys", k]) => Some(Self::DeleteObject { bucket: b, key: k }),
            ("GET", ["buckets", b, "keys"]) if has_flag(query, "keys", "true") => {
                Some(Self::ListKeys { bucket: b })
            }
            ("GET", ["buckets", b, "props"]) => Some(Self::GetProps { bucket: b }),
            ("PUT", ["buckets", b, "props"]) => Some(Self::SetProps { bucket: b }),
            ("POST", ["mapred"]) => Some(Self::MapRed),
            ("POST", ["transactions"]) => Some(Self::Transaction { bucket: None }),
            ("POST", ["buckets", b, "transactions"]) => Some(Self::Transaction { bucket: Some(b) }),
            ("POST", ["ramp", "transactions"]) => Some(Self::RampWrite),
            ("POST", ["ramp", "read"]) => Some(Self::RampRead),
            #[cfg(feature = "search")]
            ("PUT", ["buckets", b, "index", "text", f]) => Some(Self::DeclareTextIndex {
                bucket: b,
                field: f,
            }),
            #[cfg(feature = "search")]
            ("POST", ["buckets", b, "index", "vector"]) => {
                Some(Self::CreateVectorIndex { bucket: b })
            }
            #[cfg(feature = "search")]
            ("GET", ["buckets", b, "index"]) => Some(Self::ListIndexes { bucket: b }),
            #[cfg(feature = "search")]
            ("GET", ["buckets", b, "search", "text", f]) => Some(Self::SearchText {
                bucket: b,
                field: f,
                query,
            }),
            #[cfg(feature = "search")]
            ("GET", ["buckets", b, "search", "regex", f]) => Some(Self::SearchRegex {
                bucket: b,
                field: f,
                query,
            }),
            #[cfg(feature = "search")]
            ("POST", ["buckets", b, "search", "vector"]) => Some(Self::SearchVector { bucket: b }),
            _ => None,
        }
    }
}

/// Look up `key` in a `&`-separated query string and check that its
/// value equals `expected`.
fn has_flag(query: Option<&str>, key: &str, expected: &str) -> bool {
    let Some(q) = query else { return false };
    for pair in q.split('&') {
        let mut it = pair.splitn(2, '=');
        let k = it.next().unwrap_or("");
        let v = it.next().unwrap_or("");
        if k == key && v == expected {
            return true;
        }
    }
    false
}

/// Pull the request body into memory, capped at [`MAX_BODY_LEN`].
async fn collect_body(body: Incoming) -> Result<Bytes, Response<ResponseBody>> {
    let collected = body
        .collect()
        .await
        .map_err(|e| text_response(StatusCode::BAD_REQUEST, &format!("body read error: {e}")))?
        .to_bytes();
    if collected.len() > MAX_BODY_LEN {
        return Err(text_response(
            StatusCode::PAYLOAD_TOO_LARGE,
            "request body exceeds 16 MiB",
        ));
    }
    Ok(collected)
}

/// Per-route dispatch.
async fn handle_route(
    route: Route<'_>,
    method: &Method,
    headers: &HeaderMap,
    body: Bytes,
    ctx: impl Into<RouteCtx>,
) -> Response<ResponseBody> {
    let ctx = ctx.into();
    let head_only = method == Method::HEAD;
    match route {
        Route::Ping => ping_response(head_only),
        Route::Stats => stats_response(headers),
        Route::GetObject { bucket, key } => {
            handle_get(bucket, key, headers, head_only, ctx.datastore.as_ref()).await
        }
        Route::PutObject { bucket, key } | Route::PostObject { bucket, key } => {
            handle_put(bucket, key, headers, body, &ctx).await
        }
        Route::DeleteObject { bucket, key } => handle_delete(bucket, key, &ctx).await,
        Route::ListBuckets => list_buckets_response(headers, &ctx.datastore),
        Route::ListKeys { bucket } => list_keys_response(bucket, headers, &ctx.datastore),
        Route::GetProps { bucket } => get_props_response(bucket, headers),
        Route::SetProps { bucket } => set_props_response(bucket, headers, &body),
        Route::MapRed => mapred_response(headers, &body, &ctx),
        Route::Transaction { bucket } => {
            transaction_response(bucket, headers, &body, ctx.datastore.as_ref())
        }
        Route::RampWrite => ramp_write_response(headers, &body, ctx.datastore.as_ref()),
        Route::RampRead => ramp_read_response(headers, &body, ctx.datastore.as_ref()),
        #[cfg(feature = "search")]
        Route::DeclareTextIndex { bucket, field } => {
            super::search::declare_text_index(ctx.search.as_deref(), bucket, field, headers)
        }
        #[cfg(feature = "search")]
        Route::CreateVectorIndex { bucket } => {
            super::search::create_vector_index(ctx.search.as_deref(), bucket, headers, &body)
        }
        #[cfg(feature = "search")]
        Route::ListIndexes { bucket } => {
            super::search::list_indexes(ctx.search.as_deref(), bucket, headers)
        }
        #[cfg(feature = "search")]
        Route::SearchText {
            bucket,
            field,
            query,
        } => super::search::search_text(ctx.search.as_deref(), bucket, field, query, headers),
        #[cfg(feature = "search")]
        Route::SearchRegex {
            bucket,
            field,
            query,
        } => super::search::search_regex(ctx.search.as_deref(), bucket, field, query, headers),
        #[cfg(feature = "search")]
        Route::SearchVector { bucket } => {
            super::search::search_vector(ctx.search.as_deref(), bucket, headers, &body)
        }
    }
}

// ------------------------------------------------------------------
// Per-route handlers.
// ------------------------------------------------------------------

fn ping_response(head_only: bool) -> Response<ResponseBody> {
    let body = if head_only {
        Bytes::new()
    } else {
        Bytes::from_static(b"OK")
    };
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, "text/plain; charset=utf-8")
        .header("Server", SERVER_NAME)
        .body(buffered_body(body))
        .expect("invariant: ping response builder is well-formed")
}

fn stats_response(headers: &HeaderMap) -> Response<ResponseBody> {
    let accept = header_str(headers, ACCEPT);
    let Some(ct) = select_codec(accept, Some("application/json")) else {
        return not_acceptable_response();
    };
    let payload = serde_json::json!({
        "name": SERVER_NAME,
        "version": SERVER_VERSION,
        "supported_content_types": SUPPORTED_CONTENT_TYPES,
    });
    let body_bytes = match ct {
        "application/json" => serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec()),
        // Non-JSON encodings of stats are not interesting yet; the
        // structure is small and JSON-shaped. Reply with JSON in
        // the body and pin the content-type to the negotiated value
        // so the client cannot complain about a missing codec.
        _ => serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec()),
    };
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::from(body_bytes)))
        .expect("invariant: stats response builder is well-formed")
}

async fn handle_get(
    bucket: &str,
    key: &str,
    headers: &HeaderMap,
    head_only: bool,
    datastore: &dyn Datastore,
) -> Response<ResponseBody> {
    let accept = header_str(headers, ACCEPT);
    let req_ct = header_str_opt(headers, CONTENT_TYPE);
    let Some(ct) = select_codec(accept, req_ct) else {
        return not_acceptable_response();
    };

    // Accounting trampoline: keep the substrate's per-request counter
    // ticking exactly as the PBC path does before the real fetch.
    let routing = Msg::new(0, MsgType::Unknown, true);
    if let Err(e) = datastore.dispatch(routing).await {
        return text_response(
            StatusCode::INTERNAL_SERVER_ERROR,
            &format!("datastore error: {e}"),
        );
    }

    // Object-capable backends (today: `NoxuDatastore`) fetch the
    // stored envelope and re-encode it under the negotiated codec.
    // Other backends (the in-memory store used in tests) have no
    // object layer, so they fall back to Riak's miss response.
    #[cfg(feature = "noxu")]
    {
        if let Some(store) = object_store(datastore) {
            return get_object_from_store(store, bucket, key, ct, head_only);
        }
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = (bucket, key, ct, head_only);
    }
    text_response(StatusCode::NOT_FOUND, "not found")
}

async fn handle_put(
    bucket: &str,
    key: &str,
    headers: &HeaderMap,
    body: Bytes,
    ctx: &RouteCtx,
) -> Response<ResponseBody> {
    let datastore = ctx.datastore.as_ref();
    let accept = header_str(headers, ACCEPT);
    let req_ct = header_str_opt(headers, CONTENT_TYPE);
    if select_codec(accept, req_ct).is_none() {
        return not_acceptable_response();
    }
    // A request body is required for a put; a missing body is a
    // client error so the reply is 400 rather than 204.
    if body.is_empty() {
        return text_response(StatusCode::BAD_REQUEST, "PUT body must not be empty");
    }
    if let Some(ct) = req_ct {
        if super::content_type::canonicalize(ct).is_none() {
            return text_response(
                StatusCode::UNSUPPORTED_MEDIA_TYPE,
                "request Content-Type is not supported",
            );
        }
    }

    // Accounting trampoline, matching the PBC path and the GET path.
    let routing = Msg::new(0, MsgType::Unknown, true);
    if let Err(e) = datastore.dispatch(routing).await {
        return text_response(
            StatusCode::INTERNAL_SERVER_ERROR,
            &format!("datastore error: {e}"),
        );
    }

    // Object-capable backends decode the body under the request codec
    // and persist the canonical envelope. Other backends acknowledge
    // the write without storing (the in-memory test trampoline).
    #[cfg(feature = "noxu")]
    {
        if let Some(store) = object_store(datastore) {
            return put_object_into_store(store, bucket, key, headers, &body, req_ct, ctx).await;
        }
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = (bucket, key, &body, ctx);
    }
    Response::builder()
        .status(StatusCode::NO_CONTENT)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::new()))
        .expect("invariant: put response builder is well-formed")
}

async fn handle_delete(bucket: &str, key: &str, ctx: &RouteCtx) -> Response<ResponseBody> {
    let datastore = ctx.datastore.as_ref();
    // Accounting trampoline, matching the PBC and GET/PUT paths.
    let routing = Msg::new(0, MsgType::Unknown, true);
    if let Err(e) = datastore.dispatch(routing).await {
        return text_response(
            StatusCode::INTERNAL_SERVER_ERROR,
            &format!("datastore error: {e}"),
        );
    }

    // Cross-node replica fan-out (fire-and-forget), mirroring the PBC
    // del path: dispatch a PeerOp::Del to each replica on the key's
    // preference list before deleting locally. Without hooks the
    // delete is local-only.
    if let Some(hooks) = ctx.hooks.as_ref() {
        if let Ok(decision) = hooks
            .router
            .try_route(b"", bucket.as_bytes(), key.as_bytes())
        {
            for replica in decision.replica_list() {
                hooks
                    .outbound
                    .dispatch(
                        replica.peer_idx,
                        crate::router::PeerOp::Del {
                            bucket_type: decision.bucket_type.clone(),
                            bucket: bucket.as_bytes().to_vec(),
                            key: key.as_bytes().to_vec(),
                        },
                    )
                    .await;
            }
        }
    }

    // Object-capable backends remove the object and its 2i entries.
    // As with Riak, a delete of an absent key is not an error: the
    // PBC del path replies `RpbDelResp` regardless, so the HTTP path
    // replies `204 No Content` whether or not the key existed.
    #[cfg(feature = "noxu")]
    {
        if let Some(store) = object_store(datastore) {
            return match store.delete_object(bucket.as_bytes(), key.as_bytes()) {
                Ok(_) => no_content_response(),
                Err(e) => storage_error_response(&e),
            };
        }
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = (bucket, key);
    }
    no_content_response()
}

/// Build a body-less `204 No Content` response carrying the server
/// name header. Shared by the put / delete success paths.
fn no_content_response() -> Response<ResponseBody> {
    Response::builder()
        .status(StatusCode::NO_CONTENT)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::new()))
        .expect("invariant: no-content response builder is well-formed")
}

fn get_props_response(bucket: &str, headers: &HeaderMap) -> Response<ResponseBody> {
    let accept = header_str(headers, ACCEPT);
    let Some(ct) = select_codec(accept, Some("application/json")) else {
        return not_acceptable_response();
    };
    // v0.0.1 returns Riak's documented defaults. A follow-up slice
    // pulls these from the bucket-props store once it lands.
    let props = serde_json::json!({
        "props": {
            "name": bucket,
            "n_val": 3,
            "allow_mult": false,
            "last_write_wins": false,
            "r": "quorum",
            "w": "quorum",
            "pr": 0,
            "pw": 0,
            "dw": "quorum",
            "rw": "quorum",
            "basic_quorum": false,
            "notfound_ok": true,
        }
    });
    let body = serde_json::to_vec(&props).unwrap_or_else(|_| b"{}".to_vec());
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::from(body)))
        .expect("invariant: get-props response builder is well-formed")
}

fn set_props_response(_bucket: &str, headers: &HeaderMap, body: &Bytes) -> Response<ResponseBody> {
    let req_ct = header_str_opt(headers, CONTENT_TYPE);
    if let Some(ct) = req_ct {
        if super::content_type::canonicalize(ct).is_none() {
            return text_response(
                StatusCode::UNSUPPORTED_MEDIA_TYPE,
                "request Content-Type is not supported",
            );
        }
    }
    if body.is_empty() {
        return text_response(StatusCode::BAD_REQUEST, "set-props body must not be empty");
    }
    // v0.0.1 acknowledges the request without persisting -- the
    // bucket-props store lands with the full RiakObject schema in
    // the next slice. The HTTP shape (204 No Content) is right for
    // operators today; the body becomes durable once the store is
    // wired in.
    Response::builder()
        .status(StatusCode::NO_CONTENT)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::new()))
        .expect("invariant: set-props response builder is well-formed")
}

// ------------------------------------------------------------------
// Multi-key transaction route handler.
// ------------------------------------------------------------------

/// Run a multi-key atomic transaction submitted via
/// `POST /transactions` or `POST /buckets/{bucket}/transactions`.
///
/// The body is a JSON [`HttpTxnRequest`]. The handler lowers it into
/// a [`crate::txn::TxnBatch`], hands it to the backend's
/// [`TransactionalStore`] (probed for via
/// [`dynomite::embed::Datastore::as_any`]), and renders the
/// [`TxnOutcome`] as a JSON [`HttpTxnResponse`]. A committed batch
/// replies `200 OK`; a rolled-back batch replies `409 Conflict`.
/// When the configured datastore is not transactional the handler
/// replies `501 Not Implemented`.
///
/// For the bucket-scoped route every operation must target the URL
/// bucket; a mismatch is a `400 Bad Request`.
fn transaction_response(
    bucket: Option<&str>,
    headers: &HeaderMap,
    body: &Bytes,
    datastore: &dyn Datastore,
) -> Response<ResponseBody> {
    let req_ct = header_str_opt(headers, CONTENT_TYPE);
    let ct = req_ct.unwrap_or("application/json");
    if super::content_type::canonicalize(ct) != Some("application/json") {
        return text_response(
            StatusCode::UNSUPPORTED_MEDIA_TYPE,
            "transactions require Content-Type: application/json",
        );
    }
    if body.is_empty() {
        return text_response(
            StatusCode::BAD_REQUEST,
            "transaction body must not be empty",
        );
    }
    let request: HttpTxnRequest = match serde_json::from_slice(body) {
        Ok(r) => r,
        Err(e) => {
            return text_response(StatusCode::BAD_REQUEST, &format!("transaction decode: {e}"));
        }
    };
    let batch = request.into_batch();
    if let Some(b) = bucket {
        if batch.ops.iter().any(|op| op.bucket() != b.as_bytes()) {
            return text_response(
                StatusCode::BAD_REQUEST,
                "every operation must target the bucket named in the URL",
            );
        }
    }
    let Some(store) = txn_store(datastore) else {
        return text_response(
            StatusCode::NOT_IMPLEMENTED,
            "the configured datastore does not support transactions",
        );
    };
    match store.execute_batch(&batch) {
        Ok(outcome) => txn_outcome_response(&outcome),
        Err(TxnStoreError::EmptyBatch) => {
            text_response(StatusCode::BAD_REQUEST, "empty transaction batch")
        }
        Err(e @ TxnStoreError::Conflict(_)) => txn_error_response(StatusCode::CONFLICT, &e),
        Err(e @ TxnStoreError::Backend(_)) => {
            txn_error_response(StatusCode::INTERNAL_SERVER_ERROR, &e)
        }
    }
}

/// Probe `datastore` for a multi-key [`TransactionalStore`].
///
/// Returns `Some` only when the crate is built with the `noxu`
/// feature and the concrete backend is a
/// [`crate::datastore::NoxuDatastore`]. The probe goes through
/// [`dynomite::embed::Datastore::as_any`] so the HTTP layer never
/// names the transactional backend on its own trait surface.
fn txn_store(datastore: &dyn Datastore) -> Option<&dyn TransactionalStore> {
    #[cfg(feature = "noxu")]
    {
        if let Some(any) = datastore.as_any() {
            if let Some(noxu) = any.downcast_ref::<crate::datastore::NoxuDatastore>() {
                return Some(noxu as &dyn TransactionalStore);
            }
        }
        None
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = datastore;
        None
    }
}

// ------------------------------------------------------------------
// RAMP-Fast transaction route handlers.
// ------------------------------------------------------------------

/// Handle `POST /ramp/transactions`: a RAMP-Fast multi-key write.
///
/// The body is a JSON [`crate::ramp_store::HttpRampWriteRequest`].
/// Every key is written under one RAMP timestamp with the sibling set
/// as metadata (non-blocking two-phase visibility), so a concurrent
/// RAMP read observes all of the batch's writes or none. A committed
/// write replies `200 OK` with the transaction timestamp. When the
/// datastore is not RAMP-capable the handler replies `501`.
fn ramp_write_response(
    headers: &HeaderMap,
    body: &Bytes,
    datastore: &dyn Datastore,
) -> Response<ResponseBody> {
    if let Some(resp) = require_json_body(headers, body, "ramp writes") {
        return resp;
    }
    #[cfg(feature = "noxu")]
    {
        use crate::ramp_store::{ramp_write, HttpRampWriteRequest, HttpRampWriteResponse};
        let request: HttpRampWriteRequest = match serde_json::from_slice(body) {
            Ok(r) => r,
            Err(e) => {
                return text_response(StatusCode::BAD_REQUEST, &format!("ramp write decode: {e}"));
            }
        };
        let writes = request.into_writes();
        let Some(store) = object_store(datastore) else {
            return text_response(
                StatusCode::NOT_IMPLEMENTED,
                "the configured datastore does not support RAMP transactions",
            );
        };
        // Coordinator id 0 for the single-node HTTP path; the shared
        // process-wide counter keeps timestamps unique + monotonic.
        match ramp_write(store, 0, &writes) {
            Ok(ts) => {
                let payload = HttpRampWriteResponse {
                    result: "committed".to_string(),
                    ts,
                    keys: writes.len(),
                };
                let out = serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec());
                json_response(StatusCode::OK, out)
            }
            Err(crate::ramp_store::RampError::EmptyWrite) => {
                text_response(StatusCode::BAD_REQUEST, "empty RAMP write set")
            }
            Err(e) => text_response(StatusCode::INTERNAL_SERVER_ERROR, &e.to_string()),
        }
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = datastore;
        text_response(
            StatusCode::NOT_IMPLEMENTED,
            "the configured datastore does not support RAMP transactions",
        )
    }
}

/// Handle `POST /ramp/read`: a RAMP-Fast multi-key read.
///
/// The body is a JSON [`crate::ramp_store::HttpRampReadRequest`]. The
/// handler runs round 1 plus the conditional second round and replies
/// `200 OK` with the fracture-free `key -> value` snapshot and the
/// number of rounds used (1 or 2).
fn ramp_read_response(
    headers: &HeaderMap,
    body: &Bytes,
    datastore: &dyn Datastore,
) -> Response<ResponseBody> {
    if let Some(resp) = require_json_body(headers, body, "ramp reads") {
        return resp;
    }
    #[cfg(feature = "noxu")]
    {
        use crate::ramp_store::{ramp_read, HttpRampReadRequest, HttpRampReadResponse};
        let request: HttpRampReadRequest = match serde_json::from_slice(body) {
            Ok(r) => r,
            Err(e) => {
                return text_response(StatusCode::BAD_REQUEST, &format!("ramp read decode: {e}"));
            }
        };
        let keys = request.into_keys();
        let Some(store) = object_store(datastore) else {
            return text_response(
                StatusCode::NOT_IMPLEMENTED,
                "the configured datastore does not support RAMP transactions",
            );
        };
        match ramp_read(store, &keys) {
            Ok((snapshot, rounds)) => {
                let snapshot = snapshot
                    .into_iter()
                    .map(|(k, v)| {
                        (
                            String::from_utf8_lossy(&k).into_owned(),
                            String::from_utf8_lossy(&v).into_owned(),
                        )
                    })
                    .collect();
                let payload = HttpRampReadResponse { snapshot, rounds };
                let out = serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec());
                json_response(StatusCode::OK, out)
            }
            Err(e) => text_response(StatusCode::INTERNAL_SERVER_ERROR, &e.to_string()),
        }
    }
    #[cfg(not(feature = "noxu"))]
    {
        let _ = datastore;
        text_response(
            StatusCode::NOT_IMPLEMENTED,
            "the configured datastore does not support RAMP transactions",
        )
    }
}

/// Reject a non-JSON or empty body for the RAMP endpoints. Returns
/// `Some(response)` when the request should be rejected, `None` when
/// the body is an acceptable non-empty JSON payload.
fn require_json_body(
    headers: &HeaderMap,
    body: &Bytes,
    what: &str,
) -> Option<Response<ResponseBody>> {
    let ct = header_str_opt(headers, CONTENT_TYPE).unwrap_or("application/json");
    if super::content_type::canonicalize(ct) != Some("application/json") {
        return Some(text_response(
            StatusCode::UNSUPPORTED_MEDIA_TYPE,
            &format!("{what} require Content-Type: application/json"),
        ));
    }
    if body.is_empty() {
        return Some(text_response(
            StatusCode::BAD_REQUEST,
            &format!("{what} body must not be empty"),
        ));
    }
    None
}

/// Probe `datastore` for the concrete object-capable backend.
///
/// Returns `Some` only when the crate is built with the `noxu`
/// feature and the backend is a [`crate::datastore::NoxuDatastore`].
/// The probe goes through [`dynomite::embed::Datastore::as_any`] in
/// the same way [`txn_store`] reaches the transactional surface, so
/// the HTTP layer never names the storage backend on its own trait.
#[cfg(feature = "noxu")]
fn object_store(datastore: &dyn Datastore) -> Option<&crate::datastore::NoxuDatastore> {
    datastore
        .as_any()
        .and_then(|any| any.downcast_ref::<crate::datastore::NoxuDatastore>())
}

/// Fetch the object stored under `(bucket, key)` and re-encode it
/// under the negotiated codec `ct`.
///
/// A miss is `404 Not Found`; a hit is `200 OK` with the envelope
/// re-encoded in the negotiated codec. `HEAD` requests get the same
/// status and headers with an empty body. A stored value that does
/// not decode as an [`HttpObject`] is a `500`.
#[cfg(feature = "noxu")]
fn get_object_from_store(
    store: &crate::datastore::NoxuDatastore,
    bucket: &str,
    key: &str,
    ct: &'static str,
    head_only: bool,
) -> Response<ResponseBody> {
    let stored = match store.get_object(bucket.as_bytes(), key.as_bytes()) {
        Ok(Some(v)) => v,
        Ok(None) => return text_response(StatusCode::NOT_FOUND, "not found"),
        Err(e) => return storage_error_response(&e),
    };
    let obj = match HttpObject::from_storage_bytes(&stored) {
        Ok(o) => o,
        Err(e) => {
            return text_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                &format!("stored object is corrupt: {e}"),
            );
        }
    };
    // `ct` came from `select_codec`, so it is always one of the
    // registered baseline content-types; the `else` arm is defensive.
    let Some(codec) = object_codecs().for_content_type(ct) else {
        return not_acceptable_response();
    };
    let encoded = match codec.encode(&obj) {
        Ok(b) => b,
        Err(e) => {
            return text_response(
                StatusCode::INTERNAL_SERVER_ERROR,
                &format!("object encode: {e}"),
            );
        }
    };
    let body = if head_only {
        Bytes::new()
    } else {
        Bytes::from(encoded)
    };
    let mut builder = Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct)
        .header("Server", SERVER_NAME)
        // Riak always emits a bucket-up link so a client can
        // navigate from an object back to its bucket.
        .header("Link", format!("</buckets/{bucket}>; rel=\"up\""));
    for link in &obj.links {
        builder = builder.header(
            "Link",
            format!(
                "</buckets/{}/keys/{}>; riaktag=\"{}\"",
                link.bucket, link.key, link.tag
            ),
        );
    }
    builder
        .body(buffered_body(body))
        .expect("invariant: object response builder is well-formed")
}

/// Decode the request `body` under the request codec, merge any
/// `X-Riak-Index-*` headers into the envelope, persist the canonical
/// form, and fan the index list out into the 2i layer.
///
/// A body that does not decode under its declared codec is a
/// `400 Bad Request`. A successful store is `204 No Content`.
#[cfg(feature = "noxu")]
async fn put_object_into_store(
    store: &crate::datastore::NoxuDatastore,
    bucket: &str,
    key: &str,
    headers: &HeaderMap,
    body: &Bytes,
    req_ct: Option<&str>,
    ctx: &RouteCtx,
) -> Response<ResponseBody> {
    // The request codec defaults to JSON when the client omits a
    // Content-Type; the 415 guard in `handle_put` has already
    // rejected any unsupported declared type.
    let req_ct = req_ct.unwrap_or("application/json");
    let canonical = super::content_type::canonicalize(req_ct).unwrap_or("application/json");
    let Some(codec) = object_codecs().for_content_type(canonical) else {
        return text_response(
            StatusCode::UNSUPPORTED_MEDIA_TYPE,
            "request Content-Type is not supported",
        );
    };
    let decoded = match codec.decode(HttpObject::wire_type_id(), body) {
        Ok(v) => v,
        Err(e) => {
            return text_response(StatusCode::BAD_REQUEST, &format!("object decode: {e}"));
        }
    };
    let Some(obj) = decoded.as_any().downcast_ref::<HttpObject>() else {
        // The codec round-trips `HttpObject`, so a mismatch here is a
        // codec-registry bug rather than a client error.
        return text_response(
            StatusCode::INTERNAL_SERVER_ERROR,
            "decoded value was not an object",
        );
    };
    let mut obj = obj.clone();
    obj.indexes.extend(collect_index_headers(headers));
    obj.links.extend(collect_link_headers(headers));

    // Cross-node replica fan-out (fire-and-forget), mirroring the PBC
    // put path: route the key to its preference list and dispatch a
    // PeerOp::Put to each replica before persisting locally. Applied
    // replica ops are terminal on the receiver (no re-forward), so a
    // write fans out exactly once. Without hooks the write is
    // local-only.
    if let Some(hooks) = ctx.hooks.as_ref() {
        if let Ok(decision) = hooks
            .router
            .try_route(b"", bucket.as_bytes(), key.as_bytes())
        {
            for replica in decision.replica_list() {
                hooks
                    .outbound
                    .dispatch(
                        replica.peer_idx,
                        crate::router::PeerOp::Put {
                            bucket_type: decision.bucket_type.clone(),
                            bucket: bucket.as_bytes().to_vec(),
                            key: key.as_bytes().to_vec(),
                            value: obj.value.clone(),
                        },
                    )
                    .await;
            }
        }
    }

    let indexes = obj.index_pairs();
    let storage = obj.to_storage_bytes();
    match store.put_object(bucket.as_bytes(), key.as_bytes(), &storage, &indexes) {
        Ok(()) => {
            // Feed any declared text / vector indexes for this bucket
            // from the object payload. Indexing is best-effort: the
            // object is already durable, so an indexing miss never
            // turns the write into an error.
            #[cfg(feature = "search")]
            if let Some(state) = ctx.search.as_deref() {
                state.index_object(bucket, key.as_bytes(), &obj.value);
            }
            #[cfg(not(feature = "search"))]
            let _ = ctx;
            no_content_response()
        }
        Err(e) => storage_error_response(&e),
    }
}

/// Collect `X-Riak-Index-<name>: <value>` headers into a list of
/// [`HttpIndex`] entries.
///
/// Riak's HTTP API carries secondary indexes as headers named
/// `X-Riak-Index-<index>_int` or `X-Riak-Index-<index>_bin`. A
/// single header may carry several comma-separated values; each
/// becomes one index entry. Header names are matched
/// case-insensitively (hyper lower-cases them on receipt).
#[cfg(feature = "noxu")]
fn collect_index_headers(headers: &HeaderMap) -> Vec<HttpIndex> {
    const PREFIX: &str = "x-riak-index-";
    let mut out = Vec::new();
    for (name, value) in headers {
        let name = name.as_str();
        let Some(index_name) = name.strip_prefix(PREFIX) else {
            continue;
        };
        if index_name.is_empty() {
            continue;
        }
        let Ok(value) = value.to_str() else {
            continue;
        };
        for part in value.split(',') {
            let part = part.trim();
            if part.is_empty() {
                continue;
            }
            out.push(HttpIndex {
                name: index_name.to_string(),
                value: part.to_string(),
            });
        }
    }
    out
}

/// Collect `Link:` request headers into a list of [`HttpLink`]
/// entries.
///
/// # Grammar
///
/// Riak's HTTP API carries object links in `Link:` headers. The
/// grammar accepted here is:
///
/// ```text
/// Link            = "Link" ":" link-value *( "," link-value )
/// link-value      = "<" RESOURCE ">" ";" link-param
/// RESOURCE        = "/buckets/" bucket "/keys/" key
///                 | "/riak/" bucket "/" key        ; legacy form
/// link-param      = ( "riaktag" | "tag" ) "=" quoted-string
/// ```
///
/// Multiple `Link:` header lines are honoured, and a single header
/// line may carry several comma-separated link-values. Each value
/// becomes one [`HttpLink`].
///
/// # Deliberately skipped
///
/// Riak also emits a bucket-up link of the form
/// `</buckets/BUCKET>; rel="up"` whose RESOURCE names a bucket and
/// not an object. Those `rel`-style links carry no key and no
/// `riaktag`, so they are not object links a MapReduce link phase
/// can walk; they are skipped on parse (and re-synthesised on read,
/// see [`get_object_from_store`]). A `link-value` that lacks a
/// `riaktag`/`tag` parameter, or whose RESOURCE is not a
/// `/buckets/.../keys/...` (or legacy `/riak/.../...`) object path,
/// is skipped rather than rejected, matching Riak's lenient parse.
#[cfg(feature = "noxu")]
fn collect_link_headers(headers: &HeaderMap) -> Vec<HttpLink> {
    let mut out = Vec::new();
    for value in headers.get_all("link") {
        let Ok(value) = value.to_str() else {
            continue;
        };
        for part in split_link_values(value) {
            if let Some(link) = parse_link_value(&part) {
                out.push(link);
            }
        }
    }
    out
}

/// Split one `Link:` header value into its comma-separated
/// link-values, respecting the angle brackets so a comma inside a
/// `<RESOURCE>` is not mistaken for a separator.
#[cfg(feature = "noxu")]
fn split_link_values(header: &str) -> Vec<String> {
    let mut parts = Vec::new();
    let mut depth: usize = 0;
    let mut start = 0;
    let bytes = header.as_bytes();
    for (i, &b) in bytes.iter().enumerate() {
        match b {
            b'<' => depth += 1,
            b'>' => depth = depth.saturating_sub(1),
            b',' if depth == 0 => {
                parts.push(header[start..i].to_string());
                start = i + 1;
            }
            _ => {}
        }
    }
    parts.push(header[start..].to_string());
    parts
}

/// Parse a single `<RESOURCE>; riaktag="TAG"` link-value into an
/// [`HttpLink`]. Returns `None` for `rel`-style bucket links or any
/// value that does not name an object with a tag. See
/// [`collect_link_headers`] for the accepted grammar.
#[cfg(feature = "noxu")]
fn parse_link_value(value: &str) -> Option<HttpLink> {
    let value = value.trim();
    let open = value.find('<')?;
    let close = value[open + 1..].find('>')? + open + 1;
    let resource = value[open + 1..close].trim();
    let (target_bucket, target_key) = parse_link_resource(resource)?;

    // Scan the `;`-delimited parameters for a `riaktag` / `tag`.
    let mut tag = None;
    for param in value[close + 1..].split(';') {
        let param = param.trim();
        let Some((name, raw)) = param.split_once('=') else {
            continue;
        };
        let name = name.trim();
        if name.eq_ignore_ascii_case("riaktag") || name.eq_ignore_ascii_case("tag") {
            tag = Some(unquote(raw.trim()).to_string());
        }
    }
    let tag = tag?;
    Some(HttpLink {
        bucket: target_bucket,
        key: target_key,
        tag,
    })
}

/// Parse a link RESOURCE path into `(bucket, key)`. Accepts the
/// modern `/buckets/<bucket>/keys/<key>` form and the legacy
/// `/riak/<bucket>/<key>` form. Returns `None` for any other shape
/// (including `rel="up"` bucket-only paths).
#[cfg(feature = "noxu")]
fn parse_link_resource(resource: &str) -> Option<(String, String)> {
    if let Some(rest) = resource.strip_prefix("/buckets/") {
        let (bucket, rest) = rest.split_once('/')?;
        let key = rest.strip_prefix("keys/")?;
        if bucket.is_empty() || key.is_empty() {
            return None;
        }
        return Some((decode_path_segment(bucket), decode_path_segment(key)));
    }
    if let Some(rest) = resource.strip_prefix("/riak/") {
        let (bucket, key) = rest.split_once('/')?;
        if bucket.is_empty() || key.is_empty() {
            return None;
        }
        return Some((decode_path_segment(bucket), decode_path_segment(key)));
    }
    None
}

/// Strip one layer of surrounding double quotes from a parameter
/// value, leaving an unquoted value untouched.
#[cfg(feature = "noxu")]
fn unquote(s: &str) -> &str {
    s.strip_prefix('"')
        .and_then(|s| s.strip_suffix('"'))
        .unwrap_or(s)
}

/// Percent-decode a single path segment (bucket or key) for the
/// common `%XX` escapes Riak clients emit. Bytes that are not valid
/// `%XX` escapes pass through verbatim; the decoded bytes are
/// interpreted as UTF-8 (lossily) so the stored link stays ASCII-
/// clean for well-formed input.
#[cfg(feature = "noxu")]
fn decode_path_segment(seg: &str) -> String {
    if !seg.contains('%') {
        return seg.to_string();
    }
    let bytes = seg.as_bytes();
    let mut out = Vec::with_capacity(bytes.len());
    let mut i = 0;
    while i < bytes.len() {
        if bytes[i] == b'%' && i + 2 < bytes.len() {
            let hi = hex_digit(bytes[i + 1]);
            let lo = hex_digit(bytes[i + 2]);
            if let (Some(hi), Some(lo)) = (hi, lo) {
                out.push(hi * 16 + lo);
                i += 3;
                continue;
            }
        }
        out.push(bytes[i]);
        i += 1;
    }
    String::from_utf8_lossy(&out).into_owned()
}

/// Decode a single ASCII hex digit to its 0..16 value, as a `u8` so
/// `hi * 16 + lo` stays a `u8` without a truncating cast.
#[cfg(feature = "noxu")]
fn hex_digit(b: u8) -> Option<u8> {
    match b {
        b'0'..=b'9' => Some(b - b'0'),
        b'a'..=b'f' => Some(b - b'a' + 10),
        b'A'..=b'F' => Some(b - b'A' + 10),
        _ => None,
    }
}

/// Map a [`crate::datastore::NoxuDatastoreError`] onto an HTTP status.
///
/// A malformed bucket name or an unparsable `_int` index value is the
/// client's fault (`400`); everything else is a backend failure
/// (`500`).
#[cfg(feature = "noxu")]
fn storage_error_response(err: &crate::datastore::NoxuDatastoreError) -> Response<ResponseBody> {
    use crate::datastore::NoxuDatastoreError;
    let status = match err {
        NoxuDatastoreError::InvalidName { .. } | NoxuDatastoreError::BadIntValue { .. } => {
            StatusCode::BAD_REQUEST
        }
        _ => StatusCode::INTERNAL_SERVER_ERROR,
    };
    text_response(status, &format!("storage error: {err}"))
}

/// Render a [`TxnOutcome`] as a JSON [`HttpTxnResponse`]. Committed
/// outcomes are `200 OK`; aborted (rolled-back) outcomes are
/// `409 Conflict`.
fn txn_outcome_response(outcome: &TxnOutcome) -> Response<ResponseBody> {
    let status = match outcome {
        TxnOutcome::Committed { .. } => StatusCode::OK,
        TxnOutcome::Aborted { .. } => StatusCode::CONFLICT,
    };
    let payload = HttpTxnResponse::from_outcome(outcome);
    let body = serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec());
    json_response(status, body)
}

/// Render a [`TxnStoreError`] as a JSON [`HttpTxnResponse`] with the
/// `aborted` shape, carrying the engine's own message as the abort
/// reason.
fn txn_error_response(status: StatusCode, err: &TxnStoreError) -> Response<ResponseBody> {
    let payload = HttpTxnResponse::from_outcome(&TxnOutcome::Aborted {
        reason: err.to_string(),
    });
    let body = serde_json::to_vec(&payload).unwrap_or_else(|_| b"{}".to_vec());
    json_response(status, body)
}

/// Build a buffered `application/json` response with `status`.
fn json_response(status: StatusCode, body: Vec<u8>) -> Response<ResponseBody> {
    Response::builder()
        .status(status)
        .header(CONTENT_TYPE, "application/json")
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::from(body)))
        .expect("invariant: json response builder is well-formed")
}

// ------------------------------------------------------------------
// Generic response helpers.
// ------------------------------------------------------------------

pub(crate) fn text_response(status: StatusCode, msg: &str) -> Response<ResponseBody> {
    Response::builder()
        .status(status)
        .header(CONTENT_TYPE, "text/plain; charset=utf-8")
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::copy_from_slice(msg.as_bytes())))
        .expect("invariant: text response builder is well-formed")
}

/// Build a buffered `200 OK` response carrying an already-encoded
/// body under content-type `ct`. Shared by the search routes, which
/// negotiate the codec themselves and hand the encoded bytes here.
#[cfg(feature = "search")]
pub(crate) fn encoded_response(ct: &'static str, body: Vec<u8>) -> Response<ResponseBody> {
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct)
        .header("Server", SERVER_NAME)
        .body(buffered_body(Bytes::from(body)))
        .expect("invariant: encoded response builder is well-formed")
}

pub(crate) fn not_acceptable_response() -> Response<ResponseBody> {
    text_response(
        StatusCode::NOT_ACCEPTABLE,
        "no supported codec in Accept header",
    )
}

/// Header value extractor that returns "" for missing or non-ASCII
/// headers. The negotiation logic copes with empty input cleanly.
pub(crate) fn header_str(headers: &HeaderMap, name: hyper::header::HeaderName) -> &str {
    headers
        .get(name)
        .and_then(|v| v.to_str().ok())
        .unwrap_or("")
}

/// Header value extractor that distinguishes "absent" from
/// "present but unreadable". Used where the caller wants to fall
/// back to a default only when the header was truly missing.
pub(crate) fn header_str_opt(headers: &HeaderMap, name: hyper::header::HeaderName) -> Option<&str> {
    headers.get(name).and_then(|v| v.to_str().ok())
}

// ------------------------------------------------------------------
// MapReduce route handler. Added by the v0.0.3 MapReduce slice.
// ------------------------------------------------------------------

use crate::mapreduce::{
    builtins::default_registry, run_job_streaming_full, MapReduceJob, MrError, PhaseBatch,
};
use tokio::sync::mpsc;

/// Run a MapReduce job submitted via `POST /mapred`.
///
/// The body must carry the JSON job description. The response is
/// chunked-encoded `multipart/mixed`: one body part per kept phase
/// (Riak's documented HTTP MapReduce shape). Each part carries
/// `Content-Type: application/json` and a body of the form
/// `[{"phase": N, "data": [...]}]`. A phase failure mid-stream is
/// surfaced as a final part with `Content-Type: text/plain` and
/// the error message; the closing delimiter is then written and
/// the body ends. Boundary strings are unique per request.
///
/// The function is synchronous: the executor runs on its own
/// tokio task and the HTTP body stream pulls per-phase batches
/// off the executor's mpsc receiver. Returning the response is
/// a constant-time operation.
fn mapred_response(headers: &HeaderMap, body: &Bytes, ctx: &RouteCtx) -> Response<ResponseBody> {
    let req_ct = header_str_opt(headers, CONTENT_TYPE);
    let ct = req_ct.unwrap_or("application/json");
    if super::content_type::canonicalize(ct) != Some("application/json") {
        return text_response(
            StatusCode::UNSUPPORTED_MEDIA_TYPE,
            "MapReduce requires Content-Type: application/json",
        );
    }
    let job: MapReduceJob = match serde_json::from_slice(body) {
        Ok(j) => j,
        Err(e) => {
            return text_response(
                StatusCode::BAD_REQUEST,
                &format!("MapReduce job decode: {e}"),
            );
        }
    };
    let registry = std::sync::Arc::new(default_registry());
    // The datastore enumerates an `Inputs::Bucket` job's keys; pass
    // it through so a whole-bucket MapReduce input can run. Inline
    // input shapes ignore it.
    let datastore = ctx.datastore.clone();
    // When a Wasm phase store is wired into the context, dispatch
    // through the Wasm-aware executor so a `Phase::WasmModule` job
    // reaches the configured modules; otherwise the plain executor
    // surfaces the typed `MrError::WasmNotImplemented` error.
    #[cfg(feature = "wasm")]
    let rx = match ctx.wasm.clone() {
        Some(store) => {
            let hook: std::sync::Arc<dyn crate::mapreduce::WasmHook> = store;
            run_job_streaming_full(job, registry, Some(hook), Some(datastore))
        }
        None => run_job_streaming_full(job, registry, None, Some(datastore)),
    };
    #[cfg(not(feature = "wasm"))]
    let rx = run_job_streaming_full(job, registry, None, Some(datastore));
    let boundary = mapred_boundary();
    let body_stream = mapred_multipart_body(rx, boundary.clone());
    let body_stream: Pin<Box<dyn Stream<Item = Result<HttpFrame<Bytes>, Infallible>> + Send>> =
        Box::pin(body_stream);
    let body = BodyExt::boxed_unsync(StreamBody::new(body_stream));
    let ct_value = format!("multipart/mixed; boundary={boundary}");
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct_value)
        .header(TRANSFER_ENCODING, "chunked")
        .header("Server", SERVER_NAME)
        .body(body)
        .expect("invariant: mapred response builder is well-formed")
}

/// Generate a per-request multipart boundary string.
///
/// The string is ASCII-safe (alphanumerics + `-`) and combines a
/// monotonically-increasing process counter with the current
/// system time in nanoseconds. Both are encoded as fixed-width
/// hex so the output length is constant. Collision probability is
/// far below the threshold required for a multipart boundary; the
/// boundary only needs to not appear inside the JSON / text body
/// of the parts.
fn mapred_boundary() -> String {
    use std::sync::atomic::{AtomicU64, Ordering};
    use std::time::{SystemTime, UNIX_EPOCH};
    static COUNTER: AtomicU64 = AtomicU64::new(0);
    let n = COUNTER.fetch_add(1, Ordering::Relaxed);
    let nanos = SystemTime::now().duration_since(UNIX_EPOCH).map_or(0, |d| {
        u64::try_from(d.as_nanos() & u128::from(u64::MAX)).unwrap_or(0)
    });
    format!("dyniak-mr-{nanos:016x}-{n:016x}")
}

/// State machine driving the multipart/mixed streaming body.
enum MapRedMultipartState {
    /// Initial: nothing emitted yet; consume the next batch from
    /// the executor.
    Streaming {
        rx: mpsc::Receiver<Result<PhaseBatch, MrError>>,
        boundary: String,
    },
    /// All batches drained or a fatal error was emitted; emit the
    /// closing `--{boundary}--` delimiter.
    Close { boundary: String },
    /// Body terminated.
    Done,
}

/// Chunk size used by [`mapred_multipart_body`] for the boundary;
/// each phase batch and the closing delimiter is one body chunk so
/// hyper transmits one HTTP chunk per part.
fn mapred_multipart_body(
    rx: mpsc::Receiver<Result<PhaseBatch, MrError>>,
    boundary: String,
) -> impl Stream<Item = Result<HttpFrame<Bytes>, Infallible>> + Send {
    futures_util::stream::unfold(
        MapRedMultipartState::Streaming { rx, boundary },
        |state| async move {
            match state {
                MapRedMultipartState::Done => None,
                MapRedMultipartState::Close { boundary } => {
                    let chunk = format!("--{boundary}--\r\n");
                    Some((
                        Ok(HttpFrame::data(Bytes::from(chunk))),
                        MapRedMultipartState::Done,
                    ))
                }
                MapRedMultipartState::Streaming { mut rx, boundary } => match rx.recv().await {
                    None => {
                        let chunk = format!("--{boundary}--\r\n");
                        Some((
                            Ok(HttpFrame::data(Bytes::from(chunk))),
                            MapRedMultipartState::Done,
                        ))
                    }
                    Some(Ok(batch)) => {
                        let body = mapred_phase_part_body(&batch);
                        let chunk = format!(
                            "--{boundary}\r\nContent-Type: application/json\r\n\r\n{body}\r\n"
                        );
                        Some((
                            Ok(HttpFrame::data(Bytes::from(chunk))),
                            MapRedMultipartState::Streaming { rx, boundary },
                        ))
                    }
                    Some(Err(e)) => {
                        let msg = format!("MapReduce execution: {e}");
                        let chunk =
                            format!("--{boundary}\r\nContent-Type: text/plain\r\n\r\n{msg}\r\n");
                        Some((
                            Ok(HttpFrame::data(Bytes::from(chunk))),
                            MapRedMultipartState::Close { boundary },
                        ))
                    }
                },
            }
        },
    )
}

/// Encode one phase batch as the JSON body of a multipart part.
///
/// The shape is the Riak-documented `[{"phase": N, "data": [...]}]`:
/// a one-element JSON array containing an object with the phase
/// index and the captured values. JSON encoding of an in-memory
/// `Vec<Value>` cannot fail; the fallback string keeps the helper
/// total without panicking on the impossible branch.
fn mapred_phase_part_body(batch: &PhaseBatch) -> String {
    let payload = serde_json::json!([{
        "phase": batch.phase,
        "data": batch.data,
    }]);
    serde_json::to_string(&payload).unwrap_or_else(|_| String::from("[]"))
}

// ------------------------------------------------------------------
// Streaming list handlers (list-buckets, list-keys).
// ------------------------------------------------------------------
//
// The HTTP shape mirrors Riak's documented behaviour. For
// `application/json`, the body is a chunked JSON array:
//
// ```text
//   ["key0","key1", ...]
// ```
//
// where `[`, comma, `]`, and the JSON-encoded entries are written
// across multiple HTTP body chunks. The client buffers the body
// and parses it as a JSON document; chunked transfer-encoding is
// negotiated automatically by hyper because the body uses
// [`StreamBody`].
//
// For self-describing codecs (CBOR, BSON, ...), each entry is
// emitted as a length-prefixed payload (4-byte big-endian length
// followed by the codec-encoded entry). A length of zero marks
// end-of-stream so a client can read until the terminator without
// relying on chunked transfer-encoding metadata.
//
// A client that closes the connection mid-stream simply observes
// fewer entries; the server-side stream task drops on connection
// close because hyper aborts the body future. Datastore errors
// mid-stream surface as a synthetic terminal entry (an empty
// JSON object `{}`, or a zero-length-prefixed entry) followed by
// end-of-stream; the journal documents the limitation.

fn list_buckets_response(
    headers: &HeaderMap,
    datastore: &Arc<dyn Datastore>,
) -> Response<ResponseBody> {
    let accept = header_str(headers, ACCEPT);
    let Some(ct) = select_codec(accept, Some("application/json")) else {
        return not_acceptable_response();
    };
    let stream = datastore.list_buckets_stream();
    streaming_list_response(ct, stream)
}

fn list_keys_response(
    bucket: &str,
    headers: &HeaderMap,
    datastore: &Arc<dyn Datastore>,
) -> Response<ResponseBody> {
    let accept = header_str(headers, ACCEPT);
    let Some(ct) = select_codec(accept, Some("application/json")) else {
        return not_acceptable_response();
    };
    let stream = datastore.list_keys_stream(bucket.as_bytes());
    streaming_list_response(ct, stream)
}

/// Build a streaming HTTP response from a datastore byte stream.
///
/// `ct` is the negotiated content-type; for `application/json`
/// the body is a chunked JSON array, otherwise the body is a
/// length-prefixed sequence of opaque entries (one entry per
/// length prefix, terminated by a zero-length prefix).
fn streaming_list_response(ct: &str, stream: DatastoreByteStream) -> Response<ResponseBody> {
    let body_stream: Pin<Box<dyn Stream<Item = Result<HttpFrame<Bytes>, Infallible>> + Send>> =
        if ct == "application/json" {
            Box::pin(json_array_chunks(stream))
        } else {
            Box::pin(length_prefixed_chunks(stream))
        };
    let body = BodyExt::boxed_unsync(StreamBody::new(body_stream));
    Response::builder()
        .status(StatusCode::OK)
        .header(CONTENT_TYPE, ct)
        .header(TRANSFER_ENCODING, "chunked")
        .header("Server", SERVER_NAME)
        .body(body)
        .expect("invariant: streaming response builder is well-formed")
}

use std::pin::Pin;

/// Producer state for the JSON-array streaming list shape.
enum JsonChunkState {
    /// Initial: emit the opening `[` and start consuming entries.
    Open(DatastoreByteStream),
    /// Mid-stream: holds the byte stream and a flag for whether
    /// the leading comma is needed before the next entry.
    Streaming {
        stream: DatastoreByteStream,
        first_emitted: bool,
    },
    /// Final: emit the closing `]`.
    Close,
    /// Done.
    Done,
}

/// Stream an HTTP body as a JSON array, chunked at
/// [`HTTP_LIST_CHUNK_SIZE`] entries per body frame.
fn json_array_chunks(
    stream: DatastoreByteStream,
) -> impl Stream<Item = Result<HttpFrame<Bytes>, Infallible>> + Send {
    futures_util::stream::unfold(JsonChunkState::Open(stream), |state| async move {
        match state {
            JsonChunkState::Done => None,
            JsonChunkState::Open(stream) => Some((
                Ok(HttpFrame::data(Bytes::from_static(b"["))),
                JsonChunkState::Streaming {
                    stream,
                    first_emitted: false,
                },
            )),
            JsonChunkState::Close => Some((
                Ok(HttpFrame::data(Bytes::from_static(b"]"))),
                JsonChunkState::Done,
            )),
            JsonChunkState::Streaming {
                mut stream,
                mut first_emitted,
            } => {
                let mut buf: Vec<u8> = Vec::new();
                let mut packed = 0usize;
                while packed < HTTP_LIST_CHUNK_SIZE {
                    match stream.next().await {
                        None => {
                            if buf.is_empty() {
                                return Some((
                                    Ok(HttpFrame::data(Bytes::from_static(b"]"))),
                                    JsonChunkState::Done,
                                ));
                            }
                            return Some((
                                Ok(HttpFrame::data(Bytes::from(buf))),
                                JsonChunkState::Close,
                            ));
                        }
                        Some(Err(_e)) => {
                            // Datastore error mid-stream: emit
                            // whatever bytes have been buffered
                            // and close the array. The HTTP path
                            // does not have a clean way to surface
                            // a body-level error to a client that
                            // has already received `200 OK`; the
                            // journal documents this trade-off.
                            if !buf.is_empty() {
                                return Some((
                                    Ok(HttpFrame::data(Bytes::from(buf))),
                                    JsonChunkState::Close,
                                ));
                            }
                            return Some((
                                Ok(HttpFrame::data(Bytes::from_static(b"]"))),
                                JsonChunkState::Done,
                            ));
                        }
                        Some(Ok(entry)) => {
                            if first_emitted {
                                buf.push(b',');
                            } else {
                                first_emitted = true;
                            }
                            // JSON-encode the entry as a UTF-8
                            // string. Non-UTF-8 bytes are replaced
                            // with the Unicode replacement
                            // character by the lossy conversion
                            // below, so binary keys do not round-trip
                            // through this listing verbatim.
                            let s = String::from_utf8_lossy(&entry).into_owned();
                            let encoded =
                                serde_json::to_vec(&s).unwrap_or_else(|_| b"\"\"".to_vec());
                            buf.extend_from_slice(&encoded);
                            packed += 1;
                        }
                    }
                }
                Some((
                    Ok(HttpFrame::data(Bytes::from(buf))),
                    JsonChunkState::Streaming {
                        stream,
                        first_emitted,
                    },
                ))
            }
        }
    })
}

/// Stream a length-prefixed sequence of opaque entries, chunked at
/// [`HTTP_LIST_CHUNK_SIZE`] entries per body frame. End-of-stream
/// is marked with a 4-byte big-endian zero terminator.
fn length_prefixed_chunks(
    stream: DatastoreByteStream,
) -> impl Stream<Item = Result<HttpFrame<Bytes>, Infallible>> + Send {
    enum LpState {
        Streaming(DatastoreByteStream),
        Done,
    }
    futures_util::stream::unfold(LpState::Streaming(stream), |state| async move {
        match state {
            LpState::Done => None,
            LpState::Streaming(mut stream) => {
                let mut buf: Vec<u8> = Vec::new();
                let mut packed = 0usize;
                while packed < HTTP_LIST_CHUNK_SIZE {
                    match stream.next().await {
                        None => {
                            buf.extend_from_slice(&0u32.to_be_bytes());
                            return Some((Ok(HttpFrame::data(Bytes::from(buf))), LpState::Done));
                        }
                        Some(Err(_e)) => {
                            buf.extend_from_slice(&0u32.to_be_bytes());
                            return Some((Ok(HttpFrame::data(Bytes::from(buf))), LpState::Done));
                        }
                        Some(Ok(entry)) => {
                            let len = u32::try_from(entry.len()).unwrap_or(u32::MAX);
                            buf.extend_from_slice(&len.to_be_bytes());
                            buf.extend_from_slice(&entry);
                            packed += 1;
                        }
                    }
                }
                Some((
                    Ok(HttpFrame::data(Bytes::from(buf))),
                    LpState::Streaming(stream),
                ))
            }
        }
    })
}

#[cfg(test)]
mod tests {
    use super::*;
    use dynomite::embed::MemoryDatastore;

    fn dummy_headers() -> HeaderMap {
        HeaderMap::new()
    }

    /// Datastore whose accounting trampoline (`dispatch`) always
    /// fails, so the GET / PUT / DELETE handlers take their
    /// 500-on-datastore-error arm.
    struct DispatchFailsStore;

    impl Datastore for DispatchFailsStore {
        fn protocol(&self) -> dynomite::embed::Protocol {
            dynomite::embed::Protocol::Custom
        }
        fn dispatch(
            &self,
            _req: Msg,
        ) -> dynomite::embed::BoxFuture<'_, Result<Msg, dynomite::embed::DatastoreError>> {
            Box::pin(async move {
                Err(dynomite::embed::DatastoreError::Backend(
                    "dispatch boom".into(),
                ))
            })
        }
    }

    fn fail_store() -> Arc<dyn Datastore> {
        Arc::new(DispatchFailsStore)
    }

    /// Headers requesting a content type no codec can satisfy, to
    /// drive the 406 Not Acceptable arms.
    fn unacceptable_headers() -> HeaderMap {
        let mut h = HeaderMap::new();
        h.insert(ACCEPT, "application/x-nonsense".parse().unwrap());
        h
    }

    #[tokio::test]
    async fn get_dispatch_error_is_500() {
        let resp = handle_route(
            Route::GetObject {
                bucket: "u",
                key: "k",
            },
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            fail_store(),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
    }

    #[tokio::test]
    async fn put_dispatch_error_is_500() {
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::PutObject {
                bucket: "u",
                key: "k",
            },
            &Method::PUT,
            &headers,
            Bytes::from_static(b"{\"value\":\"v\"}"),
            fail_store(),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
    }

    #[tokio::test]
    async fn delete_dispatch_error_is_500() {
        let resp = handle_route(
            Route::DeleteObject {
                bucket: "u",
                key: "k",
            },
            &Method::DELETE,
            &dummy_headers(),
            Bytes::new(),
            fail_store(),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
    }

    #[tokio::test]
    async fn get_with_unsupported_accept_is_406() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::GetObject {
                bucket: "u",
                key: "k",
            },
            &Method::GET,
            &unacceptable_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_ACCEPTABLE);
    }

    #[tokio::test]
    async fn get_props_with_unsupported_accept_is_406() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::GetProps { bucket: "u" },
            &Method::GET,
            &unacceptable_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_ACCEPTABLE);
    }

    #[tokio::test]
    async fn list_buckets_with_unsupported_accept_is_406() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::ListBuckets,
            &Method::GET,
            &unacceptable_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_ACCEPTABLE);
    }

    #[tokio::test]
    async fn list_keys_with_unsupported_accept_is_406() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::ListKeys { bucket: "u" },
            &Method::GET,
            &unacceptable_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_ACCEPTABLE);
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn parse_link_resource_modern_legacy_and_rejections() {
        assert_eq!(
            parse_link_resource("/buckets/people/keys/bob"),
            Some(("people".to_string(), "bob".to_string()))
        );
        assert_eq!(
            parse_link_resource("/riak/people/bob"),
            Some(("people".to_string(), "bob".to_string()))
        );
        // Empty bucket or key, or a bucket-only path, is not a link.
        assert!(parse_link_resource("/buckets//keys/bob").is_none());
        assert!(parse_link_resource("/buckets/people/keys/").is_none());
        assert!(parse_link_resource("/buckets/people").is_none());
        assert!(parse_link_resource("/riak//bob").is_none());
        assert!(parse_link_resource("/riak/people/").is_none());
        assert!(parse_link_resource("/elsewhere/x").is_none());
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn unquote_strips_one_layer_only() {
        assert_eq!(unquote("\"x\""), "x");
        assert_eq!(unquote("x"), "x");
        assert_eq!(unquote("\"x"), "\"x"); // only a leading quote: untouched
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn decode_path_segment_handles_escapes_and_passthrough() {
        assert_eq!(decode_path_segment("plain"), "plain");
        assert_eq!(decode_path_segment("a%20b"), "a b");
        // A malformed escape passes through verbatim.
        assert_eq!(decode_path_segment("a%zzb"), "a%zzb");
        assert_eq!(decode_path_segment("trailing%"), "trailing%");
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn hex_digit_decodes_all_cases() {
        assert_eq!(hex_digit(b'0'), Some(0));
        assert_eq!(hex_digit(b'9'), Some(9));
        assert_eq!(hex_digit(b'a'), Some(10));
        assert_eq!(hex_digit(b'f'), Some(15));
        assert_eq!(hex_digit(b'A'), Some(10));
        assert_eq!(hex_digit(b'F'), Some(15));
        assert_eq!(hex_digit(b'g'), None);
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn storage_error_response_maps_status() {
        use crate::datastore::NoxuDatastoreError;
        let bad_name = NoxuDatastoreError::InvalidName { what: "bucket" };
        assert_eq!(
            storage_error_response(&bad_name).status(),
            StatusCode::BAD_REQUEST
        );
        let bad_int = NoxuDatastoreError::BadIntValue { got: 4 };
        assert_eq!(
            storage_error_response(&bad_int).status(),
            StatusCode::BAD_REQUEST
        );
    }

    #[test]
    fn txn_outcome_and_error_responses_carry_expected_status() {
        let committed = txn_outcome_response(&TxnOutcome::Committed { operations: 2 });
        assert_eq!(committed.status(), StatusCode::OK);
        let aborted = txn_outcome_response(&TxnOutcome::Aborted {
            reason: "client".into(),
        });
        assert_eq!(aborted.status(), StatusCode::CONFLICT);
        let err = txn_error_response(
            StatusCode::INTERNAL_SERVER_ERROR,
            &TxnStoreError::Backend("boom".into()),
        );
        assert_eq!(err.status(), StatusCode::INTERNAL_SERVER_ERROR);
    }

    #[tokio::test]
    async fn set_props_bad_content_type_and_empty_body() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut bad_ct = HeaderMap::new();
        bad_ct.insert(CONTENT_TYPE, "application/x-nonsense".parse().unwrap());
        let resp = handle_route(
            Route::SetProps { bucket: "u" },
            &Method::PUT,
            &bad_ct,
            Bytes::from_static(b"{}"),
            ds.clone(),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);

        let mut json = HeaderMap::new();
        json.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let empty = handle_route(
            Route::SetProps { bucket: "u" },
            &Method::PUT,
            &json,
            Bytes::new(),
            ds.clone(),
        )
        .await;
        assert_eq!(empty.status(), StatusCode::BAD_REQUEST);

        let ok = handle_route(
            Route::SetProps { bucket: "u" },
            &Method::PUT,
            &json,
            Bytes::from_static(b"{\"props\":{}}"),
            ds,
        )
        .await;
        assert_eq!(ok.status(), StatusCode::NO_CONTENT);
    }

    #[cfg(feature = "noxu")]
    mod noxu_backed {
        use super::*;
        use crate::datastore::NoxuDatastore;

        fn noxu_ctx() -> (Arc<dyn Datastore>, tempfile::TempDir) {
            let dir = tempfile::TempDir::new().expect("tempdir");
            let ds: Arc<dyn Datastore> =
                Arc::new(NoxuDatastore::open_transactional(dir.path()).expect("open"));
            (ds, dir)
        }

        fn ct_headers(accept: &str, content_type: &str) -> HeaderMap {
            let mut h = HeaderMap::new();
            h.insert(ACCEPT, accept.parse().unwrap());
            h.insert(CONTENT_TYPE, content_type.parse().unwrap());
            h
        }

        #[tokio::test]
        async fn put_json_then_get_transcodes_across_codecs() {
            use crate::proto::http::object::HttpObject;
            let (ds, _dir) = noxu_ctx();
            let obj = HttpObject {
                value: b"hello".to_vec(),
                content_type: Some("text/plain".to_string()),
                indexes: Vec::new(),
                links: Vec::new(),
            };
            let body = Bytes::from(serde_json::to_vec(&obj).expect("json body"));
            let put = handle_route(
                Route::PutObject {
                    bucket: "u",
                    key: "k",
                },
                &Method::PUT,
                &ct_headers("application/json", "application/json"),
                body,
                ds.clone(),
            )
            .await;
            assert_eq!(put.status(), StatusCode::NO_CONTENT);

            for accept in [
                "application/json",
                "application/cbor",
                "application/x-protobuf",
            ] {
                let mut h = HeaderMap::new();
                h.insert(ACCEPT, accept.parse().unwrap());
                let get = handle_route(
                    Route::GetObject {
                        bucket: "u",
                        key: "k",
                    },
                    &Method::GET,
                    &h,
                    Bytes::new(),
                    ds.clone(),
                )
                .await;
                assert_eq!(get.status(), StatusCode::OK, "accept {accept}");
            }
        }

        #[tokio::test]
        async fn get_missing_object_is_404() {
            let (ds, _dir) = noxu_ctx();
            let mut h = HeaderMap::new();
            h.insert(ACCEPT, "application/json".parse().unwrap());
            let get = handle_route(
                Route::GetObject {
                    bucket: "u",
                    key: "ghost",
                },
                &Method::GET,
                &h,
                Bytes::new(),
                ds,
            )
            .await;
            assert_eq!(get.status(), StatusCode::NOT_FOUND);
        }

        #[tokio::test]
        async fn head_object_returns_ok_without_body() {
            use crate::proto::http::object::HttpObject;
            let (ds, _dir) = noxu_ctx();
            let obj = HttpObject {
                value: b"hi".to_vec(),
                content_type: None,
                indexes: Vec::new(),
                links: Vec::new(),
            };
            let body = Bytes::from(serde_json::to_vec(&obj).expect("json body"));
            handle_route(
                Route::PutObject {
                    bucket: "u",
                    key: "k",
                },
                &Method::PUT,
                &ct_headers("application/json", "application/json"),
                body,
                ds.clone(),
            )
            .await;
            let mut h = HeaderMap::new();
            h.insert(ACCEPT, "application/json".parse().unwrap());
            let head = handle_route(
                Route::GetObject {
                    bucket: "u",
                    key: "k",
                },
                &Method::HEAD,
                &h,
                Bytes::new(),
                ds,
            )
            .await;
            assert_eq!(head.status(), StatusCode::OK);
        }

        #[tokio::test]
        async fn put_with_invalid_bucket_is_storage_error() {
            use crate::proto::http::object::HttpObject;
            let (ds, _dir) = noxu_ctx();
            let obj = HttpObject {
                value: b"x".to_vec(),
                content_type: None,
                indexes: Vec::new(),
                links: Vec::new(),
            };
            let body = Bytes::from(serde_json::to_vec(&obj).expect("json body"));
            let put = handle_route(
                Route::PutObject {
                    bucket: "u\u{0}bad",
                    key: "k",
                },
                &Method::PUT,
                &ct_headers("application/json", "application/json"),
                body,
                ds,
            )
            .await;
            assert_eq!(put.status(), StatusCode::BAD_REQUEST);
        }

        #[tokio::test]
        async fn delete_object_against_store_is_204() {
            let (ds, _dir) = noxu_ctx();
            let del = handle_route(
                Route::DeleteObject {
                    bucket: "u",
                    key: "k",
                },
                &Method::DELETE,
                &dummy_headers(),
                Bytes::new(),
                ds,
            )
            .await;
            assert_eq!(del.status(), StatusCode::NO_CONTENT);
        }

        #[tokio::test]
        async fn transaction_bucket_mismatch_is_400() {
            let (ds, _dir) = noxu_ctx();
            let mut h = HeaderMap::new();
            h.insert(CONTENT_TYPE, "application/json".parse().unwrap());
            let body = br#"{"operations":[{"op":"put","bucket":"other","key":"k","value":"v"}]}"#;
            let resp = handle_route(
                Route::Transaction { bucket: Some("u") },
                &Method::POST,
                &h,
                Bytes::from_static(body),
                ds,
            )
            .await;
            assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
        }

        #[tokio::test]
        async fn transaction_decode_error_is_400() {
            let (ds, _dir) = noxu_ctx();
            let mut h = HeaderMap::new();
            h.insert(CONTENT_TYPE, "application/json".parse().unwrap());
            let resp = handle_route(
                Route::Transaction { bucket: None },
                &Method::POST,
                &h,
                Bytes::from_static(b"not json"),
                ds,
            )
            .await;
            assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
        }
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn parse_link_value_modern_form() {
        let link =
            parse_link_value("</buckets/people/keys/bob>; riaktag=\"friend\"").expect("link");
        assert_eq!(link.bucket, "people");
        assert_eq!(link.key, "bob");
        assert_eq!(link.tag, "friend");
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn parse_link_value_legacy_riak_form() {
        let link = parse_link_value("</riak/people/bob>; riaktag=\"friend\"").expect("link");
        assert_eq!(link.bucket, "people");
        assert_eq!(link.key, "bob");
        assert_eq!(link.tag, "friend");
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn parse_link_value_rejects_rel_up_bucket_link() {
        // A bucket-up link names no key and carries no riaktag, so
        // it is not an object link a phase can walk.
        assert!(parse_link_value("</buckets/people>; rel=\"up\"").is_none());
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn collect_link_headers_handles_multiple_headers_and_values() {
        let mut headers = HeaderMap::new();
        headers.append(
            "link",
            "</buckets/people/keys/bob>; riaktag=\"friend\", \
             </buckets/work/keys/acme>; riaktag=\"employer\""
                .parse()
                .unwrap(),
        );
        headers.append(
            "link",
            "</buckets/people/keys/carol>; tag=\"friend\""
                .parse()
                .unwrap(),
        );
        let links = collect_link_headers(&headers);
        assert_eq!(links.len(), 3);
        assert_eq!(links[0].key, "bob");
        assert_eq!(links[1].key, "acme");
        assert_eq!(links[1].tag, "employer");
        assert_eq!(links[2].key, "carol");
        assert_eq!(links[2].tag, "friend");
    }

    #[cfg(feature = "noxu")]
    #[test]
    fn collect_link_headers_skips_bucket_up_links() {
        let mut headers = HeaderMap::new();
        headers.append(
            "link",
            "</buckets/people>; rel=\"up\", </buckets/people/keys/bob>; riaktag=\"friend\""
                .parse()
                .unwrap(),
        );
        let links = collect_link_headers(&headers);
        assert_eq!(links.len(), 1);
        assert_eq!(links[0].key, "bob");
    }

    #[test]
    fn route_parses_ping() {
        let r = Route::parse(&Method::GET, "/ping", None).expect("ping");
        assert_eq!(r, Route::Ping);
        let r = Route::parse(&Method::HEAD, "/ping", None).expect("ping head");
        assert_eq!(r, Route::Ping);
    }

    #[test]
    fn route_parses_object_paths() {
        let r = Route::parse(&Method::GET, "/buckets/u/keys/k", None).expect("get");
        assert_eq!(
            r,
            Route::GetObject {
                bucket: "u",
                key: "k",
            }
        );
        let r = Route::parse(&Method::PUT, "/buckets/u/keys/k", None).expect("put");
        assert_eq!(
            r,
            Route::PutObject {
                bucket: "u",
                key: "k",
            }
        );
        let r = Route::parse(&Method::POST, "/buckets/u/keys/k", None).expect("post");
        assert_eq!(
            r,
            Route::PostObject {
                bucket: "u",
                key: "k",
            }
        );
        let r = Route::parse(&Method::DELETE, "/buckets/u/keys/k", None).expect("del");
        assert_eq!(
            r,
            Route::DeleteObject {
                bucket: "u",
                key: "k",
            }
        );
    }

    #[test]
    fn route_parses_listing_with_query_flag() {
        let r = Route::parse(&Method::GET, "/buckets", Some("buckets=true")).expect("buckets");
        assert_eq!(r, Route::ListBuckets);
        let r = Route::parse(&Method::GET, "/buckets/u/keys", Some("keys=true")).expect("keys");
        assert_eq!(r, Route::ListKeys { bucket: "u" });
    }

    #[test]
    fn route_listing_without_flag_misses() {
        // /buckets without ?buckets=true is not a recognised route.
        assert!(Route::parse(&Method::GET, "/buckets", None).is_none());
        // /buckets/u/keys without ?keys=true is not a recognised route.
        assert!(Route::parse(&Method::GET, "/buckets/u/keys", None).is_none());
    }

    #[test]
    fn route_parses_props() {
        let r = Route::parse(&Method::GET, "/buckets/u/props", None).expect("get props");
        assert_eq!(r, Route::GetProps { bucket: "u" });
        let r = Route::parse(&Method::PUT, "/buckets/u/props", None).expect("set props");
        assert_eq!(r, Route::SetProps { bucket: "u" });
    }

    #[test]
    fn route_unknown_path_misses() {
        assert!(Route::parse(&Method::GET, "/", None).is_none());
        assert!(Route::parse(&Method::GET, "/foo", None).is_none());
        assert!(Route::parse(&Method::GET, "/buckets/u/foo/bar", None).is_none());
    }

    #[test]
    fn has_flag_handles_multi_pair_query() {
        assert!(has_flag(Some("a=1&buckets=true"), "buckets", "true"));
        assert!(has_flag(Some("buckets=true&extra=x"), "buckets", "true"));
        assert!(!has_flag(Some("buckets=stream"), "buckets", "true"));
        assert!(!has_flag(Some(""), "buckets", "true"));
        assert!(!has_flag(None, "buckets", "true"));
    }

    #[tokio::test]
    async fn list_keys_streams_chunked_json_array() {
        let ds = Arc::new(MemoryDatastore::new());
        for i in 0..600u16 {
            ds.insert(b"u", format!("k{i:04}").as_bytes());
        }
        let ds_dyn: Arc<dyn Datastore> = ds.clone();
        let mut headers = HeaderMap::new();
        headers.insert(ACCEPT, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::ListKeys { bucket: "u" },
            &Method::GET,
            &headers,
            Bytes::new(),
            ds_dyn,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        assert_eq!(
            resp.headers()
                .get(TRANSFER_ENCODING)
                .map(|v| v.to_str().ok()),
            Some(Some("chunked"))
        );
        assert_eq!(
            resp.headers().get(CONTENT_TYPE).map(|v| v.to_str().ok()),
            Some(Some("application/json"))
        );
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&body).expect("json");
        let arr = parsed.as_array().expect("array");
        assert_eq!(arr.len(), 600);
        // Ordering is lexicographic per the snapshot semantics.
        assert_eq!(arr[0], serde_json::Value::String("k0000".to_string()));
        assert_eq!(arr[599], serde_json::Value::String("k0599".to_string()));
    }

    #[tokio::test]
    async fn list_buckets_streams_chunked_json_array() {
        let ds = Arc::new(MemoryDatastore::new());
        for i in 0..3u16 {
            ds.insert(format!("b{i}").as_bytes(), b"k");
        }
        let ds_dyn: Arc<dyn Datastore> = ds.clone();
        let mut headers = HeaderMap::new();
        headers.insert(ACCEPT, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::ListBuckets,
            &Method::GET,
            &headers,
            Bytes::new(),
            ds_dyn,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&body).expect("json");
        let arr = parsed.as_array().expect("array");
        assert_eq!(arr.len(), 3);
    }

    #[tokio::test]
    async fn list_buckets_empty_streams_empty_json_array() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::ListBuckets,
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        assert_eq!(body.as_ref(), b"[]");
    }

    #[tokio::test]
    async fn put_with_unsupported_content_type_returns_415() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/xml".parse().unwrap());
        let resp = handle_route(
            Route::PutObject {
                bucket: "u",
                key: "k",
            },
            &Method::PUT,
            &headers,
            Bytes::from_static(b"<doc/>"),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);
    }

    #[tokio::test]
    async fn put_with_empty_body_returns_400() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::PutObject {
                bucket: "u",
                key: "k",
            },
            &Method::PUT,
            &headers,
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn put_with_unsupported_accept_returns_406() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(ACCEPT, "application/yaml".parse().unwrap());
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::PutObject {
                bucket: "u",
                key: "k",
            },
            &Method::PUT,
            &headers,
            Bytes::from_static(b"{}"),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_ACCEPTABLE);
    }

    #[tokio::test]
    async fn put_then_get_drives_dispatch_count() {
        let ds = Arc::new(MemoryDatastore::new());
        let ds_dyn: Arc<dyn Datastore> = ds.clone();

        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let put = handle_route(
            Route::PutObject {
                bucket: "u",
                key: "k",
            },
            &Method::PUT,
            &headers,
            Bytes::from_static(br#"{"hello":"world"}"#),
            ds_dyn.clone(),
        )
        .await;
        assert_eq!(put.status(), StatusCode::NO_CONTENT);

        let get = handle_route(
            Route::GetObject {
                bucket: "u",
                key: "k",
            },
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            ds_dyn.clone(),
        )
        .await;
        assert_eq!(get.status(), StatusCode::NOT_FOUND);

        let del = handle_route(
            Route::DeleteObject {
                bucket: "u",
                key: "k",
            },
            &Method::DELETE,
            &dummy_headers(),
            Bytes::new(),
            ds_dyn,
        )
        .await;
        assert_eq!(del.status(), StatusCode::NO_CONTENT);

        // PUT, GET, DELETE each trampoline through dispatch.
        assert_eq!(ds.dispatch_count(), 3);
    }

    #[tokio::test]
    async fn ping_returns_200() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::Ping,
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
    }

    #[tokio::test]
    async fn head_ping_omits_body() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::Ping,
            &Method::HEAD,
            &dummy_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        assert!(body.is_empty());
    }

    #[tokio::test]
    async fn stats_returns_json_body() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::Stats,
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&body).expect("json");
        assert_eq!(parsed["name"], SERVER_NAME);
        assert_eq!(parsed["version"], SERVER_VERSION);
    }

    #[tokio::test]
    async fn get_props_returns_defaults() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let resp = handle_route(
            Route::GetProps { bucket: "u" },
            &Method::GET,
            &dummy_headers(),
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&body).expect("json");
        assert_eq!(parsed["props"]["n_val"], 3);
        assert_eq!(parsed["props"]["name"], "u");
    }

    #[test]
    fn route_parses_mapred() {
        let r = Route::parse(&Method::POST, "/mapred", None).expect("mapred");
        assert_eq!(r, Route::MapRed);
    }

    #[test]
    fn route_get_mapred_misses() {
        // Riak's /mapred is POST-only; GET should fall through.
        assert!(Route::parse(&Method::GET, "/mapred", None).is_none());
    }

    #[tokio::test]
    async fn mapred_runs_simple_job() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let body = br#"{
            "inputs": [
                {"bucket":"b","key":"k1","value":1},
                {"bucket":"b","key":"k2","value":2},
                {"bucket":"b","key":"k3","value":3}
            ],
            "query": [
                {"map":    {"name":"map_object_value"}},
                {"reduce": {"name":"reduce_sum", "keep": true}}
            ]
        }"#;
        let resp = handle_route(
            Route::MapRed,
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let ct = resp
            .headers()
            .get(CONTENT_TYPE)
            .expect("content-type")
            .to_str()
            .expect("ascii")
            .to_string();
        assert!(
            ct.starts_with("multipart/mixed; boundary="),
            "content-type was: {ct}"
        );
        let boundary = ct
            .strip_prefix("multipart/mixed; boundary=")
            .expect("boundary")
            .to_string();
        let body = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parts = parse_multipart_parts(&body, &boundary);
        assert_eq!(parts.len(), 1, "one kept (reduce) phase produces one part");
        assert_eq!(parts[0].content_type.as_deref(), Some("application/json"));
        let parsed: serde_json::Value = serde_json::from_slice(&parts[0].body).expect("json");
        let arr = parsed.as_array().expect("array");
        assert_eq!(arr.len(), 1);
        assert_eq!(arr[0]["phase"], 1);
        assert_eq!(arr[0]["data"], serde_json::json!([6]));
    }

    /// One parsed multipart body part: its declared content-type and
    /// the raw bytes of its body.
    struct MultipartPart {
        content_type: Option<String>,
        body: Vec<u8>,
    }

    /// Minimal multipart/mixed body parser used by the unit and
    /// integration tests in this module. Walks the body splitting
    /// on `--boundary` lines, parses the per-part headers, and
    /// stops on the closing `--boundary--` delimiter.
    fn parse_multipart_parts(body: &[u8], boundary: &str) -> Vec<MultipartPart> {
        let dash_boundary = format!("--{boundary}");
        let close_delim = format!("--{boundary}--");
        let text = std::str::from_utf8(body).expect("ascii body");
        let mut parts = Vec::new();
        let mut cursor = text;
        // Find first dash-boundary.
        if let Some(idx) = cursor.find(&dash_boundary) {
            cursor = &cursor[idx + dash_boundary.len()..];
        } else {
            return parts;
        }
        loop {
            // Closing delimiter starts with `--` after the boundary.
            if cursor.starts_with("--") {
                break;
            }
            // Skip CRLF after dash-boundary.
            cursor = cursor.trim_start_matches("\r\n");
            // Find header / body separator.
            let Some(sep_idx) = cursor.find("\r\n\r\n") else {
                break;
            };
            let head_str = &cursor[..sep_idx];
            cursor = &cursor[sep_idx + 4..];
            // Find the next dash-boundary.
            let Some(next_idx) = cursor.find(&dash_boundary) else {
                break;
            };
            let body_str = &cursor[..next_idx];
            // Trim trailing CRLF that belongs to the delimiter.
            let body_str = body_str.strip_suffix("\r\n").unwrap_or(body_str);
            let mut content_type = None;
            for line in head_str.split("\r\n") {
                if let Some(v) = line.strip_prefix("Content-Type:") {
                    content_type = Some(v.trim().to_string());
                }
            }
            parts.push(MultipartPart {
                content_type,
                body: body_str.as_bytes().to_vec(),
            });
            cursor = &cursor[next_idx + dash_boundary.len()..];
            if cursor.starts_with("--") {
                break;
            }
        }
        // Defensive: ensure the body ended with the close delimiter.
        let _ = close_delim;
        parts
    }

    #[tokio::test]
    async fn mapred_streams_multiple_kept_phases() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let body = br#"{
            "inputs": [
                {"bucket":"b","key":"k1","value":1},
                {"bucket":"b","key":"k2","value":2}
            ],
            "query": [
                {"map":    {"name":"map_object_value", "keep": true}},
                {"reduce": {"name":"reduce_sum",       "keep": true}}
            ]
        }"#;
        let resp = handle_route(
            Route::MapRed,
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let ct = resp
            .headers()
            .get(CONTENT_TYPE)
            .expect("ct")
            .to_str()
            .unwrap()
            .to_string();
        let boundary = ct
            .strip_prefix("multipart/mixed; boundary=")
            .expect("boundary")
            .to_string();
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parts = parse_multipart_parts(&bytes, &boundary);
        assert_eq!(parts.len(), 2);
        let p0: serde_json::Value = serde_json::from_slice(&parts[0].body).expect("json0");
        let p1: serde_json::Value = serde_json::from_slice(&parts[1].body).expect("json1");
        assert_eq!(p0[0]["phase"], 0);
        assert_eq!(p0[0]["data"].as_array().expect("arr").len(), 2);
        assert_eq!(p1[0]["phase"], 1);
        assert_eq!(p1[0]["data"], serde_json::json!([3]));
        // Body must end with the closing delimiter.
        let tail = &bytes[bytes.len().saturating_sub(boundary.len() + 6)..];
        let tail_str = std::str::from_utf8(tail).expect("ascii tail");
        assert!(
            tail_str.contains(&format!("--{boundary}--\r\n")),
            "tail was: {tail_str:?}"
        );
    }

    #[tokio::test]
    async fn mapred_phase_failure_emits_text_part_and_closing_delimiter() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        // The map references a function that does not exist; the
        // executor short-circuits and the streaming body must end
        // with a text/plain error part plus the closing delimiter.
        let body = br#"{
            "inputs": [{"bucket":"b","key":"k","value":1}],
            "query": [{"map": {"name": "no_such_function", "keep": true}}]
        }"#;
        let resp = handle_route(
            Route::MapRed,
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let ct = resp
            .headers()
            .get(CONTENT_TYPE)
            .expect("ct")
            .to_str()
            .unwrap()
            .to_string();
        let boundary = ct
            .strip_prefix("multipart/mixed; boundary=")
            .expect("boundary")
            .to_string();
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parts = parse_multipart_parts(&bytes, &boundary);
        assert_eq!(parts.len(), 1);
        assert_eq!(parts[0].content_type.as_deref(), Some("text/plain"));
        let msg = std::str::from_utf8(&parts[0].body).expect("ascii");
        assert!(
            msg.contains("MapReduce execution") && msg.contains("no_such_function"),
            "error msg was: {msg:?}"
        );
        let tail = std::str::from_utf8(&bytes).expect("ascii");
        assert!(tail.contains(&format!("--{boundary}--\r\n")));
    }

    #[tokio::test]
    async fn mapred_unsupported_content_type_returns_415() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/xml".parse().unwrap());
        let resp = handle_route(
            Route::MapRed,
            &Method::POST,
            &headers,
            Bytes::from_static(b"<doc/>"),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);
    }

    #[tokio::test]
    async fn mapred_malformed_job_returns_400() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::MapRed,
            &Method::POST,
            &headers,
            Bytes::from_static(b"not json"),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[test]
    fn route_parses_transactions() {
        let r = Route::parse(&Method::POST, "/transactions", None).expect("txn");
        assert_eq!(r, Route::Transaction { bucket: None });
        let r = Route::parse(&Method::POST, "/buckets/u/transactions", None).expect("bucket txn");
        assert_eq!(r, Route::Transaction { bucket: Some("u") });
    }

    #[test]
    fn route_get_transactions_misses() {
        // The transaction endpoint is POST-only.
        assert!(Route::parse(&Method::GET, "/transactions", None).is_none());
    }

    #[test]
    fn route_parses_ramp() {
        assert_eq!(
            Route::parse(&Method::POST, "/ramp/transactions", None).expect("ramp write"),
            Route::RampWrite
        );
        assert_eq!(
            Route::parse(&Method::POST, "/ramp/read", None).expect("ramp read"),
            Route::RampRead
        );
        // RAMP endpoints are POST-only.
        assert!(Route::parse(&Method::GET, "/ramp/read", None).is_none());
    }

    #[tokio::test]
    async fn transaction_on_non_transactional_backend_returns_501() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let body = br#"{"operations":[{"op":"put","bucket":"b","key":"k","value":"v"}]}"#;
        let resp = handle_route(
            Route::Transaction { bucket: None },
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::NOT_IMPLEMENTED);
    }

    #[tokio::test]
    async fn transaction_empty_body_returns_400() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());
        let resp = handle_route(
            Route::Transaction { bucket: None },
            &Method::POST,
            &headers,
            Bytes::new(),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[tokio::test]
    async fn transaction_unsupported_content_type_returns_415() {
        let ds: Arc<dyn Datastore> = Arc::new(MemoryDatastore::new());
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/xml".parse().unwrap());
        let resp = handle_route(
            Route::Transaction { bucket: None },
            &Method::POST,
            &headers,
            Bytes::from_static(b"<doc/>"),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::UNSUPPORTED_MEDIA_TYPE);
    }

    #[cfg(feature = "noxu")]
    #[tokio::test]
    async fn transaction_commits_and_aborts_against_noxu() {
        use crate::datastore::NoxuDatastore;
        use tempfile::TempDir;

        let dir = TempDir::new().expect("tempdir");
        let ds: Arc<dyn Datastore> =
            Arc::new(NoxuDatastore::open_transactional(dir.path()).expect("open"));
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());

        // Commit a three-put batch; the response is 200 + committed.
        let body = br#"{"operations":[
            {"op":"put","bucket":"users","key":"alice","value":"a"},
            {"op":"put","bucket":"users","key":"bob","value":"b"},
            {"op":"put","bucket":"users","key":"carol","value":"c"}
        ]}"#;
        let resp = handle_route(
            Route::Transaction { bucket: None },
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            Arc::clone(&ds),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&bytes).expect("json");
        assert_eq!(parsed["result"], "committed");
        assert_eq!(parsed["operations"], 3);

        // An aborting batch is 409 + aborted and leaves no writes.
        let body = br#"{"abort":true,"operations":[
            {"op":"put","bucket":"users","key":"dave","value":"d"}
        ]}"#;
        let resp = handle_route(
            Route::Transaction { bucket: None },
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            Arc::clone(&ds),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::CONFLICT);
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&bytes).expect("json");
        assert_eq!(parsed["result"], "aborted");

        // Bucket-scoped route rejects a mismatched bucket with 400.
        let body = br#"{"operations":[
            {"op":"put","bucket":"other","key":"k","value":"v"}
        ]}"#;
        let resp = handle_route(
            Route::Transaction {
                bucket: Some("users"),
            },
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
    }

    #[cfg(feature = "noxu")]
    #[tokio::test]
    async fn ramp_write_then_read_is_atomic_over_http() {
        use crate::datastore::NoxuDatastore;
        use tempfile::TempDir;

        let dir = TempDir::new().expect("tempdir");
        let ds: Arc<dyn Datastore> = Arc::new(NoxuDatastore::open(dir.path()).expect("open"));
        let mut headers = HeaderMap::new();
        headers.insert(CONTENT_TYPE, "application/json".parse().unwrap());

        // RAMP write of two keys in one transaction.
        let body = br#"{"writes":[{"key":"a","value":"1"},{"key":"b","value":"2"}]}"#;
        let resp = handle_route(
            Route::RampWrite,
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            Arc::clone(&ds),
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&bytes).expect("json");
        assert_eq!(parsed["result"], "committed");
        assert_eq!(parsed["keys"], 2);

        // RAMP read returns a fracture-free snapshot of both keys.
        let body = br#"{"keys":["a","b"]}"#;
        let resp = handle_route(
            Route::RampRead,
            &Method::POST,
            &headers,
            Bytes::copy_from_slice(body),
            ds,
        )
        .await;
        assert_eq!(resp.status(), StatusCode::OK);
        let bytes = resp
            .into_body()
            .collect()
            .await
            .expect("collect")
            .to_bytes();
        let parsed: serde_json::Value = serde_json::from_slice(&bytes).expect("json");
        assert_eq!(parsed["snapshot"]["a"], "1");
        assert_eq!(parsed["snapshot"]["b"], "2");
        // Contention-free read completes in one round.
        assert_eq!(parsed["rounds"], 1);
    }
}