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
/// A number of constants to give a name to all characters in this block.
mod constants {
    /// \u{1bca0}: '𛲠'
    pub const SHORTHAND_FORMAT_LETTER_OVERLAP: char = '𛲠';
    /// \u{1bca1}: '𛲡'
    pub const SHORTHAND_FORMAT_CONTINUING_OVERLAP: char = '𛲡';
    /// \u{1bca2}: '𛲢'
    pub const SHORTHAND_FORMAT_DOWN_STEP: char = '𛲢';
    /// \u{1bca3}: '𛲣'
    pub const SHORTHAND_FORMAT_UP_STEP: char = '𛲣';
}

/// An enum to represent all characters in the ShorthandFormatControls block.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub enum ShorthandFormatControls {
    /// \u{1bca0}: '𛲠'
    ShorthandFormatLetterOverlap,
    /// \u{1bca1}: '𛲡'
    ShorthandFormatContinuingOverlap,
    /// \u{1bca2}: '𛲢'
    ShorthandFormatDownStep,
    /// \u{1bca3}: '𛲣'
    ShorthandFormatUpStep,
}

impl Into<char> for ShorthandFormatControls {
    fn into(self) -> char {
        use constants::*;
        match self {
            ShorthandFormatControls::ShorthandFormatLetterOverlap => SHORTHAND_FORMAT_LETTER_OVERLAP,
            ShorthandFormatControls::ShorthandFormatContinuingOverlap => SHORTHAND_FORMAT_CONTINUING_OVERLAP,
            ShorthandFormatControls::ShorthandFormatDownStep => SHORTHAND_FORMAT_DOWN_STEP,
            ShorthandFormatControls::ShorthandFormatUpStep => SHORTHAND_FORMAT_UP_STEP,
        }
    }
}

impl std::convert::TryFrom<char> for ShorthandFormatControls {
    type Error = ();
    fn try_from(c: char) -> Result<Self, Self::Error> {
        use constants::*;
        match c {
            SHORTHAND_FORMAT_LETTER_OVERLAP => Ok(ShorthandFormatControls::ShorthandFormatLetterOverlap),
            SHORTHAND_FORMAT_CONTINUING_OVERLAP => Ok(ShorthandFormatControls::ShorthandFormatContinuingOverlap),
            SHORTHAND_FORMAT_DOWN_STEP => Ok(ShorthandFormatControls::ShorthandFormatDownStep),
            SHORTHAND_FORMAT_UP_STEP => Ok(ShorthandFormatControls::ShorthandFormatUpStep),
            _ => Err(()),
        }
    }
}

impl Into<u32> for ShorthandFormatControls {
    fn into(self) -> u32 {
        let c: char = self.into();
        let hex = c
            .escape_unicode()
            .to_string()
            .replace("\\u{", "")
            .replace("}", "");
        u32::from_str_radix(&hex, 16).unwrap()
    }
}

impl std::convert::TryFrom<u32> for ShorthandFormatControls {
    type Error = ();
    fn try_from(u: u32) -> Result<Self, Self::Error> {
        if let Ok(c) = char::try_from(u) {
            Self::try_from(c)
        } else {
            Err(())
        }
    }
}

impl Iterator for ShorthandFormatControls {
    type Item = Self;
    fn next(&mut self) -> Option<Self> {
        let index: u32 = (*self).into();
        use std::convert::TryFrom;
        Self::try_from(index + 1).ok()
    }
}

impl ShorthandFormatControls {
    /// The character with the lowest index in this unicode block
    pub fn new() -> Self {
        ShorthandFormatControls::ShorthandFormatLetterOverlap
    }

    /// The character's name, all lowercase and space-separated
    pub fn name(&self) -> &str {
        match self {
            ShorthandFormatControls::ShorthandFormatLetterOverlap => "shorthand format letter overlap",
            ShorthandFormatControls::ShorthandFormatContinuingOverlap => "shorthand format continuing overlap",
            ShorthandFormatControls::ShorthandFormatDownStep => "shorthand format down step",
            ShorthandFormatControls::ShorthandFormatUpStep => "shorthand format up step",
        }
    }
}