qsk-macros 0.1.0

Remapping DSL macro to make qsk remapping more concise.
Documentation
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
use proc_macro2::{TokenStream, TokenTree, Span};
use syn::{braced, bracketed, Result, Token, Ident, parse2};
use syn::parse::{Parse, ParseStream};
use syn::punctuated::Punctuated;
use proc_macro_error::abort;

#[repr(transparent)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct StringParameter(pub(crate) Ident);

impl ToString for StringParameter {
    fn to_string(&self) -> String {
        self.0.to_string()
    }
}

impl StringParameter {
    pub(crate) fn span(&self) -> Span {
        self.0.span()
    }
}

#[derive(Clone, Debug, PartialEq, Eq)]
pub enum KeyFunctionParameter {
    StringParameter(StringParameter),
}

impl Parse for KeyFunctionParameter {
    fn parse(stream: ParseStream) -> Result<Self> {
        Ok(KeyFunctionParameter::StringParameter(StringParameter(stream.parse()?)))
    }
}

impl KeyFunctionParameter {
    pub(crate) fn span(&self) -> Span {
        match self {
            Self::StringParameter(ident) => ident.span(),
        }
    }
}

#[repr(transparent)]
#[derive(Debug, PartialEq, Eq)]
pub struct KeyFunctionName(pub Ident);

impl ToString for KeyFunctionName {
    fn to_string(&self) -> String {
        self.0.to_string()
    }
}

impl KeyFunctionName {
    pub(crate) fn span(&self) -> Span {
        self.0.span()
    }
}

#[repr(transparent)]
#[derive(Debug, PartialEq, Eq)]
pub struct Key(pub Ident);

impl ToString for Key {
    fn to_string(&self) -> String {
        let mut s = self.0.to_string();
        if !s.starts_with("KC_") {
            s = "KC_".to_owned() + &s;
        }
        s
    }
}

impl Key {
    pub(crate) fn span(&self) -> Span {
        self.0.span()
    }
}

#[derive(Clone, Debug, PartialEq, Eq)]
pub struct KeyFunctionParameters(pub(crate) Punctuated<KeyFunctionParameter, Token![,]>);

impl Parse for KeyFunctionParameters {
    fn parse(stream: ParseStream) -> Result<Self> {
        Ok(KeyFunctionParameters(stream.parse_terminated(KeyFunctionParameter::parse)?))
    }
}

#[derive(Debug, PartialEq, Eq)]
pub struct KeyFunction {
    pub(crate) name: KeyFunctionName,
    pub(crate) params: KeyFunctionParameters,
}

impl KeyFunction {
    fn name_only(name: Ident) -> Self {
        KeyFunction{
            name: KeyFunctionName(name),
            params: KeyFunctionParameters(Punctuated::new()),
        }
    }
}

#[derive(Debug, PartialEq, Eq)]
pub enum ControlCode {
    Key(Key),
    Function(KeyFunction),
}

impl Parse for ControlCode {
    fn parse(stream: ParseStream) -> Result<Self> {
        stream.step(|cursor| {
            let name: Ident;
            let mut rest = *cursor;

            // first token should always be an Ident, either the name of the key or the name of the function
            if let Some((tt, next)) = rest.token_tree() {
                match tt {
                    TokenTree::Ident(ident) => {
                        name = ident;
                        rest = next;
                    }
                    _ => return Err(cursor.error("expected control code identifier missing")),
                }
            } else {
                return Err(cursor.error("no control code was found"))
            }

            let key_func: KeyFunction;
            // if there is a second token tree that's not a punct and it's a group
            if let Some((tt, next)) = rest.token_tree() {
                match &tt {
                    // match comma at end of straight KeyMaps, eg 'Y -> HOME,'
                    //                                                      ^
                    TokenTree::Punct(punct) => {
                        if punct.as_char() != ',' {
                            return Err(cursor.error("unexpected punctuation"))
                        }
                        return Ok((ControlCode::Key(Key(name)), rest))
                    },
                    // match key function params, eg 'F -> TT(Navigation),'
                    //                                       ^^^^^^^^^^^^
                    TokenTree::Group(group) => {
                        if group.stream().is_empty() {
                            key_func = KeyFunction::name_only(name.clone());
                            rest = next;
                        } else {
                            match parse2::<KeyFunctionParameters>(group.stream()) {
                                Ok(kps) => {
                                    key_func = KeyFunction{
                                        name: KeyFunctionName(name.clone()),
                                        params: kps,
                                    };
                                    rest = next;
                                },
                                Err(e) => return Err(e),
                            }
                        }
                    },
                    _ => return Err(cursor.error(format!("unexpected token tree: {:?}", name))),
                }
            } else {
                // if there is no additional token, then we have ControlCode::Key
                return Ok((ControlCode::Key(Key(name)), rest))
            }

            // handle optional comma after key function
            if let Some((tt, _)) = rest.token_tree() {
                match &tt {
                    // match comma at end of straight KeyMaps, eg 'Y -> EXIT(),'
                    //                                                        ^
                    TokenTree::Punct(punct) => {
                        if punct.as_char() != ',' {
                            return Err(cursor.error("unexpected punctuation"))
                        }
                    },
                    // if we find any additional token trees then something is wrong.
                    _ => return Err(cursor.error(format!("unexpected token tree: {:?}", name))),
                }
            }

            return Ok((ControlCode::Function(key_func), rest));
        })
    }
}

#[derive(Debug, PartialEq, Eq)]
pub struct KeyMaps {
    pub(crate) lhs: Key,
    pub(crate) rhs: ControlCode,
}

impl Parse for KeyMaps {
    fn parse(stream: ParseStream) -> Result<Self> {
        let lhs = Key(stream.parse()?);
        stream.parse::<Token![->]>()?; // discard operator for now
        let rhs = stream.parse()?;
        Ok(KeyMaps{
            lhs,
            rhs,
        })
    }
}

#[derive(Debug, PartialEq, Eq)]
pub struct LayerBody {
    pub(crate) maps: Punctuated<KeyMaps, Token![,]>,
}

impl LayerBody {
    pub fn iter(&self) -> impl Iterator<Item = &KeyMaps> {
        self.maps.iter()
    }
}

impl Parse for LayerBody {
    fn parse(stream: ParseStream) -> Result<Self> {
        let content;
        braced!(content in stream);
        Ok(LayerBody{
            maps: content.parse_terminated(KeyMaps::parse)?,
        })
    }
}

pub struct LayerOpts {
    pub(crate) opts: Punctuated<Ident, Token![,]>,
}

impl Parse for LayerOpts {
    fn parse(stream: ParseStream) -> Result<Self> {
        let content;
        bracketed!(content in stream);
        Ok(LayerOpts{
            opts: content.parse_terminated(Ident::parse)?,
        })
    }
}

pub struct Layer {
    pub(crate) name: Ident,
    pub(crate) opts: Option<LayerOpts>,
    pub(crate) body: LayerBody,
}

impl Parse for Layer {
    fn parse(stream: ParseStream) -> Result<Self> {
        let name = stream.parse()?;
        let mut opts: Option<LayerOpts> = None;
        if let Ok(o) = stream.parse() {
            opts = Some(o);
        }
        stream.parse::<Token![:]>()?;
        Ok(Layer {
            name,
            opts,
            body: stream.parse()?,
        })
    }
}

pub struct Ast {
    pub(crate) layers: Punctuated<Layer, Token![,]>,
}

impl Ast {
    pub fn iter(&self) -> impl Iterator<Item = &Layer> {
        self.layers.iter()
    }
}

impl Parse for Ast {
    fn parse(stream: ParseStream) -> Result<Self> {
        let layers = stream.parse_terminated(Layer::parse)?;
        Ok(Ast {
            layers,
        })
    }
}

pub fn parse(ts: TokenStream) -> Ast {
    match parse2::<Ast>(ts) {
        Ok(ast) => ast,
        Err(e) => {
            abort!(e.span(), e)
        },
    }
}

#[cfg(test)]
mod tests {
    use quote::quote;

    use galvanic_assert::matchers::*;
    use galvanic_assert::*;
    use syn::Result;
    use syn::token::Comma;

    use super::*;
    #[test]
    fn valid_syntax() {
        parse(
            quote!(
                ModLayer[Active]: {
                    F -> TT(Navigation, F),
                },
                Navigation: {
                    END -> Exit(),
                    Y -> HOME,
                    U -> PAGEDOWN,
                    I -> PAGEUP,
                    O -> END,
                    H -> LEFT,
                    J -> DOWN,
                    K -> UP,
                    SEMICOLON -> RIGHT,
                },
            ),
        );
    }

    #[test]
    fn parse_control_code_key() -> Result<()> {
        // validate that F is parsed and ToString impl outputs "KC_F"
        let ts = quote!(F);
        let parsed = parse2::<ControlCode>(ts)?;
        let expected = ControlCode::Key(Key(Ident::new("F", Span::call_site())));
        assert_that!(&parsed, eq(expected));

        if let ControlCode::Key(key) = parsed {
            assert_that!(&key.to_string(), eq(String::from("KC_F")));
        } else {
            assert!(false);
        }

        // validate that KC_F is parsed and ToString impl outputs "KC_F"
        let ts = quote!(KC_F);
        let parsed = parse2::<ControlCode>(ts)?;
        let expected = ControlCode::Key(Key(Ident::new("KC_F", Span::call_site())));
        assert_that!(&parsed, eq(expected));

        if let ControlCode::Key(key) = parsed {
            assert_that!(&key.to_string(), eq(String::from("KC_F")));
        } else {
            assert!(false);
        }
        Ok(())
    }

    fn control_code_fn(name: &str, params: Vec<&str>) -> ControlCode {
        let mut expected_params: Punctuated<KeyFunctionParameter, Comma> = Punctuated::new();
        for param in params {
            expected_params
                .push(
                    KeyFunctionParameter::StringParameter(StringParameter(
                        Ident::new(param, Span::call_site())
                    ))
                );
        }

        ControlCode::Function(
            KeyFunction{
                name: KeyFunctionName(Ident::new(name, Span::call_site())),
                params: KeyFunctionParameters(expected_params),
            }
        )
    }

    #[test]
    fn parse_control_code_function() -> Result<()> {
        let ts = quote!(TapToggle(Navigation, F));
        let parsed = parse2::<ControlCode>(ts)?;
        let expected = control_code_fn("TapToggle", vec!["Navigation", "F"]);
        assert_that!(&parsed, eq(expected));

        let ts = quote!(TT(Navigation, F));
        let parsed = parse2::<ControlCode>(ts)?;
        let expected = control_code_fn("TT", vec!["Navigation", "F"]);
        assert_that!(&parsed, eq(expected));
        Ok(())
    }

    #[test]
    fn parse_keymap() -> Result<()> {
        let ts = quote!(F -> TapToggle(Navigation, F));
        let parsed = parse2::<KeyMaps>(ts)?;
        let rhs = control_code_fn("TapToggle", vec!["Navigation", "F"]);
        let lhs = Key(Ident::new("F", Span::call_site()));
        let expected = KeyMaps{
            lhs: lhs,
            rhs: rhs,
        };
        assert_that!(&parsed, eq(expected));

        Ok(())
    }

    #[test]
    fn parse_layer_body() -> Result<()> {
        let ts = quote!({
            Y -> HOME,
            F -> TapToggle(Navigation, F)
        });

        let mut maps: Punctuated<KeyMaps, Comma> = Punctuated::new();

        // Y -> HOME
        let rhs = ControlCode::Key(Key(Ident::new("HOME", Span::call_site())));
        let lhs = Key(Ident::new("Y", Span::call_site()));
        let km = KeyMaps{ lhs, rhs, };
        maps.push(km);

        // F -> TapToggle(Navigation, F)
        let rhs = control_code_fn("TapToggle", vec!["Navigation", "F"]);
        let lhs = Key(Ident::new("F", Span::call_site()));
        let km = KeyMaps{ lhs, rhs, };
        maps.push(km);

        let expected = LayerBody{ maps, };

        let parsed = parse2::<LayerBody>(ts)?;
        assert_that!(&parsed, eq(expected));

        Ok(())
    }
}