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
extern crate proc_macro; extern crate proc_macro2; extern crate syn; extern crate quote; use proc_macro2::TokenStream; use syn::parse::Error; use syn::spanned::Spanned; use syn::{parse_macro_input, DeriveInput}; use quote::quote; mod field_info; mod struct_info; mod util; /// `TypedBuilder` is not a real type - deriving it will generate a `::builder()` method on your /// struct that will return a compile-time checked builder. Set the fields using setters with the /// same name as the struct's fields that accept `Into` types for the type of the field, and call /// `.build()` when you are done to create your object. /// /// Trying to set the same fields twice will generate a compile-time error. Trying to build without /// setting one of the fields will also generate a compile-time error - unless that field is marked /// as `#[builder(default)]`, in which case the `::default()` value of it's type will be picked. If /// you want to set a different default, use `#[builder(default=...)]`. /// /// # Examples /// /// ``` /// #[macro_use] /// extern crate typed_builder; /// /// #[derive(PartialEq, TypedBuilder)] /// struct Foo { /// // Mandatory Field: /// x: i32, /// /// // #[default] without parameter - use the type's default /// // #[builder(setter(strip_option))] - wrap the setter argument with `Some(...)` /// #[builder(default, setter(strip_option))] /// y: Option<i32>, /// /// // Or you can set the default /// #[builder(default=20)] /// z: i32, /// } /// /// fn main() { /// assert!( /// Foo::builder().x(1).y(2).z(3).build() /// == Foo { x: 1, y: Some(2), z: 3, }); /// /// // Change the order of construction: /// assert!( /// Foo::builder().z(1).x(2).y(3).build() /// == Foo { x: 2, y: Some(3), z: 1, }); /// /// // Optional fields are optional: /// assert!( /// Foo::builder().x(1).build() /// == Foo { x: 1, y: None, z: 20, }); /// /// // This will not compile - because we did not set x: /// // Foo::builder().build(); /// /// // This will not compile - because we set y twice: /// // Foo::builder().x(1).y(2).y(3); /// } /// ``` /// /// # Customisation with attributes /// /// In addition to putting `#[derive(TypedBuilder)]` on a type, you can specify a `#[builder(…)]` /// attribute on the type, and on any fields in it. /// /// On the **type**, the following values are permitted: /// /// - `name = FooBuilder`: customise the name of the builder type. By default, the builder type /// will use the type’s name plus “Builder”, e.g. `FooBuilder` for type `Foo`. (Note this is /// `name = FooBuilder` and not `name = "FooBuilder"`.) /// /// - `doc`: enable documentation of the builder type. By default, the builder type is given /// `#[doc(hidden)]`, so that the `builder()` method will show `FooBuilder` as its return type, /// but it won’t be a link. If you turn this on, the builder type and its `build` method will get /// sane defaults. The field methods on the builder will be undocumented by default. /// /// - `builder_method_doc = "…"` replaces the default documentation that will be generated for the /// `builder()` method of the type for which the builder is being generated. /// /// - `builder_type_doc = "…"` replaces the default documentation that will be generated for the /// builder type. Setting this implies `doc`. /// /// - `build_method_doc = "…"` replaces the default documentation that will be generated for the /// `build()` method of the builder type. Setting this implies `doc`. /// /// On each **field**, the following values are permitted: /// /// - `default`: make the field optional, defaulting to `Default::default()`. This requires that /// the field type implement `Default`. Mutually exclusive with any other form of default. /// /// - `default = …`: make the field optional, defaulting to the expression `…`. /// /// - `setter(...)`: settings for the field setters. The following values are permitted inside: /// /// - `doc = "…"`: sets the documentation for the field’s setter on the builder type. This will be /// of no value unless you enable docs for the builder type with `#[builder(doc)]` or similar on /// the type. /// /// - `skip`: do not define a method on the builder for this field. This requires that a default /// be set. /// /// - `into`: automatically convert the argument of the setter method to the type of the field. /// Note that this conversion interferes with Rust's type inference and integer literal /// detection, so this may reduce ergonomics if the field type is generic or an unsigned integer. /// /// - `strip_option`: for `Option<...>` fields only, this makes the setter wrap its argument with /// `Some(...)`, relieving the caller from having to do this. Note that with this setting on /// one cannot set the field to `None` with the setter - so the only way to get it to be `None` /// is by using `#[builder(default)]` and not calling the field's setter. #[proc_macro_derive(TypedBuilder, attributes(builder))] pub fn derive_typed_builder(input: proc_macro::TokenStream) -> proc_macro::TokenStream { let input = parse_macro_input!(input as DeriveInput); match impl_my_derive(&input) { Ok(output) => output.into(), Err(error) => error.to_compile_error().into(), } } fn impl_my_derive(ast: &syn::DeriveInput) -> Result<TokenStream, Error> { let data = match &ast.data { syn::Data::Struct(data) => match &data.fields { syn::Fields::Named(fields) => { let struct_info = struct_info::StructInfo::new(&ast, fields.named.iter())?; let builder_creation = struct_info.builder_creation_impl()?; let conversion_helper = struct_info.conversion_helper_impl()?; let fields = struct_info .included_fields() .map(|f| struct_info.field_impl(f)) .collect::<Result<Vec<_>, _>>()?; let fields = quote!(#(#fields)*).into_iter(); let required_fields = struct_info .included_fields() .filter(|f| f.builder_attr.default.is_none()) .map(|f| struct_info.required_field_impl(f)) .collect::<Result<Vec<_>, _>>()?; let build_method = struct_info.build_method_impl(); quote! { #builder_creation #conversion_helper #( #fields )* #( #required_fields )* #build_method } } syn::Fields::Unnamed(_) => { return Err(Error::new( ast.span(), "TypedBuilder is not supported for tuple structs", )) } syn::Fields::Unit => { return Err(Error::new( ast.span(), "TypedBuilder is not supported for unit structs", )) } }, syn::Data::Enum(_) => { return Err(Error::new( ast.span(), "TypedBuilder is not supported for enums", )) } syn::Data::Union(_) => { return Err(Error::new( ast.span(), "TypedBuilder is not supported for unions", )) } }; Ok(data) } // It’d be nice for the compilation tests to live in tests/ with the rest, but short of pulling in // some other test runner for that purpose (e.g. compiletest_rs), rustdoc compile_fail in this // crate is all we can use. #[doc(hidden)] /// When a property is skipped, you can’t set it: /// (“method `y` not found for this”) /// /// ```compile_fail /// #[macro_use] extern crate typed_builder; /// #[derive(PartialEq, TypedBuilder)] /// struct Foo { /// #[builder(default, setter(skip))] /// y: i8, /// } /// /// let _ = Foo::builder().y(1i8).build(); /// ``` /// /// But you can build a record: /// /// ``` /// #[macro_use] extern crate typed_builder; /// #[derive(PartialEq, TypedBuilder)] /// struct Foo { /// #[builder(default, setter(skip))] /// y: i8, /// } /// /// let _ = Foo::builder().build(); /// ``` /// /// `skip` without `default` is disallowed: /// (“error: #[builder(skip)] must be accompanied by default”) /// /// ```compile_fail /// #[macro_use] extern crate typed_builder; /// #[derive(PartialEq, TypedBuilder)] /// struct Foo { /// #[builder(setter(skip))] /// y: i8, /// } /// ``` fn _compile_fail_tests() {}