4个版本

0.1.6 2020年7月10日
0.1.5 2020年7月10日
0.1.3 2020年6月16日

#32 in #attribute

每月21次下载
用于 yui

MIT/Apache

82KB
2K SLoC

Yui

Yui是Rust的属性读取器。

功能

属性结构

Yui提供了一个 derive 宏 YuiAttribute,通过结构体、StructStructTupleStructNoFieldStruct 创建属性结构,都受支持。

use yui::YuiAttribute;

#[derive(YuiAttribute)]
struct NoField;

#[derive(YuiAttribute)]
struct Tuple(i32, String);

#[derive(YuiAttribute)]
struct Struct {
    int: i32,
    float: f64,
    bool: bool,
}

类型

  • String:Rust中的 String
  • Bool:Rust中的 bool
  • 整数:Rust中的任何整数类型。
  • 浮点数:Rust中的任何浮点数类型。
  • 对象:其他属性结构。
  • 枚举:定义枚举,记得使用 enum_value=true 选项。
  • Vec:T的Vec(T不能是对象、Vec或HashMap)。
  • HashMap:通过 String Skey 映射的T的HashMap。如果你想使字段可选,请在字段类型上使用 Option<T>
use yui::{YuiEnumValue, YuiAttribute};

#[derive(YuiAttribute)]
struct Bar;

#[derive(YuiEnumValue)]
enum SomeEnum {
    A,
    B
}

#[derive(YuiAttribute)]
struct Foo {
    pub string: String,
    pub bool: bool,
    pub int: i32, // or other integer types like u32 ...
    pub float: f32, // or other float types like f64
    pub object: Bar, // any defined object
    #[attribute_field(enum_value=true)]
    pub enum_field: SomeEnum, // have to add enum_value option
    pub list: Vec<i32>, // nested type of vec can`t be Object, Vec or HashMap
    pub map: std::collections::HashMap<String, SomeEnum>,
    pub optional: Option<i32> // optional field
}

选项

  • 别名
    生成的读取器将使用给定的名称解析字段,而不是Rust中字段的名称。
    #[derive(YuiAttribute)]
    struct Foo {
        #[attribute_field(alias = "i32")]
        pub int32: i32,
    }
    
  • 默认值
    设置此字段的默认值。如果解析时不存在值,即使字段是可选的,也将设置默认值到字段。ObjectVecHashMap 字段不能有默认值。
    #[derive(YuiAttribute)]
    struct Foo {
        #[attribute_field(default = 1024)]
        pub int32: i32
    }
    
  • 枚举值
    在枚举类型字段上使用 enum_value=true

枚举

使用 derive YuiEnumValue 在枚举上创建枚举值类型。

use yui::YuiEnumValue;

#[derive(YuiEnumValue)]
enum SomeEnum {
    A,
    B
}

然后,枚举可以用作字段类型。

  • variant_value 属性
    自定义与变体对应的字符串值(默认是Rust中变体名称的蛇形写法)。
use yui::YuiEnumValue;

#[derive(YuiEnumValue)]
enum SomeEnum {
    #[variant_value("aaa")] // default is 'a'
    A,
    B
}

使用 synquote 解析属性

yui::AttributeStructs<T> 可用于 parse_macro_input!

let attributes = syn::parse_macro_inpit!(input as yui::AttributeStructs<Foo>);

如果您想从 syn::Meta 解析属性,请使用 yui::AttributeStruct::from_meta()
具有值的属性结构可以自动转换为令牌。但是,每个字段的可见性必须为公共。

use proc_macro::TokenStream;

#[derive(YuiAttribute)]
struct Foo {
    #[attribute_field(default = 1024)]
    pub int32: i32
}

fn derive_fn(input: TokenStream) -> TokenStream {
    let attributes = syn::parse_macro_input!(input as yui::AttributeStructs<Foo>);
    let attrs = attributes.attrs;

    TokenStream::from(quote::quote! {
        fn get_attrs() -> Vec<Foo> {
            vec![#(#attrs),*]
        }
    })
}

生成派生宏

如果您想使用内置读取生成器,启用 generate-reader 功能。宏 generate_reader 用于生成派生宏。

use yui::generate_reader;

generated_reader!(
    MyDerive,
    [StructAttribute1, StructAttribute2],
    [FieldAttribute1, FieldAttribute2]
);

该宏将生成一个公共派生宏,可用于读取结构体、枚举或联合的属性,并通过生成 impl 块来记录元数据。

读取属性

在结构体上使用生成的派生宏,并可以使用宏 has_attributeget_attribute 来处理结构体的属性。此功能需要夜间 rustc,因为需要 proc_macro_hygiene

#![feature(proc_macro_hygiene)]
use yui::{get_attribute, has_attribute};

#[derive(MyDerive)]
#[StructAttribute1("some parameters")]
struct Foo {
    #[FieldAttribute1("some parameters")]
    field: i32
}

fn some_fn() {
    assert!(has_attribute!(Foo, StructAttribute1));
    assert!(has_attribute!(Foo::field, FieldAttribute1));
    let struct_attr1: Option<StructAttribute1> = get_attribute!(Foo, StructAttribute1);
    let field_attr1: Option<StructAttribute1> = get_attribute!(Foo::field, StructAttribute1);
}

依赖项

~2MB
~43K SLoC