Skip to content

Commit

Permalink
fix: support attribute and field with same name
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcAntoine-Arnaud committed Feb 3, 2024
1 parent 0578b73 commit 9c2d04b
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 31 deletions.
39 changes: 39 additions & 0 deletions yaserde/tests/deserializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,45 @@ fn de_attributes_complex() {
);
}

#[test]
fn de_attributes_with_same_name_field() {
init();

#[derive(Default, YaDeserialize, PartialEq, Debug)]
pub struct Struct {
#[yaserde(attribute, rename = "content")]
attribute: Option<String>,
content: Option<String>,
}

convert_and_validate!(
r#"<Struct />"#,
Struct,
Struct {
attribute: None,
content: None
}
);

convert_and_validate!(
r#"<Struct content="attribute" />"#,
Struct,
Struct {
attribute: Some("attribute".to_string()),
content: None
}
);

convert_and_validate!(
r#"<Struct content="attribute"><content>Field</content></Struct>"#,
Struct,
Struct {
attribute: Some("attribute".to_string()),
content: Some("Field".to_string())
}
);
}

#[test]
fn de_rename() {
init();
Expand Down
8 changes: 7 additions & 1 deletion yaserde_derive/src/common/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,15 @@ impl YaSerdeField {
},
);

let attribute = self
.attributes
.attribute
.then_some("Attribute_".to_string())
.unwrap_or_default();

Ident::new(
&format!(
"__Visitor_{}_{}",
"__Visitor_{attribute}{}_{}",
label.replace('.', "_").to_upper_camel_case(),
struct_id
),
Expand Down
39 changes: 9 additions & 30 deletions yaserde_derive/src/de/expand_struct.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::common::{Field, YaSerdeAttribute, YaSerdeField};
use crate::de::build_default_value::build_default_value;
use heck::ToUpperCamelCase;
use crate::{
common::{Field, YaSerdeAttribute, YaSerdeField},
de::build_default_value::build_default_value,
};
use proc_macro2::{Span, TokenStream};
use quote::quote;
use syn::{DataStruct, Ident};
Expand Down Expand Up @@ -142,7 +143,7 @@ pub fn parse(
.fields
.iter()
.map(|field| YaSerdeField::new(field.clone()))
.filter(|field| !field.is_attribute() || !field.is_flatten())
.filter(|field| !field.is_attribute() && !field.is_flatten())
.filter_map(|field| {
let value_label = field.get_value_label();
let label_name = field.renamed_label_without_namespace();
Expand Down Expand Up @@ -225,7 +226,7 @@ pub fn parse(
.filter_map(|field| {
let label = field.get_value_label();
let label_name = field.renamed_label_without_namespace();
let visitor_label = build_visitor_ident(&label_name, field.get_span(), None);
let visitor_label = field.get_visitor_ident(None);

let visit = |action: &TokenStream, visitor: &Ident, visitor_label: &Ident| {
Some(quote! {
Expand Down Expand Up @@ -267,7 +268,7 @@ pub fn parse(
visit(
&action,
&Ident::new("visit_str", Span::call_site()),
&build_visitor_ident(&label_name, field.get_span(), Some(&struct_name)),
&field.get_visitor_ident(Some(&struct_name)),
)
};

Expand All @@ -294,7 +295,7 @@ pub fn parse(
Field::FieldStruct { struct_name } => visit_vec(
&quote! { .push(value) },
&Ident::new("visit_str", field.get_span()),
&build_visitor_ident(&label_name, field.get_span(), Some(struct_name)),
&field.get_visitor_ident(Some(struct_name)),
),
Field::FieldOption { .. } | Field::FieldVec { .. } => unimplemented!("Not supported"),
simple_type => visit_vec(
Expand Down Expand Up @@ -463,7 +464,7 @@ fn build_call_visitor(
) -> Option<TokenStream> {
let value_label = field.get_value_label();
let label_name = field.renamed_label_without_namespace();
let visitor_label = build_visitor_ident(&label_name, field.get_span(), None);
let visitor_label = field.get_visitor_ident(None);

let namespaces_matching = field.get_namespace_matching(
root_attributes,
Expand Down Expand Up @@ -494,28 +495,6 @@ fn build_call_visitor(
})
}

fn build_visitor_ident(label: &str, span: Span, struct_name: Option<&syn::Path>) -> Ident {
let struct_id = struct_name.map_or_else(
|| "".to_string(),
|struct_name| {
struct_name
.segments
.iter()
.map(|s| s.ident.to_string())
.collect()
},
);

Ident::new(
&format!(
"__Visitor_{}_{}",
label.replace('.', "_").to_upper_camel_case(),
struct_id
),
span,
)
}

fn build_code_for_unused_xml_events(
call_flatten_visitors: &TokenStream,
) -> (
Expand Down

0 comments on commit 9c2d04b

Please sign in to comment.