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
//! This crate is the declaration of the [`questions!`] macro. It should not be used directly. Use
//! [`requestty`] instead.
//!
//! [`requestty`]: https://crates.io/crates/requestty

extern crate proc_macro;
use proc_macro::TokenStream;

#[rustversion::since(1.51)]
macro_rules! iter {
    ($span:expr => $($tt:tt)*) => {
        quote::quote_spanned! { $span => [ $($tt)* ] }
    };
}
#[rustversion::before(1.51)]
macro_rules! iter {
    ($span:expr => $($tt:tt)*) => {
        quote::quote_spanned! { $span => ::std::vec![ $($tt)* ] }
    };
}

mod helpers;
mod question;

use question::*;
use syn::{parse::Parse, parse_macro_input, Token};

#[proc_macro]
pub fn questions(item: TokenStream) -> TokenStream {
    let p = parse_macro_input!(item as Questions);

    let questions = p.questions.into_iter();

    if p.inline {
        iter! { proc_macro2::Span::call_site() => #(#questions),* }
    } else {
        quote::quote! { ::std::vec![ #(#questions),* ] }
    }
    .into()
}

struct Questions {
    inline: bool,
    questions: syn::punctuated::Punctuated<Question, Token![,]>,
}

impl Parse for Questions {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Self> {
        let inline = input
            .step(|c| match c.ident() {
                Some((ident, c)) if ident == "inline" => Ok(((), c)),
                _ => Err(c.error("no inline")),
            })
            .is_ok();

        Ok(Self {
            inline,
            questions: input.parse_terminated(Question::parse)?,
        })
    }
}