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
//! 🎨 Colourise your checksum output
//!
//! Coloursum provides several line formatters capable of being produced from
//! a line of various checksum generators' output, in order to colourise or
//! otherwise transform their checksum in order to improve readability.
//!
//! ## Formatting one line with the `Line` trait
//!
//! Types implementing `Line` understand both the BSD "tag" form, as well as
//! the GNU Coreutils/Perl `shasum(1)` form of checksums, and have been tested
//! with the output from macOS' `md5`, `shasum`, as well as GNU `md5sum`
//! and `sha256sum`.
//!
//! They emit their formatted contents when `Display`ed to a user, with
//! macros like `format!` or `writeln!`:
//!
//! ```rust
//! use coloursum::EcojiLine;
//!
//! // BSD "tag" form
//! let bsd_line = EcojiLine::from("MD5 (./src/ecoji_line.rs) = 841d462b66e1f4bb839a1b72ab3f3668".to_string());
//!
//! assert_eq!(
//!     format!("{}", bsd_line),
//!     "MD5 (./src/ecoji_line.rs) = πŸ“’πŸ’₯πŸ‘›πŸ€“πŸ€΄πŸ›ŒπŸ˜«πŸ₯ŠπŸŒ΅πŸš¦πŸ˜šπŸš²πŸ‘±β˜•β˜•β˜•"
//! );
//!
//! // GNU Coreutils/Perl form
//! let gnu_line = EcojiLine::from("841d462b66e1f4bb839a1b72ab3f3668  ./src/ecoji_line.rs".to_string());
//!
//! assert_eq!(
//!     format!("{}", gnu_line),
//!     "πŸ“’πŸ’₯πŸ‘›πŸ€“πŸ€΄πŸ›ŒπŸ˜«πŸ₯ŠπŸŒ΅πŸš¦πŸ˜šπŸš²πŸ‘±β˜•β˜•β˜•  ./src/ecoji_line.rs"
//! );
//! ```
//!
//! ## Formatting a buffer of lines with the `coloursum` function
//!
//! The `Line` trait implements a `coloursum` function.
//! This consumes a `BufRead` input buffer, and writes formatted lines to a
//! `Write` output buffer.
//!
//! ```rust
//! use std::io::BufReader;
//!
//! use coloursum::{Line, EcojiLine};
//! use indoc::indoc;
//!
//! // Note that each line will have its format detected separately, so
//! // BSD and GNU form lines can be in the same buffer
//! let input = indoc!("
//!     MD5 (./src/ecoji_line.rs) = 841d462b66e1f4bb839a1b72ab3f3668
//!     841d462b66e1f4bb839a1b72ab3f3668  ./src/ecoji_line.rs
//! ").as_bytes();
//!
//! let input_buffer = BufReader::new(input);
//! let mut output_buffer: Vec<u8> = Vec::new();
//!
//! EcojiLine::coloursum(input_buffer, &mut output_buffer);
//!
//! assert_eq!(
//!     std::str::from_utf8(&output_buffer).unwrap(),
//!     indoc!("
//!         MD5 (./src/ecoji_line.rs) = πŸ“’πŸ’₯πŸ‘›πŸ€“πŸ€΄πŸ›ŒπŸ˜«πŸ₯ŠπŸŒ΅πŸš¦πŸ˜šπŸš²πŸ‘±β˜•β˜•β˜•
//!         πŸ“’πŸ’₯πŸ‘›πŸ€“πŸ€΄πŸ›ŒπŸ˜«πŸ₯ŠπŸŒ΅πŸš¦πŸ˜šπŸš²πŸ‘±β˜•β˜•β˜•  ./src/ecoji_line.rs
//!     ")
//! );
//! ```

mod base_line;
pub use base_line::{FormattableLine, Line};

mod ansi_coloured_line;
pub use ansi_coloured_line::ANSIColouredLine;

mod ecoji_line;
pub use ecoji_line::EcojiLine;

mod onepassword_line;
pub use onepassword_line::OnePasswordLine;