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 {
    proc_macro::TokenStream as TokenStream1,
    proc_macro2::{Group, Span, TokenStream},
    quote::quote,
    syn::{
        parse::{Error, Parse, ParseStream, Result},
        parse_macro_input, Ident, LitChar, LitInt, Token,
    },
};

struct KeyEventDef {
    pub crate_path: TokenStream,
    pub ctrl: bool,
    pub alt: bool,
    pub shift: bool,
    pub code: TokenStream,
}

impl Parse for KeyEventDef {
    fn parse(input: ParseStream<'_>) -> Result<Self> {
        let crate_path = input.parse::<Group>()?.stream();

        let mut ctrl = false;
        let mut alt = false;
        let mut shift = false;

        let (code, code_span) = loop {
            let lookahead = input.lookahead1();

            if lookahead.peek(LitChar) {
                let lit = input.parse::<LitChar>()?;
                break (lit.value().to_lowercase().collect(), lit.span());
            }

            if lookahead.peek(LitInt) {
                let int = input.parse::<LitInt>()?;
                let digits = int.base10_digits();
                if digits.len() > 1 {
                    return Err(Error::new(int.span(), "invalid key; must be between 0-9"));
                }
                break (digits.to_owned(), int.span());
            }

            if !lookahead.peek(Ident) {
                return Err(lookahead.error());
            }

            let ident = input.parse::<Ident>()?;
            let ident_value = ident.to_string().to_lowercase();
            let modifier = match &*ident_value {
                "ctrl" => &mut ctrl,
                "alt" => &mut alt,
                "shift" => &mut shift,
                _ => break (ident_value, ident.span()),
            };
            if *modifier {
                return Err(Error::new(
                    ident.span(),
                    format_args!("duplicate modifier {}", ident_value),
                ));
            }
            *modifier = true;

            input.parse::<Token![-]>()?;
        };

        let code = match code.as_ref() {
            "backspace" => quote! { Backspace },
            "backtab" => quote! { BackTab },
            "del" => quote! { Delete },
            "delete" => quote! { Delete },
            "down" => quote! { Down },
            "end" => quote! { End },
            "enter" => quote! { Enter },
            "esc" => quote! { Esc },
            "f1" => quote! { F(1) },
            "f2" => quote! { F(2) },
            "f3" => quote! { F(3) },
            "f4" => quote! { F(4) },
            "f5" => quote! { F(5) },
            "f6" => quote! { F(6) },
            "f7" => quote! { F(7) },
            "f8" => quote! { F(8) },
            "f9" => quote! { F(9) },
            "f10" => quote! { F(10) },
            "f11" => quote! { F(11) },
            "f12" => quote! { F(12) },
            "home" => quote! { Home },
            "ins" => quote! { Insert },
            "insert" => quote! { Insert },
            "left" => quote! { Left },
            "pagedown" => quote! { PageDown },
            "pageup" => quote! { PageUp },
            "right" => quote! { Right },
            "space" => quote! { Char(' ') },
            "tab" => quote! { Tab },
            "up" => quote! { Up },
            c if c.chars().count() == 1 => {
                let c = c.chars().next().unwrap();
                quote! { Char(#c) }
            }
            _ => {
                if input.peek(Token![-]) {
                    // The code was likely meant to be a modifier
                    return Err(Error::new(
                        code_span,
                        format_args!(
                            "invalid modifier {:?}; expected `ctrl`, `alt`, or `shift`",
                            code
                        ),
                    ));
                } else {
                    return Err(Error::new(
                        code_span,
                        format_args!("unrecognized key code {:?}", code),
                    ));
                }
            }
        };

        Ok(KeyEventDef {
            crate_path,
            ctrl,
            alt,
            shift,
            code,
        })
    }
}

// Not public API. This is internal and to be used only by `key!`.
#[doc(hidden)]
#[proc_macro]
pub fn key(input: TokenStream1) -> TokenStream1 {
    let KeyEventDef {
        crate_path,
        ctrl,
        alt,
        shift,
        code,
    } = parse_macro_input!(input);

    let mut modifier_constant = "MODS".to_owned();
    if ctrl {
        modifier_constant.push_str("_CTRL");
    }
    if alt {
        modifier_constant.push_str("_ALT");
    }
    if shift {
        modifier_constant.push_str("_SHIFT");
    }
    let modifier_constant = Ident::new(&modifier_constant, Span::call_site());

    quote! {
        #crate_path::__private::crossterm::event::KeyEvent {
            modifiers: #crate_path::__private::#modifier_constant,
            code: #crate_path::__private::crossterm::event::KeyCode::#code,
        }
    }
    .into()
}