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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
use std::{fmt::Write, str::FromStr};
use proc_macro2::TokenStream;
use quote::quote;
use syn::{punctuated::Punctuated, Data, DeriveInput, Fields, Generics, Meta};
use super::{
super::TraitHandler,
models::{FieldAttributeBuilder, TypeAttributeBuilder},
};
use crate::Trait;
pub struct CloneStructHandler;
impl TraitHandler for CloneStructHandler {
fn trait_meta_handler(
ast: &DeriveInput,
tokens: &mut TokenStream,
traits: &[Trait],
meta: &Meta,
) {
let type_attribute = TypeAttributeBuilder {
enable_flag: true, enable_bound: true
}
.from_clone_meta(meta);
let mut bound = Punctuated::new();
let mut clone_tokens = TokenStream::new();
let mut clone_from_tokens = TokenStream::new();
if let Data::Struct(data) = &ast.data {
let mut field_attributes = Vec::new();
let mut field_names = Vec::new();
#[cfg(feature = "Copy")]
let mut has_custom_clone_method = false;
for (index, field) in data.fields.iter().enumerate() {
let field_attribute = FieldAttributeBuilder {
enable_impl: true
}
.from_attributes(&field.attrs, traits);
let field_name = if let Some(ident) = field.ident.as_ref() {
ident.to_string()
} else {
format!("{}", index)
};
#[cfg(feature = "Copy")]
if field_attribute.clone_method.is_some() {
has_custom_clone_method = true;
}
field_attributes.push(field_attribute);
field_names.push(field_name);
}
#[cfg(feature = "Copy")]
let contains_copy = !has_custom_clone_method && traits.contains(&Trait::Copy);
#[cfg(not(feature = "Copy"))]
let contains_copy = false;
if contains_copy {
bound = type_attribute
.bound
.into_punctuated_where_predicates_by_generic_parameters_with_copy(
&ast.generics.params,
);
clone_tokens.extend(quote!(*self));
let mut clone_from = String::new();
for field_name in field_names {
clone_from
.write_fmt(format_args!(
"core::clone::Clone::clone_from(&mut self.{field_name}, \
&_source.{field_name});",
field_name = field_name
))
.unwrap();
}
clone_from_tokens.extend(TokenStream::from_str(&clone_from).unwrap());
} else {
bound = type_attribute
.bound
.into_punctuated_where_predicates_by_generic_parameters(&ast.generics.params);
match &data.fields {
Fields::Unit => {
let ident = &ast.ident;
clone_tokens.extend(quote!(#ident));
},
Fields::Unnamed(_) => {
let mut clone = ast.ident.to_string();
let mut clone_from = String::new();
clone.push('(');
for (index, field_attribute) in field_attributes.into_iter().enumerate() {
let field_name = &field_names[index];
let clone_trait = field_attribute.clone_trait;
let clone_method = field_attribute.clone_method;
match clone_trait {
Some(clone_trait) => {
let clone_method = clone_method.unwrap();
clone
.write_fmt(format_args!(
"{clone_trait}::{clone_method}(&self.{field_name}),",
clone_trait = clone_trait,
clone_method = clone_method,
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"self.{field_name} = \
{clone_trait}::{clone_method}(&_source.{field_name});",
clone_trait = clone_trait,
clone_method = clone_method,
field_name = field_name
))
.unwrap();
},
None => match clone_method {
Some(clone_method) => {
clone
.write_fmt(format_args!(
"{clone_method}(&self.{field_name}),",
clone_method = clone_method,
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"self.{field_name} = \
{clone_method}(&_source.{field_name});",
clone_method = clone_method,
field_name = field_name
))
.unwrap();
},
None => {
clone
.write_fmt(format_args!(
"core::clone::Clone::clone(&self.{field_name}),",
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"core::clone::Clone::clone_from(&mut \
self.{field_name}, &_source.{field_name});",
field_name = field_name
))
.unwrap();
},
},
}
}
clone.push(')');
clone_tokens.extend(TokenStream::from_str(&clone).unwrap());
clone_from_tokens.extend(TokenStream::from_str(&clone_from).unwrap());
},
Fields::Named(_) => {
let mut clone = ast.ident.to_string();
let mut clone_from = String::new();
clone.push('{');
for (index, field_attribute) in field_attributes.into_iter().enumerate() {
let field_name = &field_names[index];
let clone_trait = field_attribute.clone_trait;
let clone_method = field_attribute.clone_method;
match clone_trait {
Some(clone_trait) => {
let clone_method = clone_method.unwrap();
clone
.write_fmt(format_args!(
"{field_name}: \
{clone_trait}::{clone_method}(&self.{field_name}),",
clone_trait = clone_trait,
clone_method = clone_method,
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"self.{field_name} = \
{clone_trait}::{clone_method}(&_source.{field_name});",
clone_trait = clone_trait,
clone_method = clone_method,
field_name = field_name
))
.unwrap();
},
None => match clone_method {
Some(clone_method) => {
clone
.write_fmt(format_args!(
"{field_name}: {clone_method}(&self.{field_name}),",
clone_method = clone_method,
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"self.{field_name} = \
{clone_method}(&_source.{field_name});",
clone_method = clone_method,
field_name = field_name
))
.unwrap();
},
None => {
clone
.write_fmt(format_args!(
"{field_name}: \
core::clone::Clone::clone(&self.{field_name}),",
field_name = field_name
))
.unwrap();
clone_from
.write_fmt(format_args!(
"core::clone::Clone::clone_from(&mut \
self.{field_name}, &_source.{field_name});",
field_name = field_name
))
.unwrap();
},
},
}
}
clone.push('}');
clone_tokens.extend(TokenStream::from_str(&clone).unwrap());
clone_from_tokens.extend(TokenStream::from_str(&clone_from).unwrap());
},
}
}
}
let ident = &ast.ident;
let mut generics_cloned: Generics = ast.generics.clone();
let where_clause = generics_cloned.make_where_clause();
for where_predicate in bound {
where_clause.predicates.push(where_predicate);
}
let (impl_generics, ty_generics, where_clause) = generics_cloned.split_for_impl();
let compare_impl = quote! {
impl #impl_generics core::clone::Clone for #ident #ty_generics #where_clause {
#[inline]
fn clone(&self) -> Self {
#clone_tokens
}
#[inline]
fn clone_from(&mut self, _source: &Self) {
#clone_from_tokens
}
}
};
tokens.extend(compare_impl);
}
}