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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
//! Core traits and functions for straightforward hash computation of bytes, files, directories and more.
//!
//! # Setup
//!
//! To use this crate, add the following entry to your `Cargo.toml` file in the `dependencies` section:
//!
//! ```toml
//! [dependencies]
//! chksum-core = "0.0.0"
//! ```
//!
//! Alternatively, you can use the [`cargo add`](https://doc.rust-lang.org/cargo/commands/cargo-add.html) subcommand:
//!
//! ```sh
//! cargo add chksum-core
//! ```     
//!
//! # Example Crates
//!
//! For implementation-specific examples, refer to the source code of the following crates:
//!
//! * [`chksum-md5`](https://docs.rs/chksum-md5/)
//! * [`chksum-sha1`](https://docs.rs/chksum-sha1/)
//! * [`chksum-sha2`](https://docs.rs/chksum-sha2/)
//!     * [`chksum-sha2-224`](https://docs.rs/chksum-sha2-224/)
//!     * [`chksum-sha2-256`](https://docs.rs/chksum-sha2-256/)
//!     * [`chksum-sha2-384`](https://docs.rs/chksum-sha2-384/)
//!     * [`chksum-sha2-512`](https://docs.rs/chksum-sha2-512/)
//!
//! # License
//!
//! This crate is licensed under the MIT License.

mod error;

use std::fmt::{Display, LowerHex, UpperHex};
use std::fs::{read_dir, DirEntry, File, ReadDir};
use std::io::{self, BufRead, BufReader, IsTerminal, Stdin, StdinLock};
use std::path::{Path, PathBuf};

#[doc(no_inline)]
pub use chksum_hash_core as hash;

pub use crate::error::{Error, Result};

/// Creates a default hash.
#[must_use]
pub fn default<H>() -> H
where
    H: Hash,
{
    Default::default()
}

/// Computes the hash of the given input.
pub fn hash<T>(data: impl Hashable) -> T::Digest
where
    T: Hash,
{
    data.hash::<T>()
}

/// Computes the hash of the given input.
pub fn chksum<T>(mut data: impl Chksumable) -> Result<T::Digest>
where
    T: Hash,
{
    data.chksum::<T>()
}

/// A trait for hash digests.
pub trait Digest: Display {
    #[must_use]
    fn as_bytes(&self) -> &[u8]
    where
        Self: AsRef<[u8]>,
    {
        self.as_ref()
    }

    #[must_use]
    fn to_hex_lowercase(&self) -> String
    where
        Self: LowerHex,
    {
        format!("{self:x}")
    }

    #[must_use]
    fn to_hex_uppercase(&self) -> String
    where
        Self: UpperHex,
    {
        format!("{self:X}")
    }
}

/// A trait for hash objects.
pub trait Hash: Default {
    /// The type representing the digest produced by finalizing the hash.
    type Digest: Digest;

    /// Calculates the hash digest of an input data.
    #[must_use]
    fn hash<T>(data: T) -> Self::Digest
    where
        T: AsRef<[u8]>,
    {
        let mut hash = Self::default();
        hash.update(data);
        hash.digest()
    }

    /// Updates the hash state with an input data.
    fn update<T>(&mut self, data: T)
    where
        T: AsRef<[u8]>;

    /// Resets the hash state to its initial state.
    fn reset(&mut self);

    /// Produces the hash digest.
    #[must_use]
    fn digest(&self) -> Self::Digest;
}

/// A trait for simple bytes-like objects.
pub trait Hashable: AsRef<[u8]> {
    fn hash<H>(&self) -> H::Digest
    where
        H: Hash,
    {
        let mut hash = H::default();
        self.hash_with(&mut hash);
        hash.digest()
    }

    fn hash_with<H>(&self, hash: &mut H)
    where
        H: Hash,
    {
        hash.update(self);
    }
}

impl Hashable for &[u8] {}

impl<const LENGTH: usize> Hashable for [u8; LENGTH] {}

impl Hashable for Vec<u8> {}

impl Hashable for &str {}

impl Hashable for String {}

impl<T> Hashable for &T where T: Hashable {}

impl<T> Hashable for &mut T where T: Hashable {}

/// A trait for complex objects which must be processed chunk by chunk.
pub trait Chksumable {
    fn chksum<H>(&mut self) -> Result<H::Digest>
    where
        H: Hash,
    {
        let mut hash = H::default();
        self.chksum_with(&mut hash)?;
        Ok(hash.digest())
    }

    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash;
}

impl<T> Chksumable for T
where
    T: Hashable,
{
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.hash_with(hash);
        Ok(())
    }
}

impl Chksumable for Path {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        let metadata = self.metadata()?;
        if metadata.is_dir() {
            read_dir(self)?.chksum_with(hash)
        } else {
            // everything treat as a file when it is not a directory
            File::open(self)?.chksum_with(hash)
        }
    }
}

impl Chksumable for &Path {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        let metadata = self.metadata()?;
        if metadata.is_dir() {
            read_dir(self)?.chksum_with(hash)
        } else {
            // everything treat as a file when it is not a directory
            File::open(self)?.chksum_with(hash)
        }
    }
}

impl Chksumable for &mut Path {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        let metadata = self.metadata()?;
        if metadata.is_dir() {
            read_dir(self)?.chksum_with(hash)
        } else {
            // everything treat as a file when it is not a directory
            File::open(self)?.chksum_with(hash)
        }
    }
}

impl Chksumable for PathBuf {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.as_path().chksum_with(hash)
    }
}

impl Chksumable for &PathBuf {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.as_path().chksum_with(hash)
    }
}

impl Chksumable for &mut PathBuf {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.as_path().chksum_with(hash)
    }
}

impl Chksumable for File {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        if self.is_terminal() {
            return Err(Error::IsTerminal);
        }

        let mut reader = BufReader::new(self);
        loop {
            let buffer = reader.fill_buf()?;
            let length = buffer.len();
            if length == 0 {
                break;
            }
            buffer.hash_with(hash);
            reader.consume(length);
        }
        Ok(())
    }
}

impl Chksumable for &File {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        if self.is_terminal() {
            return Err(Error::IsTerminal);
        }

        let mut reader = BufReader::new(self);
        loop {
            let buffer = reader.fill_buf()?;
            let length = buffer.len();
            if length == 0 {
                break;
            }
            buffer.hash_with(hash);
            reader.consume(length);
        }
        Ok(())
    }
}

impl Chksumable for &mut File {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        if self.is_terminal() {
            return Err(Error::IsTerminal);
        }

        let mut reader = BufReader::new(self);
        loop {
            let buffer = reader.fill_buf()?;
            let length = buffer.len();
            if length == 0 {
                break;
            }
            buffer.hash_with(hash);
            reader.consume(length);
        }
        Ok(())
    }
}

impl Chksumable for DirEntry {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.path().chksum_with(hash)
    }
}

impl Chksumable for &DirEntry {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.path().chksum_with(hash)
    }
}

impl Chksumable for &mut DirEntry {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.path().chksum_with(hash)
    }
}

impl Chksumable for ReadDir {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        let dir_entries: io::Result<Vec<DirEntry>> = self.collect();
        let mut dir_entries = dir_entries?;
        dir_entries.sort_by_key(DirEntry::path);
        dir_entries
            .into_iter()
            .try_for_each(|mut dir_entry| dir_entry.chksum_with(hash))?;
        Ok(())
    }
}

impl Chksumable for &mut ReadDir {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        let dir_entries: io::Result<Vec<DirEntry>> = self.collect();
        let mut dir_entries = dir_entries?;
        dir_entries.sort_by_key(DirEntry::path);
        dir_entries
            .into_iter()
            .try_for_each(|mut dir_entry| dir_entry.chksum_with(hash))?;
        Ok(())
    }
}

impl Chksumable for Stdin {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.lock().chksum_with(hash)
    }
}

impl Chksumable for &Stdin {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.lock().chksum_with(hash)
    }
}

impl Chksumable for &mut Stdin {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        self.lock().chksum_with(hash)
    }
}

impl Chksumable for StdinLock<'_> {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        if self.is_terminal() {
            return Err(Error::IsTerminal);
        }

        loop {
            let buffer = self.fill_buf()?;
            let length = buffer.len();
            if length == 0 {
                break;
            }
            buffer.hash_with(hash);
            self.consume(length);
        }
        Ok(())
    }
}

impl Chksumable for &mut StdinLock<'_> {
    fn chksum_with<H>(&mut self, hash: &mut H) -> Result<()>
    where
        H: Hash,
    {
        if self.is_terminal() {
            return Err(Error::IsTerminal);
        }

        loop {
            let buffer = self.fill_buf()?;
            let length = buffer.len();
            if length == 0 {
                break;
            }
            buffer.hash_with(hash);
            self.consume(length);
        }
        Ok(())
    }
}