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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
use bstr::BString;
mod error {
use crate::fetch::refs::parse;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Io(#[from] std::io::Error),
#[error(transparent)]
Transport(#[from] git_transport::client::Error),
#[error(transparent)]
Parse(#[from] parse::Error),
}
}
pub use error::Error;
pub mod parse {
use bstr::BString;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Io(#[from] std::io::Error),
#[error(transparent)]
Id(#[from] git_hash::decode::Error),
#[error("{symref:?} could not be parsed. A symref is expected to look like <NAME>:<target>.")]
MalformedSymref { symref: BString },
#[error("{0:?} could not be parsed. A V1 ref line should be '<hex-hash> <path>'.")]
MalformedV1RefLine(String),
#[error(
"{0:?} could not be parsed. A V2 ref line should be '<hex-hash> <path>[ (peeled|symref-target):<value>'."
)]
MalformedV2RefLine(String),
#[error("The ref attribute {attribute:?} is unknown. Found in line {line:?}")]
UnkownAttribute { attribute: String, line: String },
#[error("{message}")]
InvariantViolation { message: &'static str },
}
}
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)]
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
pub enum Ref {
Peeled {
path: BString,
tag: git_hash::ObjectId,
object: git_hash::ObjectId,
},
Direct {
path: BString,
object: git_hash::ObjectId,
},
Symbolic {
path: BString,
target: BString,
object: git_hash::ObjectId,
},
}
impl Ref {
pub fn unpack(&self) -> (&BString, &git_hash::ObjectId) {
match self {
Ref::Direct { path, object, .. }
| Ref::Peeled { path, tag: object, .. } | Ref::Symbolic { path, object, .. } => (path, object),
}
}
}
pub(crate) mod function;
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
pub(crate) mod shared;
#[cfg(feature = "async-client")]
mod async_io;
#[cfg(feature = "async-client")]
pub use async_io::{from_v1_refs_received_as_part_of_handshake_and_capabilities, from_v2_refs};
#[cfg(feature = "blocking-client")]
mod blocking_io;
#[cfg(feature = "blocking-client")]
pub use blocking_io::{from_v1_refs_received_as_part_of_handshake_and_capabilities, from_v2_refs};