ripvec-core 3.1.1

Semantic code + document search engine. Cacheless static-embedding + cross-encoder rerank by default; optional ModernBERT/BGE transformer engines with GPU backends. Tree-sitter chunking, hybrid BM25 + PageRank, composable ranking layers.
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
//! In-memory manifest tracking indexed files for online reconciliation.
//!
//! Each entry stores cheap stat data — `(mtime, size, inode)` on Unix
//! (`inode = 0` on Windows / unavailable filesystems) — plus a blake3
//! content hash. Reconciliation runs on every search via
//! [`RipvecIndex::diff_against`](super::index::RipvecIndex::diff_against):
//!
//!   1. Walk the corpus with the same [`WalkOptions`] used at index
//!      construction.
//!   2. For each walked file: compare the stat tuple to the manifest
//!      entry. Match → guaranteed-unchanged, skip.
//!   3. For mismatches: read the file, blake3-hash, compare against the
//!      stored hash. Match → metadata-only change (vim save-no-edit,
//!      build-tool touch), update the manifest's stat tuple in place to
//!      short-circuit future diffs. Mismatch → record as `dirty`.
//!   4. Manifest entries not seen during the walk → `deleted`.
//!   5. Walked paths not in the manifest → `new`.
//!
//! If the resulting [`Diff`] is empty, the existing index is up-to-date
//! and no work is needed. Otherwise the caller rebuilds.
//!
//! # Why blake3 + the stat tuple
//!
//! The stat tuple is the cheap pre-filter: warm `stat()` is ~1 µs per
//! file, so the whole tuple check on a 200-file repo is sub-millisecond.
//! Most files won't have a stat change between queries; the cheap path
//! skips them entirely.
//!
//! When the stat tuple *does* mismatch, the question is whether content
//! actually changed. Reading + blake3'ing a typical 1-30 KB source file
//! costs ~1-20 µs warm — two orders of magnitude cheaper than the
//! ~1-5 ms cost of re-chunking and re-embedding it. The break-even is
//! "blake3 is worth it when more than 0.7% of stat changes are touches
//! rather than real edits"; real-world workflows have 5-50% touch rates
//! (vim `:w` with no edits, autoformatters that hash-equal their input,
//! build tools that touch source for dependency tracking).
//!
//! # Inode as a third dimension
//!
//! `(mtime, size)` alone has a rare blind spot: same-byte-count
//! content swaps. Atomic-rename saves (the modern editor default) bump
//! the inode, so adding `inode` to the tuple catches those without a
//! blake3 round-trip. Inode is best-effort: 0 on Windows, where we
//! fall back to `(mtime, size)`. The blake3 verification path still
//! guarantees correctness even when the inode signal is unavailable.

use std::collections::{HashMap, HashSet};
use std::path::{Path, PathBuf};
use std::time::SystemTime;

/// One file's tracked state in the manifest.
///
/// Constructed via [`FileEntry::from_bytes`] when the caller already has
/// the file bytes in hand (avoids a redundant read), or via
/// [`FileEntry::from_path`] when only the path is known.
#[derive(Debug, Clone)]
pub struct FileEntry {
    /// Last modification time, or `UNIX_EPOCH` if the platform doesn't
    /// expose it. Used as the first part of the cheap stat-tuple check.
    pub mtime: SystemTime,
    /// File size in bytes, second part of the stat tuple.
    pub size: u64,
    /// File inode number on Unix (`0` on Windows / unavailable). Third
    /// part of the stat tuple; catches atomic-rename saves where mtime
    /// and size could coincide with the previous entry.
    pub ino: u64,
    /// Blake3 content hash. Authoritative — when the stat tuple changes,
    /// this confirms whether content actually changed vs. a touch.
    pub blake3: [u8; 32],
}

impl FileEntry {
    /// Build an entry from filesystem metadata and the file's bytes.
    ///
    /// Use this when the caller has already read the file (e.g., during
    /// chunking) to avoid the redundant read for blake3 hashing.
    #[must_use]
    pub fn from_bytes(metadata: &std::fs::Metadata, bytes: &[u8]) -> Self {
        Self {
            mtime: metadata.modified().unwrap_or(SystemTime::UNIX_EPOCH),
            size: metadata.len(),
            ino: inode(metadata),
            blake3: *blake3::hash(bytes).as_bytes(),
        }
    }

    /// Build an entry by reading the file from disk.
    ///
    /// Reads the file once for blake3. Use [`Self::from_bytes`] if the
    /// caller already has the bytes.
    ///
    /// # Errors
    ///
    /// Returns the I/O error if stat or read fails.
    pub fn from_path(path: &Path) -> std::io::Result<Self> {
        let metadata = std::fs::metadata(path)?;
        let bytes = std::fs::read(path)?;
        Ok(Self::from_bytes(&metadata, &bytes))
    }
}

/// Per-root manifest of indexed files.
///
/// Keys are absolute, canonical paths (matching the paths returned by
/// [`crate::walk::collect_files_with_options`]).
#[derive(Debug, Clone, Default)]
pub struct Manifest {
    pub files: HashMap<PathBuf, FileEntry>,
}

impl Manifest {
    /// Construct an empty manifest.
    #[must_use]
    pub fn new() -> Self {
        Self {
            files: HashMap::new(),
        }
    }

    /// Number of tracked files.
    #[must_use]
    pub fn len(&self) -> usize {
        self.files.len()
    }

    /// Whether the manifest tracks zero files.
    #[must_use]
    pub fn is_empty(&self) -> bool {
        self.files.is_empty()
    }

    /// Insert or replace an entry.
    pub fn insert(&mut self, path: PathBuf, entry: FileEntry) {
        self.files.insert(path, entry);
    }

    /// Look up an entry by path.
    #[must_use]
    pub fn get(&self, path: &Path) -> Option<&FileEntry> {
        self.files.get(path)
    }
}

/// Categorized filesystem changes detected by [`diff_against_walk`].
///
/// All three vectors hold absolute paths (matching the walk's output).
/// A [`Diff`] is "empty" only when every list is empty; the
/// [`Self::is_empty`] helper exists to make this the canonical
/// "no-work-needed" check.
#[derive(Debug, Default)]
pub struct Diff {
    /// Files present in both manifest and walk whose content changed.
    pub dirty: Vec<PathBuf>,
    /// Files present in the walk but not in the manifest.
    pub new: Vec<PathBuf>,
    /// Files present in the manifest but not in the walk.
    pub deleted: Vec<PathBuf>,
}

impl Diff {
    /// Whether all change lists are empty.
    #[must_use]
    pub fn is_empty(&self) -> bool {
        self.dirty.is_empty() && self.new.is_empty() && self.deleted.is_empty()
    }

    /// Total number of changed files across all categories.
    #[must_use]
    pub fn total(&self) -> usize {
        self.dirty.len() + self.new.len() + self.deleted.len()
    }
}

/// Compare the manifest to the current filesystem state and produce a
/// [`Diff`].
///
/// The walked file set is supplied by the caller (typically via
/// [`crate::walk::collect_files_with_options`]) so this function does no
/// I/O for path discovery — only per-file stat and (on stat mismatch)
/// content read for blake3 verification.
///
/// # Mutation of the manifest
///
/// When a file's stat tuple changes but its blake3 hash still matches
/// the manifest entry (the touch-without-content-change case), this
/// function updates the entry's `(mtime, size, ino)` in place. This is
/// not a correctness step — the diff is the same with or without the
/// update — but it short-circuits future diffs on the same touched
/// file: the next call sees the new stat tuple, hits the cheap-path
/// match, and skips the blake3 read.
///
/// # Robustness
///
/// Files that vanish between the walk and the per-file stat (rare race)
/// are silently skipped; they will appear in `deleted` on the next
/// diff. Permission errors are treated similarly. The function never
/// fails — every call returns a [`Diff`].
pub fn diff_against_walk(manifest: &mut Manifest, current_files: &[PathBuf]) -> Diff {
    let mut diff = Diff::default();
    let mut seen: HashSet<&Path> = HashSet::with_capacity(current_files.len());

    for path in current_files {
        seen.insert(path.as_path());
        let Ok(metadata) = std::fs::metadata(path) else {
            // Vanished between walk and stat; let the next diff catch
            // it via the deleted-files pass.
            continue;
        };
        let mtime = metadata.modified().unwrap_or(SystemTime::UNIX_EPOCH);
        let size = metadata.len();
        let ino = inode(&metadata);

        match manifest.files.get(path) {
            None => {
                diff.new.push(path.clone());
            }
            Some(entry) => {
                if entry.mtime == mtime && entry.size == size && entry.ino == ino {
                    // Stat tuple unchanged → content guaranteed
                    // unchanged. The cheap path.
                    continue;
                }
                // Stat changed; blake3 to distinguish real edits from
                // metadata-only touches.
                let Ok(bytes) = std::fs::read(path) else {
                    // Treat permission/read errors conservatively as
                    // dirty so the rebuild path notices.
                    diff.dirty.push(path.clone());
                    continue;
                };
                let new_hash = *blake3::hash(&bytes).as_bytes();
                if new_hash == entry.blake3 {
                    // Touch without content change. Refresh the stat
                    // tuple so the next diff hits the cheap path.
                    if let Some(entry_mut) = manifest.files.get_mut(path) {
                        entry_mut.mtime = mtime;
                        entry_mut.size = size;
                        entry_mut.ino = ino;
                    }
                } else {
                    diff.dirty.push(path.clone());
                }
            }
        }
    }

    // Manifest entries we didn't visit during the walk → deleted (or
    // filtered out of the walk by changed `WalkOptions`, which the
    // caller treats identically: drop the chunks).
    for path in manifest.files.keys() {
        if !seen.contains(path.as_path()) {
            diff.deleted.push(path.clone());
        }
    }

    diff
}

#[cfg(unix)]
fn inode(metadata: &std::fs::Metadata) -> u64 {
    use std::os::unix::fs::MetadataExt;
    metadata.ino()
}

#[cfg(not(unix))]
fn inode(_metadata: &std::fs::Metadata) -> u64 {
    0
}

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

    fn write_file(dir: &Path, name: &str, content: &[u8]) -> PathBuf {
        let path = dir.join(name);
        let mut f = std::fs::File::create(&path).unwrap();
        f.write_all(content).unwrap();
        path
    }

    fn manifest_with(path: PathBuf, content: &[u8]) -> Manifest {
        let metadata = std::fs::metadata(&path).unwrap();
        let entry = FileEntry::from_bytes(&metadata, content);
        let mut m = Manifest::new();
        m.insert(path, entry);
        m
    }

    #[test]
    fn empty_diff_against_empty_walk() {
        let mut m = Manifest::new();
        let diff = diff_against_walk(&mut m, &[]);
        assert!(diff.is_empty());
        assert_eq!(diff.total(), 0);
    }

    #[test]
    fn detects_new_file() {
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "a.txt", b"hello");
        let mut m = Manifest::new();
        let diff = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert_eq!(diff.new, vec![p1]);
        assert!(diff.dirty.is_empty());
        assert!(diff.deleted.is_empty());
    }

    #[test]
    fn detects_deleted_file_via_missing_from_walk() {
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "gone.txt", b"hello");
        let mut m = manifest_with(p1.clone(), b"hello");
        std::fs::remove_file(&p1).unwrap();
        // Caller walked the dir — empty since gone.txt is gone
        let diff = diff_against_walk(&mut m, &[]);
        assert_eq!(diff.deleted, vec![p1]);
        assert!(diff.dirty.is_empty());
        assert!(diff.new.is_empty());
    }

    #[test]
    fn unchanged_file_skipped_via_stat_tuple() {
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "stable.txt", b"hello");
        let mut m = manifest_with(p1.clone(), b"hello");
        let diff = diff_against_walk(&mut m, &[p1]);
        assert!(diff.is_empty(), "stat tuple match must skip blake3");
    }

    #[test]
    fn detects_content_change_when_size_changes() {
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "edit.txt", b"hello");
        let mut m = manifest_with(p1.clone(), b"hello");
        std::thread::sleep(std::time::Duration::from_millis(20));
        write_file(dir.path(), "edit.txt", b"hello world"); // size change
        let diff = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert_eq!(diff.dirty, vec![p1]);
    }

    #[test]
    fn detects_content_change_when_size_unchanged() {
        let dir = TempDir::new().unwrap();
        // Same byte count, different content
        let p1 = write_file(dir.path(), "rename-vars.rs", b"let foo = 1;");
        let mut m = manifest_with(p1.clone(), b"let foo = 1;");
        std::thread::sleep(std::time::Duration::from_millis(20));
        write_file(dir.path(), "rename-vars.rs", b"let bar = 1;"); // same size
        let diff = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert_eq!(diff.dirty, vec![p1], "blake3 must catch same-size change");
    }

    #[test]
    fn touched_but_unchanged_does_not_appear_in_diff() {
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "touched.txt", b"identical");
        let mut m = manifest_with(p1.clone(), b"identical");
        let original_mtime = m.get(&p1).unwrap().mtime;
        std::thread::sleep(std::time::Duration::from_millis(20));
        // Rewrite same content → mtime updates, blake3 same
        write_file(dir.path(), "touched.txt", b"identical");
        let new_mtime_on_disk = std::fs::metadata(&p1).unwrap().modified().unwrap();
        assert_ne!(
            original_mtime, new_mtime_on_disk,
            "setup: mtime must differ for this test to mean anything"
        );

        let diff = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert!(
            diff.is_empty(),
            "touch-without-content-change must not appear in diff"
        );

        // Manifest's mtime must be refreshed so the next diff hits the
        // cheap stat-tuple path instead of re-blake3'ing.
        let refreshed = m.get(&p1).unwrap();
        assert_eq!(
            refreshed.mtime, new_mtime_on_disk,
            "manifest mtime must be refreshed on touch-without-change"
        );
    }

    #[test]
    fn touched_unchanged_then_real_change_still_detected() {
        // Regression guard: the manifest update on touch-without-change
        // must not mask a subsequent real edit.
        let dir = TempDir::new().unwrap();
        let p1 = write_file(dir.path(), "twice.txt", b"original");
        let mut m = manifest_with(p1.clone(), b"original");

        std::thread::sleep(std::time::Duration::from_millis(20));
        write_file(dir.path(), "twice.txt", b"original"); // touch only
        let diff1 = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert!(diff1.is_empty(), "first pass: touch only");

        std::thread::sleep(std::time::Duration::from_millis(20));
        write_file(dir.path(), "twice.txt", b"modified"); // real change
        let diff2 = diff_against_walk(&mut m, std::slice::from_ref(&p1));
        assert_eq!(diff2.dirty, vec![p1], "second pass: real edit detected");
    }

    #[test]
    fn new_plus_deleted_plus_dirty_simultaneously() {
        let dir = TempDir::new().unwrap();
        let keep = write_file(dir.path(), "keep.txt", b"keep");
        let edit = write_file(dir.path(), "edit.txt", b"orig");
        let gone = write_file(dir.path(), "gone.txt", b"gone");
        let added_path = dir.path().join("added.txt"); // new file we'll write below

        let mut m = Manifest::new();
        let keep_meta = std::fs::metadata(&keep).unwrap();
        let edit_meta = std::fs::metadata(&edit).unwrap();
        let gone_meta = std::fs::metadata(&gone).unwrap();
        m.insert(keep.clone(), FileEntry::from_bytes(&keep_meta, b"keep"));
        m.insert(edit.clone(), FileEntry::from_bytes(&edit_meta, b"orig"));
        m.insert(gone.clone(), FileEntry::from_bytes(&gone_meta, b"gone"));

        std::thread::sleep(std::time::Duration::from_millis(20));
        write_file(dir.path(), "edit.txt", b"changed");
        std::fs::remove_file(&gone).unwrap();
        write_file(dir.path(), "added.txt", b"added");

        let walk = vec![keep.clone(), edit.clone(), added_path.clone()];
        let diff = diff_against_walk(&mut m, &walk);
        assert_eq!(diff.dirty, vec![edit]);
        assert_eq!(diff.new, vec![added_path]);
        assert_eq!(diff.deleted, vec![gone]);
        assert!(!diff.is_empty());
        assert_eq!(diff.total(), 3);
    }

    #[test]
    fn file_entry_from_path_round_trips_from_bytes() {
        let dir = TempDir::new().unwrap();
        let p = write_file(dir.path(), "x.txt", b"some content");
        let from_path = FileEntry::from_path(&p).unwrap();
        let metadata = std::fs::metadata(&p).unwrap();
        let from_bytes = FileEntry::from_bytes(&metadata, b"some content");
        assert_eq!(from_path.blake3, from_bytes.blake3);
        assert_eq!(from_path.size, from_bytes.size);
        // mtime may differ by stat-resolution if the OS updated atime
        // between calls; size + hash are the load-bearing invariants.
    }

    #[test]
    fn manifest_default_is_empty() {
        let m = Manifest::default();
        assert!(m.is_empty());
        assert_eq!(m.len(), 0);
    }

    #[cfg(unix)]
    #[test]
    fn inode_is_non_zero_on_unix() {
        let dir = TempDir::new().unwrap();
        let p = write_file(dir.path(), "x", b"data");
        let entry = FileEntry::from_path(&p).unwrap();
        assert!(entry.ino > 0, "Unix metadata must produce a non-zero inode");
    }
}