maproom 0.1.0

Semantic code search powered by embeddings and SQLite
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
//! FTS5 full-text search module for SQLite backend
//!
//! Provides FTS5-based keyword search with rank normalization for hybrid search integration.
//! FTS5 ranks are normalized to 0-1 scale for Reciprocal Rank Fusion with vector search.

use anyhow::Result;
use once_cell::sync::Lazy;
use regex::Regex;
use rusqlite::{params, Connection, OptionalExtension};

use super::resolve_repo_id;

/// Result from FTS5 search
#[derive(Debug, Clone)]
pub struct FtsResult {
    /// Chunk ID in the chunks table
    pub chunk_id: i64,
    /// Original FTS5 rank (negative, more negative = better)
    pub rank: f64,
    /// Normalized rank 0-1 (higher = better)
    pub normalized_rank: f64,
    /// Position in result set (0-indexed, used for RRF)
    pub position: usize,
}

/// Normalize FTS5 rank to 0-1 scale
///
/// FTS5 rank is negative where more negative = better match.
/// This converts to 0-1 scale where 1 = best match.
///
/// Formula: 1 / (1 + abs(rank))
pub fn normalize_fts_rank(rank: f64) -> f64 {
    1.0 / (1.0 + rank.abs())
}

static SPECIAL_CHAR_REGEX: Lazy<Regex> = Lazy::new(|| Regex::new(r"[^\p{L}\p{N}_\s]").unwrap());

/// Sanitize a search term for FTS5 queries by replacing special characters with spaces.
/// Uses Unicode categories `[^\p{L}\p{N}_\s]` to preserve letters and numbers from any language
/// while removing FTS5 special characters.
///
/// # Examples
/// ```
/// # use maproom::db::sqlite::fts::sanitize_fts_term;
/// assert_eq!(sanitize_fts_term("package.json").trim(), "package json");
/// assert_eq!(sanitize_fts_term("src/main.rs").trim(), "src main rs");
/// assert_eq!(sanitize_fts_term("array[0]").trim(), "array 0");
/// ```
pub fn sanitize_fts_term(term: &str) -> String {
    SPECIAL_CHAR_REGEX.replace_all(term, " ").to_string()
}

/// Build FTS5 query from user input
///
/// Sanitizes special FTS5 characters and builds an OR query with prefix matching.
/// Returns empty string if query is effectively empty after sanitization.
///
/// # FTS5 Syntax Notes
/// - `term*` enables prefix matching (e.g., "func*" matches "function", "func")
/// - OR between terms broadens the search
/// - Special characters like `"`, `'`, `*`, `(`, `)`, `-`, `:` must be removed/escaped
pub fn build_fts_query(query: &str) -> String {
    let words: Vec<String> = query
        .split_whitespace()
        .filter(|t| !t.is_empty())
        .map(|t| {
            // Sanitize: remove FTS5 special characters
            let clean = sanitize_fts_term(t);
            clean.trim().to_string()
        })
        .filter(|t| !t.is_empty())
        .collect();

    if words.is_empty() {
        return String::new();
    }

    // Build OR query with prefix matching
    words
        .iter()
        .flat_map(|w| w.split_whitespace()) // Handle any embedded spaces from replacement
        .filter(|w| !w.is_empty())
        .map(|w| format!("{}*", w))
        .collect::<Vec<_>>()
        .join(" OR ")
}

/// Search chunks using FTS5 full-text search
///
/// This is the core FTS implementation that returns chunk_ids with ranks.
/// The caller should join with chunks table to get full chunk data.
///
/// # Arguments
/// * `conn` - SQLite connection
/// * `repo` - Repository name to filter by
/// * `worktree` - Optional worktree name to filter by
/// * `query` - User's search query
/// * `limit` - Maximum number of results
/// * `kind_filter` - Optional filter for chunk kinds (e.g., "function", "class")
/// * `lang_filter` - Optional filter for file languages (e.g., "rust", "typescript")
///
/// # Returns
/// Vector of FtsResult with chunk_ids, ranks, and positions
pub fn search_fts(
    conn: &Connection,
    repo: &str,
    worktree: Option<&str>,
    query: &str,
    limit: usize,
    kind_filter: Option<&[String]>,
    lang_filter: Option<&[String]>,
) -> Result<Vec<FtsResult>> {
    let fts_query = build_fts_query(query);
    if fts_query.is_empty() {
        return Ok(vec![]);
    }

    // Resolve repo_id with fuzzy matching
    let repo_id = resolve_repo_id(conn, repo)?;

    // Resolve worktree_id if specified
    let worktree_id: Option<i64> = if let Some(w) = worktree {
        conn.query_row(
            "SELECT id FROM worktrees WHERE repo_id = ?1 AND name = ?2",
            params![repo_id, w],
            |row| row.get(0),
        )
        .optional()?
    } else {
        None
    };

    // Build dynamic SQL with filter conditions
    // Base params: ?1 = fts_query, ?2 = repo_id
    // With worktree: ?3 = worktree_id, then filters, then LIMIT
    // Without worktree: filters start at ?3, then LIMIT
    let mut param_idx: usize = if worktree_id.is_some() { 4 } else { 3 };
    let mut filter_conditions = Vec::new();

    if let Some(kinds) = kind_filter {
        if !kinds.is_empty() {
            let placeholders = (0..kinds.len())
                .map(|i| format!("?{}", param_idx + i))
                .collect::<Vec<_>>()
                .join(", ");
            filter_conditions.push(format!("c.kind IN ({})", placeholders));
            param_idx += kinds.len();
        }
    }

    if let Some(langs) = lang_filter {
        if !langs.is_empty() {
            let placeholders = (0..langs.len())
                .map(|i| format!("?{}", param_idx + i))
                .collect::<Vec<_>>()
                .join(", ");
            filter_conditions.push(format!("f.language IN ({})", placeholders));
            param_idx += langs.len();
        }
    }

    let filter_clause = if filter_conditions.is_empty() {
        String::new()
    } else {
        format!(" AND {}", filter_conditions.join(" AND "))
    };

    let limit_placeholder = format!("?{}", param_idx);

    let sql = if worktree_id.is_some() {
        format!(
            r#"
            SELECT c.id, fts_chunks.rank
            FROM fts_chunks
            JOIN chunks c ON c.id = fts_chunks.rowid
            JOIN files f ON f.id = c.file_id
            JOIN chunk_worktrees cw ON cw.chunk_id = c.id
            WHERE fts_chunks MATCH ?1
              AND f.repo_id = ?2
              AND cw.worktree_id = ?3
              {}
            ORDER BY fts_chunks.rank ASC
            LIMIT {}
        "#,
            filter_clause, limit_placeholder
        )
    } else {
        format!(
            r#"
            SELECT DISTINCT c.id, fts_chunks.rank
            FROM fts_chunks
            JOIN chunks c ON c.id = fts_chunks.rowid
            JOIN files f ON f.id = c.file_id
            WHERE fts_chunks MATCH ?1
              AND f.repo_id = ?2
              {}
            ORDER BY fts_chunks.rank ASC
            LIMIT {}
        "#,
            filter_clause, limit_placeholder
        )
    };

    // Build dynamic parameter list
    let mut param_values: Vec<Box<dyn rusqlite::ToSql>> = Vec::new();
    param_values.push(Box::new(fts_query));
    param_values.push(Box::new(repo_id));

    if let Some(wid) = worktree_id {
        param_values.push(Box::new(wid));
    }

    if let Some(kinds) = kind_filter {
        for kind in kinds {
            param_values.push(Box::new(kind.clone()));
        }
    }

    if let Some(langs) = lang_filter {
        for lang in langs {
            param_values.push(Box::new(lang.clone()));
        }
    }

    param_values.push(Box::new(limit as i64));

    let params_refs: Vec<&dyn rusqlite::ToSql> = param_values.iter().map(|p| p.as_ref()).collect();

    let mut stmt = conn.prepare(&sql)?;
    let mut results = Vec::new();

    let rows = stmt.query_map(params_refs.as_slice(), |row| {
        let chunk_id: i64 = row.get(0)?;
        let rank: f64 = row.get(1)?;
        Ok(FtsResult {
            chunk_id,
            rank,
            normalized_rank: normalize_fts_rank(rank),
            position: 0, // Will be set after collecting
        })
    })?;

    for result in rows {
        results.push(result?);
    }

    // Set position (0-indexed rank in result set)
    for (i, result) in results.iter_mut().enumerate() {
        result.position = i;
    }

    Ok(results)
}

/// Count the total number of FTS matches without the LIMIT constraint.
///
/// Executes a COUNT query using the same WHERE clause (MATCH, repo_id, worktree_id,
/// kind_filter, lang_filter) as [`search_fts`] but without LIMIT or ORDER BY.
/// The no-worktree path uses `COUNT(DISTINCT c.id)` to match the main query's
/// `SELECT DISTINCT`.
///
/// Returns 0 for empty queries.
pub fn count_fts_matches(
    conn: &Connection,
    repo: &str,
    worktree: Option<&str>,
    query: &str,
    kind_filter: Option<&[String]>,
    lang_filter: Option<&[String]>,
) -> Result<usize> {
    let fts_query = build_fts_query(query);
    if fts_query.is_empty() {
        return Ok(0);
    }

    // Resolve repo_id with fuzzy matching
    let repo_id = resolve_repo_id(conn, repo)?;

    // Resolve worktree_id if specified
    let worktree_id: Option<i64> = if let Some(w) = worktree {
        conn.query_row(
            "SELECT id FROM worktrees WHERE repo_id = ?1 AND name = ?2",
            params![repo_id, w],
            |row| row.get(0),
        )
        .optional()?
    } else {
        None
    };

    // Build dynamic filter conditions (same logic as search_fts)
    let mut param_idx: usize = if worktree_id.is_some() { 4 } else { 3 };
    let mut filter_conditions = Vec::new();

    if let Some(kinds) = kind_filter {
        if !kinds.is_empty() {
            let placeholders = (0..kinds.len())
                .map(|i| format!("?{}", param_idx + i))
                .collect::<Vec<_>>()
                .join(", ");
            filter_conditions.push(format!("c.kind IN ({})", placeholders));
            param_idx += kinds.len();
        }
    }

    if let Some(langs) = lang_filter {
        if !langs.is_empty() {
            let placeholders = (0..langs.len())
                .map(|i| format!("?{}", param_idx + i))
                .collect::<Vec<_>>()
                .join(", ");
            filter_conditions.push(format!("f.language IN ({})", placeholders));
            let _ = param_idx; // suppress unused assignment warning
        }
    }

    let filter_clause = if filter_conditions.is_empty() {
        String::new()
    } else {
        format!(" AND {}", filter_conditions.join(" AND "))
    };

    let count_sql = if worktree_id.is_some() {
        format!(
            r#"
            SELECT COUNT(*)
            FROM fts_chunks
            JOIN chunks c ON c.id = fts_chunks.rowid
            JOIN files f ON f.id = c.file_id
            JOIN chunk_worktrees cw ON cw.chunk_id = c.id
            WHERE fts_chunks MATCH ?1
              AND f.repo_id = ?2
              AND cw.worktree_id = ?3
              {}
            "#,
            filter_clause
        )
    } else {
        format!(
            r#"
            SELECT COUNT(DISTINCT c.id)
            FROM fts_chunks
            JOIN chunks c ON c.id = fts_chunks.rowid
            JOIN files f ON f.id = c.file_id
            WHERE fts_chunks MATCH ?1
              AND f.repo_id = ?2
              {}
            "#,
            filter_clause
        )
    };

    // Build parameter list (same as search_fts but without LIMIT)
    let mut param_values: Vec<Box<dyn rusqlite::ToSql>> = Vec::new();
    param_values.push(Box::new(fts_query));
    param_values.push(Box::new(repo_id));

    if let Some(wid) = worktree_id {
        param_values.push(Box::new(wid));
    }

    if let Some(kinds) = kind_filter {
        for kind in kinds {
            param_values.push(Box::new(kind.clone()));
        }
    }

    if let Some(langs) = lang_filter {
        for lang in langs {
            param_values.push(Box::new(lang.clone()));
        }
    }

    let params_refs: Vec<&dyn rusqlite::ToSql> = param_values.iter().map(|p| p.as_ref()).collect();

    let total_count: i64 = conn.query_row(&count_sql, params_refs.as_slice(), |row| row.get(0))?;

    Ok(total_count as usize)
}

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

    #[test]
    fn test_normalize_fts_rank_best_match() {
        // FTS5 rank of 0 (best possible) should normalize to 1.0
        let normalized = normalize_fts_rank(0.0);
        assert!(
            (normalized - 1.0).abs() < 1e-6,
            "Rank 0 should normalize to 1.0"
        );
    }

    #[test]
    fn test_normalize_fts_rank_negative() {
        // FTS5 rank of -1.0 should normalize to 0.5
        let normalized = normalize_fts_rank(-1.0);
        assert!(
            (normalized - 0.5).abs() < 1e-6,
            "Rank -1.0 should normalize to 0.5"
        );
    }

    #[test]
    fn test_normalize_fts_rank_large_negative() {
        // Large negative rank should give low normalized score
        let normalized = normalize_fts_rank(-10.0);
        assert!(
            normalized < 0.1,
            "Large negative rank should give low score"
        );
        assert!(normalized > 0.0, "Normalized rank should be positive");
    }

    #[test]
    fn test_normalize_fts_rank_monotonic() {
        // More negative rank = worse match = lower normalized score
        let rank0 = normalize_fts_rank(0.0);
        let rank1 = normalize_fts_rank(-1.0);
        let rank5 = normalize_fts_rank(-5.0);

        assert!(rank0 > rank1, "Rank 0 should be better than -1");
        assert!(rank1 > rank5, "Rank -1 should be better than -5");
    }

    #[test]
    fn test_normalize_fts_rank_range() {
        // All normalized ranks should be in (0, 1]
        for rank in [0.0, -0.5, -1.0, -5.0, -100.0] {
            let normalized = normalize_fts_rank(rank);
            assert!(
                normalized > 0.0 && normalized <= 1.0,
                "Normalized rank should be in (0, 1], got {} for rank {}",
                normalized,
                rank
            );
        }
    }

    #[test]
    fn test_build_fts_query_simple() {
        let query = build_fts_query("hello");
        assert_eq!(query, "hello*");
    }

    #[test]
    fn test_build_fts_query_multiple_words() {
        let query = build_fts_query("hello world");
        assert_eq!(query, "hello* OR world*");
    }

    #[test]
    fn test_build_fts_query_sanitize_quotes() {
        let query = build_fts_query("\"hello\" 'world'");
        assert_eq!(query, "hello* OR world*");
    }

    #[test]
    fn test_build_fts_query_sanitize_wildcards() {
        let query = build_fts_query("hello* world*");
        assert_eq!(query, "hello* OR world*");
    }

    #[test]
    fn test_build_fts_query_sanitize_parens() {
        let query = build_fts_query("(hello) (world)");
        assert_eq!(query, "hello* OR world*");
    }

    #[test]
    fn test_build_fts_query_empty() {
        let query = build_fts_query("");
        assert!(query.is_empty());
    }

    #[test]
    fn test_build_fts_query_only_special_chars() {
        let query = build_fts_query("\"\" '*' ()");
        assert!(query.is_empty());
    }

    #[test]
    fn test_build_fts_query_hyphen_handling() {
        // Hyphen should be treated as word separator
        let query = build_fts_query("some-function");
        assert_eq!(query, "some* OR function*");
    }

    #[test]
    fn test_build_fts_query_colon_handling() {
        // Colon should be treated as word separator
        let query = build_fts_query("module:function");
        assert_eq!(query, "module* OR function*");
    }

    #[test]
    fn test_build_fts_query_comprehensive_sanitization() {
        // Dots (file extensions)
        let query = build_fts_query("package.json");
        assert_eq!(query, "package* OR json*");

        // Slashes (file paths)
        let query = build_fts_query("src/main.rs");
        assert_eq!(query, "src* OR main* OR rs*");

        // Brackets (array syntax)
        let query = build_fts_query("array[0]");
        assert_eq!(query, "array* OR 0*");

        // Braces (template syntax)
        let query = build_fts_query("template{value}");
        assert_eq!(query, "template* OR value*");

        // At sign (email/decorators)
        let query = build_fts_query("user@email.com");
        assert_eq!(query, "user* OR email* OR com*");

        // Backslash (Windows paths)
        let query = build_fts_query("path\\to\\file");
        assert_eq!(query, "path* OR to* OR file*");

        // Mixed special characters
        let query = build_fts_query("src/main@v2.rs");
        assert_eq!(query, "src* OR main* OR v2* OR rs*");

        // Operators
        let query = build_fts_query("a+b=c");
        assert_eq!(query, "a* OR b* OR c*");
    }

    #[test]
    fn test_build_fts_query_whitespace() {
        let query = build_fts_query("  hello   world  ");
        assert_eq!(query, "hello* OR world*");
    }

    // ==================== Filter Generation / search_fts Tests ====================

    /// Create a minimal in-memory SQLite database with the schema needed for search_fts.
    fn setup_fts_test_db() -> Connection {
        let conn = Connection::open_in_memory().unwrap();
        conn.execute_batch(
            "
            CREATE TABLE repos (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                name TEXT NOT NULL UNIQUE,
                root_path TEXT NOT NULL
            );
            CREATE TABLE worktrees (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                repo_id INTEGER NOT NULL REFERENCES repos(id),
                name TEXT NOT NULL,
                abs_path TEXT NOT NULL,
                UNIQUE(repo_id, name)
            );
            CREATE TABLE commits (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                repo_id INTEGER NOT NULL REFERENCES repos(id),
                sha TEXT NOT NULL,
                committed_at DATETIME,
                UNIQUE(repo_id, sha)
            );
            CREATE TABLE files (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                repo_id INTEGER NOT NULL REFERENCES repos(id),
                worktree_id INTEGER NOT NULL REFERENCES worktrees(id),
                commit_id INTEGER NOT NULL REFERENCES commits(id),
                relpath TEXT NOT NULL,
                language TEXT,
                content_hash TEXT NOT NULL,
                size_bytes INTEGER NOT NULL,
                last_modified DATETIME,
                UNIQUE(commit_id, relpath, content_hash)
            );
            CREATE TABLE chunks (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                file_id INTEGER NOT NULL REFERENCES files(id),
                blob_sha TEXT NOT NULL,
                symbol_name TEXT,
                kind TEXT NOT NULL,
                signature TEXT,
                docstring TEXT,
                start_line INTEGER NOT NULL,
                end_line INTEGER NOT NULL,
                preview TEXT NOT NULL,
                ts_doc_text TEXT,
                recency_score REAL NOT NULL,
                churn_score REAL NOT NULL,
                metadata JSON,
                UNIQUE(file_id, start_line, end_line)
            );
            CREATE TABLE chunk_worktrees (
                chunk_id INTEGER NOT NULL REFERENCES chunks(id),
                worktree_id INTEGER NOT NULL REFERENCES worktrees(id),
                PRIMARY KEY (chunk_id, worktree_id)
            );
            CREATE VIRTUAL TABLE fts_chunks USING fts5(
                content,
                docstring,
                symbol_name,
                content='chunks',
                content_rowid='id'
            );
            ",
        )
        .unwrap();
        conn
    }

    /// Insert a chunk with a specific kind, language, and searchable text into the test DB.
    /// Returns the chunk_id.
    fn insert_test_chunk(
        conn: &Connection,
        repo_id: i64,
        worktree_id: i64,
        commit_id: i64,
        relpath: &str,
        language: &str,
        kind: &str,
        symbol_name: &str,
        preview: &str,
        start_line: i32,
    ) -> i64 {
        // Upsert file (may already exist for same relpath)
        let content_hash = format!("hash_{}_{}", relpath, start_line);
        conn.execute(
            "INSERT OR IGNORE INTO files (repo_id, worktree_id, commit_id, relpath, language, content_hash, size_bytes)
             VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7)",
            params![repo_id, worktree_id, commit_id, relpath, language, content_hash, 100],
        )
        .unwrap();

        let file_id: i64 = conn
            .query_row(
                "SELECT id FROM files WHERE relpath = ?1 AND commit_id = ?2",
                params![relpath, commit_id],
                |row| row.get(0),
            )
            .unwrap();

        let blob_sha = format!("blob_{}_{}", symbol_name, start_line);
        let end_line = start_line + 10;

        conn.execute(
            "INSERT INTO chunks (file_id, blob_sha, symbol_name, kind, start_line, end_line, preview, ts_doc_text, recency_score, churn_score)
             VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)",
            params![file_id, blob_sha, symbol_name, kind, start_line, end_line, preview, preview, 1.0, 0.5],
        )
        .unwrap();

        let chunk_id: i64 = conn
            .query_row(
                "SELECT id FROM chunks WHERE file_id = ?1 AND start_line = ?2 AND end_line = ?3",
                params![file_id, start_line, end_line],
                |row| row.get(0),
            )
            .unwrap();

        // Insert into chunk_worktrees junction
        conn.execute(
            "INSERT OR IGNORE INTO chunk_worktrees (chunk_id, worktree_id) VALUES (?1, ?2)",
            params![chunk_id, worktree_id],
        )
        .unwrap();

        // Insert into FTS
        conn.execute(
            "INSERT OR REPLACE INTO fts_chunks(rowid, content, docstring, symbol_name) VALUES (?1, ?2, ?3, ?4)",
            params![chunk_id, preview, preview, symbol_name],
        )
        .unwrap();

        chunk_id
    }

    /// Set up a test database with diverse test data for filter testing.
    /// Returns (conn, repo_id, worktree_id, commit_id).
    fn setup_filter_test_data() -> (Connection, i64, i64, i64) {
        let conn = setup_fts_test_db();

        conn.execute(
            "INSERT INTO repos (name, root_path) VALUES ('test-repo', '/tmp/test')",
            [],
        )
        .unwrap();
        let repo_id: i64 = conn.last_insert_rowid();

        conn.execute(
            "INSERT INTO worktrees (repo_id, name, abs_path) VALUES (?1, 'main', '/tmp/test')",
            params![repo_id],
        )
        .unwrap();
        let worktree_id: i64 = conn.last_insert_rowid();

        conn.execute(
            "INSERT INTO commits (repo_id, sha) VALUES (?1, 'abc123')",
            params![repo_id],
        )
        .unwrap();
        let commit_id: i64 = conn.last_insert_rowid();

        // Insert diverse chunks:
        // Python functions
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/auth.py",
            "py",
            "func",
            "authenticate_user",
            "def authenticate_user(): pass",
            1,
        );
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/auth.py",
            "py",
            "class",
            "AuthManager",
            "class AuthManager: authenticate logic",
            20,
        );

        // TypeScript functions and classes
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/user.ts",
            "ts",
            "func",
            "getUser",
            "function getUser() authenticate fetch",
            1,
        );
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/user.ts",
            "ts",
            "class",
            "UserService",
            "class UserService authenticate",
            20,
        );
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/user.ts",
            "ts",
            "method",
            "findById",
            "method findById authenticate search",
            40,
        );

        // Rust functions
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/main.rs",
            "rs",
            "func",
            "main_authenticate",
            "fn main_authenticate() authenticate",
            1,
        );
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "src/main.rs",
            "rs",
            "import",
            "use_auth",
            "use auth authenticate module",
            20,
        );

        // Markdown headings
        insert_test_chunk(
            &conn,
            repo_id,
            worktree_id,
            commit_id,
            "docs/auth.md",
            "md",
            "heading_2",
            "auth_docs",
            "authenticate documentation guide",
            1,
        );

        (conn, repo_id, worktree_id, commit_id)
    }

    #[test]
    fn test_filter_generation_no_filters() {
        let (conn, _, _, _) = setup_filter_test_data();

        // No filters should return all matching results
        let results = search_fts(&conn, "test-repo", None, "authenticate", 50, None, None).unwrap();

        // All 8 chunks mention "authenticate" in their content
        assert!(
            results.len() >= 6,
            "No filters should return many results, got {}",
            results.len()
        );
    }

    #[test]
    fn test_filter_generation_kind_only_single() {
        let (conn, _, _, _) = setup_filter_test_data();

        let kind_filter = vec!["func".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&kind_filter),
            None,
        )
        .unwrap();

        // Should only return func chunks
        for result in &results {
            // Verify all returned chunks have kind == "func"
            let kind: String = conn
                .query_row(
                    "SELECT kind FROM chunks WHERE id = ?1",
                    params![result.chunk_id],
                    |row| row.get(0),
                )
                .unwrap();
            assert_eq!(kind, "func", "Expected kind 'func', got '{}'", kind);
        }
        assert!(!results.is_empty(), "Should find at least one func chunk");
    }

    #[test]
    fn test_filter_generation_kind_only_multiple() {
        let (conn, _, _, _) = setup_filter_test_data();

        let kind_filter = vec![
            "func".to_string(),
            "class".to_string(),
            "method".to_string(),
        ];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&kind_filter),
            None,
        )
        .unwrap();

        // Should return func, class, and method chunks
        for result in &results {
            let kind: String = conn
                .query_row(
                    "SELECT kind FROM chunks WHERE id = ?1",
                    params![result.chunk_id],
                    |row| row.get(0),
                )
                .unwrap();
            assert!(
                kind == "func" || kind == "class" || kind == "method",
                "Expected kind in [func, class, method], got '{}'",
                kind,
            );
        }
        assert!(
            results.len() >= 3,
            "Should find multiple chunk kinds, got {}",
            results.len()
        );
    }

    #[test]
    fn test_filter_generation_lang_only_single() {
        let (conn, _, _, _) = setup_filter_test_data();

        let lang_filter = vec!["py".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            None,
            Some(&lang_filter),
        )
        .unwrap();

        // Should only return chunks from Python files
        for result in &results {
            let language: String = conn
                .query_row(
                    "SELECT f.language FROM chunks c JOIN files f ON f.id = c.file_id WHERE c.id = ?1",
                    params![result.chunk_id],
                    |row| row.get(0),
                )
                .unwrap();
            assert_eq!(language, "py", "Expected language 'py', got '{}'", language);
        }
        assert!(!results.is_empty(), "Should find at least one py chunk");
    }

    #[test]
    fn test_filter_generation_lang_only_multiple() {
        let (conn, _, _, _) = setup_filter_test_data();

        let lang_filter = vec!["py".to_string(), "ts".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            None,
            Some(&lang_filter),
        )
        .unwrap();

        for result in &results {
            let language: String = conn
                .query_row(
                    "SELECT f.language FROM chunks c JOIN files f ON f.id = c.file_id WHERE c.id = ?1",
                    params![result.chunk_id],
                    |row| row.get(0),
                )
                .unwrap();
            assert!(
                language == "py" || language == "ts",
                "Expected language in [py, ts], got '{}'",
                language,
            );
        }
        assert!(
            results.len() >= 3,
            "Should find results from py and ts files, got {}",
            results.len()
        );
    }

    #[test]
    fn test_filter_generation_both_filters() {
        let (conn, _, _, _) = setup_filter_test_data();

        let kind_filter = vec!["func".to_string()];
        let lang_filter = vec!["py".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&kind_filter),
            Some(&lang_filter),
        )
        .unwrap();

        // Should only return func chunks from py files (AND semantics)
        for result in &results {
            let (kind, language): (String, String) = conn
                .query_row(
                    "SELECT c.kind, f.language FROM chunks c JOIN files f ON f.id = c.file_id WHERE c.id = ?1",
                    params![result.chunk_id],
                    |row| Ok((row.get(0)?, row.get(1)?)),
                )
                .unwrap();
            assert_eq!(kind, "func", "Expected kind 'func', got '{}'", kind);
            assert_eq!(language, "py", "Expected language 'py', got '{}'", language);
        }
        // We know there is exactly 1 Python func: authenticate_user
        assert_eq!(
            results.len(),
            1,
            "Should find exactly 1 py func chunk, got {}",
            results.len()
        );
    }

    #[test]
    fn test_filter_generation_empty_array_treated_as_none() {
        let (conn, _, _, _) = setup_filter_test_data();

        // Empty arrays should behave the same as None
        let results_none =
            search_fts(&conn, "test-repo", None, "authenticate", 50, None, None).unwrap();

        let empty_kind: Vec<String> = vec![];
        let empty_lang: Vec<String> = vec![];
        let results_empty = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&empty_kind),
            Some(&empty_lang),
        )
        .unwrap();

        assert_eq!(
            results_none.len(),
            results_empty.len(),
            "Empty filter arrays should return same results as None. None={}, Empty={}",
            results_none.len(),
            results_empty.len(),
        );
    }

    #[test]
    fn test_parameter_index_calculation() {
        // Test with worktree specified + both filters to validate param index arithmetic
        let (conn, _, _, _) = setup_filter_test_data();

        let kind_filter = vec!["func".to_string(), "class".to_string()];
        let lang_filter = vec!["py".to_string(), "ts".to_string(), "rs".to_string()];

        // With worktree (adds worktree_id param, shifting indices)
        let results = search_fts(
            &conn,
            "test-repo",
            Some("main"),
            "authenticate",
            50,
            Some(&kind_filter),
            Some(&lang_filter),
        )
        .unwrap();

        // Should return func and class chunks from py, ts, or rs files
        for result in &results {
            let (kind, language): (String, String) = conn
                .query_row(
                    "SELECT c.kind, f.language FROM chunks c JOIN files f ON f.id = c.file_id WHERE c.id = ?1",
                    params![result.chunk_id],
                    |row| Ok((row.get(0)?, row.get(1)?)),
                )
                .unwrap();
            assert!(
                kind == "func" || kind == "class",
                "Expected kind in [func, class], got '{}'",
                kind,
            );
            assert!(
                language == "py" || language == "ts" || language == "rs",
                "Expected language in [py, ts, rs], got '{}'",
                language,
            );
        }
        assert!(
            !results.is_empty(),
            "Should find results with combined filters"
        );
    }

    #[test]
    fn test_filter_nonexistent_kind_returns_empty() {
        let (conn, _, _, _) = setup_filter_test_data();

        let kind_filter = vec!["nonexistent_kind".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&kind_filter),
            None,
        )
        .unwrap();

        assert!(
            results.is_empty(),
            "Nonexistent kind should return empty results, got {}",
            results.len(),
        );
    }

    #[test]
    fn test_filter_nonexistent_lang_returns_empty() {
        let (conn, _, _, _) = setup_filter_test_data();

        let lang_filter = vec!["nonexistent_lang".to_string()];
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            None,
            Some(&lang_filter),
        )
        .unwrap();

        assert!(
            results.is_empty(),
            "Nonexistent lang should return empty results, got {}",
            results.len(),
        );
    }

    #[test]
    fn test_filter_long_kind_list() {
        let (conn, _, _, _) = setup_filter_test_data();

        // Test with 10+ kind values to ensure SQL generation handles long lists
        let kind_filter: Vec<String> = vec![
            "func",
            "class",
            "method",
            "import",
            "heading_2",
            "variable",
            "constant",
            "interface",
            "enum",
            "trait",
            "module",
        ]
        .into_iter()
        .map(String::from)
        .collect();

        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            50,
            Some(&kind_filter),
            None,
        )
        .unwrap();

        // Should still work and return results for the kinds that match
        assert!(
            !results.is_empty(),
            "Long kind list should still return results"
        );
    }

    // ==================== count_fts_matches Tests ====================

    #[test]
    fn test_count_matches_actual_when_k_exceeds_results() {
        let (conn, _, _, _) = setup_filter_test_data();

        // Use a large limit (k=100) so all results are returned
        let results =
            search_fts(&conn, "test-repo", None, "authenticate", 100, None, None).unwrap();
        let count =
            count_fts_matches(&conn, "test-repo", None, "authenticate", None, None).unwrap();

        // When k > total matches, count should equal results.len()
        assert_eq!(
            count,
            results.len(),
            "Count ({}) should match actual results ({}) when k > total matches",
            count,
            results.len()
        );
    }

    #[test]
    fn test_count_exceeds_k_when_truncated() {
        let (conn, _, _, _) = setup_filter_test_data();

        // First, get total count with no limit
        let total_count =
            count_fts_matches(&conn, "test-repo", None, "authenticate", None, None).unwrap();
        assert!(
            total_count > 2,
            "Need more than 2 results for this test, got {}",
            total_count
        );

        // Now search with k=2 to force truncation
        let results = search_fts(&conn, "test-repo", None, "authenticate", 2, None, None).unwrap();

        assert_eq!(results.len(), 2, "Should return exactly k=2 results");
        assert!(
            total_count > results.len(),
            "Total count ({}) should exceed truncated results ({})",
            total_count,
            results.len()
        );
    }

    #[test]
    fn test_count_respects_kind_filter() {
        let (conn, _, _, _) = setup_filter_test_data();

        // Get unfiltered count
        let unfiltered_count =
            count_fts_matches(&conn, "test-repo", None, "authenticate", None, None).unwrap();

        // Get count with kind=["func"] filter
        let kind_filter = vec!["func".to_string()];
        let filtered_count = count_fts_matches(
            &conn,
            "test-repo",
            None,
            "authenticate",
            Some(&kind_filter),
            None,
        )
        .unwrap();

        // Filtered count should be less than unfiltered (we have classes, imports, etc.)
        assert!(
            filtered_count < unfiltered_count,
            "Kind-filtered count ({}) should be less than unfiltered count ({})",
            filtered_count,
            unfiltered_count
        );
        assert!(
            filtered_count > 0,
            "Kind-filtered count should be > 0 (we have func chunks)"
        );

        // Verify count matches actual search results
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            100,
            Some(&kind_filter),
            None,
        )
        .unwrap();
        assert_eq!(
            filtered_count,
            results.len(),
            "Filtered count ({}) should match filtered results ({})",
            filtered_count,
            results.len()
        );
    }

    #[test]
    fn test_count_respects_lang_filter() {
        let (conn, _, _, _) = setup_filter_test_data();

        // Get unfiltered count
        let unfiltered_count =
            count_fts_matches(&conn, "test-repo", None, "authenticate", None, None).unwrap();

        // Get count with lang=["py"] filter
        let lang_filter = vec!["py".to_string()];
        let filtered_count = count_fts_matches(
            &conn,
            "test-repo",
            None,
            "authenticate",
            None,
            Some(&lang_filter),
        )
        .unwrap();

        // Filtered count should be less than unfiltered (we have ts, rs, md chunks)
        assert!(
            filtered_count < unfiltered_count,
            "Lang-filtered count ({}) should be less than unfiltered count ({})",
            filtered_count,
            unfiltered_count
        );
        assert!(
            filtered_count > 0,
            "Lang-filtered count should be > 0 (we have py chunks)"
        );

        // Verify count matches actual search results
        let results = search_fts(
            &conn,
            "test-repo",
            None,
            "authenticate",
            100,
            None,
            Some(&lang_filter),
        )
        .unwrap();
        assert_eq!(
            filtered_count,
            results.len(),
            "Filtered count ({}) should match filtered results ({})",
            filtered_count,
            results.len()
        );
    }

    #[test]
    fn test_count_respects_worktree_filter() {
        let conn = setup_fts_test_db();

        // Create repo with two worktrees
        conn.execute(
            "INSERT INTO repos (name, root_path) VALUES ('wt-repo', '/tmp/wt')",
            [],
        )
        .unwrap();
        let repo_id: i64 = conn.last_insert_rowid();

        conn.execute(
            "INSERT INTO worktrees (repo_id, name, abs_path) VALUES (?1, 'main', '/tmp/wt/main')",
            params![repo_id],
        )
        .unwrap();
        let wt_main: i64 = conn.last_insert_rowid();

        conn.execute(
            "INSERT INTO worktrees (repo_id, name, abs_path) VALUES (?1, 'feature', '/tmp/wt/feature')",
            params![repo_id],
        )
        .unwrap();
        let wt_feature: i64 = conn.last_insert_rowid();

        conn.execute(
            "INSERT INTO commits (repo_id, sha) VALUES (?1, 'sha1')",
            params![repo_id],
        )
        .unwrap();
        let commit_id: i64 = conn.last_insert_rowid();

        // Insert 3 chunks in main worktree
        for i in 0..3 {
            insert_test_chunk(
                &conn,
                repo_id,
                wt_main,
                commit_id,
                &format!("main_{}.rs", i),
                "rs",
                "func",
                &format!("main_fn_{}", i),
                "searchable main function",
                i * 20,
            );
        }

        // Insert 1 chunk in feature worktree
        insert_test_chunk(
            &conn,
            repo_id,
            wt_feature,
            commit_id,
            "feature_0.rs",
            "rs",
            "func",
            "feature_fn_0",
            "searchable feature function",
            0,
        );

        // Count for main worktree should be 3
        let main_count =
            count_fts_matches(&conn, "wt-repo", Some("main"), "searchable", None, None).unwrap();
        assert_eq!(main_count, 3, "Main worktree should have 3 matches");

        // Count for feature worktree should be 1
        let feature_count =
            count_fts_matches(&conn, "wt-repo", Some("feature"), "searchable", None, None).unwrap();
        assert_eq!(feature_count, 1, "Feature worktree should have 1 match");

        // Count without worktree should be >= 4 (all chunks across worktrees)
        let all_count =
            count_fts_matches(&conn, "wt-repo", None, "searchable", None, None).unwrap();
        assert!(
            all_count >= 4,
            "All worktrees count ({}) should be >= 4",
            all_count
        );
    }

    #[test]
    fn test_count_with_zero_k() {
        // Test FTS search with k=0 (should return empty Vec but count may be non-zero)
        let (conn, _, _, _) = setup_filter_test_data();

        let hits = search_fts(&conn, "test-repo", None, "authenticate", 0, None, None).unwrap();
        assert_eq!(hits.len(), 0, "k=0 should return empty results");

        // total_count may be > 0 if matches exist
        let total_count =
            count_fts_matches(&conn, "test-repo", None, "authenticate", None, None).unwrap();
        assert!(
            total_count > 0,
            "COUNT should find matches even when k=0, got {}",
            total_count
        );
    }

    #[test]
    fn test_count_empty_query_returns_zero() {
        let (conn, _, _, _) = setup_filter_test_data();

        let count = count_fts_matches(&conn, "test-repo", None, "", None, None).unwrap();
        assert_eq!(count, 0, "Empty query should return count of 0");

        let count = count_fts_matches(&conn, "test-repo", None, "   ", None, None).unwrap();
        assert_eq!(count, 0, "Whitespace-only query should return count of 0");
    }
}