1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
//! Cache management and memory-mapped I/O
//!
//! The cache module handles the `.reflex/` directory structure:
//! - `meta.db`: Metadata, file hashes, and configuration (SQLite)
//! - `tokens.bin`: Compressed lexical tokens (binary)
//! - `content.bin`: Memory-mapped file contents (binary)
//! - `trigrams.bin`: Trigram inverted index (custom varint+zstd binary, V3 format)
//! - `config.toml`: Index settings (TOML text)
use anyhow::{Context, Result};
use rusqlite::{Connection, OptionalExtension};
use std::collections::HashMap;
use std::fs::File;
use std::path::{Path, PathBuf};
use crate::models::IndexedFile;
/// Default cache directory name
pub const CACHE_DIR: &str = ".reflex";
/// File names within the cache directory
pub const META_DB: &str = "meta.db";
pub const TOKENS_BIN: &str = "tokens.bin";
pub const HASHES_JSON: &str = "hashes.json";
pub const CONFIG_TOML: &str = "config.toml";
/// Open a SQLite database with Reflex's standard pragmas.
///
/// Every connection to `meta.db` (and to the symbol cache, which lives in the same
/// file) MUST go through this helper. Plain `Connection::open` leaves SQLite at its
/// defaults, which caused three separate production failures:
///
/// 1. **No `busy_timeout`** — the default is 0, so `BEGIN IMMEDIATE` returned
/// `database is locked` *instantly* whenever the background symbol indexer held a
/// write. Agents saw a raw SQLite error instead of a retry.
/// 2. **No `journal_mode=WAL`** — readers blocked writers and vice versa, and
/// [`CacheManager::checkpoint_wal`] was issuing `wal_checkpoint(TRUNCATE)` against a
/// rollback-journal database, where it does nothing.
/// 3. **No `foreign_keys=ON`** — SQLite disables foreign keys per connection by
/// default, so the `ON DELETE CASCADE` clauses in the schema never fired and
/// deleting a row from `files` orphaned its `file_branches` / `file_dependencies` /
/// `file_exports` rows.
///
/// Pragma order is load-bearing: `journal_mode=WAL` itself can return `SQLITE_BUSY`
/// when another connection is attached, so `busy_timeout` must be set first.
///
/// Set `REFLEX_SQLITE_JOURNAL=delete` to opt out of WAL on network filesystems, where
/// WAL requires shared-memory support that NFS/SMB do not reliably provide.
pub fn open_meta_db(db_path: impl AsRef<Path>) -> Result<Connection> {
let db_path = db_path.as_ref();
let conn = Connection::open(db_path)
.with_context(|| format!("Failed to open {}", db_path.display()))?;
// Must come first: the journal_mode change below can itself hit a busy database.
conn.busy_timeout(std::time::Duration::from_millis(SQLITE_BUSY_TIMEOUT_MS))
.context("Failed to set busy_timeout")?;
let journal_mode = std::env::var("REFLEX_SQLITE_JOURNAL")
.unwrap_or_else(|_| "WAL".to_string())
.to_uppercase();
// query_row, not execute: `PRAGMA journal_mode` returns the resulting mode as a row.
if let Err(e) = conn.query_row(
&format!("PRAGMA journal_mode={}", journal_mode),
[],
|row| row.get::<_, String>(0),
) {
// A read-only or network filesystem can refuse WAL. Degrading to the default
// journal is correct here — losing concurrency beats failing to open the cache.
log::warn!(
"Could not set journal_mode={} on {}: {} (continuing with the default journal)",
journal_mode,
db_path.display(),
e
);
}
conn.execute_batch("PRAGMA foreign_keys=ON;")
.context("Failed to enable foreign keys")?;
Ok(conn)
}
/// How long a SQLite connection waits for a competing writer before giving up.
///
/// The background symbol indexer writes in batches; 5s comfortably covers one batch.
/// A pass that holds the database for longer than this is caught earlier and more
/// clearly by the `BackgroundIndexer::is_running` gate in `Indexer::index`.
const SQLITE_BUSY_TIMEOUT_MS: u64 = 5_000;
/// Manages the Reflex cache directory
#[derive(Clone)]
pub struct CacheManager {
cache_path: PathBuf,
}
impl CacheManager {
/// Create a new cache manager for the given root directory
pub fn new(root: impl AsRef<Path>) -> Self {
let cache_path = root.as_ref().join(CACHE_DIR);
Self { cache_path }
}
/// Initialize the cache directory structure if it doesn't exist
pub fn init(&self) -> Result<()> {
log::info!("Initializing cache at {:?}", self.cache_path);
if !self.cache_path.exists() {
std::fs::create_dir_all(&self.cache_path)?;
}
// Create meta.db with schema
self.init_meta_db()?;
// Create default config.toml
self.init_config_toml()?;
// Note: tokens.bin removed - was never used
// Note: hashes.json is deprecated - hashes are now stored in meta.db
log::info!("Cache initialized successfully");
Ok(())
}
/// Initialize meta.db with SQLite schema
fn init_meta_db(&self) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
// Always run: every statement is `IF NOT EXISTS`, so this is a no-op on
// a complete database and a repair on a half-built one. (An indexer
// killed during schema creation used to leave meta.db with some tables
// missing; the old "skip if the file exists" check then made every later
// run fail with `no such table: file_branches`.) One transaction so a
// kill mid-way leaves either the old state or the full schema.
let conn = open_meta_db(&db_path).context("Failed to create meta.db")?;
conn.execute_batch("BEGIN IMMEDIATE")
.context("Failed to begin meta.db schema transaction")?;
// Create files table
conn.execute(
"CREATE TABLE IF NOT EXISTS files (
id INTEGER PRIMARY KEY AUTOINCREMENT,
path TEXT NOT NULL UNIQUE,
last_indexed INTEGER NOT NULL,
language TEXT NOT NULL,
token_count INTEGER DEFAULT 0,
line_count INTEGER DEFAULT 0
)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_files_path ON files(path)",
[],
)?;
// Create statistics table
conn.execute(
"CREATE TABLE IF NOT EXISTS statistics (
key TEXT PRIMARY KEY,
value TEXT NOT NULL,
updated_at INTEGER NOT NULL
)",
[],
)?;
// Initialize default statistics
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["total_files", "0", &now.to_string()],
)?;
// Who wrote this cache. The old `cache_version = "1"` row was never read by
// anything; this replaces it with something actionable, so a refusal can name
// the version that owns the cache instead of just a hash.
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
[
"writer_version",
env!("CARGO_PKG_VERSION"),
&now.to_string(),
],
)?;
if let Some(sha) = option_env!("REFLEX_GIT_SHA") {
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["writer_git_sha", sha, &now.to_string()],
)?;
}
// Store cache schema hash for automatic invalidation detection
// This hash is computed at build time from cache-critical source files
let schema_hash = env!("CACHE_SCHEMA_HASH");
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["schema_hash", schema_hash, &now.to_string()],
)?;
// Initialize last_compaction timestamp (0 = never compacted)
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["last_compaction", "0", &now.to_string()],
)?;
// Create config table
conn.execute(
"CREATE TABLE IF NOT EXISTS config (
key TEXT PRIMARY KEY,
value TEXT NOT NULL
)",
[],
)?;
// Create branch tracking tables for git-aware indexing
conn.execute(
"CREATE TABLE IF NOT EXISTS file_branches (
file_id INTEGER NOT NULL,
branch_id INTEGER NOT NULL,
hash TEXT NOT NULL,
last_indexed INTEGER NOT NULL,
PRIMARY KEY (file_id, branch_id),
FOREIGN KEY (file_id) REFERENCES files(id) ON DELETE CASCADE,
FOREIGN KEY (branch_id) REFERENCES branches(id) ON DELETE CASCADE
)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_branch_lookup ON file_branches(branch_id, file_id)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_hash_lookup ON file_branches(hash)",
[],
)?;
// Create branches metadata table
conn.execute(
"CREATE TABLE IF NOT EXISTS branches (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL UNIQUE,
commit_sha TEXT NOT NULL,
last_indexed INTEGER NOT NULL,
file_count INTEGER DEFAULT 0,
is_dirty INTEGER DEFAULT 0
)",
[],
)?;
// Create file dependencies table for tracking imports/includes
conn.execute(
"CREATE TABLE IF NOT EXISTS file_dependencies (
id INTEGER PRIMARY KEY AUTOINCREMENT,
file_id INTEGER NOT NULL,
imported_path TEXT NOT NULL,
resolved_file_id INTEGER,
import_type TEXT NOT NULL,
line_number INTEGER NOT NULL,
imported_symbols TEXT,
FOREIGN KEY (file_id) REFERENCES files(id) ON DELETE CASCADE,
FOREIGN KEY (resolved_file_id) REFERENCES files(id) ON DELETE SET NULL
)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_deps_file ON file_dependencies(file_id)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_deps_resolved ON file_dependencies(resolved_file_id)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_deps_type ON file_dependencies(import_type)",
[],
)?;
// Create file exports table for tracking barrel re-exports
conn.execute(
"CREATE TABLE IF NOT EXISTS file_exports (
id INTEGER PRIMARY KEY AUTOINCREMENT,
file_id INTEGER NOT NULL,
exported_symbol TEXT,
source_path TEXT NOT NULL,
resolved_source_id INTEGER,
line_number INTEGER NOT NULL,
FOREIGN KEY (file_id) REFERENCES files(id) ON DELETE CASCADE,
FOREIGN KEY (resolved_source_id) REFERENCES files(id) ON DELETE SET NULL
)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_exports_file ON file_exports(file_id)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_exports_resolved ON file_exports(resolved_source_id)",
[],
)?;
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_exports_symbol ON file_exports(exported_symbol)",
[],
)?;
conn.execute_batch("COMMIT")
.context("Failed to commit meta.db schema transaction")?;
log::debug!("Created meta.db with schema");
Ok(())
}
/// Initialize config.toml with defaults
fn init_config_toml(&self) -> Result<()> {
let config_path = self.cache_path.join(CONFIG_TOML);
if config_path.exists() {
return Ok(());
}
let default_config = r#"[index]
languages = [] # Empty = all supported languages
text_tier = true # Also index docs and config: md, yaml, toml, json, proto, html, sh, sql
max_file_size = 10485760 # 10 MB
follow_symlinks = false
[index.include]
patterns = []
[index.exclude]
patterns = []
[search]
default_limit = 100
fuzzy_threshold = 0.8
[performance]
parallel_threads = 0 # 0 = auto (80% of available cores), or set a specific number
compression_level = 3 # zstd level
[semantic]
# Semantic query generation using LLMs
# Translate natural language questions into rfx query commands
provider = "openrouter" # Options: openai, anthropic, openrouter
# model = "openai/gpt-4o-mini" # Optional: override provider default model
# auto_execute = false # Optional: auto-execute queries without confirmation
"#;
std::fs::write(&config_path, default_config)?;
log::debug!("Created default config.toml");
Ok(())
}
/// Check if cache exists and is valid
pub fn exists(&self) -> bool {
self.cache_path.exists() && self.cache_path.join(META_DB).exists()
}
/// Validate cache integrity and detect corruption
///
/// Performs basic integrity checks on the cache:
/// - Verifies all required files exist
/// - Checks SQLite database can be opened
/// - Validates binary file headers (trigrams.bin, content.bin)
///
/// Returns Ok(()) if cache is valid, Err with details if corrupted.
pub fn validate(&self) -> Result<()> {
let start = std::time::Instant::now();
// Check if cache directory exists
if !self.cache_path.exists() {
anyhow::bail!(
"Cache directory does not exist: {}",
self.cache_path.display()
);
}
// Check meta.db exists and can be opened
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
anyhow::bail!("Database file missing: {}", db_path.display());
}
// Try to open database
let conn =
open_meta_db(&db_path).context("Failed to open meta.db - database may be corrupted")?;
// Verify schema exists
let tables: Result<Vec<String>, _> = conn
.prepare("SELECT name FROM sqlite_master WHERE type='table'")
.and_then(|mut stmt| {
stmt.query_map([], |row| row.get(0))
.map(|rows| rows.collect())
})
.and_then(|result| result);
match tables {
Ok(table_list) => {
// Check for required tables
let required_tables = vec![
"files",
"statistics",
"config",
"file_branches",
"branches",
"file_dependencies",
"file_exports",
];
for table in &required_tables {
if !table_list.iter().any(|t| t == table) {
anyhow::bail!("Required table '{}' missing from database schema", table);
}
}
}
Err(e) => {
anyhow::bail!("Failed to read database schema: {}", e);
}
}
// Run SQLite integrity check (fast quick_check)
// Use quick_check instead of integrity_check for speed (<10ms vs 100ms+)
let integrity_result: String =
conn.query_row("PRAGMA quick_check", [], |row| row.get(0))?;
if integrity_result != "ok" {
log::warn!("Database integrity check failed: {}", integrity_result);
anyhow::bail!(
"Database integrity check failed: {}. Cache may be corrupted. \
Run 'rfx index' to rebuild cache.",
integrity_result
);
}
// Check trigrams.bin if it exists
let trigrams_path = self.cache_path.join("trigrams.bin");
if trigrams_path.exists() {
use std::io::Read;
match File::open(&trigrams_path) {
Ok(mut file) => {
let mut header = [0u8; 4];
match file.read_exact(&mut header) {
Ok(_) => {
// Check magic bytes
if &header != b"RFTG" {
log::warn!(
"trigrams.bin has invalid magic bytes - may be corrupted"
);
anyhow::bail!(
"trigrams.bin appears to be corrupted (invalid magic bytes)"
);
}
}
Err(_) => {
anyhow::bail!("trigrams.bin is too small - appears to be corrupted");
}
}
}
Err(e) => {
anyhow::bail!("Failed to open trigrams.bin: {}", e);
}
}
}
// Check content.bin if it exists
let content_path = self.cache_path.join("content.bin");
if content_path.exists() {
use std::io::Read;
match File::open(&content_path) {
Ok(mut file) => {
let mut header = [0u8; 4];
match file.read_exact(&mut header) {
Ok(_) => {
// Check magic bytes
if &header != b"RFCT" {
log::warn!(
"content.bin has invalid magic bytes - may be corrupted"
);
anyhow::bail!(
"content.bin appears to be corrupted (invalid magic bytes)"
);
}
}
Err(_) => {
anyhow::bail!("content.bin is too small - appears to be corrupted");
}
}
}
Err(e) => {
anyhow::bail!("Failed to open content.bin: {}", e);
}
}
}
// NOT checked here any more: the schema hash.
//
// `validate()` runs on EVERY search (query/mod.rs), and a bail here becomes
// ReflexError::CacheCorrupted, which the MCP layer answers by force-rebuilding
// the index. With several Reflex versions sharing one `.reflex/` — three
// `rfx mcp` servers from three Claude Code sessions, in the field report —
// each one saw a mismatch, each force-rebuilt, and they streamed into
// content.bin concurrently. That is what produced `content.bin is too small`.
//
// A version mismatch is not corruption. Readers are now allowed through and
// the mismatch surfaces via `get_index_status` as stale with
// can_trust_results: false, naming the owner version. WRITERS refuse — see
// `assert_writable`. Structural checks above (magic bytes, short files,
// quick_check) still bail, because those really are corruption.
log::debug!("Cache validation passed (took {:?})", start.elapsed());
Ok(())
}
/// Get the path to the cache directory
pub fn path(&self) -> &Path {
&self.cache_path
}
/// Get the workspace root directory (parent of .reflex/)
pub fn workspace_root(&self) -> PathBuf {
self.cache_path
.parent()
.expect(".reflex directory should have a parent")
.to_path_buf()
}
/// Load IndexConfig from `.reflex/config.toml` if it exists.
///
/// Returns `IndexConfig::default()` when the file is absent or a section
/// is missing. Parse errors are surfaced so the user gets a clear message
/// rather than silently falling back to defaults.
pub fn load_index_config(&self) -> Result<crate::models::IndexConfig> {
use crate::models::{IndexConfig, Language};
let config_path = self.cache_path.join(CONFIG_TOML);
if !config_path.exists() {
return Ok(IndexConfig::default());
}
let raw = std::fs::read_to_string(&config_path)
.with_context(|| format!("Failed to read {}", config_path.display()))?;
let toml_val: toml::Value = toml::from_str(&raw)
.with_context(|| format!("Failed to parse {}", config_path.display()))?;
let mut cfg = IndexConfig::default();
if let Some(index_tbl) = toml_val.get("index") {
if let Some(langs) = index_tbl.get("languages").and_then(|v| v.as_array()) {
let parsed: Vec<Language> = langs
.iter()
.filter_map(|v| v.as_str())
.filter_map(|s| {
Language::from_name(s).or_else(|| {
log::warn!(
"Unknown language '{}' in config.toml [index] section — ignoring",
s
);
None
})
})
.collect();
if !parsed.is_empty() {
cfg.languages = parsed;
}
}
if let Some(text_tier) = index_tbl.get("text_tier").and_then(|v| v.as_bool()) {
cfg.text_tier = text_tier;
}
if let Some(max_size) = index_tbl.get("max_file_size").and_then(|v| v.as_integer()) {
cfg.max_file_size = max_size as usize;
}
if let Some(follow) = index_tbl.get("follow_symlinks").and_then(|v| v.as_bool()) {
cfg.follow_symlinks = follow;
}
if let Some(include) = index_tbl
.get("include")
.and_then(|v| v.get("patterns"))
.and_then(|v| v.as_array())
{
cfg.include_patterns = include
.iter()
.filter_map(|v| v.as_str().map(String::from))
.collect();
}
if let Some(exclude) = index_tbl
.get("exclude")
.and_then(|v| v.get("patterns"))
.and_then(|v| v.as_array())
{
cfg.exclude_patterns = exclude
.iter()
.filter_map(|v| v.as_str().map(String::from))
.collect();
}
}
if let Some(perf) = toml_val.get("performance")
&& let Some(threads) = perf.get("parallel_threads").and_then(|v| v.as_integer())
{
cfg.parallel_threads = threads as usize;
}
log::debug!("Loaded IndexConfig from config.toml: {:?}", cfg);
Ok(cfg)
}
/// Clear the entire cache
pub fn clear(&self) -> Result<()> {
log::info!("Clearing cache at {:?}", self.cache_path);
if !self.cache_path.exists() {
return Ok(());
}
// Hold the workspace index lock while deleting so we never pull
// content.bin out from under a running indexer. Everything except the
// lock file goes while the lock is held; the lock file and the (now
// empty) directory are removed afterwards, best-effort, so callers
// that expect `.reflex/` to vanish keep working.
let lock =
crate::atomic_write::IndexLock::try_acquire(&self.cache_path)?.ok_or_else(|| {
crate::errors::ReflexError::IndexLocked(
crate::atomic_write::IndexLock::lock_path(&self.cache_path)
.display()
.to_string(),
)
})?;
for entry in std::fs::read_dir(&self.cache_path)? {
let entry = entry?;
let path = entry.path();
if path.file_name().and_then(|n| n.to_str())
== Some(crate::atomic_write::INDEX_LOCK_FILE)
{
continue;
}
if path.is_dir() {
std::fs::remove_dir_all(&path)?;
} else {
std::fs::remove_file(&path)?;
}
}
let lock_path = lock.path().to_path_buf();
drop(lock);
let _ = std::fs::remove_file(&lock_path);
let _ = std::fs::remove_dir(&self.cache_path);
Ok(())
}
/// Force SQLite WAL (Write-Ahead Log) checkpoint
///
/// Ensures all data written in transactions is flushed to the main database file.
/// This is critical when spawning background processes that open new connections,
/// as they need to see the committed data immediately.
///
/// Uses TRUNCATE mode to completely flush and reset the WAL file.
pub fn checkpoint_wal(&self) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
// No database to checkpoint
return Ok(());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db for WAL checkpoint")?;
// PRAGMA wal_checkpoint(TRUNCATE) forces a full checkpoint and truncates the WAL
// This ensures background processes see all committed data
// Note: Returns (busy, log_pages, checkpointed_pages) - use query instead of execute
conn.query_row("PRAGMA wal_checkpoint(TRUNCATE)", [], |row| {
let busy: i64 = row.get(0)?;
let log_pages: i64 = row.get(1)?;
let checkpointed: i64 = row.get(2)?;
log::debug!(
"WAL checkpoint completed: busy={}, log_pages={}, checkpointed_pages={}",
busy,
log_pages,
checkpointed
);
Ok(())
})
.context("Failed to execute WAL checkpoint")?;
log::debug!("Executed WAL checkpoint (TRUNCATE) on meta.db");
Ok(())
}
/// Load all file hashes across all branches from SQLite
///
/// Used by background indexer to get hashes for all indexed files.
/// Returns the most recent hash for each file across all branches.
pub fn load_all_hashes(&self) -> Result<HashMap<String, String>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(HashMap::new());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
// Get all hashes from file_branches, joined with files to get paths
// If a file appears in multiple branches, we'll get multiple entries
// (HashMap will keep the last one, which is fine for background indexer)
let mut stmt = conn.prepare(
"SELECT f.path, fb.hash
FROM file_branches fb
JOIN files f ON fb.file_id = f.id",
)?;
let hashes: HashMap<String, String> = stmt
.query_map([], |row| Ok((row.get(0)?, row.get(1)?)))?
.collect::<Result<HashMap<_, _>, _>>()?;
log::debug!(
"Loaded {} file hashes across all branches from SQLite",
hashes.len()
);
Ok(hashes)
}
/// Load file hashes for a specific branch from SQLite
///
/// Used by indexer and query engine to get hashes for the current branch.
/// This ensures branch-specific incremental indexing and symbol cache lookups.
pub fn load_hashes_for_branch(&self, branch: &str) -> Result<HashMap<String, String>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(HashMap::new());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
// Get hashes for specific branch only
let mut stmt = conn.prepare(
"SELECT f.path, fb.hash
FROM file_branches fb
JOIN files f ON fb.file_id = f.id
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?",
)?;
let hashes: HashMap<String, String> = stmt
.query_map([branch], |row| Ok((row.get(0)?, row.get(1)?)))?
.collect::<Result<HashMap<_, _>, _>>()?;
log::debug!(
"Loaded {} file hashes for branch '{}' from SQLite",
hashes.len(),
branch
);
Ok(hashes)
}
/// Save file hashes for incremental indexing
///
/// DEPRECATED: Hashes are now saved via record_branch_file() or batch_record_branch_files().
/// This method is kept for backward compatibility but does nothing.
#[deprecated(note = "Hashes are now stored in file_branches table via record_branch_file()")]
pub fn save_hashes(&self, _hashes: &HashMap<String, String>) -> Result<()> {
// No-op: hashes are now persisted to SQLite in record_branch_file()
Ok(())
}
/// Update file metadata in the files table
///
/// Note: File content hashes are stored separately in the file_branches table
/// via record_branch_file() or batch_record_branch_files().
pub fn update_file(&self, path: &str, language: &str, line_count: usize) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn = open_meta_db(&db_path).context("Failed to open meta.db for file update")?;
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT OR REPLACE INTO files (path, last_indexed, language, line_count)
VALUES (?, ?, ?, ?)",
[path, &now.to_string(), language, &line_count.to_string()],
)?;
Ok(())
}
/// Batch update multiple files in a single transaction for performance
///
/// Note: File content hashes are stored separately in the file_branches table
/// via batch_update_files_and_branch().
pub fn batch_update_files(&self, files: &[(String, String, usize)]) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let mut conn = open_meta_db(&db_path).context("Failed to open meta.db for batch update")?;
let now = chrono::Utc::now().timestamp();
let now_str = now.to_string();
// Use a transaction for batch inserts
let tx = conn.transaction()?;
for (path, language, line_count) in files {
tx.execute(
"INSERT OR REPLACE INTO files (path, last_indexed, language, line_count)
VALUES (?, ?, ?, ?)",
[
path.as_str(),
&now_str,
language.as_str(),
&line_count.to_string(),
],
)?;
}
tx.commit()?;
Ok(())
}
/// Batch update files AND record their hashes for a branch in a SINGLE transaction
///
/// This is the recommended method for indexing as it ensures atomicity:
/// if files are inserted, their branch hashes are guaranteed to be inserted too.
pub fn batch_update_files_and_branch(
&self,
files: &[(String, String, usize)], // (path, language, line_count)
branch_files: &[(String, String)], // (path, hash)
branch: &str,
commit_sha: Option<&str>,
) -> Result<()> {
log::info!(
"batch_update_files_and_branch: Processing {} files for branch '{}'",
files.len(),
branch
);
let db_path = self.cache_path.join(META_DB);
let mut conn = open_meta_db(&db_path)
.context("Failed to open meta.db for batch update and branch recording")?;
let now = chrono::Utc::now().timestamp();
let now_str = now.to_string();
// Use a SINGLE transaction for both operations
let tx = conn.transaction()?;
// Step 1: Insert/update files table
for (path, language, line_count) in files {
tx.execute(
"INSERT OR REPLACE INTO files (path, last_indexed, language, line_count)
VALUES (?, ?, ?, ?)",
[
path.as_str(),
&now_str,
language.as_str(),
&line_count.to_string(),
],
)?;
}
log::info!("Inserted {} files into files table", files.len());
// Step 2: Get or create branch_id (within same transaction)
let branch_id = self.get_or_create_branch_id(&tx, branch, commit_sha)?;
log::debug!("Got branch_id={} for branch '{}'", branch_id, branch);
// Step 3: Insert file_branches entries (within same transaction)
let mut inserted = 0;
for (path, hash) in branch_files {
// Lookup file_id from path (will find it because we just inserted above)
let file_id: i64 = tx
.query_row(
"SELECT id FROM files WHERE path = ?",
[path.as_str()],
|row| row.get(0),
)
.context(format!("File not found in index after insert: {}", path))?;
// Insert into file_branches using INTEGER values (not strings!)
tx.execute(
"INSERT OR REPLACE INTO file_branches (file_id, branch_id, hash, last_indexed)
VALUES (?, ?, ?, ?)",
rusqlite::params![file_id, branch_id, hash.as_str(), now],
)?;
inserted += 1;
}
log::info!("Inserted {} file_branches entries", inserted);
// Step 4: Drop rows for files that are no longer on disk.
//
// Until 1.7.2 this method was INSERT OR REPLACE only, so `meta.db` never
// shrank. A deleted file kept its `files` and `file_branches` rows forever,
// `stats()` counts `file_branches`, and so `total_files` still reported 1027
// after a deletion. Pruning lived only in `compact()`, which is throttled to
// once a day AND skipped entirely for the `mcp`, `watch` and `serve` commands
// — so an MCP-only session never pruned at all.
//
// A temp table rather than a bound IN-list: SQLite caps a statement at 999
// parameters, and a workspace has far more files than that.
let pruned = {
tx.execute_batch(
"CREATE TEMP TABLE IF NOT EXISTS current_paths (path TEXT PRIMARY KEY);
DELETE FROM current_paths;",
)?;
{
let mut stmt =
tx.prepare("INSERT OR IGNORE INTO current_paths (path) VALUES (?)")?;
for (path, _) in branch_files {
stmt.execute([path.as_str()])?;
}
}
// Detach this branch from files it no longer contains.
let unlinked = tx.execute(
"DELETE FROM file_branches
WHERE branch_id = ?
AND file_id NOT IN (SELECT id FROM files WHERE path IN (SELECT path FROM current_paths))",
rusqlite::params![branch_id],
)?;
// Then sweep files no branch references any more. Scoped this way so a
// file that still exists on another branch is never dropped.
let orphaned = tx.execute(
"DELETE FROM files WHERE id NOT IN (SELECT file_id FROM file_branches)",
[],
)?;
tx.execute_batch("DROP TABLE IF EXISTS current_paths;")?;
(unlinked, orphaned)
};
if pruned.0 > 0 || pruned.1 > 0 {
log::info!(
"Pruned {} stale file_branches rows and {} orphaned files rows",
pruned.0,
pruned.1
);
}
// Commit the entire transaction atomically
tx.commit()?;
log::info!("Transaction committed successfully (files + file_branches)");
// DIAGNOSTIC: Verify data was actually persisted after commit
// This helps diagnose WAL synchronization issues where commits succeed but data isn't visible
let verify_conn =
open_meta_db(&db_path).context("Failed to open meta.db for verification")?;
// Count actual files in database
let actual_file_count: i64 = verify_conn.query_row(
"SELECT COUNT(*) FROM files WHERE path IN (SELECT path FROM files ORDER BY id DESC LIMIT ?)",
[files.len()],
|row| row.get(0)
).unwrap_or(0);
// Count actual file_branches entries for this branch
let actual_fb_count: i64 = verify_conn
.query_row(
"SELECT COUNT(*) FROM file_branches fb
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?",
[branch],
|row| row.get(0),
)
.unwrap_or(0);
log::info!(
"Post-commit verification: {} files in files table (expected {}), {} file_branches entries for '{}' (expected {})",
actual_file_count,
files.len(),
actual_fb_count,
branch,
inserted
);
// DEFENSIVE: Warn if counts don't match expectations
if actual_file_count < files.len() as i64 {
log::warn!(
"MISMATCH: Expected {} files in database, but only found {}! Data may not have persisted.",
files.len(),
actual_file_count
);
}
if actual_fb_count < inserted as i64 {
log::warn!(
"MISMATCH: Expected {} file_branches entries for branch '{}', but only found {}! Data may not have persisted.",
inserted,
branch,
actual_fb_count
);
}
Ok(())
}
/// Update statistics after indexing by calculating totals from database for a specific branch
///
/// Counts only files indexed for the given branch, not all files across all branches.
pub fn update_stats(&self, branch: &str) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn = open_meta_db(&db_path).context("Failed to open meta.db for stats update")?;
// Count files for specific branch only (branch-aware statistics)
let total_files: usize = conn
.query_row(
"SELECT COUNT(DISTINCT fb.file_id)
FROM file_branches fb
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?",
[branch],
|row| row.get(0),
)
.unwrap_or(0);
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["total_files", &total_files.to_string(), &now.to_string()],
)?;
log::debug!(
"Updated statistics for branch '{}': {} files",
branch,
total_files
);
Ok(())
}
/// Check if the stored schema hash matches the current binary's hash.
/// Returns Ok(true) if they match, Ok(false) if they don't, Err on DB errors.
pub fn check_schema_hash(&self) -> Result<bool> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(false);
}
let conn = open_meta_db(&db_path)?;
let current = env!("CACHE_SCHEMA_HASH");
let stored: Option<String> = conn
.query_row(
"SELECT value FROM statistics WHERE key = 'schema_hash'",
[],
|row| row.get(0),
)
.optional()?;
Ok(stored.as_deref() == Some(current))
}
/// Who wrote this cache: `(version, git_sha)`, when the cache records it.
///
/// `None` for a cache written before 1.7.2, or none at all.
pub fn cache_owner(&self) -> Option<(String, Option<String>)> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return None;
}
let conn = open_meta_db(&db_path).ok()?;
let get = |key: &str| -> Option<String> {
conn.query_row("SELECT value FROM statistics WHERE key = ?", [key], |row| {
row.get(0)
})
.optional()
.ok()
.flatten()
};
get("writer_version").map(|v| (v, get("writer_git_sha")))
}
/// Refuse to write a cache a DIFFERENT RELEASED VERSION owns.
///
/// Cross-version writers into one `.reflex/` is a corruption vector: the field
/// report had three `rfx mcp` servers at two versions sharing a cache, and 1.6.0
/// had already produced `content.bin is too small`.
///
/// Scoped deliberately narrowly, to the one case that is actually unsafe and
/// actually detectable:
///
/// * A differing SCHEMA HASH alone is NOT refused. It flips on any change to
/// cache-critical sources, so it fires for every user on every upgrade and for
/// every developer on every branch switch. A full rebuild is what it already
/// triggers, it happens under the workspace `IndexLock`, and it truncates the
/// binary stores — which is safe.
/// * An UNSTAMPED cache is adopted, not refused. Everything written before 1.7.2
/// is unstamped, so refusing would break every upgrade.
/// * A cache stamped by a different released version IS refused, because that is
/// the multi-version-sharing case, and only there can the error name who owns it.
///
/// `force` (which clears the cache first) and `REFLEX_ALLOW_SCHEMA_REBUILD=1`
/// always pass — taking ownership is what force means.
pub fn assert_writable(&self, force: bool) -> Result<()> {
if force || std::env::var("REFLEX_ALLOW_SCHEMA_REBUILD").is_ok() {
return Ok(());
}
if !self.cache_path.join(META_DB).exists() {
return Ok(());
}
let Some((owner_version, owner_sha)) = self.cache_owner() else {
// Unstamped: written before 1.7.2. Adopt it.
return Ok(());
};
if owner_version == env!("CARGO_PKG_VERSION") {
return Ok(());
}
Err(crate::errors::ReflexError::CacheVersionMismatch {
owner_version,
owner_sha: owner_sha
.map(|s| format!(" (sha {})", &s[..s.len().min(7)]))
.unwrap_or_default(),
this_version: env!("CARGO_PKG_VERSION").to_string(),
}
.into())
}
/// Update cache schema hash in statistics table
///
/// This should be called after every index operation to ensure the cache
/// is marked as compatible with the current binary version.
pub fn update_schema_hash(&self) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn =
open_meta_db(&db_path).context("Failed to open meta.db for schema hash update")?;
let schema_hash = env!("CACHE_SCHEMA_HASH");
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["schema_hash", schema_hash, &now.to_string()],
)?;
// Keep ownership in step with the hash, so a refusal can always name a version.
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
[
"writer_version",
env!("CARGO_PKG_VERSION"),
&now.to_string(),
],
)?;
if let Some(sha) = option_env!("REFLEX_GIT_SHA") {
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["writer_git_sha", sha, &now.to_string()],
)?;
}
log::debug!("Updated schema hash to: {}", schema_hash);
Ok(())
}
/// Get list of all indexed files
pub fn list_files(&self) -> Result<Vec<IndexedFile>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(Vec::new());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let mut stmt =
conn.prepare("SELECT path, language, last_indexed FROM files ORDER BY path")?;
let files = stmt
.query_map([], |row| {
let path: String = row.get(0)?;
let language: String = row.get(1)?;
let last_indexed: i64 = row.get(2)?;
Ok(IndexedFile {
path,
language,
last_indexed: chrono::DateTime::from_timestamp(last_indexed, 0)
.unwrap_or_else(chrono::Utc::now)
.to_rfc3339(),
})
})?
.collect::<Result<Vec<_>, _>>()?;
Ok(files)
}
/// Get statistics about the current cache
///
/// Returns statistics for the current git branch if in a git repo,
/// or global statistics if not in a git repo.
pub fn stats(&self) -> Result<crate::models::IndexStats> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
// Cache not initialized
return Ok(crate::models::IndexStats {
total_files: 0,
index_size_bytes: 0,
last_updated: chrono::Utc::now().to_rfc3339(),
files_by_language: std::collections::HashMap::new(),
lines_by_language: std::collections::HashMap::new(),
..Default::default()
});
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
// Determine current branch for branch-aware statistics
let workspace_root = self.workspace_root();
let current_branch = if crate::git::is_git_repo(&workspace_root) {
crate::git::get_git_state(&workspace_root)
.ok()
.map(|state| state.branch)
} else {
Some("_default".to_string())
};
log::debug!("stats(): current_branch = {:?}", current_branch);
// Read total files (branch-aware)
let total_files: usize = if let Some(ref branch) = current_branch {
log::debug!("stats(): Counting files for branch '{}'", branch);
// Debug: Check all branches
let branches: Vec<(i64, String, i64)> = conn
.prepare("SELECT id, name, file_count FROM branches")
.and_then(|mut stmt| {
stmt.query_map([], |row| Ok((row.get(0)?, row.get(1)?, row.get(2)?)))
.map(|rows| rows.collect())
})
.and_then(|result| result)
.unwrap_or_default();
for (id, name, count) in &branches {
log::debug!(
"stats(): Branch ID={}, Name='{}', FileCount={}",
id,
name,
count
);
}
// Debug: Count file_branches per branch
let fb_counts: Vec<(String, i64)> = conn
.prepare(
"SELECT b.name, COUNT(*) FROM file_branches fb
JOIN branches b ON fb.branch_id = b.id
GROUP BY b.name",
)
.and_then(|mut stmt| {
stmt.query_map([], |row| Ok((row.get(0)?, row.get(1)?)))
.map(|rows| rows.collect())
})
.and_then(|result| result)
.unwrap_or_default();
for (name, count) in &fb_counts {
log::debug!(
"stats(): file_branches count for branch '{}': {}",
name,
count
);
}
// Count files for current branch only
let count: usize = conn
.query_row(
"SELECT COUNT(DISTINCT fb.file_id)
FROM file_branches fb
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?",
[branch],
|row| row.get(0),
)
.unwrap_or(0);
log::debug!("stats(): Query returned total_files = {}", count);
count
} else {
// No branch info - should not happen, but return 0
log::warn!("stats(): No current_branch detected!");
0
};
// Read last updated timestamp
let last_updated: String = conn
.query_row(
"SELECT updated_at FROM statistics WHERE key = 'total_files'",
[],
|row| {
let timestamp: i64 = row.get(0)?;
Ok(chrono::DateTime::from_timestamp(timestamp, 0)
.unwrap_or_else(chrono::Utc::now)
.to_rfc3339())
},
)
.unwrap_or_else(|_| chrono::Utc::now().to_rfc3339());
// Calculate total cache size (all binary files)
let mut index_size_bytes: u64 = 0;
for file_name in [
META_DB,
TOKENS_BIN,
CONFIG_TOML,
"content.bin",
"trigrams.bin",
] {
let file_path = self.cache_path.join(file_name);
if let Ok(metadata) = std::fs::metadata(&file_path) {
index_size_bytes += metadata.len();
}
}
// Get file count breakdown by language (branch-aware if possible)
let mut files_by_language = std::collections::HashMap::new();
if let Some(ref branch) = current_branch {
// Query files for current branch only
let mut stmt = conn.prepare(
"SELECT f.language, COUNT(DISTINCT f.id)
FROM files f
JOIN file_branches fb ON f.id = fb.file_id
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?
GROUP BY f.language",
)?;
let lang_counts = stmt.query_map([branch], |row| {
let language: String = row.get(0)?;
let count: i64 = row.get(1)?;
Ok((language, count as usize))
})?;
for result in lang_counts {
let (language, count) = result?;
files_by_language.insert(language, count);
}
} else {
// Fallback: query all files
let mut stmt =
conn.prepare("SELECT language, COUNT(*) FROM files GROUP BY language")?;
let lang_counts = stmt.query_map([], |row| {
let language: String = row.get(0)?;
let count: i64 = row.get(1)?;
Ok((language, count as usize))
})?;
for result in lang_counts {
let (language, count) = result?;
files_by_language.insert(language, count);
}
}
// Get line count breakdown by language (branch-aware if possible)
let mut lines_by_language = std::collections::HashMap::new();
if let Some(ref branch) = current_branch {
// Query lines for current branch only
let mut stmt = conn.prepare(
"SELECT f.language, SUM(f.line_count)
FROM files f
JOIN file_branches fb ON f.id = fb.file_id
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?
GROUP BY f.language",
)?;
let line_counts = stmt.query_map([branch], |row| {
let language: String = row.get(0)?;
let count: i64 = row.get(1)?;
Ok((language, count as usize))
})?;
for result in line_counts {
let (language, count) = result?;
lines_by_language.insert(language, count);
}
} else {
// Fallback: query all files
let mut stmt =
conn.prepare("SELECT language, SUM(line_count) FROM files GROUP BY language")?;
let line_counts = stmt.query_map([], |row| {
let language: String = row.get(0)?;
let count: i64 = row.get(1)?;
Ok((language, count as usize))
})?;
for result in line_counts {
let (language, count) = result?;
lines_by_language.insert(language, count);
}
}
Ok(crate::models::IndexStats {
total_files,
index_size_bytes,
last_updated,
files_by_language,
lines_by_language,
..Default::default()
})
}
// ===== Branch-aware indexing methods =====
/// Get or create a branch ID by name
///
/// Returns the numeric branch ID, creating a new entry if needed.
fn get_or_create_branch_id(
&self,
conn: &Connection,
branch_name: &str,
commit_sha: Option<&str>,
) -> Result<i64> {
// Try to get existing branch
let existing_id: Option<i64> = conn
.query_row(
"SELECT id FROM branches WHERE name = ?",
[branch_name],
|row| row.get(0),
)
.optional()?;
if let Some(id) = existing_id {
return Ok(id);
}
// Create new branch entry
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT INTO branches (name, commit_sha, last_indexed, file_count, is_dirty)
VALUES (?, ?, ?, 0, 0)",
[
branch_name,
commit_sha.unwrap_or("unknown"),
&now.to_string(),
],
)?;
// Get the ID we just created
let id: i64 = conn.last_insert_rowid();
Ok(id)
}
/// Record a file's hash for a specific branch
pub fn record_branch_file(
&self,
path: &str,
branch: &str,
hash: &str,
commit_sha: Option<&str>,
) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn =
open_meta_db(&db_path).context("Failed to open meta.db for branch file recording")?;
// Lookup file_id from path
let file_id: i64 = conn
.query_row("SELECT id FROM files WHERE path = ?", [path], |row| {
row.get(0)
})
.context(format!("File not found in index: {}", path))?;
// Get or create branch_id
let branch_id = self.get_or_create_branch_id(&conn, branch, commit_sha)?;
let now = chrono::Utc::now().timestamp();
// Insert using proper INTEGER types (not strings!)
conn.execute(
"INSERT OR REPLACE INTO file_branches (file_id, branch_id, hash, last_indexed)
VALUES (?, ?, ?, ?)",
rusqlite::params![file_id, branch_id, hash, now],
)?;
Ok(())
}
/// Batch record multiple files for a specific branch in a single transaction
///
/// IMPORTANT: Files must already exist in the `files` table before calling this method.
/// For atomic insertion of both files and branch hashes, use `batch_update_files_and_branch()` instead.
pub fn batch_record_branch_files(
&self,
files: &[(String, String)], // (path, hash)
branch: &str,
commit_sha: Option<&str>,
) -> Result<()> {
log::info!(
"batch_record_branch_files: Processing {} files for branch '{}'",
files.len(),
branch
);
let db_path = self.cache_path.join(META_DB);
let mut conn =
open_meta_db(&db_path).context("Failed to open meta.db for batch branch recording")?;
let now = chrono::Utc::now().timestamp();
// Use a transaction for batch inserts
let tx = conn.transaction()?;
// Get or create branch_id (use transaction connection)
let branch_id = self.get_or_create_branch_id(&tx, branch, commit_sha)?;
log::debug!("Got branch_id={} for branch '{}'", branch_id, branch);
let mut inserted = 0;
for (path, hash) in files {
// Lookup file_id from path
log::trace!("Looking up file_id for path: {}", path);
let file_id: i64 = tx
.query_row(
"SELECT id FROM files WHERE path = ?",
[path.as_str()],
|row| row.get(0),
)
.context(format!("File not found in index: {}", path))?;
log::trace!("Found file_id={} for path: {}", file_id, path);
// Insert using proper INTEGER types (not strings!)
tx.execute(
"INSERT OR REPLACE INTO file_branches (file_id, branch_id, hash, last_indexed)
VALUES (?, ?, ?, ?)",
rusqlite::params![file_id, branch_id, hash.as_str(), now],
)?;
inserted += 1;
}
log::info!("Inserted {} file_branches entries", inserted);
tx.commit()?;
log::info!("Transaction committed successfully");
Ok(())
}
/// Get all files indexed for a specific branch
///
/// Returns a HashMap of path → hash for all files in the branch.
pub fn get_branch_files(&self, branch: &str) -> Result<HashMap<String, String>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(HashMap::new());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let mut stmt = conn.prepare(
"SELECT f.path, fb.hash
FROM file_branches fb
JOIN files f ON fb.file_id = f.id
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?",
)?;
let files: HashMap<String, String> = stmt
.query_map([branch], |row| Ok((row.get(0)?, row.get(1)?)))?
.collect::<Result<HashMap<_, _>, _>>()?;
log::debug!(
"Loaded {} files for branch '{}' from file_branches table",
files.len(),
branch
);
Ok(files)
}
/// Check if a branch has any indexed files
///
/// Fast existence check using LIMIT 1 for O(1) performance.
pub fn branch_exists(&self, branch: &str) -> Result<bool> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(false);
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let count: i64 = conn
.query_row(
"SELECT COUNT(*)
FROM file_branches fb
JOIN branches b ON fb.branch_id = b.id
WHERE b.name = ?
LIMIT 1",
[branch],
|row| row.get(0),
)
.unwrap_or(0);
Ok(count > 0)
}
/// Get branch metadata (commit, last_indexed, file_count, dirty status)
pub fn get_branch_info(&self, branch: &str) -> Result<BranchInfo> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
anyhow::bail!("Database not initialized");
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let info = conn.query_row(
"SELECT commit_sha, last_indexed, file_count, is_dirty FROM branches WHERE name = ?",
[branch],
|row| {
Ok(BranchInfo {
branch: branch.to_string(),
commit_sha: row.get(0)?,
last_indexed: row.get(1)?,
file_count: row.get(2)?,
is_dirty: row.get::<_, i64>(3)? != 0,
})
},
)?;
Ok(info)
}
/// Update branch metadata after indexing
///
/// Uses UPDATE instead of INSERT OR REPLACE to preserve branch_id and prevent
/// CASCADE DELETE on file_branches table.
pub fn update_branch_metadata(
&self,
branch: &str,
commit_sha: Option<&str>,
file_count: usize,
is_dirty: bool,
) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn =
open_meta_db(&db_path).context("Failed to open meta.db for branch metadata update")?;
let now = chrono::Utc::now().timestamp();
let is_dirty_int = if is_dirty { 1 } else { 0 };
// Try UPDATE first to preserve branch_id (prevents CASCADE DELETE)
let rows_updated = conn.execute(
"UPDATE branches
SET commit_sha = ?, last_indexed = ?, file_count = ?, is_dirty = ?
WHERE name = ?",
rusqlite::params![
commit_sha.unwrap_or("unknown"),
now,
file_count,
is_dirty_int,
branch
],
)?;
// If no rows updated (branch doesn't exist yet), INSERT new one
if rows_updated == 0 {
conn.execute(
"INSERT INTO branches (name, commit_sha, last_indexed, file_count, is_dirty)
VALUES (?, ?, ?, ?, ?)",
rusqlite::params![
branch,
commit_sha.unwrap_or("unknown"),
now,
file_count,
is_dirty_int
],
)?;
}
log::debug!(
"Updated branch metadata for '{}': commit={}, files={}, dirty={}",
branch,
commit_sha.unwrap_or("unknown"),
file_count,
is_dirty
);
Ok(())
}
/// Find a file with a specific hash (for symbol reuse optimization)
///
/// Returns the path and branch where this hash was first seen,
/// enabling reuse of parsed symbols across branches.
pub fn find_file_with_hash(&self, hash: &str) -> Result<Option<(String, String)>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(None);
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let result = conn
.query_row(
"SELECT f.path, b.name
FROM file_branches fb
JOIN files f ON fb.file_id = f.id
JOIN branches b ON fb.branch_id = b.id
WHERE fb.hash = ?
LIMIT 1",
[hash],
|row| Ok((row.get(0)?, row.get(1)?)),
)
.optional()?;
Ok(result)
}
/// Get file ID by path
///
/// Returns the integer ID for a file path, or None if not found.
pub fn get_file_id(&self, path: &str) -> Result<Option<i64>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(None);
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
let result = conn
.query_row("SELECT id FROM files WHERE path = ?", [path], |row| {
row.get(0)
})
.optional()?;
Ok(result)
}
/// Batch get file IDs for multiple paths
///
/// Returns a HashMap of path → file_id for all found paths.
/// Paths not in the database are omitted from the result.
///
/// Automatically chunks large batches to avoid SQLite parameter limits (999 max).
pub fn batch_get_file_ids(&self, paths: &[String]) -> Result<HashMap<String, i64>> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
return Ok(HashMap::new());
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db")?;
// SQLite has a limit of 999 parameters by default
// Chunk requests to stay well under that limit
const BATCH_SIZE: usize = 900;
let mut results = HashMap::new();
for chunk in paths.chunks(BATCH_SIZE) {
// Build IN clause for this chunk
let placeholders = chunk.iter().map(|_| "?").collect::<Vec<_>>().join(", ");
let query = format!(
"SELECT path, id FROM files WHERE path IN ({})",
placeholders
);
let params: Vec<&str> = chunk.iter().map(|s| s.as_str()).collect();
let mut stmt = conn.prepare(&query)?;
let chunk_results = stmt
.query_map(rusqlite::params_from_iter(params), |row| {
Ok((row.get::<_, String>(0)?, row.get::<_, i64>(1)?))
})?
.collect::<Result<HashMap<_, _>, _>>()?;
results.extend(chunk_results);
}
log::debug!(
"Batch loaded {} file IDs (out of {} requested, {} chunks)",
results.len(),
paths.len(),
paths.len().div_ceil(BATCH_SIZE)
);
Ok(results)
}
// ===== Cache compaction methods =====
/// Check if cache compaction should run
///
/// Returns true if 24+ hours have passed since last compaction (or never compacted).
/// Compaction threshold: 86400 seconds (24 hours)
pub fn should_compact(&self) -> Result<bool> {
let db_path = self.cache_path.join(META_DB);
if !db_path.exists() {
// No database means no compaction needed
return Ok(false);
}
let conn = open_meta_db(&db_path).context("Failed to open meta.db for compaction check")?;
// Get last_compaction timestamp (defaults to "0" if not found)
let last_compaction: i64 = conn
.query_row(
"SELECT value FROM statistics WHERE key = 'last_compaction'",
[],
|row| {
let value: String = row.get(0)?;
Ok(value.parse::<i64>().unwrap_or(0))
},
)
.unwrap_or(0);
// Get current timestamp
let now = chrono::Utc::now().timestamp();
// Compaction threshold: 24 hours (86400 seconds)
const COMPACTION_THRESHOLD_SECS: i64 = 86400;
let elapsed_secs = now - last_compaction;
let should_run = elapsed_secs >= COMPACTION_THRESHOLD_SECS;
log::debug!(
"Compaction check: last={}, now={}, elapsed={}s, should_compact={}",
last_compaction,
now,
elapsed_secs,
should_run
);
Ok(should_run)
}
/// Update last_compaction timestamp in statistics table
///
/// Called after successful compaction to record when it ran.
pub fn update_compaction_timestamp(&self) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn = open_meta_db(&db_path)
.context("Failed to open meta.db for compaction timestamp update")?;
let now = chrono::Utc::now().timestamp();
conn.execute(
"INSERT OR REPLACE INTO statistics (key, value, updated_at) VALUES (?, ?, ?)",
["last_compaction", &now.to_string(), &now.to_string()],
)?;
log::debug!("Updated last_compaction timestamp to: {}", now);
Ok(())
}
/// Compact the cache by removing deleted files and reclaiming disk space
///
/// This operation:
/// 1. Identifies files in the database that no longer exist on disk
/// 2. Deletes those files from all database tables (CASCADE handles related data)
/// 3. Runs VACUUM to reclaim disk space from deleted rows
/// 4. Updates the last_compaction timestamp
///
/// Returns a CompactionReport with statistics about the operation.
/// Safe to run concurrently with queries (uses SQLite transactions).
pub fn compact(&self) -> Result<crate::models::CompactionReport> {
let start_time = std::time::Instant::now();
log::info!("Starting cache compaction...");
// Get initial cache size
let size_before = self.calculate_cache_size()?;
// Step 1: Identify deleted files (in DB but not on filesystem)
let deleted_files = self.identify_deleted_files()?;
log::info!(
"Found {} deleted files to remove from cache",
deleted_files.len()
);
if deleted_files.is_empty() {
log::info!("No deleted files to compact - cache is clean");
// Update timestamp anyway to prevent running compaction too frequently
self.update_compaction_timestamp()?;
return Ok(crate::models::CompactionReport {
files_removed: 0,
space_saved_bytes: 0,
duration_ms: start_time.elapsed().as_millis() as u64,
});
}
// Step 2: Delete from database (CASCADE handles file_branches, file_dependencies, file_exports)
self.delete_files_from_db(&deleted_files)?;
log::info!("Deleted {} files from database", deleted_files.len());
// Step 3: Run VACUUM to reclaim disk space
self.vacuum_database()?;
log::info!("Completed VACUUM operation");
// Get final cache size
let size_after = self.calculate_cache_size()?;
let space_saved = size_before.saturating_sub(size_after);
// Step 4: Update last_compaction timestamp
self.update_compaction_timestamp()?;
let duration_ms = start_time.elapsed().as_millis() as u64;
log::info!(
"Cache compaction completed: {} files removed, {} bytes saved ({:.2} MB), took {}ms",
deleted_files.len(),
space_saved,
space_saved as f64 / 1_048_576.0,
duration_ms
);
Ok(crate::models::CompactionReport {
files_removed: deleted_files.len(),
space_saved_bytes: space_saved,
duration_ms,
})
}
/// Identify files in database that no longer exist on filesystem
///
/// Returns a Vec of file IDs for files that should be removed from the cache.
pub(crate) fn identify_deleted_files(&self) -> Result<Vec<i64>> {
let db_path = self.cache_path.join(META_DB);
let conn = open_meta_db(&db_path)
.context("Failed to open meta.db for deleted file identification")?;
let workspace_root = self.workspace_root();
// Query all files from database (id, path)
let mut stmt = conn.prepare("SELECT id, path FROM files")?;
let files = stmt
.query_map([], |row| {
Ok((row.get::<_, i64>(0)?, row.get::<_, String>(1)?))
})?
.collect::<Result<Vec<_>, _>>()?;
log::debug!("Checking {} files for deletion status", files.len());
// Check which files no longer exist on disk
let mut deleted_file_ids = Vec::new();
for (file_id, file_path) in files {
let full_path = workspace_root.join(&file_path);
if !full_path.exists() {
log::trace!("File no longer exists: {} (id={})", file_path, file_id);
deleted_file_ids.push(file_id);
}
}
Ok(deleted_file_ids)
}
/// Delete files from database by file ID
///
/// Uses a transaction for atomicity. CASCADE delete handles:
/// - file_branches entries
/// - file_dependencies entries
/// - file_exports entries
pub(crate) fn delete_files_from_db(&self, file_ids: &[i64]) -> Result<()> {
if file_ids.is_empty() {
return Ok(());
}
let db_path = self.cache_path.join(META_DB);
let mut conn =
open_meta_db(&db_path).context("Failed to open meta.db for file deletion")?;
let tx = conn.transaction()?;
// Delete files in batches to avoid SQLite parameter limit (999 max)
const BATCH_SIZE: usize = 900;
for chunk in file_ids.chunks(BATCH_SIZE) {
let placeholders = chunk.iter().map(|_| "?").collect::<Vec<_>>().join(", ");
let delete_query = format!("DELETE FROM files WHERE id IN ({})", placeholders);
let params: Vec<i64> = chunk.to_vec();
tx.execute(&delete_query, rusqlite::params_from_iter(params))?;
}
tx.commit()?;
log::debug!(
"Deleted {} files from database (CASCADE handled related tables)",
file_ids.len()
);
Ok(())
}
/// Run VACUUM on SQLite database to reclaim disk space
///
/// VACUUM rebuilds the database file, removing free pages and compacting the file.
/// This can take several seconds on large databases but significantly reduces disk usage.
fn vacuum_database(&self) -> Result<()> {
let db_path = self.cache_path.join(META_DB);
let conn = open_meta_db(&db_path).context("Failed to open meta.db for VACUUM")?;
// VACUUM cannot run inside a transaction
// It rebuilds the entire database file
conn.execute("VACUUM", [])?;
log::debug!("VACUUM completed successfully");
Ok(())
}
/// Calculate total cache size in bytes
///
/// Sums up the size of all cache files:
/// - meta.db (SQLite database)
/// - trigrams.bin (inverted index)
/// - content.bin (file contents)
/// - config.toml (configuration)
fn calculate_cache_size(&self) -> Result<u64> {
let mut total_size: u64 = 0;
for file_name in [
META_DB,
TOKENS_BIN,
CONFIG_TOML,
"content.bin",
"trigrams.bin",
] {
let file_path = self.cache_path.join(file_name);
if let Ok(metadata) = std::fs::metadata(&file_path) {
total_size += metadata.len();
}
}
Ok(total_size)
}
}
/// Branch metadata information
#[derive(Debug, Clone)]
pub struct BranchInfo {
pub branch: String,
pub commit_sha: String,
pub last_indexed: i64,
pub file_count: usize,
pub is_dirty: bool,
}
// TODO: Implement memory-mapped readers for:
// - SymbolReader (reads from symbols.bin)
// - TokenReader (reads from tokens.bin)
// - MetaReader (reads from meta.db)
#[cfg(test)]
mod tests {
use super::*;
use tempfile::TempDir;
#[test]
fn test_cache_init() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
assert!(!cache.exists());
cache.init().unwrap();
assert!(cache.exists());
assert!(cache.path().exists());
// Verify all expected files were created
assert!(cache.path().join(META_DB).exists());
assert!(cache.path().join(CONFIG_TOML).exists());
}
#[test]
fn test_cache_init_idempotent() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
// Initialize twice - should not error
cache.init().unwrap();
cache.init().unwrap();
assert!(cache.exists());
}
#[test]
fn test_cache_clear() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
assert!(cache.exists());
cache.clear().unwrap();
assert!(!cache.exists());
}
#[test]
fn test_cache_clear_nonexistent() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
// Clearing non-existent cache should not error
assert!(!cache.exists());
cache.clear().unwrap();
assert!(!cache.exists());
}
#[test]
fn test_load_all_hashes_empty() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let hashes = cache.load_all_hashes().unwrap();
assert_eq!(hashes.len(), 0);
}
#[test]
fn test_load_all_hashes_before_init() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
// Loading hashes before init should return empty map
let hashes = cache.load_all_hashes().unwrap();
assert_eq!(hashes.len(), 0);
}
#[test]
fn test_load_hashes_for_branch_empty() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let hashes = cache.load_hashes_for_branch("main").unwrap();
assert_eq!(hashes.len(), 0);
}
#[test]
fn test_update_file() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("src/main.rs", "rust", 100).unwrap();
// Verify file was stored (check via list_files)
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 1);
assert_eq!(files[0].path, "src/main.rs");
assert_eq!(files[0].language, "rust");
}
#[test]
fn test_update_file_multiple() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache.update_file("src/lib.rs", "rust", 200).unwrap();
cache.update_file("README.md", "markdown", 50).unwrap();
// Verify files were stored
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 3);
}
#[test]
fn test_update_file_replace() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache.update_file("src/main.rs", "rust", 150).unwrap();
// Second update should replace the first
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 1);
assert_eq!(files[0].path, "src/main.rs");
}
#[test]
fn test_batch_update_files() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let files = vec![
("src/main.rs".to_string(), "rust".to_string(), 100),
("src/lib.rs".to_string(), "rust".to_string(), 200),
("test.py".to_string(), "python".to_string(), 50),
];
cache.batch_update_files(&files).unwrap();
// Verify files were stored
let stored_files = cache.list_files().unwrap();
assert_eq!(stored_files.len(), 3);
}
#[test]
fn test_update_stats() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache.update_file("src/lib.rs", "rust", 200).unwrap();
// Record files for a test branch
cache
.record_branch_file("src/main.rs", "_default", "hash1", None)
.unwrap();
cache
.record_branch_file("src/lib.rs", "_default", "hash2", None)
.unwrap();
cache.update_stats("_default").unwrap();
let stats = cache.stats().unwrap();
assert_eq!(stats.total_files, 2);
}
#[test]
fn test_stats_empty_cache() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let stats = cache.stats().unwrap();
assert_eq!(stats.total_files, 0);
assert_eq!(stats.files_by_language.len(), 0);
}
#[test]
fn test_stats_before_init() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
// Stats before init should return zeros
let stats = cache.stats().unwrap();
assert_eq!(stats.total_files, 0);
}
#[test]
fn test_stats_by_language() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("main.rs", "Rust", 100).unwrap();
cache.update_file("lib.rs", "Rust", 200).unwrap();
cache.update_file("script.py", "Python", 50).unwrap();
cache.update_file("test.py", "Python", 80).unwrap();
// Record files for a test branch
cache
.record_branch_file("main.rs", "_default", "hash1", None)
.unwrap();
cache
.record_branch_file("lib.rs", "_default", "hash2", None)
.unwrap();
cache
.record_branch_file("script.py", "_default", "hash3", None)
.unwrap();
cache
.record_branch_file("test.py", "_default", "hash4", None)
.unwrap();
cache.update_stats("_default").unwrap();
let stats = cache.stats().unwrap();
assert_eq!(stats.files_by_language.get("Rust"), Some(&2));
assert_eq!(stats.files_by_language.get("Python"), Some(&2));
assert_eq!(stats.lines_by_language.get("Rust"), Some(&300)); // 100 + 200
assert_eq!(stats.lines_by_language.get("Python"), Some(&130)); // 50 + 80
}
#[test]
fn test_list_files_empty() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 0);
}
#[test]
fn test_list_files() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache.update_file("src/lib.rs", "rust", 200).unwrap();
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 2);
// Files should be sorted by path
assert_eq!(files[0].path, "src/lib.rs");
assert_eq!(files[1].path, "src/main.rs");
assert_eq!(files[0].language, "rust");
}
#[test]
fn test_list_files_before_init() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
// Listing files before init should return empty vec
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 0);
}
#[test]
fn test_branch_exists() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
assert!(!cache.branch_exists("main").unwrap());
// Add file to index first (required for record_branch_file)
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache
.record_branch_file("src/main.rs", "main", "hash1", Some("commit123"))
.unwrap();
assert!(cache.branch_exists("main").unwrap());
assert!(!cache.branch_exists("feature-branch").unwrap());
}
#[test]
fn test_record_branch_file() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Add file to index first (required for record_branch_file)
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache
.record_branch_file("src/main.rs", "main", "hash1", Some("commit123"))
.unwrap();
let files = cache.get_branch_files("main").unwrap();
assert_eq!(files.len(), 1);
assert_eq!(files.get("src/main.rs"), Some(&"hash1".to_string()));
}
#[test]
fn test_get_branch_files_empty() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let files = cache.get_branch_files("nonexistent").unwrap();
assert_eq!(files.len(), 0);
}
#[test]
fn test_batch_record_branch_files() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Add files to index first (required for batch_record_branch_files)
let file_metadata = vec![
("src/main.rs".to_string(), "rust".to_string(), 100),
("src/lib.rs".to_string(), "rust".to_string(), 200),
("README.md".to_string(), "markdown".to_string(), 50),
];
cache.batch_update_files(&file_metadata).unwrap();
let files = vec![
("src/main.rs".to_string(), "hash1".to_string()),
("src/lib.rs".to_string(), "hash2".to_string()),
("README.md".to_string(), "hash3".to_string()),
];
cache
.batch_record_branch_files(&files, "main", Some("commit123"))
.unwrap();
let branch_files = cache.get_branch_files("main").unwrap();
assert_eq!(branch_files.len(), 3);
assert_eq!(branch_files.get("src/main.rs"), Some(&"hash1".to_string()));
assert_eq!(branch_files.get("src/lib.rs"), Some(&"hash2".to_string()));
assert_eq!(branch_files.get("README.md"), Some(&"hash3".to_string()));
}
#[test]
fn test_update_branch_metadata() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache
.update_branch_metadata("main", Some("commit123"), 10, false)
.unwrap();
let info = cache.get_branch_info("main").unwrap();
assert_eq!(info.branch, "main");
assert_eq!(info.commit_sha, "commit123");
assert_eq!(info.file_count, 10);
assert!(!info.is_dirty);
}
#[test]
fn test_update_branch_metadata_dirty() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
cache
.update_branch_metadata("feature", Some("commit456"), 5, true)
.unwrap();
let info = cache.get_branch_info("feature").unwrap();
assert!(info.is_dirty);
}
#[test]
fn test_find_file_with_hash() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Add file to index first (required for record_branch_file)
cache.update_file("src/main.rs", "rust", 100).unwrap();
cache
.record_branch_file("src/main.rs", "main", "unique_hash", Some("commit123"))
.unwrap();
let result = cache.find_file_with_hash("unique_hash").unwrap();
assert!(result.is_some());
let (path, branch) = result.unwrap();
assert_eq!(path, "src/main.rs");
assert_eq!(branch, "main");
}
#[test]
fn test_find_file_with_hash_not_found() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let result = cache.find_file_with_hash("nonexistent_hash").unwrap();
assert!(result.is_none());
}
#[test]
fn test_config_toml_created() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let config_path = cache.path().join(CONFIG_TOML);
let config_content = std::fs::read_to_string(&config_path).unwrap();
// Verify config contains expected sections
assert!(config_content.contains("[index]"));
assert!(config_content.contains("[search]"));
assert!(config_content.contains("[performance]"));
assert!(config_content.contains("max_file_size"));
}
#[test]
fn test_meta_db_schema() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
let db_path = cache.path().join(META_DB);
let conn = open_meta_db(&db_path).unwrap();
// Verify tables exist
let tables: Vec<String> = conn
.prepare("SELECT name FROM sqlite_master WHERE type='table'")
.unwrap()
.query_map([], |row| row.get(0))
.unwrap()
.collect::<Result<Vec<_>, _>>()
.unwrap();
assert!(tables.contains(&"files".to_string()));
assert!(tables.contains(&"statistics".to_string()));
assert!(tables.contains(&"config".to_string()));
assert!(tables.contains(&"file_branches".to_string()));
assert!(tables.contains(&"branches".to_string()));
assert!(tables.contains(&"file_dependencies".to_string()));
assert!(tables.contains(&"file_exports".to_string()));
}
#[test]
fn test_concurrent_file_updates() {
use std::thread;
let temp = TempDir::new().unwrap();
let cache_path = temp.path().to_path_buf();
let cache = CacheManager::new(&cache_path);
cache.init().unwrap();
// Spawn multiple threads updating different files
let handles: Vec<_> = (0..10)
.map(|i| {
let path = cache_path.clone();
thread::spawn(move || {
let cache = CacheManager::new(&path);
cache
.update_file(&format!("file_{}.rs", i), "rust", i * 10)
.unwrap();
})
})
.collect();
for handle in handles {
handle.join().unwrap();
}
let cache = CacheManager::new(&cache_path);
let files = cache.list_files().unwrap();
assert_eq!(files.len(), 10);
}
// ===== Corruption Detection Tests =====
#[test]
fn test_validate_corrupted_database() {
use std::io::Write;
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Corrupt the database by overwriting it with invalid data
let db_path = cache.path().join(META_DB);
let mut file = File::create(&db_path).unwrap();
file.write_all(b"CORRUPTED DATA").unwrap();
// Validation should fail due to database corruption
let result = cache.validate();
assert!(result.is_err());
let err_msg = result.unwrap_err().to_string();
eprintln!("Error message: {}", err_msg);
assert!(err_msg.contains("corrupted") || err_msg.contains("not a database"));
}
#[test]
fn test_validate_corrupted_trigrams() {
use std::io::Write;
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Create trigrams.bin with invalid magic bytes
let trigrams_path = cache.path().join("trigrams.bin");
let mut file = File::create(&trigrams_path).unwrap();
file.write_all(b"BADM").unwrap(); // Wrong magic bytes (should be "RFTG")
// Validation should fail due to invalid magic bytes
let result = cache.validate();
assert!(result.is_err());
let err = result.unwrap_err().to_string();
assert!(err.contains("trigrams.bin") && err.contains("corrupted"));
}
#[test]
fn test_validate_corrupted_content() {
use std::io::Write;
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Create content.bin with invalid magic bytes
let content_path = cache.path().join("content.bin");
let mut file = File::create(&content_path).unwrap();
file.write_all(b"BADM").unwrap(); // Wrong magic bytes (should be "RFCT")
// Validation should fail due to invalid magic bytes
let result = cache.validate();
assert!(result.is_err());
let err = result.unwrap_err().to_string();
assert!(err.contains("content.bin") && err.contains("corrupted"));
}
#[test]
fn test_validate_missing_schema_table() {
let temp = TempDir::new().unwrap();
let cache = CacheManager::new(temp.path());
cache.init().unwrap();
// Drop a required table to simulate schema corruption
let db_path = cache.path().join(META_DB);
let conn = open_meta_db(&db_path).unwrap();
conn.execute("DROP TABLE files", []).unwrap();
// Validation should fail due to missing required table
let result = cache.validate();
assert!(result.is_err());
let err = result.unwrap_err().to_string();
assert!(err.contains("files") && err.contains("missing"));
}
}