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
pub mod errors;
pub mod label_map;
pub use binrw;
pub use diff;
mod algorithm;
use errors::*;
use label_map::LabelMap;
use binrw::binrw as binrw_attr;
use byteorder::{ByteOrder, ReadBytesExt, WriteBytesExt};
use diff::Diff;
use lazy_static::lazy_static;
use std::fmt::{Display, Error as fmtError, Formatter};
use std::io::{self, Read, Write};
use std::ops::{Deref, DerefMut};
use std::str::FromStr;
use std::sync::{Arc, Mutex};
#[cfg(feature = "serde")]
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
lazy_static! {
static ref LABELS: Arc<Mutex<LabelMap>> = Arc::new(Mutex::new(LabelMap::default()));
}
#[binrw_attr]
#[derive(Debug, Default, Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct Hash40(pub u64);
pub const fn hash40(string: &str) -> Hash40 {
Hash40::new(string)
}
pub trait ReadHash40: ReadBytesExt {
fn read_hash40<T: ByteOrder>(&mut self) -> Result<Hash40, io::Error>;
fn read_hash40_with_meta<T: ByteOrder>(&mut self) -> Result<(Hash40, u32), io::Error>;
}
pub trait WriteHash40: WriteBytesExt {
fn write_hash40<T: ByteOrder>(&mut self, hash: Hash40) -> Result<(), io::Error>;
fn write_hash40_with_meta<T: ByteOrder>(
&mut self,
hash: Hash40,
meta: u32,
) -> Result<(), io::Error>;
}
impl Hash40 {
pub const fn new(string: &str) -> Self {
Self(algorithm::hash40(string))
}
pub fn from_hex_str(value: &str) -> Result<Self, ParseHashError> {
if let Some(stripped) = value.strip_prefix("0x") {
Ok(Hash40(u64::from_str_radix(stripped, 16)?))
} else {
Err(ParseHashError::MissingPrefix)
}
}
pub fn from_label(label: &str) -> Result<Self, FromLabelError> {
match Self::from_hex_str(label) {
Ok(hash) => Ok(hash),
Err(err) => match err {
ParseHashError::MissingPrefix => {
let lock = LABELS.lock();
let labels = match lock {
Ok(labels) => labels,
Err(err) => err.into_inner(),
};
labels
.hash_of(label)
.ok_or_else(|| FromLabelError::LabelNotFound(String::from(label)))
}
ParseHashError::ParseError(err) => Err(err.into()),
},
}
}
pub fn to_label(&self) -> String {
let lock = LABELS.lock();
let labels = match lock {
Ok(labels) => labels,
Err(err) => err.into_inner(),
};
labels
.label_of(*self)
.unwrap_or_else(|| format!("0x{:010x}", self.0))
}
pub const fn crc(self) -> u32 {
self.0 as u32
}
pub const fn str_len(self) -> u8 {
(self.0 >> 32) as u8
}
pub fn label_map() -> Arc<Mutex<LabelMap>> {
LABELS.clone()
}
pub const fn concat(self, other: Self) -> Self {
Self(algorithm::hash40_concat(self.0, other.0))
}
pub const fn concat_str(self, other: &str) -> Self {
self.concat(hash40(other))
}
pub const fn join_path(self, other: Self) -> Self {
self.concat_str("/").concat(other)
}
}
impl FromStr for Hash40 {
type Err = FromLabelError;
fn from_str(f: &str) -> Result<Self, FromLabelError> {
Hash40::from_label(f)
}
}
impl Display for Hash40 {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmtError> {
write!(f, "{}", self.to_label())
}
}
impl Deref for Hash40 {
type Target = u64;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for Hash40 {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl<R: Read> ReadHash40 for R {
fn read_hash40<T: ByteOrder>(&mut self) -> Result<Hash40, io::Error> {
Ok(Hash40(self.read_u64::<T>()? & 0xff_ffff_ffff))
}
fn read_hash40_with_meta<T: ByteOrder>(&mut self) -> Result<(Hash40, u32), io::Error> {
let long = self.read_u64::<T>()?;
Ok((Hash40(long & 0xff_ffff_ffff), (long >> 40) as u32))
}
}
impl<W: Write> WriteHash40 for W {
fn write_hash40<T: ByteOrder>(&mut self, hash: Hash40) -> Result<(), io::Error> {
self.write_u64::<T>(hash.0)
}
fn write_hash40_with_meta<T: ByteOrder>(
&mut self,
hash: Hash40,
meta: u32,
) -> Result<(), io::Error> {
self.write_u64::<T>(hash.0 | (meta as u64) << 40)
}
}
impl Diff for Hash40 {
type Repr = Option<Hash40>;
fn diff(&self, other: &Self) -> Self::Repr {
if self == other {
None
} else {
Some(*other)
}
}
fn apply(&mut self, diff: &Self::Repr) {
if let Some(other) = diff {
*self = *other;
}
}
fn identity() -> Self {
Default::default()
}
}
#[cfg(feature = "serde")]
impl<'de> de::Visitor<'de> for Hash40Visitor {
type Value = Hash40;
fn expecting(
&self,
formatter: &mut std::fmt::Formatter,
) -> std::result::Result<(), std::fmt::Error> {
formatter.write_str(
"A hex-formatted integer hash value, or a string representing for its reversed form",
)
}
fn visit_str<E: de::Error>(self, value: &str) -> Result<Self::Value, E> {
Hash40::from_label(&String::from(value)).map_err(de::Error::custom)
}
}
#[cfg(feature = "serde")]
impl Serialize for Hash40 {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
serializer.serialize_str(&self.to_label())
}
}
#[cfg(feature = "serde")]
impl<'de> Deserialize<'de> for Hash40 {
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
deserializer.deserialize_str(Hash40Visitor)
}
}
#[cfg(feature = "serde")]
struct Hash40Visitor;