qdrant-edge 0.8.0

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
use std::fmt;
use std::ops::Deref;
use std::path::Path;

use crate::common::mmap::{Advice, AdviceSetting};
use crate::common::universal_io::{
    CachedReadFs, OpenOptions, Populate, UioResult, UniversalRead, UniversalReadFs,
};

/// Thin RAII wrapper around a [`UniversalRead`] handle for a one-shot read.
///
/// It dereferences to the wrapped backend, so it reads exactly like any
/// [`UniversalRead`]. On drop it evicts the data from the RAM/page cache via
/// [`UniversalRead::clear_ram_cache`], so loading a file fully into application
/// memory does not leave the cache populated afterwards.
///
/// This is the [`UniversalRead`] counterpart of [`crate::fs::OneshotFile`]: it
/// works over any backend (mmap, io_uring, object storage, …) instead of a local
/// file handle.
pub struct OneshotFile<S: UniversalRead> {
    inner: S,
}

impl<S: UniversalRead> OneshotFile<S> {
    fn open_options(populate: Populate) -> OpenOptions {
        OpenOptions {
            writeable: false,
            need_sequential: true,
            populate,
            advice: AdviceSetting::Advice(Advice::Sequential),
        }
    }

    /// Schedule background prefetch of `path` for a later [`Self::open`].
    ///
    /// A one-shot file is always read in full, so the prefetch populates it —
    /// the fetch overlaps whatever runs between the schedule and the open.
    pub fn preopen<Fs: CachedReadFs<File = S>>(fs: &Fs, path: impl AsRef<Path>) -> UioResult<()> {
        fs.schedule_prefetch(
            path.as_ref(),
            Some(Self::open_options(Populate::PreferBackground)),
            None,
        )
    }

    /// Open `path` read-only through `fs` for a single sequential read.
    pub fn open<Fs: UniversalReadFs<File = S>>(fs: &Fs, path: impl AsRef<Path>) -> UioResult<Self> {
        let inner = fs.open(path, Self::open_options(Populate::No), Default::default())?;
        Ok(Self { inner })
    }

    /// Wrap an already-opened [`UniversalRead`] handle for one-shot use.
    pub fn new(inner: S) -> Self {
        Self { inner }
    }
}

impl<S: UniversalRead> Deref for OneshotFile<S> {
    type Target = S;

    fn deref(&self) -> &S {
        &self.inner
    }
}

impl<S: UniversalRead> fmt::Debug for OneshotFile<S> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let Self { inner } = self;
        f.debug_struct("OneshotFile").field("inner", inner).finish()
    }
}

impl<S: UniversalRead> Drop for OneshotFile<S> {
    fn drop(&mut self) {
        if let Err(err) = self.inner.clear_ram_cache() {
            log::warn!("Failed to clear RAM cache for one-shot file: {err}");
        }
    }
}