9 releases

0.1.7 Dec 5, 2021
0.1.6 Aug 30, 2020
0.1.5 Jul 11, 2020
0.1.4 Mar 4, 2020
0.0.1 Nov 28, 2019

#149 in Procedural macros

Download history 10198/week @ 2022-12-04 10266/week @ 2022-12-11 9524/week @ 2022-12-18 4960/week @ 2022-12-25 10627/week @ 2023-01-01 12091/week @ 2023-01-08 11821/week @ 2023-01-15 10947/week @ 2023-01-22 13975/week @ 2023-01-29 10426/week @ 2023-02-05 11239/week @ 2023-02-12 13839/week @ 2023-02-19 13695/week @ 2023-02-26 13274/week @ 2023-03-05 14161/week @ 2023-03-12 17818/week @ 2023-03-19

59,730 downloads per month
Used in 79 crates (10 directly)

MIT license

13KB
237 lines

bae

bae is a crate for proc macro authors, which simplifies parsing of attributes. It is heavily inspired by darling but has a significantly simpler API.

See the docs for more info.


lib.rs:

bae is a crate for proc macro authors, which simplifies parsing of attributes. It is heavily inspired by darling but has a significantly simpler API.

use bae::FromAttributes;

#[derive(
    Debug,
    Eq,
    PartialEq,

    // This will add two functions:
    // ```
    // fn from_attributes(attrs: &[syn::Attribute]) -> Result<MyAttr, syn::Error>
    // fn try_from_attributes(attrs: &[syn::Attribute]) -> Result<Option<MyAttr>, syn::Error>
    // ```
    //
    // `try_from_attributes` returns `Ok(None)` if the attribute is missing, `Ok(Some(_))` if
    // its there and is valid, `Err(_)` otherwise.
    FromAttributes,
)]
pub struct MyAttr {
    // Anything that implements `syn::parse::Parse` is supported.
    mandatory_type: syn::Type,
    mandatory_ident: syn::Ident,

    // Fields wrapped in `Option` are optional and default to `None` if
    // not specified in the attribute.
    optional_missing: Option<syn::Type>,
    optional_given: Option<syn::Type>,

    // A "switch" is something that doesn't take arguments.
    // All fields with type `Option<()>` are considered swiches.
    // They default to `None`.
    switch: Option<()>,
}

// `MyAttr` is now equipped to parse attributes named `my_attr`. For example:
//
//     #[my_attr(
//         switch,
//         mandatory_ident = foo,
//         mandatory_type = SomeType,
//         optional_given = OtherType,
//     )]
//     struct Foo {
//         ...
//     }

// the input and output type would normally be `proc_macro::TokenStream` but those
// types cannot be used outside the compiler itself.
fn my_proc_macro(input: proc_macro2::TokenStream) -> proc_macro2::TokenStream {
    let item_struct = syn::parse2::<syn::ItemStruct>(input).unwrap();

    let my_attr = MyAttr::from_attributes(&item_struct.attrs).unwrap();

    assert_eq!(
        my_attr.mandatory_type,
        syn::parse_str::<syn::Type>("SomeType").unwrap()
    );

    assert_eq!(my_attr.optional_missing, None);

    assert_eq!(
        my_attr.optional_given,
        Some(syn::parse_str::<syn::Type>("OtherType").unwrap())
    );

    assert_eq!(my_attr.mandatory_ident, syn::parse_str::<syn::Ident>("foo").unwrap());

    assert_eq!(my_attr.switch.is_some(), true);

    // ...
    #
    # quote::quote! {}
}
#
# fn main() {
#     let code = quote::quote! {
#         #[other_random_attr]
#         #[my_attr(
#             switch,
#             mandatory_ident = foo,
#             mandatory_type = SomeType,
#             optional_given = OtherType,
#         )]
#         struct Foo;
#     };
#     my_proc_macro(code);
# }

Dependencies

~1.2–1.7MB
~37K SLoC