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
use crate::{AlignCenterLeft, AlignCenterRight, AlignLeft, AlignRight, Pad, Width};
use core::fmt::{Display, Error, Formatter};

/// Where the place the pad blocks.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Alignment {
    /// Pad to the right, content to the left.
    ///
    /// **Example:**
    ///
    /// ```
    /// # use pretty_assertions::assert_eq;
    /// use zero_copy_pads::{Alignment::Left, PaddedValue, PanicOnExcess};
    /// let padded_value = PaddedValue {
    ///     pad: Left,
    ///     value: "abcdef",
    ///     pad_block: '-',
    ///     total_width: 9,
    ///     handle_excess: PanicOnExcess,
    /// };
    /// assert_eq!(padded_value.to_string(), "abcdef---");
    /// ```
    Left,

    /// Pad to the left, content to the right.
    ///
    /// **Example:**
    ///
    /// ```
    /// # use pretty_assertions::assert_eq;
    /// use zero_copy_pads::{Alignment::Right, PaddedValue, PanicOnExcess};
    /// let padded_value = PaddedValue {
    ///     pad: Right,
    ///     value: "abcdef",
    ///     pad_block: '-',
    ///     total_width: 9,
    ///     handle_excess: PanicOnExcess,
    /// };
    /// assert_eq!(padded_value.to_string(), "---abcdef");
    /// ```
    Right,

    /// Pad to both sides, place content in the middle, but shift to the left one
    /// block if it can't be exactly central.
    ///
    /// **Example:**
    ///
    /// ```
    /// # #[cfg(feature = "std")] fn main() {
    /// # use pretty_assertions::assert_eq;
    /// use zero_copy_pads::{Alignment::CenterLeft, PaddedColumn, PanicOnExcess};
    /// let values = [
    ///     "Rust", "C", "C++", "C#", "JavaScript",
    ///     "TypeScript", "Java", "Kotlin", "Go",
    /// ];
    /// let padded_column = PaddedColumn {
    ///     pad: CenterLeft,
    ///     values: values.iter(),
    ///     pad_block: '-',
    /// };
    /// let padded_values: Vec<_> = padded_column
    ///     .into_iter()
    ///     .map(|x| x.to_string())
    ///     .collect();
    /// let expected = [
    ///     "---Rust---", "----C-----", "---C++----",
    ///     "----C#----", "JavaScript", "TypeScript",
    ///     "---Java---", "--Kotlin--", "----Go----",
    /// ];
    /// assert_eq!(padded_values, expected);
    /// # }
    /// # #[cfg(not(feature = "std"))] fn main() {}
    /// ```
    CenterLeft,

    /// Pad to both sides, place content in the middle, but shift to the right one
    /// block if it can't be exactly central.
    ///
    /// **Example:**
    ///
    /// ```
    /// # #[cfg(feature = "std")] fn main() {
    /// # use pretty_assertions::assert_eq;
    /// use zero_copy_pads::{Alignment::CenterRight, PaddedColumn, PanicOnExcess};
    /// let values = [
    ///     "Rust", "C", "C++", "C#", "JavaScript",
    ///     "TypeScript", "Java", "Kotlin", "Go",
    /// ];
    /// let padded_column = PaddedColumn {
    ///     pad: CenterRight,
    ///     values: values.iter(),
    ///     pad_block: '-',
    /// };
    /// let padded_values: Vec<_> = padded_column
    ///     .into_iter()
    ///     .map(|x| x.to_string())
    ///     .collect();
    /// let expected = [
    ///     "---Rust---", "-----C----", "----C++---",
    ///     "----C#----", "JavaScript", "TypeScript",
    ///     "---Java---", "--Kotlin--", "----Go----",
    /// ];
    /// assert_eq!(padded_values, expected);
    /// # }
    /// # #[cfg(not(feature = "std"))] fn main() {}
    /// ```
    CenterRight,
}

impl<Value: Width, PadBlock: Display> Pad<Value, PadBlock> for Alignment {
    fn fmt(
        &self,
        formatter: &mut Formatter<'_>,
        value: &Value,
        pad_block: &PadBlock,
        pad_width: usize,
    ) -> Result<(), Error> {
        use Alignment::*;
        macro_rules! call {
            ($name:ident) => {
                $name.fmt(formatter, value, pad_block, pad_width)
            };
        }
        match *self {
            Left => call!(AlignLeft),
            Right => call!(AlignRight),
            CenterLeft => call!(AlignCenterLeft),
            CenterRight => call!(AlignCenterRight),
        }
    }
}