panproto-git 0.39.0

Bidirectional git ↔ panproto-vcs translation bridge
Documentation
//! Error types for git bridge operations.

use miette::Diagnostic;

/// Errors from git ↔ panproto-vcs translation.
#[non_exhaustive]
#[derive(Debug, thiserror::Error, Diagnostic)]
pub enum GitBridgeError {
    /// A git operation failed.
    #[error("git error: {0}")]
    Git(#[from] git2::Error),

    /// A panproto-vcs operation failed.
    #[error("vcs error: {0}")]
    Vcs(#[from] panproto_vcs::VcsError),

    /// A project assembly operation failed.
    #[error("project error: {0}")]
    Project(#[from] panproto_project::ProjectError),

    /// A parse operation failed.
    #[error("parse error: {0}")]
    Parse(#[from] panproto_parse::ParseError),

    /// The git repository has no commits.
    #[error("repository has no commits")]
    EmptyRepository,

    /// A git object could not be read.
    #[error("failed to read git object {oid}: {reason}")]
    ObjectRead {
        /// The git object ID.
        oid: String,
        /// The reason the read failed.
        reason: String,
    },

    /// A file in the git tree could not be decoded as UTF-8.
    #[error("file {path} is not valid UTF-8")]
    NotUtf8 {
        /// The file path.
        path: String,
    },

    /// An on-disk blob cache failed to load or save.
    ///
    /// Distinct from a missing cache file, which is treated as an
    /// empty map: this variant is emitted only for genuine corruption
    /// or I/O failure. Callers with a `--reset-blob-cache` flag can
    /// match on this and delete the file before retrying.
    #[error("blob cache error: {0}")]
    BlobCache(String),

    /// A git tree entry name is not valid UTF-8.
    ///
    /// Panproto protocol detection and cross-file import resolution
    /// both key on UTF-8 paths, so a non-UTF-8 tree entry is a
    /// genuine error rather than something to be silently mapped to
    /// `"(unnamed)"`.
    #[error("git tree entry name is not valid UTF-8 under parent {parent:?}")]
    NonUtf8TreeEntry {
        /// Display of the parent path, using forward slashes.
        parent: String,
    },
}