videre-core 0.11.1

Shared SQLite, caching, and search helpers for the videre media library CLI
Documentation
//! Aggregate library statistics for dashboard-style callers.
//! Plain queries over an open `rusqlite::Connection`, shared source of truth
//! for `videre report`'s stats tile, `videre stats`, and any other embedder.
//! See docs/superpowers/specs/2026-07-31-dashboard-stats-backend-design.md
//! (Pass A) for what is and isn't in scope.

use rusqlite::{Connection, Result};
use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Default, Serialize)]
pub struct LibraryStats {
    pub total_files: i64,
    pub total_size_bytes: i64,
    pub total_photos: i64,
    pub total_videos: i64,
    pub duplicate_group_count: i64,
    pub duplicate_file_count: i64,
    pub wasted_bytes: i64,
    pub faces_detected: i64,
    pub people_named: i64,
    /// One entry per model with an embedding database for this library.
    /// Empty when nothing has been embedded, which is a normal state.
    #[serde(default)]
    pub embeddings: Vec<crate::embeddings_db::ModelEmbeddingCount>,
}

use crate::db::table_exists;

const PHOTO_MIME_LIST: &str =
    "'image/jpeg','image/png','image/gif','image/webp','image/bmp','image/tiff','image/heic'";
const VIDEO_MIME_LIST: &str = "'video/quicktime','video/mp4'";

const PHOTO_EXTS: &str = "'jpg','jpeg','png','gif','webp','bmp','tiff','heic','dng'";
const VIDEO_EXTS: &str = "'mov','mp4'";

// `VIDEO_EXTS`'s values must stay in sync with
// `crate::embeddings::is_video_ext` (the shared "is this a video" check).
// The SQL below uses `lower(ext)` so this list stays case-insensitive,
// matching that helper.

pub fn compute(conn: &Connection) -> Result<LibraryStats> {
    let total_files: i64 = conn.query_row("SELECT COUNT(*) FROM file_hashes", [], |r| r.get(0))?;
    let total_size_bytes: i64 =
        conn.query_row("SELECT COALESCE(SUM(size_bytes), 0) FROM file_hashes", [], |r| r.get(0))?;
    let total_photos: i64 = conn.query_row(
        &format!(
            "SELECT COUNT(*) FROM file_hashes
             WHERE mime IN ({PHOTO_MIME_LIST})
                OR (mime IS NULL AND lower(ext) IN ({PHOTO_EXTS}))"
        ),
        [],
        |r| r.get(0),
    )?;
    let total_videos: i64 = conn.query_row(
        &format!(
            "SELECT COUNT(*) FROM file_hashes
             WHERE mime IN ({VIDEO_MIME_LIST})
                OR (mime IS NULL AND lower(ext) IN ({VIDEO_EXTS}))"
        ),
        [],
        |r| r.get(0),
    )?;

    let duplicate_group_count: i64 = conn.query_row(
        "SELECT COUNT(*) FROM \
         (SELECT hash FROM file_hashes GROUP BY hash HAVING COUNT(*) > 1)",
        [],
        |r| r.get(0),
    )?;
    let duplicate_file_count: i64 = conn.query_row(
        "SELECT COUNT(*) FROM file_hashes \
         WHERE hash IN (SELECT hash FROM file_hashes GROUP BY hash HAVING COUNT(*) > 1)",
        [],
        |r| r.get(0),
    )?;
    let wasted_bytes: i64 = conn.query_row(
        "SELECT COALESCE(SUM(size_bytes * (cnt - 1)), 0) FROM \
         (SELECT hash, size_bytes, COUNT(*) as cnt \
          FROM file_hashes GROUP BY hash HAVING cnt > 1)",
        [],
        |r| r.get(0),
    )?;

    let (faces_detected, people_named) = if table_exists(conn, "faces")? {
        let faces_detected: i64 = conn.query_row("SELECT COUNT(*) FROM faces", [], |r| r.get(0))?;
        let people_named: i64 = conn.query_row(
            "SELECT COUNT(DISTINCT person_label) FROM faces \
             WHERE confirmed = 1 AND person_label IS NOT NULL",
            [],
            |r| r.get(0),
        )?;
        (faces_detected, people_named)
    } else {
        (0, 0)
    };

    Ok(LibraryStats {
        total_files,
        total_size_bytes,
        total_photos,
        total_videos,
        duplicate_group_count,
        duplicate_file_count,
        wasted_bytes,
        faces_detected,
        people_named,
        embeddings: Vec::new(),
    })
}

/// `compute`, plus the per-model embedding inventory.
///
/// Separate from `compute` because embeddings live outside the connection, in
/// files addressed by the library's own path. `videre report`'s stats tile
/// keeps calling `compute` and is unaffected.
pub fn compute_full(conn: &Connection, db_path: &std::path::Path) -> anyhow::Result<LibraryStats> {
    let mut stats = compute(conn)?;
    stats.embeddings = crate::embeddings_db::counts_by_model(db_path)?;
    Ok(stats)
}

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

    fn test_db() -> Connection {
        let conn = Connection::open_in_memory().unwrap();
        conn.execute_batch(
            "CREATE TABLE file_hashes (
                path        TEXT PRIMARY KEY,
                hash        TEXT NOT NULL,
                size_bytes  INTEGER,
                ext         TEXT
            );",
        )
        .unwrap();
        crate::db::ensure_file_hashes_columns(&conn);
        conn
    }

    fn insert_file(conn: &Connection, path: &str, hash: &str, size_bytes: i64, ext: &str) {
        conn.execute(
            "INSERT INTO file_hashes (path, hash, size_bytes, ext) VALUES (?1, ?2, ?3, ?4)",
            rusqlite::params![path, hash, size_bytes, ext],
        )
        .unwrap();
    }

    #[test]
    fn compute_counts_total_files_and_size() {
        let conn = test_db();
        insert_file(&conn, "/a/1.jpg", "h1", 1000, "jpg");
        insert_file(&conn, "/a/2.png", "h2", 2500, "png");

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.total_files, 2);
        assert_eq!(stats.total_size_bytes, 3500);
    }

    #[test]
    fn compute_on_empty_db_returns_zeros() {
        let conn = test_db();
        let stats = compute(&conn).unwrap();
        assert_eq!(stats.total_files, 0);
        assert_eq!(stats.total_size_bytes, 0);
    }

    #[test]
    fn compute_splits_photos_and_videos_by_extension() {
        let conn = test_db();
        insert_file(&conn, "/a/1.jpg", "h1", 100, "jpg");
        insert_file(&conn, "/a/2.heic", "h2", 100, "heic");
        insert_file(&conn, "/a/3.mov", "h3", 100, "mov");
        insert_file(&conn, "/a/4.mp4", "h4", 100, "mp4");
        insert_file(&conn, "/a/5.unknown", "h5", 100, "xyz");

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.total_photos, 2);
        assert_eq!(stats.total_videos, 2);
        assert_eq!(stats.total_files, 5); // unrecognized ext still counts toward total_files
    }

    #[test]
    fn compute_counts_video_exts_case_insensitively() {
        let conn = test_db();
        insert_file(&conn, "/a/1.MOV", "h1", 100, "MOV");
        insert_file(&conn, "/a/2.Mp4", "h2", 100, "Mp4");
        insert_file(&conn, "/a/3.mov", "h3", 100, "mov");

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.total_videos, 3); // uppercase/mixed-case exts still count as video
    }

    #[test]
    fn compute_counts_duplicate_groups_and_wasted_bytes() {
        let conn = test_db();
        insert_file(&conn, "/a/1.jpg", "dup-hash", 1000, "jpg");
        insert_file(&conn, "/b/1-copy.jpg", "dup-hash", 1000, "jpg");
        insert_file(&conn, "/a/2.jpg", "dup-hash", 1000, "jpg");
        insert_file(&conn, "/a/3.jpg", "unique-hash", 500, "jpg");

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.duplicate_group_count, 1);
        assert_eq!(stats.duplicate_file_count, 3); // all 3 members of the dup group
        assert_eq!(stats.wasted_bytes, 2000); // (3 - 1) * 1000
    }

    #[test]
    fn compute_with_no_duplicates_reports_zero() {
        let conn = test_db();
        insert_file(&conn, "/a/1.jpg", "h1", 500, "jpg");
        insert_file(&conn, "/a/2.jpg", "h2", 500, "jpg");

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.duplicate_group_count, 0);
        assert_eq!(stats.duplicate_file_count, 0);
        assert_eq!(stats.wasted_bytes, 0);
    }

    #[test]
    fn compute_counts_faces_and_named_people() {
        let conn = test_db();
        conn.execute_batch(
            "CREATE TABLE faces (
                id            INTEGER PRIMARY KEY,
                hash          TEXT NOT NULL,
                bbox          TEXT NOT NULL,
                landmark      TEXT,
                embedding     BLOB NOT NULL,
                cluster_id    INTEGER,
                person_label  TEXT,
                confirmed     INTEGER DEFAULT 0,
                is_primary    INTEGER DEFAULT 0
            );",
        )
        .unwrap();
        conn.execute(
            "INSERT INTO faces (id, hash, bbox, embedding, person_label, confirmed) \
             VALUES (1, 'h1', '[]', X'00', 'Alice', 1)",
            [],
        )
        .unwrap();
        conn.execute(
            "INSERT INTO faces (id, hash, bbox, embedding, person_label, confirmed) \
             VALUES (2, 'h1', '[]', X'00', 'Alice', 1)",
            [],
        )
        .unwrap();
        conn.execute(
            "INSERT INTO faces (id, hash, bbox, embedding, person_label, confirmed) \
             VALUES (3, 'h2', '[]', X'00', NULL, 0)",
            [],
        )
        .unwrap();

        let stats = compute(&conn).unwrap();
        assert_eq!(stats.faces_detected, 3);
        assert_eq!(stats.people_named, 1); // distinct confirmed person_label
    }

    #[test]
    fn compute_without_faces_table_returns_zero_not_error() {
        let conn = test_db(); // no faces table created
        let stats = compute(&conn).unwrap();
        assert_eq!(stats.faces_detected, 0);
        assert_eq!(stats.people_named, 0);
    }
}