codeix 0.5.0

Fast semantic code search for AI agents — find symbols, references, and callers across any codebase
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
use std::collections::{BTreeSet, HashMap};
use std::path::{Path, PathBuf};
use std::sync::mpsc::{Receiver, Sender};
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};

use anyhow::{Context, Result};
use notify::event::EventKind;

use crate::index::format::{FileEntry, IndexManifest};
use crate::index::reader::read_index;
use crate::index::writer::write_index;
use crate::mount::{FsEvent, MountMode, MountTable, MountedEvent, is_removal_event};
use crate::parser::languages::detect_language;
use crate::parser::metadata::extract_file_metadata;
use crate::parser::treesitter::parse_file;
use crate::server::db::SearchDb;
use crate::utils::hasher::hash_bytes;

const DEBOUNCE_DELAY: Duration = Duration::from_millis(500);
const POLL_INTERVAL: Duration = Duration::from_millis(1000);
/// Trigger file name for external flush requests (e.g., from `codeix build` when server holds lock).
/// Written at project root (not inside .codeindex/) so inotify picks it up.
const FLUSH_TRIGGER_FILE: &str = ".codeindex.flush";
/// How long to wait for server to flush before timing out
const FLUSH_TIMEOUT: Duration = Duration::from_secs(30);
/// How often to poll for trigger file deletion
const FLUSH_POLL_INTERVAL: Duration = Duration::from_millis(100);

/// Run the main event loop for file watching.
///
/// Receives events from all mounts via `rx` (notify watchers already initialized).
/// Each event includes the mount root, avoiding the need for mount lookup.
/// Uses `tx` for passing to new project discoveries.
pub fn run_event_loop(
    rx: Receiver<MountedEvent>,
    tx: Sender<MountedEvent>,
    mount_table: Arc<Mutex<MountTable>>,
    db: Arc<Mutex<SearchDb>>,
) -> Result<()> {
    let total_watched = {
        let mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
        mt.iter().map(|(_, m)| m.watched_count()).sum::<usize>()
    };

    tracing::info!("event loop ready ({} directories watched)", total_watched);

    // Debounce state: path -> (last event time, event kind, mount root)
    let mut pending: HashMap<PathBuf, (Instant, EventKind, PathBuf)> = HashMap::new();

    loop {
        // Wait for events with timeout
        match rx.recv_timeout(POLL_INTERVAL) {
            Ok((mount_root, Ok(event))) => {
                let now = Instant::now();
                for path in event.paths {
                    pending.insert(path, (now, event.kind, mount_root.clone()));
                }
            }
            Ok((_, Err(e))) => {
                tracing::warn!("notify error: {}", e);
            }
            Err(std::sync::mpsc::RecvTimeoutError::Timeout) => {
                // Check for debounced events ready to process
            }
            Err(std::sync::mpsc::RecvTimeoutError::Disconnected) => {
                // Flush all dirty mounts before shutting down
                let flushed = flush_dirty_mounts(&mount_table, &db)?;
                tracing::info!(
                    "event loop channel closed, flushed {} projects, shutting down",
                    flushed
                );
                break;
            }
        }

        // Process debounced events
        let now = Instant::now();
        let ready: Vec<(PathBuf, EventKind, PathBuf)> = pending
            .iter()
            .filter(|&(_, (time, _, _))| now.duration_since(*time) >= DEBOUNCE_DELAY)
            .map(|(path, (_, kind, mount_root))| (path.clone(), *kind, mount_root.clone()))
            .collect();

        if !ready.is_empty() {
            for (path, _, _) in &ready {
                pending.remove(path);
            }

            if let Err(e) = handle_events(&ready, &mount_table, &db, tx.clone()) {
                tracing::error!("error handling watch events: {}", e);
            }
        }

        // Note: Auto-flush disabled (issue #10). Use flush_index MCP tool to flush explicitly.
        // Mounts are still marked dirty and will be flushed on graceful shutdown.
        // External flush requests via .codeindex.flush are handled in handle_events().
    }

    Ok(())
}

/// Handle when a project is discovered (during walk or watch).
/// Mounts the project and loads/indexes it.
///
/// Parameters:
/// - `load_from_cache`: If true (serve mode), try loading from .codeindex/ first.
///   If false (build mode), always re-index
/// - `tx`: If provided, initializes file watcher during walk
///
/// Flow:
/// 1. If already mounted, skip
/// 2. Try mount RW, fall back to RO if lock is held
/// 3. In build mode with RO: request flush via trigger file and wait
/// 4. If load_from_cache && .codeindex/ exists, load from disk
/// 5. Otherwise, index files (walks and discovers subprojects)
pub fn on_project_discovery(
    project_root: &Path,
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
    load_from_cache: bool,
    tx: Option<Sender<MountedEvent>>,
) -> Result<()> {
    let mut mt = mount_table
        .lock()
        .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;

    // Check if already mounted (exact match, not prefix match)
    let canonical = project_root
        .canonicalize()
        .with_context(|| format!("failed to canonicalize {:?}", project_root))?;
    if mt.is_mounted(&canonical) {
        return Ok(());
    }

    // Mount the new project (tries RW, falls back to RO if lock held)
    let mount = mt.mount(project_root)?;
    let is_read_only = mount.mode == MountMode::ReadOnly;

    let project_name = project_root
        .file_name()
        .and_then(|n| n.to_str())
        .unwrap_or("unknown");
    let project_str = mt.relative_project(project_root);
    let mode_str = if is_read_only { "RO" } else { "RW" };

    // In build mode (load_from_cache=false), RO means lock is held by another process.
    // Request flush via trigger file and wait for completion.
    if !load_from_cache && is_read_only {
        // Unmount since we won't use it
        let _ = mt.unmount(project_root);
        drop(mt);

        tracing::info!(
            "lock held by another process for '{}', requesting flush",
            project_name
        );
        return request_flush_and_wait(project_root);
    }

    drop(mt);

    // Try loading from .codeindex/ first (only if load_from_cache is true)
    let index_dir = project_root.join(".codeindex");
    if load_from_cache && index_dir.is_dir() {
        match read_index(&index_dir) {
            Ok((manifest, idx_files, idx_symbols, idx_texts, idx_refs)) => {
                let db_guard = db
                    .lock()
                    .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
                db_guard
                    .load(
                        &project_str,
                        &idx_files,
                        &idx_symbols,
                        &idx_texts,
                        &idx_refs,
                    )
                    .with_context(|| format!("failed to load index for '{}'", project_name))?;
                drop(db_guard);

                tracing::info!(
                    "loaded '{}' ({}) from .codeindex/: {} files, {} symbols, {} texts, {} refs",
                    manifest.name,
                    mode_str,
                    idx_files.len(),
                    idx_symbols.len(),
                    idx_texts.len(),
                    idx_refs.len()
                );

                // Walk to set up directory watches and discover subprojects.
                // Subprojects are loaded from their own .codeindex/ directories.
                // Even if tx=None (no watcher), we still need to discover subprojects.
                init_watchers_and_discover_subprojects(project_root, mount_table, db, tx)?;

                // Loaded from cache - no need to index files
                return Ok(());
            }
            Err(e) => {
                if is_read_only {
                    // Can't rebuild in RO mode, just warn
                    tracing::warn!(
                        "failed to read .codeindex/ for '{}' (read-only): {}",
                        project_name,
                        e
                    );
                    return Ok(());
                }
                tracing::warn!(
                    "failed to read .codeindex/ for '{}', rebuilding: {}",
                    project_name,
                    e
                );
                // Fall through to index files
            }
        }
    } else if is_read_only && load_from_cache {
        // No .codeindex/ and read-only in serve mode - nothing to do
        tracing::info!(
            "mounted '{}' ({}) - no .codeindex/, read-only",
            project_name,
            mode_str
        );
        return Ok(());
    }

    tracing::info!("indexing '{}' ({})", project_name, mode_str);

    // Walk and index all files in the new project (also discovers subprojects)
    walk_project(project_root, mount_table, db, load_from_cache, tx)?;

    Ok(())
}

/// Initialize file watchers and discover subprojects without re-indexing files.
/// Used when loading from cache in watch mode - we have the index but need watchers.
/// Subprojects are discovered and loaded from their own .codeindex/ directories.
fn init_watchers_and_discover_subprojects(
    project_root: &Path,
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
    tx: Option<Sender<MountedEvent>>,
) -> Result<()> {
    // Collect subprojects to process after releasing lock
    let mut subprojects: Vec<PathBuf> = Vec::new();

    {
        let mut mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;

        let mount = mt
            .find_mount_mut(project_root)
            .ok_or_else(|| anyhow::anyhow!("no mount found for {}", project_root.display()))?;

        // Initialize watcher
        if let Some(ref tx) = tx {
            mount.init_notify(tx.clone())?;
        }

        // Walk to set up directory watches and discover subprojects (ignore file events)
        mount.walk(|event| {
            if let FsEvent::ProjectAdded { root } = event {
                subprojects.push(root);
            }
            Ok(())
        })?;
    } // MountTable lock released here

    // Process discovered subprojects - load from their own .codeindex/
    // Pass load_from_cache=true so subprojects also load from cache
    for root in &subprojects {
        if let Err(e) = on_project_discovery(root, mount_table, db, true, tx.clone()) {
            tracing::warn!("failed to load subproject {}: {}", root.display(), e);
        }
    }

    Ok(())
}

/// Walk a project directory, indexing files and discovering subprojects.
///
/// Uses Mount's `walk()` method which handles gitignore filtering and subproject discovery.
/// Parameters:
/// - `load_from_cache`: passed to recursive on_project_discovery calls for subprojects
/// - `tx`: If provided, initializes watcher and adds directories during walk
fn walk_project(
    project_root: &Path,
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
    load_from_cache: bool,
    tx: Option<Sender<MountedEvent>>,
) -> Result<()> {
    // Use relative project path from workspace root
    let project_str = {
        let mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
        mt.relative_project(project_root)
    };

    // Collect events first, then process them
    // This allows us to release the mount table lock before recursive calls
    let mut files: Vec<(PathBuf, String)> = Vec::new();
    let mut subprojects: Vec<PathBuf> = Vec::new();

    {
        let mut mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;

        let mount = mt
            .find_mount_mut(project_root)
            .ok_or_else(|| anyhow::anyhow!("no mount found for {}", project_root.display()))?;

        // Initialize watcher before walk (if tx provided)
        if let Some(ref tx) = tx {
            mount.init_notify(tx.clone())?;
        }

        // Walk the mount, collecting events
        // Watches are added internally by on_fs_event during walk
        mount.walk(|event| {
            match event {
                FsEvent::FileAdded { mount, path } => {
                    // Reconstruct abs_path from mount + path
                    let abs_path = mount.join(&path);
                    files.push((abs_path, path));
                }
                FsEvent::ProjectAdded { root } => {
                    subprojects.push(root);
                }
                FsEvent::FileRemoved { .. }
                | FsEvent::ProjectRemoved { .. }
                | FsEvent::DirIgnored => {} // Not emitted during walk
            }
            Ok(())
        })?;
    } // MountTable lock released here

    // Process files
    let mut file_count = 0u32;
    for (abs_path, rel_path) in &files {
        file_count += 1;
        if file_count.is_multiple_of(100) {
            tracing::info!(
                "processed {} files so far for project '{}'",
                file_count,
                project_str
            );
        }
        if let Err(e) = process_file_change(abs_path, rel_path, &project_str, db) {
            tracing::warn!("failed to index {}: {}", rel_path, e);
        }
    }

    // Process subprojects (always - this is the single walk strategy)
    // Pass load_from_cache to recursive calls
    for root in &subprojects {
        if let Err(e) = on_project_discovery(root, mount_table, db, load_from_cache, tx.clone()) {
            tracing::warn!("failed to handle subproject {}: {}", root.display(), e);
        }
    }

    tracing::info!(
        "finished indexing project '{}': {} files, {} subprojects",
        project_str,
        file_count,
        subprojects.len()
    );

    // Rebuild FTS after batch indexing
    let db_guard = db
        .lock()
        .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
    db_guard.rebuild_fts()?;

    // Mark mount as dirty
    mount_table
        .lock()
        .ok()
        .map(|mut mt| mt.mark_dirty(project_root));

    Ok(())
}

/// Handle a batch of file system events.
///
/// All logic (gitignore, SKIP_ENTRIES, project detection, watches) is delegated
/// to `Mount::on_fs_event()` - the same rules apply for notify events as for walker.
///
/// Each event includes the mount root, so we can directly get the mount without lookup.
fn handle_events(
    events: &[(PathBuf, EventKind, PathBuf)],
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
    tx: Sender<MountedEvent>,
) -> Result<()> {
    if events.is_empty() {
        return Ok(());
    }

    tracing::debug!("processing {} file events", events.len());

    // Collect mount events to process
    let mut mount_events: Vec<FsEvent> = Vec::new();

    for (path, kind, mount_root) in events {
        // Check for flush trigger file (.codeindex.flush)
        if path.file_name().is_some_and(|n| n == FLUSH_TRIGGER_FILE) {
            if let Err(e) = handle_flush_trigger(path, mount_table, db) {
                tracing::error!("failed to handle flush trigger: {}", e);
            }
            continue;
        }

        // Early filter: skip .codeindex/ paths before expensive canonicalize()
        if path.components().any(|c| c.as_os_str() == ".codeindex") {
            continue;
        }

        // For file removal, the path may not exist anymore
        // For creation/modification, canonicalize to handle symlinks
        let canonical = if is_removal_event(kind) {
            // Use the path as-is for removal (can't canonicalize deleted files)
            path.clone()
        } else {
            match path.canonicalize() {
                Ok(p) => p,
                Err(_) => continue, // Path doesn't exist
            }
        };

        // Get mount directly using the mount root from the event
        let mut mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;

        // Check if a removed directory is a mounted project (subproject deletion)
        if is_removal_event(kind) && mt.is_mounted(&canonical) {
            mount_events.push(FsEvent::ProjectRemoved {
                root: canonical.clone(),
            });
            continue;
        }

        // Pass EventKind directly to on_fs_event (same type as walker uses)
        if let Some(mount) = mt
            .iter_mut()
            .find(|(root, _)| *root == mount_root)
            .map(|(_, m)| m)
            && let Some(event) = mount.on_fs_event(&canonical, kind)
        {
            mount_events.push(event);
        }
    }

    // Process mount events
    for event in mount_events {
        match event {
            FsEvent::ProjectAdded { root } => {
                // Discover the new project (watcher is initialized during walk)
                // Watch mode always uses cache (load_from_cache=true)
                if let Err(e) = on_project_discovery(&root, mount_table, db, true, Some(tx.clone()))
                {
                    tracing::warn!("failed to handle project discovery: {}", e);
                }
            }
            FsEvent::FileAdded { mount, path } => {
                let abs_path = mount.join(&path);

                // Compute relative project path from workspace root
                let project_str = {
                    let mt = mount_table
                        .lock()
                        .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
                    mt.relative_project(&mount)
                };

                if let Err(e) = process_file_change(&abs_path, &path, &project_str, db) {
                    tracing::warn!("failed to process file {}: {}", path, e);
                } else {
                    // Mark mount as dirty
                    mount_table
                        .lock()
                        .ok()
                        .map(|mut mt| mt.mark_dirty_canonical(&abs_path));
                }
            }
            FsEvent::FileRemoved { mount, path } => {
                let abs_path = mount.join(&path);

                // Compute relative project path from workspace root
                let project_str = {
                    let mt = mount_table
                        .lock()
                        .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
                    mt.relative_project(&mount)
                };

                tracing::debug!("file deleted: {} (project: {})", path, project_str);
                let db_guard = db
                    .lock()
                    .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
                if let Err(e) = db_guard.remove_file(&project_str, &path) {
                    tracing::warn!("failed to remove file {}: {}", path, e);
                }
                // Mark mount as dirty
                mount_table
                    .lock()
                    .ok()
                    .map(|mut mt| mt.mark_dirty_canonical(&abs_path));
            }
            FsEvent::ProjectRemoved { root } => {
                // Compute relative project path from workspace root
                let project_str = {
                    let mt = mount_table
                        .lock()
                        .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
                    mt.relative_project(&root)
                };

                tracing::info!("project removed: {} ({})", project_str, root.display());

                // Remove project data from DB
                let db_guard = db
                    .lock()
                    .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
                if let Err(e) = db_guard.remove_project(&project_str) {
                    tracing::warn!("failed to remove project {}: {}", project_str, e);
                }
                drop(db_guard);

                // Unmount the project (use unmount_path since directory may be deleted)
                let mut mt = mount_table
                    .lock()
                    .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
                if !mt.unmount_path(&root) {
                    tracing::debug!("project was not mounted: {}", root.display());
                }
            }
            FsEvent::DirIgnored => {} // Not emitted from notify events
        }
    }

    // Rebuild FTS indexes once after all changes
    {
        let db_guard = db
            .lock()
            .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
        db_guard.rebuild_fts()?;
    }

    Ok(())
}

/// Process a single file change (create or modify).
pub fn process_file_change(
    abs_path: &Path,
    rel_path: &str,
    project: &str,
    db: &Arc<Mutex<SearchDb>>,
) -> Result<()> {
    // Read file content once
    let content =
        std::fs::read(abs_path).with_context(|| format!("failed to read {}", rel_path))?;

    // Hash the content
    let new_hash = hash_bytes(&content);

    // Check if hash changed
    let db_guard = db
        .lock()
        .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
    if let Some(old_hash) = db_guard.get_file_hash(project, rel_path)?
        && old_hash == new_hash
    {
        // No change, skip
        tracing::trace!(
            "skipping unchanged file: {} (project: {})",
            rel_path,
            project
        );
        return Ok(());
    }
    drop(db_guard);

    tracing::info!("indexing file: {} (project: {})", rel_path, project);

    // Count lines
    let line_count = count_lines(&content);

    // Detect language
    let lang = abs_path
        .extension()
        .and_then(|ext| ext.to_str())
        .and_then(detect_language)
        .map(String::from);

    let mut symbols = Vec::new();
    let mut texts = Vec::new();
    let mut references = Vec::new();
    let mut title = None;
    let mut description = None;

    // Parse source files for symbols, texts, and references
    if let Some(ref lang_name) = lang {
        match parse_file(&content, lang_name, rel_path) {
            Ok((file_symbols, file_texts, file_refs)) => {
                symbols = file_symbols;
                texts = file_texts;
                references = file_refs;
            }
            Err(e) => {
                tracing::warn!("failed to parse {}: {}", rel_path, e);
            }
        }

        // Extract file metadata (title and description)
        let metadata = extract_file_metadata(&content, lang_name);
        title = metadata.title;
        description = metadata.description;
    }

    let file_entry = FileEntry {
        path: rel_path.to_string(),
        lang,
        hash: new_hash,
        lines: line_count,
        project: project.to_string(),
        title,
        description,
    };

    // Upsert into database
    let db_guard = db
        .lock()
        .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
    db_guard.upsert_file(project, &file_entry, &symbols, &texts, &references)?;

    Ok(())
}

/// Request a flush from a running server by creating a trigger file.
/// Waits for the server to delete the file (confirming flush) or times out.
fn request_flush_and_wait(project_root: &Path) -> Result<()> {
    let trigger_path = project_root.join(FLUSH_TRIGGER_FILE);

    // Create trigger file
    std::fs::write(&trigger_path, "").with_context(|| {
        format!(
            "failed to create flush trigger at {}",
            trigger_path.display()
        )
    })?;

    tracing::info!(
        "requesting flush from server (trigger: {})",
        trigger_path.display()
    );

    // Wait for server to delete the trigger file
    let start = std::time::Instant::now();
    while trigger_path.exists() {
        if start.elapsed() > FLUSH_TIMEOUT {
            // Clean up trigger file on timeout
            let _ = std::fs::remove_file(&trigger_path);
            anyhow::bail!(
                "timeout waiting for server to flush ({}s). Is codeix serve running?",
                FLUSH_TIMEOUT.as_secs()
            );
        }
        std::thread::sleep(FLUSH_POLL_INTERVAL);
    }

    tracing::info!("flush completed by server");
    Ok(())
}

/// Handle flush trigger file (.codeindex.flush) - flush and delete to signal completion.
fn handle_flush_trigger(
    trigger_path: &Path,
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
) -> Result<()> {
    let mount_root = trigger_path
        .parent()
        .ok_or_else(|| anyhow::anyhow!("trigger has no parent"))?;

    tracing::info!(
        "flush requested via trigger file for {}",
        mount_root.display()
    );

    // Flush the mount
    {
        let mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
        flush_mount_to_disk(mount_root, &mt, db)?;
    }

    // Clear dirty flag
    {
        let mut mt = mount_table
            .lock()
            .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;
        if let Some(mount) = mt.find_mount_mut(mount_root) {
            mount.clear_dirty();
        }
    }

    // Delete trigger file to signal completion
    std::fs::remove_file(trigger_path)?;
    tracing::info!("flush completed for {}", mount_root.display());

    Ok(())
}

/// Flush all dirty mounts to disk.
/// Returns the number of mounts that were flushed.
pub fn flush_dirty_mounts(
    mount_table: &Arc<Mutex<MountTable>>,
    db: &Arc<Mutex<SearchDb>>,
) -> Result<usize> {
    let mut mt = mount_table
        .lock()
        .map_err(|e| anyhow::anyhow!("mount table lock poisoned: {e}"))?;

    // Collect dirty RW mounts
    let dirty_mounts: Vec<PathBuf> = mt
        .iter()
        .filter(|(_, mount)| mount.dirty && mount.mode == MountMode::ReadWrite)
        .map(|(root, _)| root.clone())
        .collect();

    let mut flushed_count = 0usize;
    for root in dirty_mounts {
        if let Err(e) = flush_mount_to_disk(&root, &mt, db) {
            tracing::error!("failed to flush {}: {}", root.display(), e);
        } else {
            flushed_count += 1;
            // Clear dirty flag
            if let Some(mount) = mt.find_mount_mut(&root) {
                mount.clear_dirty();
            }
        }
    }

    Ok(flushed_count)
}

/// Flush a single mount's index from memory to disk.
pub fn flush_mount_to_disk(
    mount_root: &Path,
    mount_table: &MountTable,
    db: &Arc<Mutex<SearchDb>>,
) -> Result<()> {
    // Use relative project path from workspace root
    let project_str = mount_table.relative_project(mount_root);

    let db_guard = db
        .lock()
        .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
    let (mut files, mut symbols, mut texts, mut refs) =
        db_guard.export_for_project(&project_str)?;
    drop(db_guard);

    // Clear project field for disk export - the .codeindex/ location implies the project
    for f in &mut files {
        f.project = String::new();
    }
    for s in &mut symbols {
        s.project = String::new();
    }
    for t in &mut texts {
        t.project = String::new();
    }
    for r in &mut refs {
        r.project = String::new();
    }

    if files.is_empty() {
        tracing::debug!("no files to flush for {}", mount_root.display());
        return Ok(());
    }

    // Collect languages
    let mut languages: BTreeSet<String> = BTreeSet::new();
    for f in &files {
        if let Some(ref lang) = f.lang {
            languages.insert(lang.clone());
        }
    }

    // Derive project name from directory name
    let name = mount_root
        .file_name()
        .and_then(|n| n.to_str())
        .unwrap_or("unknown")
        .to_string();

    let manifest = IndexManifest {
        version: "1.0".to_string(),
        name,
        root: ".".to_string(),
        languages: languages.into_iter().collect(),
    };

    let output_dir = mount_root.join(".codeindex");
    write_index(&output_dir, &manifest, &files, &symbols, &texts, &refs)?;

    tracing::debug!(
        "flushed index to disk for {}: {} files, {} symbols, {} texts, {} refs",
        mount_root.display(),
        files.len(),
        symbols.len(),
        texts.len(),
        refs.len()
    );

    Ok(())
}

/// Flush the entire index from memory to disk (legacy single-project).
/// This is used during initial index building before MountTable is set up.
pub fn flush_index_to_disk(root: &Path, db: &Arc<Mutex<SearchDb>>) -> Result<()> {
    let db_guard = db
        .lock()
        .map_err(|e| anyhow::anyhow!("db lock poisoned: {e}"))?;
    let (files, symbols, texts, refs) = db_guard.export_all()?;
    drop(db_guard);

    // Collect languages
    let mut languages: BTreeSet<String> = BTreeSet::new();
    for f in &files {
        if let Some(ref lang) = f.lang {
            languages.insert(lang.clone());
        }
    }

    // Derive project name from directory name
    let name = root
        .file_name()
        .and_then(|n| n.to_str())
        .unwrap_or("unknown")
        .to_string();

    let manifest = IndexManifest {
        version: "1.0".to_string(),
        name,
        root: ".".to_string(),
        languages: languages.into_iter().collect(),
    };

    let output_dir = root.join(".codeindex");
    write_index(&output_dir, &manifest, &files, &symbols, &texts, &refs)?;

    tracing::debug!(
        "flushed index to disk: {} files, {} symbols, {} texts, {} refs",
        files.len(),
        symbols.len(),
        texts.len(),
        refs.len()
    );

    Ok(())
}

/// Count the number of lines in a byte buffer.
fn count_lines(content: &[u8]) -> u32 {
    if content.is_empty() {
        return 0;
    }
    let count = content.iter().filter(|&&b| b == b'\n').count() as u32;
    // If file doesn't end with newline, the last line still counts
    if content.last() != Some(&b'\n') {
        count + 1
    } else {
        count
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;
    use tempfile::TempDir;

    /// Helper to create a minimal .git directory (just the directory, not a real repo)
    fn create_git_marker(path: &Path) {
        fs::create_dir_all(path.join(".git")).unwrap();
    }

    /// Helper to create a source file
    fn create_source_file(path: &Path, content: &str) {
        if let Some(parent) = path.parent() {
            fs::create_dir_all(parent).unwrap();
        }
        fs::write(path, content).unwrap();
    }

    #[test]
    fn test_single_project_indexing() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create a simple project structure
        create_git_marker(&root);
        create_source_file(
            &root.join("src/main.rs"),
            "fn main() {\n    println!(\"hello\");\n}\n",
        );
        create_source_file(
            &root.join("src/lib.rs"),
            "pub fn greet() -> String {\n    \"hello\".to_string()\n}\n",
        );

        // Index the project (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify: should have 2 files indexed
        let db_guard = db.lock().unwrap();
        let projects = db_guard.list_projects().unwrap();
        assert_eq!(projects.len(), 1);
        assert_eq!(projects[0], ""); // Root project has empty string

        // Search for the main function (private, use visibility="private" to include all)
        let results = db_guard
            .search(
                "main",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert!(
            symbols
                .iter()
                .any(|s| s.name == "main" && s.kind == "function")
        );

        // Search for greet function (public)
        let results = db_guard
            .search(
                "greet",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert!(
            symbols
                .iter()
                .any(|s| s.name == "greet" && s.kind == "function")
        );
    }

    #[test]
    fn test_subproject_discovery() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create root project
        create_git_marker(&root);
        create_source_file(&root.join("app.rs"), "fn app_main() {}\n");

        // Create a subproject
        let subproject = root.join("libs/utils");
        create_git_marker(&subproject);
        create_source_file(&subproject.join("src/lib.rs"), "pub fn utility() {}\n");

        // Index from root (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify: should have 2 projects
        let db_guard = db.lock().unwrap();
        let projects = db_guard.list_projects().unwrap();
        assert_eq!(projects.len(), 2);
        assert!(projects.contains(&"".to_string())); // Root
        assert!(projects.contains(&"libs/utils".to_string())); // Subproject

        // Root project should have app_main (private fn, use visibility="private" to include all)
        let results = db_guard
            .search(
                "app_main",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(symbols.len(), 1);
        assert_eq!(symbols[0].project, "");

        // Subproject should have utility (public fn, default visibility would work but use private for consistency)
        let results = db_guard
            .search(
                "utility",
                &["symbol".to_string()],
                &[],
                None,
                Some("libs/utils"),
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(symbols.len(), 1);
        assert_eq!(symbols[0].project, "libs/utils");
    }

    #[test]
    fn test_nested_subprojects() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create root project
        create_git_marker(&root);
        create_source_file(&root.join("root.rs"), "fn root_fn() {}\n");

        // Create nested subprojects: root > libs/core > libs/core/nested
        let core = root.join("libs/core");
        create_git_marker(&core);
        create_source_file(&core.join("core.rs"), "fn core_fn() {}\n");

        let nested = core.join("nested");
        create_git_marker(&nested);
        create_source_file(&nested.join("nested.rs"), "fn nested_fn() {}\n");

        // Index from root (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify: should have 3 projects
        let db_guard = db.lock().unwrap();
        let projects = db_guard.list_projects().unwrap();
        assert_eq!(projects.len(), 3);

        // Each function should be in its respective project (private fns, use visibility="private")
        let results = db_guard
            .search(
                "root_fn",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let root_syms: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(root_syms.len(), 1);
        assert_eq!(root_syms[0].project, "");

        let results = db_guard
            .search(
                "core_fn",
                &["symbol".to_string()],
                &[],
                None,
                Some("libs/core"),
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let core_syms: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(core_syms.len(), 1);

        let results = db_guard
            .search(
                "nested_fn",
                &["symbol".to_string()],
                &[],
                None,
                Some("libs/core/nested"),
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let nested_syms: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(nested_syms.len(), 1);
    }

    #[test]
    fn test_files_not_duplicated_across_projects() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create root with a subproject
        create_git_marker(&root);
        create_source_file(&root.join("root.rs"), "fn root_fn() {}\n");

        let sub = root.join("sub");
        create_git_marker(&sub);
        create_source_file(&sub.join("sub.rs"), "fn sub_fn() {}\n");

        // Index (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify: sub.rs should NOT appear in root project
        let db_guard = db.lock().unwrap();

        // Search without project filter - should find both (private fns, use visibility="private")
        let results = db_guard
            .search(
                "fn",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let all_symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        let root_fn_count = all_symbols.iter().filter(|s| s.name == "root_fn").count();
        let sub_fn_count = all_symbols.iter().filter(|s| s.name == "sub_fn").count();

        assert_eq!(root_fn_count, 1, "root_fn should appear exactly once");
        assert_eq!(sub_fn_count, 1, "sub_fn should appear exactly once");

        // Verify project assignment
        let root_fn = all_symbols.iter().find(|s| s.name == "root_fn").unwrap();
        let sub_fn = all_symbols.iter().find(|s| s.name == "sub_fn").unwrap();

        assert_eq!(root_fn.project, "");
        assert_eq!(sub_fn.project, "sub");
    }

    #[test]
    fn test_mount_table_tracks_all_projects() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create root with two subprojects
        create_git_marker(&root);
        create_source_file(&root.join("main.rs"), "fn main() {}\n");

        let lib_a = root.join("libs/a");
        create_git_marker(&lib_a);
        create_source_file(&lib_a.join("a.rs"), "fn a() {}\n");

        let lib_b = root.join("libs/b");
        create_git_marker(&lib_b);
        create_source_file(&lib_b.join("b.rs"), "fn b() {}\n");

        // Index (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify mount table has all 3 mounts
        let mt = mount_table.lock().unwrap();
        let mounts: Vec<_> = mt.iter().collect();
        assert_eq!(mounts.len(), 3);

        // All should be mounted (lib_a/lib_b are already based on canonicalized root)
        assert!(mt.is_mounted(&root));
        assert!(mt.is_mounted(&lib_a));
        assert!(mt.is_mounted(&lib_b));
    }

    #[test]
    fn test_project_filter_in_search() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create two projects with same-named function
        create_git_marker(&root);
        create_source_file(&root.join("util.rs"), "fn helper() {}\n");

        let sub = root.join("sub");
        create_git_marker(&sub);
        create_source_file(&sub.join("util.rs"), "fn helper() {}\n");

        // Index (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        let db_guard = db.lock().unwrap();

        // Without filter: should find 2 helpers (private fns, use visibility="private")
        let results = db_guard
            .search(
                "helper",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let all: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(all.len(), 2);

        // One should be root (empty project), one should be sub
        let root_helpers: Vec<_> = all.iter().filter(|s| s.project.is_empty()).collect();
        let sub_helpers: Vec<_> = all.iter().filter(|s| s.project == "sub").collect();
        assert_eq!(root_helpers.len(), 1);
        assert_eq!(sub_helpers.len(), 1);

        // With sub filter: should find 1 (private fn, use visibility="private")
        let results = db_guard
            .search(
                "helper",
                &["symbol".to_string()],
                &[],
                None,
                Some("sub"),
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let sub_only: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(sub_only.len(), 1);
        assert_eq!(sub_only[0].project, "sub");
    }

    #[test]
    fn test_relative_project_paths() {
        let tmp = TempDir::new().unwrap();
        // Canonicalize for macOS where /var -> /private/var
        let root = tmp.path().canonicalize().unwrap();

        // Create deeply nested subproject
        create_git_marker(&root);
        let deep = root.join("path/to/deep/project");
        create_git_marker(&deep);
        create_source_file(&deep.join("deep.rs"), "fn deep_fn() {}\n");

        // Index (load_from_cache=false to force indexing)
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));

        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify relative path is correct
        let db_guard = db.lock().unwrap();
        let projects = db_guard.list_projects().unwrap();

        assert!(projects.contains(&"path/to/deep/project".to_string()));

        // Symbol should have correct project (private fn, use visibility="private")
        let results = db_guard
            .search(
                "deep_fn",
                &["symbol".to_string()],
                &[],
                None,
                None,
                Some("private"),
                100,
                0,
            )
            .unwrap();
        let symbols: Vec<_> = results
            .iter()
            .filter_map(|r| match r {
                crate::server::db::SearchResult::Symbol(s) => Some(s),
                _ => None,
            })
            .collect();
        assert_eq!(symbols[0].project, "path/to/deep/project");
    }

    #[test]
    fn test_project_removal_cleans_up_db() {
        let tmp = TempDir::new().unwrap();
        let root = tmp.path().canonicalize().unwrap();

        // Create root project
        create_git_marker(&root);
        create_source_file(&root.join("main.rs"), "fn root_fn() {}\n");

        // Create subproject
        let sub = root.join("sub");
        create_git_marker(&sub);
        create_source_file(&sub.join("lib.rs"), "fn sub_fn() {}\n");

        // Index
        let mount_table = Arc::new(Mutex::new(MountTable::new(root.clone())));
        let db = Arc::new(Mutex::new(SearchDb::new().unwrap()));
        on_project_discovery(&root, &mount_table, &db, false, None).unwrap();

        // Verify initial state: 2 projects
        {
            let db_guard = db.lock().unwrap();
            let projects = db_guard.list_projects().unwrap();
            assert_eq!(projects.len(), 2);
            assert!(projects.contains(&"".to_string())); // Root
            assert!(projects.contains(&"sub".to_string())); // Subproject

            // Both functions should exist (private fns, use visibility="private")
            let results = db_guard
                .search(
                    "fn",
                    &["symbol".to_string()],
                    &[],
                    None,
                    None,
                    Some("private"),
                    100,
                    0,
                )
                .unwrap();
            let symbols: Vec<_> = results
                .iter()
                .filter_map(|r| match r {
                    crate::server::db::SearchResult::Symbol(s) => Some(s),
                    _ => None,
                })
                .collect();
            assert!(symbols.iter().any(|s| s.name == "root_fn"));
            assert!(symbols.iter().any(|s| s.name == "sub_fn"));
        }

        // Simulate ProjectRemoved event for the subproject
        {
            let db_guard = db.lock().unwrap();
            db_guard.remove_project("sub").unwrap();
        }

        // Unmount the subproject
        {
            let mut mt = mount_table.lock().unwrap();
            assert!(mt.unmount_path(&sub));
        }

        // Rebuild FTS
        {
            let db_guard = db.lock().unwrap();
            db_guard.rebuild_fts().unwrap();
        }

        // Verify: only root project remains
        {
            let db_guard = db.lock().unwrap();
            let projects = db_guard.list_projects().unwrap();
            assert_eq!(projects.len(), 1);
            assert!(projects.contains(&"".to_string())); // Root

            // Only root_fn should exist, sub_fn should be gone (private fn, use visibility="private")
            let results = db_guard
                .search(
                    "fn",
                    &["symbol".to_string()],
                    &[],
                    None,
                    None,
                    Some("private"),
                    100,
                    0,
                )
                .unwrap();
            let symbols: Vec<_> = results
                .iter()
                .filter_map(|r| match r {
                    crate::server::db::SearchResult::Symbol(s) => Some(s),
                    _ => None,
                })
                .collect();
            assert!(symbols.iter().any(|s| s.name == "root_fn"));
            assert!(!symbols.iter().any(|s| s.name == "sub_fn"));
        }

        // Verify mount table: only root mount remains
        {
            let mt = mount_table.lock().unwrap();
            let mounts: Vec<_> = mt.iter().collect();
            assert_eq!(mounts.len(), 1);
            assert!(mt.is_mounted(&root));
            assert!(!mt.is_mounted(&sub));
        }
    }
}