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
use parse::{ExpectedError, SourceError, LabelError};

/// Will be replaced with never_type `!` (rust/rust-lang#35121)
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Void {}

#[derive(Debug, PartialEq)]
pub enum PreEncapsulationBoundaryError<E> {
    MissingExpected(char),
    Mismatch {
        location: usize,
        expected: char,
        found: char,
    },
    LabelError(LabelError),
    SourceError(E),
}

#[derive(Debug, PartialEq)]
pub enum ParseError {
    MissingExpected(char),
    Mismatch {
        location: usize,
        expected: char,
        found: char,
    },
    LabelError(LabelError),
    InvalidCharacter(char),
}

#[derive(Debug, PartialEq)]
pub enum PemError<E> {
    ParseError(ParseError),
    SourceError(E),
}


impl<E> From<SourceError<E>> for PreEncapsulationBoundaryError<E> {
    fn from(e: SourceError<E>) -> Self {
        PreEncapsulationBoundaryError::SourceError(e.0)
    }
}

impl<E> From<ExpectedError> for PreEncapsulationBoundaryError<E> {
    fn from(e: ExpectedError) -> Self {
        use self::PreEncapsulationBoundaryError::*;
        match e {
            ExpectedError::MissingExpected(c) => MissingExpected(c),
            ExpectedError::Mismatch {
                expected,
                found,
                location,
            } => Mismatch {
                expected,
                found,
                location,
            },
        }
    }
}

impl<E> From<LabelError> for PreEncapsulationBoundaryError<E> {
    fn from(e: LabelError) -> Self {
        PreEncapsulationBoundaryError::LabelError(e)
    }
}

impl From<ExpectedError> for ParseError {
    fn from(e: ExpectedError) -> Self {
        match e {
            ExpectedError::MissingExpected(c) => ParseError::MissingExpected(c),
            ExpectedError::Mismatch {
                expected,
                found,
                location,
            } => ParseError::Mismatch {
                expected,
                found,
                location,
            },
        }
    }
}

impl From<LabelError> for ParseError {
    fn from(e: LabelError) -> Self {
        ParseError::LabelError(e)
    }
}

impl From<PreEncapsulationBoundaryError<Void>> for ParseError {
    fn from(e: PreEncapsulationBoundaryError<Void>) -> Self {
        use self::PreEncapsulationBoundaryError::*;
        match e {
            MissingExpected(c) => ParseError::MissingExpected(c),
            Mismatch {
                location,
                expected,
                found,
            } => ParseError::Mismatch {
                location,
                expected,
                found,
            },
            LabelError(label) => ParseError::LabelError(label),
            SourceError(_) => unreachable!(),
        }
    }
}

impl From<PemError<Void>> for ParseError {
    fn from(e: PemError<Void>) -> Self {
        match e {
            PemError::ParseError(e) => e,
            PemError::SourceError(_) => unreachable!(),
        }
    }
}

impl<E> From<SourceError<E>> for PemError<E> {
    fn from(e: SourceError<E>) -> Self {
        PemError::SourceError(e.0)
    }
}

impl<E> From<ExpectedError> for PemError<E> {
    fn from(e: ExpectedError) -> Self {
        PemError::ParseError(e.into())
    }
}

impl<E> From<LabelError> for PemError<E> {
    fn from(e: LabelError) -> Self {
        ParseError::LabelError(e).into()
    }
}

impl<E> From<ParseError> for PemError<E> {
    fn from(e: ParseError) -> Self {
        PemError::ParseError(e)
    }
}

impl<E> From<PreEncapsulationBoundaryError<E>> for PemError<E> {
    fn from(e: PreEncapsulationBoundaryError<E>) -> Self {
        use self::PreEncapsulationBoundaryError::*;
        match e {
            MissingExpected(c) => PemError::ParseError(ParseError::MissingExpected(c)),
            Mismatch {
                location,
                expected,
                found,
            } => PemError::ParseError(ParseError::Mismatch {
                location,
                expected,
                found,
            }),
            LabelError(label) => PemError::ParseError(ParseError::LabelError(label)),
            SourceError(e) => PemError::SourceError(e),
        }
    }
}