1use proc_macro2::Span;
2use syn::{parse_quote, spanned::Spanned};
34use crate::ast::NestedMeta;
5use crate::error::Accumulator;
6use crate::{Error, FromMeta, Result};
78mod core;
9mod forward_attrs;
10mod from_attributes;
11mod from_derive;
12mod from_field;
13mod from_meta;
14mod from_type_param;
15mod from_variant;
16mod input_field;
17mod input_variant;
18mod outer_from;
19mod shape;
2021pub use self::core::Core;
22pub use self::forward_attrs::{AttrsField, ForwardAttrsFilter};
23pub use self::from_attributes::FromAttributesOptions;
24pub use self::from_derive::FdiOptions;
25pub use self::from_field::FromFieldOptions;
26pub use self::from_meta::FromMetaOptions;
27pub use self::from_type_param::FromTypeParamOptions;
28pub use self::from_variant::FromVariantOptions;
29pub use self::input_field::InputField;
30pub use self::input_variant::InputVariant;
31pub use self::outer_from::OuterFrom;
32pub use self::shape::{DataShape, DeriveInputShapeSet};
3334/// A default/fallback expression encountered in attributes during parsing.
35#[derive(Debug, Clone)]
36pub enum DefaultExpression {
37/// The value should be taken from the `default` instance of the containing struct.
38 /// This is not valid in container options.
39Inherit,
40 Explicit(syn::Path),
41 Trait {
42/// The input span that is responsible for the use of `Default::default`.
43span: Span,
44 },
45}
4647#[doc(hidden)]
48impl FromMeta for DefaultExpression {
49// Note: This cannot use `from_word` as it needs to capture the span
50 // in the `Meta::Path` case.
51fn from_meta(item: &syn::Meta) -> Result<Self> {
52match item {
53 syn::Meta::Path(_) => Ok(DefaultExpression::Trait { span: item.span() }),
54 syn::Meta::List(nm) => Err(Error::unsupported_format("list").with_span(nm)),
55 syn::Meta::NameValue(nv) => Self::from_expr(&nv.value),
56 }
57 }
5859fn from_expr(expr: &syn::Expr) -> Result<Self> {
60 syn::Path::from_expr(expr).map(DefaultExpression::Explicit)
61 }
6263fn from_value(value: &syn::Lit) -> Result<Self> {
64 syn::Path::from_value(value).map(DefaultExpression::Explicit)
65 }
66}
6768/// Middleware for extracting attribute values. Implementers are expected to override
69/// `parse_nested` so they can apply individual items to themselves, while `parse_attributes`
70/// is responsible for looping through distinct outer attributes and collecting errors.
71pub trait ParseAttribute: Sized {
72fn parse_attributes(mut self, attrs: &[syn::Attribute]) -> Result<Self> {
73let mut errors = Error::accumulator();
74for attr in attrs {
75if attr.meta.path() == &parse_quote!(darling) {
76 errors.handle(parse_attr(attr, &mut self));
77 }
78 }
7980 errors.finish_with(self)
81 }
8283/// Read a meta-item, and apply its values to the current instance.
84fn parse_nested(&mut self, mi: &syn::Meta) -> Result<()>;
85}
8687fn parse_attr<T: ParseAttribute>(attr: &syn::Attribute, target: &mut T) -> Result<()> {
88let mut errors = Error::accumulator();
89match &attr.meta {
90 syn::Meta::List(data) => {
91for item in NestedMeta::parse_meta_list(data.tokens.clone())? {
92if let NestedMeta::Meta(ref mi) = item {
93 errors.handle(target.parse_nested(mi));
94 } else {
95panic!("Wasn't able to parse: `{:?}`", item);
96 }
97 }
9899 errors.finish()
100 }
101 item => panic!("Wasn't able to parse: `{:?}`", item),
102 }
103}
104105/// Middleware for extracting values from the body of the derive input. Implementers are
106/// expected to override `parse_field` or `parse_variant` as appropriate for their use-case,
107/// while `parse_body` dispatches to the appropriate methods and handles error collection.
108pub trait ParseData: Sized {
109fn parse_body(mut self, body: &syn::Data) -> Result<Self> {
110use syn::{Data, Fields};
111112let mut errors = Error::accumulator();
113114match *body {
115 Data::Struct(ref data) => match data.fields {
116 Fields::Unit => {}
117 Fields::Named(ref fields) => {
118for field in &fields.named {
119 errors.handle(self.parse_field(field));
120 }
121 }
122 Fields::Unnamed(ref fields) => {
123for field in &fields.unnamed {
124 errors.handle(self.parse_field(field));
125 }
126 }
127 },
128 Data::Enum(ref data) => {
129for variant in &data.variants {
130 errors.handle(self.parse_variant(variant));
131 }
132 }
133 Data::Union(_) => unreachable!(),
134 };
135136self.validate_body(&mut errors);
137138 errors.finish_with(self)
139 }
140141/// Apply the next found variant to the object, returning an error
142 /// if parsing goes wrong.
143fn parse_variant(&mut self, variant: &syn::Variant) -> Result<()> {
144Err(Error::unsupported_format("enum variant").with_span(variant))
145 }
146147/// Apply the next found struct field to the object, returning an error
148 /// if parsing goes wrong.
149fn parse_field(&mut self, field: &syn::Field) -> Result<()> {
150Err(Error::unsupported_format("struct field").with_span(field))
151 }
152153/// Perform validation checks that require data from more than one field or variant.
154 /// The default implementation does no validations.
155 /// Implementors can override this method as appropriate for their use-case.
156#[allow(unused_variables)]
157fn validate_body(&self, errors: &mut Accumulator) {}
158}