use std::collections::VecDeque;
use gix_hash::ObjectId;
use gix_object::{bstr::BString, TreeRefIter};
#[derive(Default, Clone)]
pub struct State {
buf1: Vec<u8>,
buf2: Vec<u8>,
trees: VecDeque<TreeInfoPair>,
}
type TreeInfoPair = (Option<ObjectId>, Option<ObjectId>);
impl State {
fn clear(&mut self) {
self.trees.clear();
self.buf1.clear();
self.buf2.clear();
}
}
pub struct Changes<'a>(Option<TreeRefIter<'a>>);
impl<'a, T> From<T> for Changes<'a>
where
T: Into<Option<TreeRefIter<'a>>>,
{
fn from(v: T) -> Self {
Changes(v.into())
}
}
#[allow(clippy::empty_docs)]
pub mod changes;
#[allow(clippy::empty_docs)]
pub mod visit;
#[doc(inline)]
pub use visit::Visit;
#[derive(Clone, Debug)]
pub struct Recorder {
path_deque: VecDeque<BString>,
path: BString,
location: Option<recorder::Location>,
pub records: Vec<recorder::Change>,
}
pub mod recorder;