reddb-io-server 1.2.4

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
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
use super::*;
use std::sync::Arc;

use crate::application::{RuntimeEntityPortCtx, RuntimeQueryPortCtx};
use crate::runtime::write_gate::WriteKind;

impl RedDBServer {
    pub(crate) fn handle_scan(
        &self,
        collection: &str,
        query: &BTreeMap<String, String>,
    ) -> HttpResponse {
        let offset = query
            .get("offset")
            .and_then(|value| value.parse::<usize>().ok())
            .unwrap_or(0);
        let limit = query
            .get("limit")
            .and_then(|value| value.parse::<usize>().ok())
            .unwrap_or(100)
            .max(1)
            .min(self.options.max_scan_limit);

        let ctx = self.build_read_context(None, None);
        let collection = collection.to_string();
        crate::server::transport::run_use_case(
            move || {
                self.runtime
                    .scan_collection_ctx(&ctx, &collection, None, limit + offset)
                    .map(|page| {
                        // The legacy scan use-case applied offset client-side
                        // before this migration; preserve that semantic by
                        // slicing the cursor-based page. A beyond-end offset
                        // must collapse to an empty page (issue #550) — the
                        // earlier `offset < items.len()` guard accidentally
                        // returned the full page when the offset skipped
                        // past everything.
                        let mut page = page;
                        if offset >= page.items.len() {
                            page.items.clear();
                        } else if offset > 0 {
                            page.items = page.items.split_off(offset);
                        }
                        page
                    })
            },
            crate::presentation::entity_json::scan_page_json,
        )
    }

    pub(crate) fn handle_create_row(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let input = match crate::application::entity_payload::parse_create_row_input(
            collection.to_string(),
            &payload,
        ) {
            Ok(input) => input,
            Err(err) => return json_error(400, err.to_string()),
        };

        let ctx = match self.build_write_context(WriteKind::Dml, None, None) {
            Ok(ctx) => ctx,
            Err(err) => return json_error(403, err.to_string()),
        };
        crate::server::transport::run_use_case(
            move || self.runtime.create_row_ctx(&ctx, input),
            crate::presentation::entity_json::created_entity_output_json,
        )
    }

    pub(crate) fn handle_create_node(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let input = match crate::application::entity_payload::parse_create_node_input(
            collection.to_string(),
            &payload,
        ) {
            Ok(input) => input,
            Err(err) => return json_error(400, err.to_string()),
        };

        let ctx = match self.build_write_context(WriteKind::Dml, None, None) {
            Ok(ctx) => ctx,
            Err(err) => return json_error(403, err.to_string()),
        };
        crate::server::transport::run_use_case(
            move || self.runtime.create_node_ctx(&ctx, input),
            crate::presentation::entity_json::created_entity_output_json,
        )
    }

    pub(crate) fn handle_create_edge(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let input = match crate::application::entity_payload::parse_create_edge_input(
            collection.to_string(),
            &payload,
        ) {
            Ok(input) => input,
            Err(err) => return json_error(400, err.to_string()),
        };

        match self.entity_use_cases().create_edge(input) {
            Ok(output) => json_response(
                200,
                crate::presentation::entity_json::created_entity_output_json(&output),
            ),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_bulk_create(
        &self,
        collection: &str,
        body: Vec<u8>,
        handler: fn(&Self, &str, Vec<u8>) -> HttpResponse,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let Some(items) = payload.get("items").and_then(JsonValue::as_array) else {
            return json_error(400, "JSON body must contain an array field named 'items'");
        };
        if items.is_empty() {
            return json_error(400, "field 'items' cannot be empty");
        }

        let mut results = Vec::with_capacity(items.len());
        for (index, item) in items.iter().enumerate() {
            let item_body = match json_to_vec(item) {
                Ok(body) => body,
                Err(err) => {
                    return json_error(
                        400,
                        format!("failed to encode bulk item at index {index}: {err}"),
                    )
                }
            };
            let response = handler(self, collection, item_body);
            if response.status >= 400 {
                let message = String::from_utf8_lossy(&response.body);
                return json_error(
                    response.status,
                    format!("bulk item {index} failed: {message}"),
                );
            }

            let parsed = match std::str::from_utf8(&response.body) {
                Ok(text) => parse_json(text)
                    .ok()
                    .map(JsonValue::from)
                    .unwrap_or(JsonValue::Null),
                Err(_) => JsonValue::Null,
            };
            results.push(parsed);
        }

        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(true));
        object.insert("count".to_string(), JsonValue::Number(results.len() as f64));
        object.insert("items".to_string(), JsonValue::Array(results));
        json_response(200, JsonValue::Object(object))
    }

    /// Fast bulk insert for rows through the canonical runtime batch path.
    /// When the body contains `auto_embed`, embeddings are generated in a single
    /// provider round-trip before any rows are inserted (so a provider failure
    /// leaves the collection untouched).
    pub(crate) fn handle_bulk_create_rows_fast(
        &self,
        collection: &str,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let Some(items) = payload.get("items").and_then(JsonValue::as_array) else {
            return json_error(400, "JSON body must contain an array field named 'items'");
        };
        if items.is_empty() {
            return json_error(400, "field 'items' cannot be empty");
        }

        let mut rows = Vec::with_capacity(items.len());
        for (index, item) in items.iter().enumerate() {
            match crate::application::entity_payload::parse_create_row_input(
                collection.to_string(),
                item,
            ) {
                Ok(input) => rows.push(input),
                Err(err) => {
                    return json_error(400, format!("bulk item {index} failed: {err}"));
                }
            }
        }

        if let Some(auto_embed) = payload.get("auto_embed") {
            return self.handle_bulk_rows_with_embed(collection, rows, auto_embed);
        }

        let count = rows.len();
        if let Err(err) =
            self.entity_use_cases()
                .create_rows_batch(crate::application::CreateRowsBatchInput {
                    collection: collection.to_string(),
                    rows,
                    suppress_events: false,
                })
        {
            return json_error(400, err.to_string());
        }

        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(true));
        object.insert("count".to_string(), JsonValue::Number(count as f64));
        json_response(200, JsonValue::Object(object))
    }

    /// Bulk insert with AUTO EMBED: embed all rows in one provider batch call,
    /// then insert rows. Provider failure aborts before any row is written.
    fn handle_bulk_rows_with_embed(
        &self,
        collection: &str,
        rows: Vec<crate::application::CreateRowInput>,
        auto_embed_json: &JsonValue,
    ) -> HttpResponse {
        let provider_str = match auto_embed_json.get("provider").and_then(JsonValue::as_str) {
            Some(p) => p,
            None => return json_error(400, "auto_embed.provider is required"),
        };
        let fields: Vec<String> = match auto_embed_json.get("fields").and_then(JsonValue::as_array)
        {
            Some(arr) => arr
                .iter()
                .filter_map(|v| v.as_str().map(str::to_string))
                .collect(),
            None => return json_error(400, "auto_embed.fields is required"),
        };
        if fields.is_empty() {
            return json_error(400, "auto_embed.fields cannot be empty");
        }
        let model = auto_embed_json
            .get("model")
            .and_then(JsonValue::as_str)
            .map(str::to_string)
            .unwrap_or_else(|| {
                std::env::var("REDDB_OPENAI_EMBEDDING_MODEL")
                    .ok()
                    .unwrap_or_else(|| crate::ai::DEFAULT_OPENAI_EMBEDDING_MODEL.to_string())
            });

        let provider = match crate::ai::parse_provider(provider_str) {
            Ok(p) => p,
            Err(e) => return json_error(400, e.to_string()),
        };
        let api_key = match crate::ai::resolve_api_key_from_runtime(&provider, None, &self.runtime)
        {
            Ok(k) => k,
            Err(e) => return json_error(400, e.to_string()),
        };

        // Collect one text per row by joining the requested fields.
        let texts: Vec<String> = rows
            .iter()
            .map(|row| {
                let parts: Vec<String> = fields
                    .iter()
                    .filter_map(|field| {
                        row.fields
                            .iter()
                            .find(|(k, _)| k == field)
                            .and_then(|(_, v)| match v {
                                Value::Text(t) if !t.is_empty() => Some(t.to_string()),
                                _ => None,
                            })
                    })
                    .collect();
                parts.join(" ")
            })
            .collect();

        // Embed BEFORE insert so a provider failure leaves the collection untouched.
        let batch_client =
            crate::runtime::ai::batch_client::AiBatchClient::from_runtime(&self.runtime);
        let embeddings = match tokio::runtime::Handle::try_current() {
            Ok(handle) => tokio::task::block_in_place(|| {
                handle.block_on(batch_client.embed_batch(
                    &provider,
                    &model,
                    &api_key,
                    texts.clone(),
                ))
            }),
            Err(_) => return json_error(500, "AUTO EMBED requires a Tokio runtime context"),
        };
        let embeddings = match embeddings {
            Ok(e) => e,
            Err(e) => return json_error(502, format!("embedding provider error: {e}")),
        };

        let count = rows.len();
        if let Err(err) =
            self.entity_use_cases()
                .create_rows_batch(crate::application::CreateRowsBatchInput {
                    collection: collection.to_string(),
                    rows,
                    suppress_events: false,
                })
        {
            return json_error(400, err.to_string());
        }

        // Store vectors for rows with non-empty embeddings.
        let mut embedded_count = 0usize;
        for (combined, dense) in texts.iter().zip(embeddings) {
            if dense.is_empty() || combined.trim().is_empty() {
                continue;
            }
            if self
                .entity_use_cases()
                .create_vector(crate::application::CreateVectorInput {
                    collection: collection.to_string(),
                    dense,
                    content: Some(combined.clone()),
                    metadata: Vec::new(),
                    link_row: None,
                    link_node: None,
                })
                .is_ok()
            {
                embedded_count += 1;
            }
        }

        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(true));
        object.insert("created_count".to_string(), JsonValue::Number(count as f64));
        object.insert(
            "embedded_count".to_string(),
            JsonValue::Number(embedded_count as f64),
        );
        // One batch call regardless of row count — the whole point of this slice.
        object.insert("provider_requests".to_string(), JsonValue::Number(1.0));
        json_response(200, JsonValue::Object(object))
    }

    /// Issue #582 — Analytics slice 4. `POST /collections/:name/batch`.
    /// All-or-nothing commit of a JSON array of rows under a single
    /// Statement frame, with `AnalyticsSchemaRegistry` validation up
    /// front and `Idempotency-Key` replay served from an in-memory
    /// process-wide cache (see [`crate::runtime::batch_insert`]).
    ///
    /// The core ingest pipeline lives in [`process_batch_insert`] so
    /// the RedWire (#587) and gRPC (#585) mirrors can call the same
    /// path and share the dedup cache. This wrapper only does the
    /// HTTP-shaped body parse + response packaging.
    pub(crate) fn handle_batch_insert(
        &self,
        collection: &str,
        body: Vec<u8>,
        idempotency_key: Option<&str>,
    ) -> HttpResponse {
        use crate::runtime::batch_insert::BatchInsertError;

        let payload = match parse_json_body(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let Some(items) = payload.as_array() else {
            return batch_outcome_to_http(BatchOutcome::from_error(
                &BatchInsertError::BodyNotJsonArray,
            ));
        };

        let outcome = process_batch_insert(&self.runtime, collection, items, idempotency_key);
        batch_outcome_to_http(outcome)
    }

    pub(crate) fn handle_create_vector(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let input = match crate::application::entity_payload::parse_create_vector_input(
            collection.to_string(),
            &payload,
        ) {
            Ok(input) => input,
            Err(err) => return json_error(400, err.to_string()),
        };

        match self.entity_use_cases().create_vector(input) {
            Ok(output) => json_response(
                200,
                crate::presentation::entity_json::created_entity_output_json(&output),
            ),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_patch_entity(
        &self,
        collection: &str,
        id: u64,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };

        let patch_operations = match parse_patch_operations(&payload) {
            Ok(operations) => operations,
            Err(response) => return response,
        };

        let operations = patch_operations
            .into_iter()
            .map(|operation| PatchEntityOperation {
                op: match operation.op {
                    PatchOperationType::Set => PatchEntityOperationType::Set,
                    PatchOperationType::Replace => PatchEntityOperationType::Replace,
                    PatchOperationType::Unset => PatchEntityOperationType::Unset,
                },
                path: operation.path,
                value: operation.value,
            })
            .collect();

        match self.entity_use_cases().patch(PatchEntityInput {
            collection: collection.to_string(),
            id: EntityId::new(id),
            payload,
            operations,
        }) {
            Ok(output) => json_response(
                200,
                crate::presentation::entity_json::created_entity_output_json(&output),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    // ── KV endpoints ─────────────────────────────────────────────────

    pub(crate) fn handle_get_kv(&self, collection: &str, key: &str) -> HttpResponse {
        match self.entity_use_cases().get_kv(collection, key) {
            Ok(Some((value, id))) => {
                let mut object = Map::new();
                object.insert("ok".to_string(), JsonValue::Bool(true));
                object.insert(
                    "collection".to_string(),
                    JsonValue::String(collection.to_string()),
                );
                object.insert("key".to_string(), JsonValue::String(key.to_string()));
                object.insert(
                    "value".to_string(),
                    crate::presentation::entity_json::storage_value_to_json(&value),
                );
                object.insert("id".to_string(), JsonValue::Number(id.raw() as f64));
                json_response(200, JsonValue::Object(object))
            }
            Ok(None) => json_error(404, format!("key not found: {key}")),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_put_kv(&self, collection: &str, key: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };

        let value = match payload.get("value") {
            Some(JsonValue::String(s)) => Value::text(s.clone()),
            Some(JsonValue::Number(n)) => {
                if n.fract().abs() < f64::EPSILON {
                    Value::Integer(*n as i64)
                } else {
                    Value::Float(*n)
                }
            }
            Some(JsonValue::Bool(b)) => Value::Boolean(*b),
            Some(JsonValue::Null) | None => Value::Null,
            Some(other) => Value::Json(crate::json::to_vec(other).unwrap_or_default()),
        };
        let tags = match json_string_array_field(&payload, "tags") {
            Ok(tags) => tags,
            Err(message) => return json_error(400, message),
        };

        let ops = crate::runtime::impl_kv::KvAtomicOps::new(&self.runtime);
        match ops.set_with_tags(collection, key, value, None, &tags, false) {
            Ok((created, id)) => {
                let mut object = Map::new();
                object.insert("ok".to_string(), JsonValue::Bool(true));
                object.insert("id".to_string(), JsonValue::Number(id.raw() as f64));
                object.insert("created".to_string(), JsonValue::Bool(created));
                object.insert(
                    "tags".to_string(),
                    JsonValue::Array(tags.into_iter().map(JsonValue::String).collect()),
                );
                json_response(if created { 201 } else { 200 }, JsonValue::Object(object))
            }
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_invalidate_kv_tags(
        &self,
        collection: &str,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let tags = match json_string_array_field(&payload, "tags") {
            Ok(tags) if !tags.is_empty() => tags,
            Ok(_) => return json_error(400, "field 'tags' must contain at least one string"),
            Err(message) => return json_error(400, message),
        };
        let ops = crate::runtime::impl_kv::KvAtomicOps::new(&self.runtime);
        match ops.invalidate_tags(collection, &tags) {
            Ok(count) => {
                let mut object = Map::new();
                object.insert("ok".to_string(), JsonValue::Bool(true));
                object.insert("invalidated".to_string(), JsonValue::Number(count as f64));
                object.insert(
                    "tags".to_string(),
                    JsonValue::Array(tags.into_iter().map(JsonValue::String).collect()),
                );
                json_response(200, JsonValue::Object(object))
            }
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_delete_kv(&self, collection: &str, key: &str) -> HttpResponse {
        let ops = crate::runtime::impl_kv::KvAtomicOps::new(&self.runtime);
        match ops.delete(crate::catalog::CollectionModel::Kv, collection, key) {
            Ok(true) => {
                let mut object = Map::new();
                object.insert("ok".to_string(), JsonValue::Bool(true));
                object.insert("deleted".to_string(), JsonValue::Bool(true));
                object.insert("key".to_string(), JsonValue::String(key.to_string()));
                json_response(200, JsonValue::Object(object))
            }
            Ok(false) => json_error(404, format!("key not found: {key}")),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_watch_kv(
        &self,
        collection: &str,
        key: &str,
        query: &BTreeMap<String, String>,
    ) -> HttpResponse {
        let since_lsn = query
            .get("since_lsn")
            .and_then(|value| value.parse::<u64>().ok())
            .unwrap_or_else(|| self.runtime.cdc_current_lsn());
        let limit = query
            .get("limit")
            .and_then(|value| value.parse::<usize>().ok())
            .unwrap_or(100)
            .clamp(1, 1000);

        let (watch_key, prefix) = key
            .strip_suffix(".*")
            .or_else(|| key.strip_suffix(".%2A"))
            .or_else(|| key.strip_suffix(".%2a"))
            .map(|prefix| (prefix, true))
            .unwrap_or((key, false));
        let events = if prefix {
            self.runtime
                .kv_watch_events_since_prefix(collection, watch_key, since_lsn, limit)
        } else {
            self.runtime
                .kv_watch_events_since(collection, watch_key, since_lsn, limit)
        };

        let mut body = Vec::new();
        for event in events {
            body.extend_from_slice(b"event: kv\n");
            body.extend_from_slice(b"data: ");
            body.extend_from_slice(
                crate::json::to_string(&event.to_json_value())
                    .unwrap_or_else(|_| "{}".to_string())
                    .as_bytes(),
            );
            body.extend_from_slice(b"\n\n");
        }

        HttpResponse {
            status: 200,
            body,
            content_type: "text/event-stream",
            extra_headers: Vec::new(),
        }
    }

    // ── Document endpoint ───────────────────────────────────────────

    pub(crate) fn handle_create_document(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };

        // If payload has "body" field, use it; otherwise treat entire payload as the document body
        let body_value = payload
            .get("body")
            .cloned()
            .unwrap_or_else(|| payload.clone());
        let metadata = match payload.get("metadata").map(parse_tree_metadata).transpose() {
            Ok(metadata) => metadata.unwrap_or_default(),
            Err(err) => return json_error(400, err),
        };

        match self
            .entity_use_cases()
            .create_document(CreateDocumentInput {
                collection: collection.to_string(),
                body: body_value,
                metadata,
                node_links: Vec::new(),
                vector_links: Vec::new(),
            }) {
            Ok(output) => json_response(
                200,
                crate::presentation::entity_json::created_entity_output_json(&output),
            ),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_get_entity(&self, collection: &str, id: u64) -> HttpResponse {
        match self.runtime.db().store().get(collection, EntityId::new(id)) {
            Some(entity) => {
                json_response(200, crate::presentation::entity_json::entity_json(&entity))
            }
            None => json_error(404, format!("entity not found: {id}")),
        }
    }

    pub(crate) fn handle_delete_entity(&self, collection: &str, id: u64) -> HttpResponse {
        match self.entity_use_cases().delete(DeleteEntityInput {
            collection: collection.to_string(),
            id: EntityId::new(id),
        }) {
            Ok(output) if output.deleted => {
                let mut object = Map::new();
                object.insert("ok".to_string(), JsonValue::Bool(true));
                object.insert("deleted".to_string(), JsonValue::Bool(true));
                object.insert("id".to_string(), JsonValue::Number(id as f64));
                json_response(200, JsonValue::Object(object))
            }
            Ok(_) => json_error(404, format!("entity not found: {id}")),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_create_tree(&self, collection: &str, body: Vec<u8>) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let Some(name) = json_string_field(&payload, "name") else {
            return json_error(400, "field 'name' is required");
        };
        let Some(root_payload) = payload.get("root") else {
            return json_error(400, "field 'root' is required");
        };
        let root = match parse_tree_node_input(root_payload, false) {
            Ok(node) => node,
            Err(err) => return json_error(400, err),
        };
        let default_max_children = payload
            .get("default_max_children")
            .or_else(|| payload.get("max_children"))
            .and_then(JsonValue::as_i64)
            .and_then(|value| usize::try_from(value).ok())
            .filter(|value| *value > 0);
        let Some(default_max_children) = default_max_children else {
            return json_error(
                400,
                "field 'default_max_children' must be a positive integer",
            );
        };
        let input = crate::application::CreateTreeInput {
            collection: collection.to_string(),
            name,
            root,
            default_max_children,
            if_not_exists: json_bool_field(&payload, "if_not_exists").unwrap_or(false),
        };

        match self.tree_use_cases().create_tree(input) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_drop_tree(&self, collection: &str, tree_name: &str) -> HttpResponse {
        match self
            .tree_use_cases()
            .drop_tree(crate::application::DropTreeInput {
                collection: collection.to_string(),
                name: tree_name.to_string(),
                if_exists: false,
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_tree_insert_node(
        &self,
        collection: &str,
        tree_name: &str,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let parent_id = payload
            .get("parent_id")
            .and_then(JsonValue::as_i64)
            .and_then(|value| u64::try_from(value).ok())
            .filter(|value| *value > 0);
        let Some(parent_id) = parent_id else {
            return json_error(400, "field 'parent_id' must be a positive integer");
        };
        let node_payload = payload.get("node").unwrap_or(&payload);
        let node = match parse_tree_node_input(node_payload, true) {
            Ok(node) => node,
            Err(err) => return json_error(400, err),
        };
        let position = match parse_tree_position_input(&payload) {
            Ok(position) => position,
            Err(err) => return json_error(400, err),
        };

        match self
            .tree_use_cases()
            .insert_node(crate::application::InsertTreeNodeInput {
                collection: collection.to_string(),
                tree_name: tree_name.to_string(),
                parent_id,
                node,
                position,
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_tree_move(
        &self,
        collection: &str,
        tree_name: &str,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        let node_id = payload
            .get("node_id")
            .and_then(JsonValue::as_i64)
            .and_then(|value| u64::try_from(value).ok())
            .filter(|value| *value > 0);
        let parent_id = payload
            .get("parent_id")
            .and_then(JsonValue::as_i64)
            .and_then(|value| u64::try_from(value).ok())
            .filter(|value| *value > 0);
        let Some(node_id) = node_id else {
            return json_error(400, "field 'node_id' must be a positive integer");
        };
        let Some(parent_id) = parent_id else {
            return json_error(400, "field 'parent_id' must be a positive integer");
        };
        let position = match parse_tree_position_input(&payload) {
            Ok(position) => position,
            Err(err) => return json_error(400, err),
        };

        match self
            .tree_use_cases()
            .move_node(crate::application::MoveTreeNodeInput {
                collection: collection.to_string(),
                tree_name: tree_name.to_string(),
                node_id,
                parent_id,
                position,
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_tree_delete_node(
        &self,
        collection: &str,
        tree_name: &str,
        node_id: u64,
    ) -> HttpResponse {
        match self
            .tree_use_cases()
            .delete_node(crate::application::DeleteTreeNodeInput {
                collection: collection.to_string(),
                tree_name: tree_name.to_string(),
                node_id,
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_tree_validate(&self, collection: &str, tree_name: &str) -> HttpResponse {
        match self
            .tree_use_cases()
            .validate(crate::application::ValidateTreeInput {
                collection: collection.to_string(),
                tree_name: tree_name.to_string(),
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }

    pub(crate) fn handle_tree_rebalance(
        &self,
        collection: &str,
        tree_name: &str,
        body: Vec<u8>,
    ) -> HttpResponse {
        let payload = match parse_json_body_allow_empty(&body) {
            Ok(payload) => payload,
            Err(response) => return response,
        };
        match self
            .tree_use_cases()
            .rebalance(crate::application::RebalanceTreeInput {
                collection: collection.to_string(),
                tree_name: tree_name.to_string(),
                dry_run: json_bool_field(&payload, "dry_run").unwrap_or(false),
            }) {
            Ok(result) => json_response(
                200,
                crate::presentation::query_result_json::runtime_query_json(&result, &None, &None),
            ),
            Err(err @ RedDBError::NotFound(_)) => json_error(404, err.to_string()),
            Err(err) => json_error(400, err.to_string()),
        }
    }
}

/// Transport-agnostic outcome of a batch insert: the HTTP-shaped status
/// + body, ready to be served verbatim either as an HTTP response or
/// as the payload of a RedWire `BulkOk` / `Error` frame. The body is
/// always a compact JSON object so a downstream consumer can decode it
/// once and present whichever fields the client cares about.
///
/// Sharing this representation across transports is what lets the
/// idempotency cache (process-wide, keyed by `(collection, key)`)
/// replay byte-for-byte across HTTP / gRPC / RedWire: the cache stores
/// the body that this function produces, and every transport agrees on
/// the shape.
#[derive(Debug, Clone)]
pub(crate) struct BatchOutcome {
    pub status: u16,
    pub body: Vec<u8>,
}

impl BatchOutcome {
    fn ok(count: usize) -> Self {
        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(true));
        object.insert("count".to_string(), JsonValue::Number(count as f64));
        Self {
            status: 200,
            body: JsonValue::Object(object).to_string_compact().into_bytes(),
        }
    }

    pub(crate) fn from_error(err: &crate::runtime::batch_insert::BatchInsertError) -> Self {
        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(false));
        object.insert("code".to_string(), JsonValue::String(err.code().to_string()));
        let message = err.message();
        object.insert(
            "error".to_string(),
            crate::json_field::SerializedJsonField::tainted(&message),
        );
        object.insert(
            "message".to_string(),
            crate::json_field::SerializedJsonField::tainted(&message),
        );
        if let Some(index) = err.row_index() {
            object.insert("row_index".to_string(), JsonValue::Number(index as f64));
        }
        Self {
            status: err.http_status(),
            body: JsonValue::Object(object).to_string_compact().into_bytes(),
        }
    }

    fn from_runtime_error(err: &crate::api::RedDBError) -> Self {
        // Non-typed failures (storage write rejection, etc.) keep the
        // existing 400-shape envelope so the HTTP test that asserts
        // `json_error` body shape ({"ok":false,"error":...}) still
        // passes without changes.
        let mut object = Map::new();
        object.insert("ok".to_string(), JsonValue::Bool(false));
        let message = err.to_string();
        object.insert(
            "error".to_string(),
            crate::json_field::SerializedJsonField::tainted(&message),
        );
        Self {
            status: 400,
            body: JsonValue::Object(object).to_string_compact().into_bytes(),
        }
    }
}

fn batch_outcome_to_http(outcome: BatchOutcome) -> HttpResponse {
    HttpResponse {
        status: outcome.status,
        body: outcome.body,
        content_type: "application/json",
        extra_headers: Vec::new(),
    }
}

/// Shared analytics batch-insert pipeline. Mirrored on every transport
/// (HTTP slice 4, gRPC slice 5, RedWire slice 6) so the validation
/// contract, the dedup window, and the all-or-nothing commit all agree.
///
/// Reads:
/// - The process-wide `BatchInsertCache` (see [`crate::runtime::batch_insert`]).
/// - `RED_BATCH_MAX_ROWS` and `RED_BATCH_IDEMPOTENCY_WINDOW_SECS` via
///   `BatchInsertConfig::from_env()`.
/// - The `AnalyticsSchemaRegistry` for any row carrying a registered
///   `event_name`.
///
/// Writes (only on full validation success):
/// - The batch via `EntityUseCases::create_rows_batch`, which already
///   threads CDC through `MutationEngine::commit_rows` so events fire
///   for every row in caller order.
/// - The (collection, key) entry in the idempotency cache, so a retry
///   replays the exact same body bytes (both 2xx and deterministic 4xx).
pub(crate) fn process_batch_insert(
    runtime: &crate::runtime::RedDBRuntime,
    collection: &str,
    items: &[JsonValue],
    idempotency_key: Option<&str>,
) -> BatchOutcome {
    use crate::runtime::batch_insert::{global_cache, BatchInsertConfig, BatchInsertError};
    use std::time::Instant;

    let cache = global_cache();
    let config = BatchInsertConfig::from_env();
    let now = Instant::now();

    // Idempotency replay short-circuits before any work so a misshapen
    // retry of an earlier success still returns the cached success.
    let cache_key = idempotency_key.filter(|k| !k.is_empty());
    if let Some(key) = cache_key {
        if let Some(cached) = cache.lookup(collection, key, now) {
            return BatchOutcome {
                status: cached.status,
                body: cached.body,
            };
        }
    }

    if items.len() > config.max_rows {
        let outcome = BatchOutcome::from_error(&BatchInsertError::BatchTooLarge {
            limit: config.max_rows,
            got: items.len(),
        });
        if let Some(key) = cache_key {
            cache.store(
                collection,
                key,
                outcome.status,
                outcome.body.clone(),
                config.idempotency_window,
                now,
            );
        }
        return outcome;
    }

    // Two-phase: parse + schema-validate every row BEFORE any storage
    // write. All-or-nothing requires that row K's failure leave the
    // collection untouched, so we refuse to start the commit until
    // every row clears the gate.
    let mut row_inputs = Vec::with_capacity(items.len());
    let store = runtime.db().store();
    for (index, item) in items.iter().enumerate() {
        let input = match crate::application::entity_payload::parse_create_row_input(
            collection.to_string(),
            item,
        ) {
            Ok(input) => input,
            Err(err) => {
                let outcome = BatchOutcome::from_error(&BatchInsertError::RowParseFailure {
                    index,
                    reason: err.to_string(),
                });
                if let Some(key) = cache_key {
                    cache.store(
                        collection,
                        key,
                        outcome.status,
                        outcome.body.clone(),
                        config.idempotency_window,
                        now,
                    );
                }
                return outcome;
            }
        };

        if let Some(reason) = schema_validate_row(store.as_ref(), &input) {
            let outcome =
                BatchOutcome::from_error(&BatchInsertError::RowSchemaRejected { index, reason });
            if let Some(key) = cache_key {
                cache.store(
                    collection,
                    key,
                    outcome.status,
                    outcome.body.clone(),
                    config.idempotency_window,
                    now,
                );
            }
            return outcome;
        }

        row_inputs.push(input);
    }

    let count = row_inputs.len();
    let result =
        crate::application::EntityUseCases::new(runtime).create_rows_batch(
            crate::application::CreateRowsBatchInput {
                collection: collection.to_string(),
                rows: row_inputs,
                suppress_events: false,
            },
        );

    let outcome = match result {
        Ok(_) => BatchOutcome::ok(count),
        Err(err) => BatchOutcome::from_runtime_error(&err),
    };

    if let Some(key) = cache_key {
        cache.store(
            collection,
            key,
            outcome.status,
            outcome.body.clone(),
            config.idempotency_window,
            now,
        );
    }

    outcome
}

/// Run `AnalyticsSchemaRegistry::validate` against a single row's
/// `payload` when its `event_name` field names a registered schema.
/// Returns `None` when the row passes (or no schema is registered)
/// and `Some(reason)` when the registry rejects.
fn schema_validate_row(
    store: &crate::storage::unified::UnifiedStore,
    input: &crate::application::CreateRowInput,
) -> Option<String> {
    let event_name = input.fields.iter().find_map(|(k, v)| {
        if k.eq_ignore_ascii_case("event_name") {
            match v {
                Value::Text(t) => Some(t.to_string()),
                _ => None,
            }
        } else {
            None
        }
    })?;
    crate::runtime::analytics_schema_registry::latest(store, &event_name)?;
    let payload_json = input
        .fields
        .iter()
        .find_map(|(k, v)| {
            if k.eq_ignore_ascii_case("payload") {
                match v {
                    Value::Text(t) => Some(t.to_string()),
                    _ => None,
                }
            } else {
                None
            }
        })
        .unwrap_or_else(|| "{}".to_string());
    match crate::runtime::analytics_schema_registry::validate(store, &event_name, &payload_json) {
        Ok(()) => None,
        Err(err) => {
            let mapped = crate::runtime::analytics_schema_registry::validation_error_to_reddb(err);
            Some(mapped.to_string())
        }
    }
}

fn json_string_array_field(payload: &JsonValue, field: &str) -> Result<Vec<String>, String> {
    match payload.get(field) {
        None | Some(JsonValue::Null) => Ok(Vec::new()),
        Some(JsonValue::Array(values)) => values
            .iter()
            .map(|value| {
                value
                    .as_str()
                    .map(ToOwned::to_owned)
                    .ok_or_else(|| format!("field '{field}' must be an array of strings"))
            })
            .collect(),
        _ => Err(format!("field '{field}' must be an array of strings")),
    }
}

fn parse_tree_node_input(
    payload: &JsonValue,
    allow_max_children: bool,
) -> Result<crate::application::TreeNodeInput, String> {
    let JsonValue::Object(object) = payload else {
        return Err("tree node payload must be a JSON object".to_string());
    };
    let label = object
        .get("label")
        .and_then(JsonValue::as_str)
        .map(str::to_string)
        .ok_or_else(|| "field 'label' is required".to_string())?;
    let node_type = object
        .get("node_type")
        .or_else(|| object.get("type"))
        .and_then(JsonValue::as_str)
        .map(str::to_string);

    let properties = object
        .get("properties")
        .map(parse_tree_properties)
        .transpose()?
        .unwrap_or_default();
    let metadata = object
        .get("metadata")
        .map(parse_tree_metadata)
        .transpose()?
        .unwrap_or_default();
    let max_children = if allow_max_children {
        object
            .get("max_children")
            .and_then(JsonValue::as_i64)
            .and_then(|value| usize::try_from(value).ok())
    } else {
        None
    };

    Ok(crate::application::TreeNodeInput {
        label,
        node_type,
        properties,
        metadata,
        max_children,
    })
}

fn parse_tree_properties(payload: &JsonValue) -> Result<Vec<(String, Value)>, String> {
    let JsonValue::Object(object) = payload else {
        return Err("field 'properties' must be an object".to_string());
    };
    object
        .iter()
        .map(|(key, value)| {
            crate::application::entity::json_to_storage_value(value)
                .map(|value| (key.clone(), value))
                .map_err(|err| format!("invalid property '{}': {}", key, err))
        })
        .collect()
}

fn parse_tree_metadata(payload: &JsonValue) -> Result<Vec<(String, MetadataValue)>, String> {
    let JsonValue::Object(object) = payload else {
        return Err("field 'metadata' must be an object".to_string());
    };
    object
        .iter()
        .map(|(key, value)| {
            crate::application::entity::json_to_metadata_value(value)
                .map(|value| (key.clone(), value))
                .map_err(|err| format!("invalid metadata '{}': {}", key, err))
        })
        .collect()
}

fn parse_tree_position_input(
    payload: &JsonValue,
) -> Result<crate::application::TreePositionInput, String> {
    match payload.get("position") {
        None | Some(JsonValue::Null) => Ok(crate::application::TreePositionInput::Last),
        Some(JsonValue::String(value)) if value.eq_ignore_ascii_case("first") => {
            Ok(crate::application::TreePositionInput::First)
        }
        Some(JsonValue::String(value)) if value.eq_ignore_ascii_case("last") => {
            Ok(crate::application::TreePositionInput::Last)
        }
        Some(JsonValue::Number(value)) if *value >= 0.0 && value.fract().abs() < f64::EPSILON => {
            Ok(crate::application::TreePositionInput::Index(
                *value as usize,
            ))
        }
        Some(_) => Err("field 'position' must be 'first', 'last', or an integer".to_string()),
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{RedDBOptions, RedDBRuntime};

    fn make_server() -> RedDBServer {
        let rt = RedDBRuntime::with_options(RedDBOptions::in_memory()).expect("runtime");
        RedDBServer::new(rt)
    }

    fn post_bulk_rows(server: &RedDBServer, collection: &str, body: &str) -> HttpResponse {
        server.handle_bulk_create_rows_fast(collection, body.as_bytes().to_vec())
    }

    #[test]
    fn bulk_create_rows_legacy_path_unchanged() {
        let server = make_server();
        // CREATE the collection first
        let ddl = r#"{"query": "CREATE TABLE articles (id INTEGER, title TEXT)"}"#;
        let r = server.handle_query(ddl.as_bytes().to_vec());
        assert_eq!(r.status, 200, "{}", String::from_utf8_lossy(&r.body));

        let body = r#"{"items": [{"fields": {"id": 1, "title": "hello"}}, {"fields": {"id": 2, "title": "world"}}]}"#;
        let r = post_bulk_rows(&server, "articles", body);
        assert_eq!(r.status, 200);
        let parsed = crate::json::parse_json(std::str::from_utf8(&r.body).unwrap()).unwrap();
        assert_eq!(parsed.get("count").and_then(|v| v.as_f64()), Some(2.0));
        // legacy response has no embedded_count field
        assert!(parsed.get("embedded_count").is_none());
    }

    #[test]
    fn bulk_rows_with_embed_missing_provider_returns_400() {
        let server = make_server();
        let ddl = r#"{"query": "CREATE TABLE docs (body TEXT)"}"#;
        server.handle_query(ddl.as_bytes().to_vec());

        let body =
            r#"{"items": [{"fields": {"body": "hello"}}], "auto_embed": {"fields": ["body"]}}"#;
        let r = post_bulk_rows(&server, "docs", body);
        assert_eq!(r.status, 400);
        let text = String::from_utf8_lossy(&r.body);
        assert!(
            text.contains("provider"),
            "expected provider error, got: {text}"
        );
    }

    #[test]
    fn bulk_rows_with_embed_missing_fields_returns_400() {
        let server = make_server();
        let ddl = r#"{"query": "CREATE TABLE docs (body TEXT)"}"#;
        server.handle_query(ddl.as_bytes().to_vec());

        let body =
            r#"{"items": [{"fields": {"body": "hello"}}], "auto_embed": {"provider": "openai"}}"#;
        let r = post_bulk_rows(&server, "docs", body);
        assert_eq!(r.status, 400);
        let text = String::from_utf8_lossy(&r.body);
        assert!(
            text.contains("fields"),
            "expected fields error, got: {text}"
        );
    }

    #[test]
    fn bulk_rows_with_embed_empty_fields_returns_400() {
        let server = make_server();
        let ddl = r#"{"query": "CREATE TABLE docs (body TEXT)"}"#;
        server.handle_query(ddl.as_bytes().to_vec());

        let body = r#"{"items": [{"fields": {"body": "hello"}}], "auto_embed": {"provider": "openai", "fields": []}}"#;
        let r = post_bulk_rows(&server, "docs", body);
        assert_eq!(r.status, 400);
        let text = String::from_utf8_lossy(&r.body);
        assert!(
            text.contains("fields"),
            "expected fields error, got: {text}"
        );
    }

    #[test]
    fn bulk_rows_with_embed_invalid_provider_returns_400() {
        let server = make_server();
        let ddl = r#"{"query": "CREATE TABLE docs (body TEXT)"}"#;
        server.handle_query(ddl.as_bytes().to_vec());

        let body = r#"{"items": [{"fields": {"body": "hello"}}], "auto_embed": {"provider": "not-a-real-provider", "fields": ["body"]}}"#;
        let r = post_bulk_rows(&server, "docs", body);
        assert_eq!(r.status, 400);
    }

    #[test]
    fn bulk_rows_empty_items_returns_400() {
        let server = make_server();
        let r = post_bulk_rows(&server, "any", r#"{"items": []}"#);
        assert_eq!(r.status, 400);
    }

    #[test]
    fn bulk_rows_missing_items_returns_400() {
        let server = make_server();
        let r = post_bulk_rows(&server, "any", r#"{"rows": []}"#);
        assert_eq!(r.status, 400);
    }

    // ── Issue #582 — BatchInsertEndpoint ──────────────────────────────

    fn post_batch(
        server: &RedDBServer,
        collection: &str,
        body: &str,
        idempotency_key: Option<&str>,
    ) -> HttpResponse {
        server.handle_batch_insert(collection, body.as_bytes().to_vec(), idempotency_key)
    }

    fn create_table(server: &RedDBServer, ddl: &str) {
        let body = format!(r#"{{"query": "{ddl}"}}"#);
        let r = server.handle_query(body.into_bytes());
        assert_eq!(r.status, 200, "ddl failed: {}", String::from_utf8_lossy(&r.body));
    }

    #[test]
    fn batch_insert_happy_path_returns_200_with_count() {
        let server = make_server();
        create_table(&server, "CREATE TABLE events (id INTEGER, name TEXT)");

        let body = r#"[
            {"fields": {"id": 1, "name": "a"}},
            {"fields": {"id": 2, "name": "b"}},
            {"fields": {"id": 3, "name": "c"}}
        ]"#;
        let r = post_batch(&server, "events", body, None);
        assert_eq!(r.status, 200, "{}", String::from_utf8_lossy(&r.body));
        let parsed = crate::json::parse_json(std::str::from_utf8(&r.body).unwrap()).unwrap();
        assert_eq!(parsed.get("count").and_then(|v| v.as_f64()), Some(3.0));
    }

    #[test]
    fn batch_insert_oversize_returns_413_before_storage() {
        let server = make_server();
        create_table(&server, "CREATE TABLE events (id INTEGER, name TEXT)");

        // Build a body one row over the documented default ceiling so
        // we don't touch the process-wide env, which other tests in
        // this module read.
        let max = 10_000;
        let mut body = String::from("[");
        for i in 0..(max + 1) {
            if i > 0 {
                body.push(',');
            }
            body.push_str(&format!(
                "{{\"fields\":{{\"id\":{i},\"name\":\"x\"}}}}"
            ));
        }
        body.push(']');
        let r = post_batch(&server, "events", &body, None);
        assert_eq!(r.status, 413, "{}", String::from_utf8_lossy(&r.body));
        let text = String::from_utf8_lossy(&r.body);
        assert!(text.contains("BatchTooLarge"), "body={text}");
        assert!(text.contains("\"code\":\"BatchTooLarge\""), "body={text}");

        // Storage should be untouched — a scan returns zero rows.
        let scan = server.handle_scan("events", &Default::default());
        let scan_text = String::from_utf8_lossy(&scan.body);
        assert!(
            !scan_text.contains("\"id\":1"),
            "oversize batch leaked rows: {scan_text}"
        );
    }

    #[test]
    fn batch_insert_row_failure_rolls_back_whole_batch() {
        let server = make_server();
        create_table(&server, "CREATE TABLE events (id INTEGER, name TEXT)");

        // Row 1 omits the required `fields` object — the row-parse
        // step rejects before any commit fires.
        let body = r#"[
            {"fields": {"id": 1, "name": "a"}},
            {"not_fields": {"id": 2}},
            {"fields": {"id": 3, "name": "c"}}
        ]"#;
        let r = post_batch(&server, "events", body, None);
        assert_eq!(r.status, 400, "{}", String::from_utf8_lossy(&r.body));
        let text = String::from_utf8_lossy(&r.body);
        assert!(text.contains("\"row_index\":1"), "body={text}");
        assert!(text.contains("RowParseFailure"), "body={text}");

        // Storage is untouched (row 0 was never committed even
        // though it would have parsed cleanly on its own).
        let scan = server.handle_scan("events", &Default::default());
        let scan_text = String::from_utf8_lossy(&scan.body);
        assert!(
            !scan_text.contains("\"id\":1"),
            "row 0 leaked despite row 1 rejection: {scan_text}"
        );
    }

    #[test]
    fn batch_insert_idempotency_key_replays_cached_result() {
        let server = make_server();
        create_table(&server, "CREATE TABLE events (id INTEGER, name TEXT)");

        let body = r#"[{"fields": {"id": 1, "name": "first"}}]"#;
        let r1 = post_batch(&server, "events", body, Some("replay-token-1"));
        assert_eq!(r1.status, 200);
        let body1 = String::from_utf8_lossy(&r1.body).to_string();

        // Replay with the same key + DIFFERENT body should still
        // return the cached prior result and NOT execute again.
        let other_body = r#"[{"fields": {"id": 2, "name": "second"}}]"#;
        let r2 = post_batch(&server, "events", other_body, Some("replay-token-1"));
        assert_eq!(r2.status, 200);
        assert_eq!(
            String::from_utf8_lossy(&r2.body).to_string(),
            body1,
            "replay must return the cached body byte-for-byte"
        );

        // Storage holds only the first row, proving the replay did
        // not re-execute.
        let scan = server.handle_scan("events", &Default::default());
        let scan_text = String::from_utf8_lossy(&scan.body);
        assert!(scan_text.contains("\"name\":\"first\""), "{scan_text}");
        assert!(
            !scan_text.contains("\"name\":\"second\""),
            "replay re-executed: {scan_text}"
        );
    }

    #[test]
    fn batch_insert_schema_validation_rejects_unknown_field() {
        use crate::runtime::analytics_schema_registry as reg;

        let server = make_server();
        create_table(
            &server,
            "CREATE TABLE events (event_name TEXT, payload TEXT)",
        );

        // Register a schema that only allows {"url"}.
        let schema =
            r#"{"type":"object","properties":{"url":{"type":"string"}},"required":["url"]}"#;
        reg::register(server.runtime().db().store().as_ref(), "click", schema)
            .expect("register schema");

        // Row 1 carries an unknown `extra` field — registry must
        // reject before any commit.
        let body = r#"[
            {"fields": {"event_name": "click", "payload": "{\"url\":\"/a\"}"}},
            {"fields": {"event_name": "click", "payload": "{\"url\":\"/b\",\"extra\":1}"}}
        ]"#;
        let r = post_batch(&server, "events", body, None);
        assert_eq!(r.status, 400, "{}", String::from_utf8_lossy(&r.body));
        let text = String::from_utf8_lossy(&r.body);
        assert!(text.contains("RowSchemaRejected"), "body={text}");
        assert!(text.contains("\"row_index\":1"), "body={text}");

        // Storage is untouched.
        let scan = server.handle_scan("events", &Default::default());
        let scan_text = String::from_utf8_lossy(&scan.body);
        assert!(
            !scan_text.contains("\"url\":\"/a\""),
            "row 0 leaked despite row 1 schema rejection: {scan_text}"
        );
    }
}