1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use std::ops::DerefMut;
use git_hash::ObjectId;
use git_odb::{Find, FindExt};
use crate::{
easy,
easy::{object, ObjectRef},
};
pub fn find_object<A: easy::Access + Sized>(
access: &A,
id: impl Into<ObjectId>,
) -> Result<easy::ObjectRef<'_, A>, object::find::existing::Error> {
let state = access.state();
let id = id.into();
let kind = {
let mut buf = access.state().try_borrow_mut_buf()?;
let obj = access
.repo()?
.odb
.find(&id, &mut buf, state.try_borrow_mut_pack_cache()?.deref_mut())?;
obj.kind
};
ObjectRef::from_current_buf(id, kind, access).map_err(Into::into)
}
pub fn try_find_object<A: easy::Access + Sized>(
access: &A,
id: impl Into<ObjectId>,
) -> Result<Option<easy::ObjectRef<'_, A>>, object::find::Error> {
let state = access.state();
let id = id.into();
access
.repo()?
.odb
.try_find(
&id,
state.try_borrow_mut_buf()?.deref_mut(),
state.try_borrow_mut_pack_cache()?.deref_mut(),
)?
.map(|obj| {
let kind = obj.kind;
drop(obj);
ObjectRef::from_current_buf(id, kind, access).map_err(Into::into)
})
.transpose()
}
pub trait ObjectAccessExt: easy::Access + Sized {
fn find_object(&self, id: impl Into<ObjectId>) -> Result<ObjectRef<'_, Self>, object::find::existing::Error> {
find_object(self, id)
}
fn try_find_object(&self, id: impl Into<ObjectId>) -> Result<Option<ObjectRef<'_, Self>>, object::find::Error> {
try_find_object(self, id)
}
}