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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
//! Deserialization of version control objects from byte slices.
//!
//! # Purpose
//!
//! This module defines the [`Decoder`] trait, which is the inverse of
//! [`Encoder`](crate::Encoder). A decoder translates raw byte vectors back
//! into high-level version control objects such as [`Blob`](crate::Blob),
//! [`Tree`](crate::Tree), [`Commit`](crate::Commit), and [`Tag`](crate::Tag).
//! The trait is intentionally abstract, allowing multiple serialization
//! formats without coupling to any specific representation.
//!
//! # Design Rationale
//!
//! Decoding is a fallible operation because byte slices may be corrupted,
//! truncated, or malformed. Every method therefore returns
//! [`Result<_, VctrlError>`](crate::VctrlError), with
//! [`VctrlError::CorruptedData`](crate::VctrlError::CorruptedData) as the
//! primary error variant for invalid input. This forces callers to handle
//! failure explicitly and prevents invalid objects from entering the system.
//!
//! The trait defines separate methods for each object type instead of a
//! generic `decode<T>(&self, data: &[u8]) -> Result<T, VctrlError>` because:
//!
//! - It avoids requiring all object types to implement a common trait.
//! - It allows decoders to perform type-specific validation and parsing.
//! - It keeps the data structures pure and decoupled from the decoding
//! interface.
//!
//! # Internal Mechanism
//!
//! A typical decoder implementation will parse the byte slice according to a
//! predefined wire format, validate structural invariants (e.g., hash
//! lengths, name lengths, sort order), and then call the appropriate
//! constructor for the object type. The constructors themselves perform
//! additional validation, so a decoder can often delegate to them and
//! propagate errors directly.
//!
//! # Examples
//!
//! A complete dummy decoder implementation:
//!
//! ```
//! use libvctrl_handler::{Blob, Commit, Decoder, Hash, Tag, Tree, UserID, VctrlError};
//!
//! struct DummyDecoder;
//!
//! impl Decoder for DummyDecoder {
//! fn decode_blob(&self, data: &[u8]) -> Result<Blob, VctrlError> {
//! Ok(Blob::new(data.to_vec()))
//! }
//!
//! fn decode_tree(&self, _data: &[u8]) -> Result<Tree, VctrlError> {
//! Tree::new(vec![])
//! }
//!
//! fn decode_commit(&self, _data: &[u8]) -> Result<Commit, VctrlError> {
//! let tree = Hash::from_bytes(&[0u8; 64])?;
//! let user = UserID::new("a".to_string(), "b".to_string())?;
//! Ok(Commit::new(tree, vec![], user.clone(), user, String::new()))
//! }
//!
//! fn decode_tag(&self, _data: &[u8]) -> Result<Tag, VctrlError> {
//! let target = Hash::from_bytes(&[0u8; 64])?;
//! Tag::new("tag".to_string(), target, None, String::new())
//! }
//! }
//!
//! let decoder = DummyDecoder;
//! let blob = decoder.decode_blob(b"data").unwrap();
//! assert_eq!(blob.data(), b"data");
//! ```
use crateVctrlError;
use crateBlob;
use crateCommit;
use crateTag;
use crateTree;
/// Defines the interface for deserializing version control objects.
///
/// # Purpose
///
/// A `Decoder` translates byte vectors back into in-memory data structures.
/// It is the inverse of [`Encoder`](crate::Encoder). The trait is
/// object-specialized: each method decodes exactly one object type, allowing
/// implementations to handle type-specific parsing and validation.
///
/// # Design Rationale
///
/// Decoding can fail due to corrupted data, malformed inputs, or version
/// mismatches, hence every method returns a [`Result`] with
/// [`VctrlError`]. By keeping the trait methods separate, we avoid the need
/// for objects to share a common interface and preserve the purity of the
/// domain types.
///
/// # Why `&self`?
///
/// The methods take `&self` rather than consuming the decoder. This allows a
/// single decoder instance to be reused for multiple decode operations,
/// which is important for streaming or stateful decoders.
///
/// # How It Works Internally
///
/// An implementation reads the byte slice and reconstructs the object.
/// Validation is typically delegated to the object constructors (e.g.,
/// [`Tree::new`](crate::Tree::new), [`Tag::new`](crate::Tag::new)), which
/// enforce invariants such as name validity and sort order. If any
/// validation fails, the decoder returns
/// [`VctrlError::CorruptedData`](crate::VctrlError::CorruptedData) or a more
/// specific variant depending on the context.
///
/// # Examples
///
/// A complete dummy decoder implementation:
///
/// ```
/// use libvctrl_handler::{Blob, Commit, Decoder, Hash, Tag, Tree, UserID, VctrlError};
///
/// struct DummyDecoder;
///
/// impl Decoder for DummyDecoder {
/// fn decode_blob(&self, data: &[u8]) -> Result<Blob, VctrlError> {
/// Ok(Blob::new(data.to_vec()))
/// }
///
/// fn decode_tree(&self, _data: &[u8]) -> Result<Tree, VctrlError> {
/// Tree::new(vec![])
/// }
///
/// fn decode_commit(&self, _data: &[u8]) -> Result<Commit, VctrlError> {
/// let tree = Hash::from_bytes(&[0u8; 64])?;
/// let user = UserID::new("a".to_string(), "b".to_string())?;
/// Ok(Commit::new(tree, vec![], user.clone(), user, String::new()))
/// }
///
/// fn decode_tag(&self, _data: &[u8]) -> Result<Tag, VctrlError> {
/// let target = Hash::from_bytes(&[0u8; 64])?;
/// Tag::new("tag".to_string(), target, None, String::new())
/// }
/// }
///
/// let decoder = DummyDecoder;
/// let blob = decoder.decode_blob(b"data").unwrap();
/// assert_eq!(blob.data(), b"data");
/// ```