frigg 0.9.1

Frigg gives AI agents local, source-backed code search and navigation without sending whole repositories through every prompt.
Documentation
//! SQLite storage path helpers shared by CLI bootstrap, index, and maintenance commands.
//!
//! Centralizes provenance DB path resolution and parent-dir creation for bootstrap, index, and
//! maintenance commands.

use std::io;
use std::path::{Path, PathBuf};

use frigg::storage::{ensure_provenance_db_parent_dir, resolve_provenance_db_path};

use crate::cli_runtime::{OutputLevel, field, format_output_event_line};

#[cfg(test)]
pub(crate) fn find_enclosing_git_root(start: &Path) -> Option<PathBuf> {
    start.ancestors().find_map(|ancestor| {
        ancestor
            .join(".git")
            .exists()
            .then(|| ancestor.to_path_buf())
    })
}

/// Resolves the provenance SQLite path for a workspace root with structured CLI error formatting.
pub(crate) fn resolve_storage_db_path(
    workspace_root: &Path,
    command_name: &str,
) -> io::Result<PathBuf> {
    resolve_provenance_db_path(workspace_root).map_err(|err| {
        io::Error::other(format_output_event_line(
            OutputLevel::Error,
            command_name,
            "failed",
            &[
                field("status", "failed"),
                field("root", workspace_root.display()),
                field("error", err),
            ],
            None,
        ))
    })
}

/// Ensures the storage database parent directory exists before bootstrap or index writes.
pub(crate) fn ensure_storage_db_path_for_write(
    workspace_root: &Path,
    command_name: &str,
) -> io::Result<PathBuf> {
    ensure_provenance_db_parent_dir(workspace_root).map_err(|err| {
        io::Error::other(format_output_event_line(
            OutputLevel::Error,
            command_name,
            "failed",
            &[
                field("status", "failed"),
                field("root", workspace_root.display()),
                field("error", err),
            ],
            None,
        ))
    })
}