use std::collections::HashSet; use gix_hash::ObjectId; use gix_revision::spec::parse; use crate::{bstr::BStr, revision::Spec, Repository}; mod types; pub use types::{Error, ObjectKindHint, Options, RefsHint}; /// pub mod single { use crate::bstr::BString; /// The error returned by [`crate::Repository::rev_parse_single()`]. #[derive(Debug, thiserror::Error)] #[allow(missing_docs)] pub enum Error { #[error(transparent)] Parse(#[from] super::Error), #[error("revspec {spec:?} did not resolve to a single object")] RangedRev { spec: BString }, } } /// pub mod error; impl<'repo> Spec<'repo> { /// Parse `spec` and use information from `repo` to resolve it, using `opts` to learn how to deal with ambiguity. /// /// Note that it's easier and to use [`repo.rev_parse()`][Repository::rev_parse()] instead. pub fn from_bstr<'a>(spec: impl Into<&'a BStr>, repo: &'repo Repository, opts: Options) -> Result { let mut delegate = Delegate::new(repo, opts); match gix_revision::spec::parse(spec.into(), &mut delegate) { Err(parse::Error::Delegate) => Err(delegate.into_err()), Err(err) => Err(err.into()), Ok(()) => delegate.into_rev_spec(), } } } struct Delegate<'repo> { refs: [Option; 2], objs: [Option>; 2], /// The originally encountered ambiguous objects for potential later use in errors. ambiguous_objects: [Option>; 2], idx: usize, kind: Option, opts: Options, err: Vec, /// The ambiguous prefix obtained during a call to `disambiguate_prefix()`. prefix: [Option; 2], /// If true, we didn't try to do any other transformation which might have helped with disambiguation. last_call_was_disambiguate_prefix: [bool; 2], repo: &'repo Repository, } mod delegate;