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
|
//! Parser for the Nix archive listing format, aka .ls.
//!
//! LS files are produced by the C++ Nix implementation via `write-nar-listing=1` query parameter
//! passed to a store implementation when transferring store paths.
//!
//! Listing files contains metadata about a file and its offset in the corresponding NAR.
//!
//! NOTE: LS entries does not offer any integrity field to validate the retrieved file at the provided
//! offset. Validating the contents is the caller's responsibility.
use std::collections::HashMap;
use serde::Deserialize;
#[cfg(test)]
mod test;
#[derive(Debug, Deserialize)]
#[serde(tag = "type", rename_all = "lowercase")]
pub enum ListingEntry {
Regular {
size: u64,
#[serde(default)]
executable: bool,
#[serde(rename = "narOffset")]
nar_offset: u64,
},
Directory {
entries: HashMap<String, ListingEntry>,
},
Symlink {
target: String,
},
}
#[derive(Debug)]
pub struct ListingVersion<const V: u8>;
#[derive(Debug, thiserror::Error)]
#[error("Invalid version: {0}")]
struct ListingVersionError(u8);
impl<'de, const V: u8> Deserialize<'de> for ListingVersion<V> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let value = u8::deserialize(deserializer)?;
if value == V {
Ok(ListingVersion::<V>)
} else {
Err(serde::de::Error::custom(ListingVersionError(value)))
}
}
}
#[derive(Debug, Deserialize)]
#[serde(untagged)]
#[non_exhaustive]
pub enum Listing {
V1 {
root: ListingEntry,
version: ListingVersion<1>,
},
}
|