derive-where 1.6.1

Deriving with custom trait bounds
Documentation
//! [`Clone`](trait@std::clone::Clone) implementation.

use std::ops::Deref;

use proc_macro2::TokenStream;
use quote::quote;
use syn::{TraitBound, TraitBoundModifier, TypeParamBound};

use crate::{
	data::Field, util, Data, DataType, DeriveTrait, DeriveWhere, Item, SimpleType, SplitGenerics,
	Trait, TraitImpl,
};

/// [`TraitImpl`] for [`Clone`](trait@std::clone::Clone).
pub struct Clone;

impl TraitImpl for Clone {
	fn as_str() -> &'static str {
		"Clone"
	}

	fn default_derive_trait() -> DeriveTrait {
		DeriveTrait::Clone
	}

	fn supports_union() -> bool {
		true
	}

	fn additional_where_bounds(data: &Item) -> Option<TypeParamBound> {
		// `Clone` for unions requires the `Copy` bound.
		if let Item::Item(Data {
			type_: DataType::Union(..),
			..
		}) = data
		{
			Some(TypeParamBound::Trait(TraitBound {
				paren_token: None,
				modifier: TraitBoundModifier::None,
				lifetimes: None,
				path: Trait::Copy.default_derive_trait().path(),
			}))
		} else {
			None
		}
	}

	fn path(&self) -> syn::Path {
		util::path_from_strs(&["core", "clone", "Clone"])
	}

	fn build_signature(
		&self,
		derive_where: &DeriveWhere,
		item: &Item,
		_generics: &SplitGenerics<'_>,
		body: &TokenStream,
	) -> TokenStream {
		// Special implementation for items also implementing `Copy`.
		if (derive_where.all_custom_bound()) && derive_where.contains(Trait::Copy) {
			return quote! {
				#[inline]
				fn clone(&self) -> Self { *self }
			};
		}

		// Special implementation for unions.
		if let Item::Item(Data {
			type_: DataType::Union(..),
			..
		}) = item
		{
			quote! {
				#[inline]
				fn clone(&self) -> Self {
					struct __AssertCopy<__T: ::core::marker::Copy + ?::core::marker::Sized>(::core::marker::PhantomData<__T>);
					let _: __AssertCopy<Self>;
					*self
				}
			}
		} else {
			quote! {
				#[inline]
				fn clone(&self) -> Self {
					match self {
						#body
					}
				}
			}
		}
	}

	fn build_body(&self, derive_where: &DeriveWhere, data: &Data) -> TokenStream {
		if (derive_where.all_custom_bound()) && derive_where.contains(Trait::Copy) {
			return TokenStream::new();
		}

		match data.simple_type() {
			SimpleType::Struct(fields) | SimpleType::Tuple(fields) => {
				let self_pattern = &fields.self_pattern;
				let item_path = &data.path;
				let trait_path = self.path();
				let default_path = DeriveTrait::Default.path();

				let fields = fields.fields.iter().map(
					|field @ Field {
					     self_ident, member, ..
					 }| {
						if field.skip(Trait::Clone) || data.skip(Trait::Clone) {
							quote!(#member: #default_path::default())
						} else {
							quote!(#member: #trait_path::clone(#self_ident))
						}
					},
				);

				quote! {
					#self_pattern => #item_path { #(#fields),* },
				}
			}
			SimpleType::Unit(pattern) => {
				quote! { #pattern => #pattern, }
			}
			SimpleType::Union => TokenStream::new(),
		}
	}
}

impl Deref for Clone {
	type Target = Trait;

	fn deref(&self) -> &Self::Target {
		&Trait::Clone
	}
}