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
use alloc::vec::Vec;
use syn::{
    parse::{Parse, ParseBuffer, Peek},
    GenericArgument, Ident, Path, PathArguments, PathSegment, Type, TypePath,
};

#[derive(PartialEq, Clone, Copy)]
enum OptionCheckerState {
    Unknown = 1,
    StdOrCore = 2,
    OptionMod = 3,
    Final = 4,
}

impl PartialEq<PathSegment> for OptionCheckerState {
    fn eq(&self, PathSegment { ident, arguments }: &PathSegment) -> bool {
        match self {
            Self::StdOrCore => {
                (ident == "std" || ident == "core") && matches!(arguments, PathArguments::None)
            }
            Self::OptionMod => ident == "option" && matches!(arguments, PathArguments::None),
            Self::Final => ident == "Option" && !matches!(arguments, PathArguments::None),
            Self::Unknown => true,
        }
    }
}

impl OptionCheckerState {
    fn next_states(&self) -> &[Self] {
        match self {
            Self::Final => &[],
            Self::OptionMod => &[Self::Final],
            Self::StdOrCore => &[Self::OptionMod],
            Self::Unknown => &[Self::OptionMod, Self::Final, Self::StdOrCore],
        }
    }
}

pub trait OptionTypeExt {
    fn is_option(&self) -> bool;
}

impl OptionTypeExt for Path {
    fn is_option(&self) -> bool {
        let mut current_state = if self.leading_colon.is_some() {
            OptionCheckerState::StdOrCore
        } else {
            OptionCheckerState::Unknown
        };
        for segment in self.segments.iter() {
            let mut state_changed = false;
            for state in current_state.next_states() {
                if state == segment {
                    current_state = *state;
                    state_changed = true;
                    break;
                }
            }
            if !state_changed {
                return false;
            }
        }
        current_state == OptionCheckerState::Final
    }
}

impl OptionTypeExt for Type {
    fn is_option(&self) -> bool {
        if let Self::Path(TypePath { path, qself: None }) = &self {
            path.is_option()
        } else {
            false
        }
    }
}

#[derive(PartialEq, Clone, Copy)]
enum ResultCheckerState {
    Unknown = 1,
    StdOrCore = 2,
    ResultMod = 3,
    Final = 4,
}

impl PartialEq<PathSegment> for ResultCheckerState {
    fn eq(&self, PathSegment { ident, arguments }: &PathSegment) -> bool {
        match self {
            Self::StdOrCore => {
                (ident == "std" || ident == "core") && matches!(arguments, PathArguments::None)
            }
            Self::ResultMod => ident == "result" && matches!(arguments, PathArguments::None),
            Self::Final => ident == "Result" && !matches!(arguments, PathArguments::None),
            Self::Unknown => true,
        }
    }
}

impl ResultCheckerState {
    fn next_states(&self) -> &[Self] {
        match self {
            Self::Final => &[],
            Self::ResultMod => &[Self::Final],
            Self::StdOrCore => &[Self::ResultMod],
            Self::Unknown => &[Self::ResultMod, Self::Final, Self::StdOrCore],
        }
    }
}

pub trait ResultTypeExt {
    fn is_result(&self) -> bool;
}

impl ResultTypeExt for Path {
    fn is_result(&self) -> bool {
        let mut current_state = if self.leading_colon.is_some() {
            ResultCheckerState::StdOrCore
        } else {
            ResultCheckerState::Unknown
        };
        for segment in self.segments.iter() {
            let mut state_changed = false;
            for state in current_state.next_states() {
                if state == segment {
                    current_state = *state;
                    state_changed = true;
                    break;
                }
            }
            if !state_changed {
                return false;
            }
        }
        current_state == ResultCheckerState::Final
    }
}

impl ResultTypeExt for Type {
    fn is_result(&self) -> bool {
        if let Self::Path(TypePath { path, qself: None }) = &self {
            path.is_result()
        } else {
            false
        }
    }
}