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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
use crate::{Blob, Commit, Object, Tag, Tree};
mod convert;
mod write {
use std::io;
use crate::Object;
impl Object {
pub fn write_to(&self, out: impl io::Write) -> io::Result<()> {
use crate::Object::*;
match self {
Tree(v) => v.write_to(out),
Blob(v) => v.write_to(out),
Commit(v) => v.write_to(out),
Tag(v) => v.write_to(out),
}
}
}
}
impl Object {
pub fn as_blob(&self) -> Option<&Blob> {
match self {
Object::Blob(v) => Some(v),
_ => None,
}
}
pub fn as_commit(&self) -> Option<&Commit> {
match self {
Object::Commit(v) => Some(v),
_ => None,
}
}
pub fn as_tree(&self) -> Option<&Tree> {
match self {
Object::Tree(v) => Some(v),
_ => None,
}
}
pub fn as_tag(&self) -> Option<&Tag> {
match self {
Object::Tag(v) => Some(v),
_ => None,
}
}
pub fn kind(&self) -> crate::Kind {
match self {
Object::Tree(_) => crate::Kind::Tree,
Object::Blob(_) => crate::Kind::Blob,
Object::Commit(_) => crate::Kind::Commit,
Object::Tag(_) => crate::Kind::Tag,
}
}
}
use crate::{BlobRef, CommitRef, Kind, ObjectRef, TagRef, TreeRef};
impl<'a> ObjectRef<'a> {
pub fn from_bytes(kind: Kind, data: &'a [u8]) -> Result<ObjectRef<'a>, crate::decode::Error> {
Ok(match kind {
Kind::Tree => ObjectRef::Tree(TreeRef::from_bytes(data)?),
Kind::Blob => ObjectRef::Blob(BlobRef { data }),
Kind::Commit => ObjectRef::Commit(CommitRef::from_bytes(data)?),
Kind::Tag => ObjectRef::Tag(TagRef::from_bytes(data)?),
})
}
pub fn into_owned(self) -> Object {
self.into()
}
pub fn to_owned(&self) -> Object {
self.clone().into()
}
}
impl<'a> ObjectRef<'a> {
pub fn as_blob(&self) -> Option<&BlobRef<'a>> {
match self {
ObjectRef::Blob(v) => Some(v),
_ => None,
}
}
pub fn into_blob(self) -> Option<BlobRef<'a>> {
match self {
ObjectRef::Blob(v) => Some(v),
_ => None,
}
}
pub fn as_commit(&self) -> Option<&CommitRef<'a>> {
match self {
ObjectRef::Commit(v) => Some(v),
_ => None,
}
}
pub fn into_commit(self) -> Option<CommitRef<'a>> {
match self {
ObjectRef::Commit(v) => Some(v),
_ => None,
}
}
pub fn as_tree(&self) -> Option<&TreeRef<'a>> {
match self {
ObjectRef::Tree(v) => Some(v),
_ => None,
}
}
pub fn into_tree(self) -> Option<TreeRef<'a>> {
match self {
ObjectRef::Tree(v) => Some(v),
_ => None,
}
}
pub fn as_tag(&self) -> Option<&TagRef<'a>> {
match self {
ObjectRef::Tag(v) => Some(v),
_ => None,
}
}
pub fn into_tag(self) -> Option<TagRef<'a>> {
match self {
ObjectRef::Tag(v) => Some(v),
_ => None,
}
}
pub fn kind(&self) -> Kind {
match self {
ObjectRef::Tree(_) => Kind::Tree,
ObjectRef::Blob(_) => Kind::Blob,
ObjectRef::Commit(_) => Kind::Commit,
ObjectRef::Tag(_) => Kind::Tag,
}
}
}