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
mod name;
pub use name::*;
use std::io::{self, Read};
#[derive(Copy, Clone)]
#[repr(u8)]
pub enum Compression {
No = 0,
Deflate = 1,
ZStandard = 2,
XZ = 4,
}
impl TryFrom<u8> for Compression {
type Error = String;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::No),
1 => Ok(Self::Deflate),
2 => Ok(Self::ZStandard),
4 => Ok(Self::XZ),
value => Err(format!("unknown value {value}")),
}
}
}
#[derive(Copy, Clone, PartialEq, Eq)]
pub struct CompressionLevel(pub(crate) u8);
impl Default for CompressionLevel {
#[inline]
fn default() -> Self {
Self(u8::MAX)
}
}
impl From<u8> for CompressionLevel {
#[inline]
fn from(value: u8) -> Self {
Self(value)
}
}
#[derive(Copy, Clone)]
#[repr(u8)]
pub enum Encryption {
No = 0,
Aes = 1,
Camellia = 2,
}
impl TryFrom<u8> for Encryption {
type Error = String;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::No),
1 => Ok(Self::Aes),
2 => Ok(Self::Camellia),
value => Err(format!("unknown value {value}")),
}
}
}
#[derive(Copy, Clone)]
#[repr(u8)]
pub enum CipherMode {
CBC = 0,
CTR = 1,
}
impl TryFrom<u8> for CipherMode {
type Error = String;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::CBC),
1 => Ok(Self::CTR),
value => Err(format!("unknown value {value}")),
}
}
}
#[derive(Copy, Clone)]
pub enum HashAlgorithm {
Pbkdf2Sha256,
Argon2Id,
}
#[derive(Copy, Clone)]
#[repr(u8)]
pub enum DataKind {
File = 0,
Directory = 1,
SymbolicLink = 2,
HardLink = 3,
}
impl TryFrom<u8> for DataKind {
type Error = String;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::File),
1 => Ok(Self::Directory),
2 => Ok(Self::SymbolicLink),
3 => Ok(Self::HardLink),
value => Err(format!("unknown value {value}")),
}
}
}
#[derive(Clone)]
pub struct Options {
pub(crate) compression: Compression,
pub(crate) compression_level: CompressionLevel,
pub(crate) encryption: Encryption,
pub(crate) cipher_mode: CipherMode,
pub(crate) hash_algorithm: HashAlgorithm,
pub(crate) password: Option<String>,
}
impl Default for Options {
fn default() -> Self {
Self {
compression: Compression::No,
compression_level: CompressionLevel::default(),
encryption: Encryption::No,
cipher_mode: CipherMode::CTR,
hash_algorithm: HashAlgorithm::Argon2Id,
password: None,
}
}
}
impl Options {
pub fn compression(mut self, compression: Compression) -> Self {
self.compression = compression;
self
}
pub fn compression_level(mut self, compression_level: CompressionLevel) -> Self {
self.compression_level = compression_level;
self
}
pub fn encryption(mut self, encryption: Encryption) -> Self {
self.encryption = encryption;
self
}
pub fn cipher_mode(mut self, cipher_mode: CipherMode) -> Self {
self.cipher_mode = cipher_mode;
self
}
pub fn hash_algorithm(mut self, algorithm: HashAlgorithm) -> Self {
self.hash_algorithm = algorithm;
self
}
pub fn password<S: AsRef<str>>(mut self, password: Option<S>) -> Self {
self.password = password.map(|it| it.as_ref().to_string());
self
}
}
pub struct ItemInfo {
pub(crate) major: u8,
pub(crate) minor: u8,
pub(crate) data_kind: DataKind,
pub(crate) compression: Compression,
pub(crate) encryption: Encryption,
pub(crate) cipher_mode: CipherMode,
pub(crate) path: ItemName,
}
pub struct Item {
pub(crate) info: ItemInfo,
pub(crate) reader: Box<dyn Read + Sync + Send>,
}
impl Read for Item {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
self.reader.read(buf)
}
}
impl Item {
pub fn path(&self) -> &str {
self.info.path.as_ref()
}
pub fn kind(&self) -> DataKind {
self.info.data_kind
}
}