// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use deriving::generic::*; use deriving::generic::ty::*; use syntax::ast::{Expr, ItemKind, Generics, MetaItem, VariantData}; use syntax::attr; use syntax::codemap::Span; use syntax::ext::base::{ExtCtxt, Annotatable}; use syntax::ext::build::AstBuilder; use syntax::parse::token::InternedString; use syntax::ptr::P; #[derive(PartialEq)] enum Mode { Deep, Shallow } pub fn expand_deriving_clone(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: &Annotatable, push: &mut FnMut(Annotatable)) { // check if we can use a short form // // the short form is `fn clone(&self) -> Self { *self }` // // we can use the short form if: // - the item is Copy (unfortunately, all we can check is whether it's also deriving Copy) // - there are no generic parameters (after specialization this limitation can be removed) // if we used the short form with generics, we'd have to bound the generics with // Clone + Copy, and then there'd be no Clone impl at all if the user fills in something // that is Clone but not Copy. and until specialization we can't write both impls. let bounds; let unify_fieldless_variants; let substructure; match *item { Annotatable::Item(ref annitem) => { match annitem.node { ItemKind::Struct(_, Generics { ref ty_params, .. }) | ItemKind::Enum(_, Generics { ref ty_params, .. }) if ty_params.is_empty() && attr::contains_name(&annitem.attrs, "derive_Copy") => { bounds = vec![Literal(path_std!(cx, core::marker::Copy))]; unify_fieldless_variants = true; substructure = combine_substructure(Box::new(|c, s, sub| { cs_clone("Clone", c, s, sub, Mode::Shallow) })); } _ => { bounds = vec![]; unify_fieldless_variants = false; substructure = combine_substructure(Box::new(|c, s, sub| { cs_clone("Clone", c, s, sub, Mode::Deep) })); } } } _ => cx.span_bug(span, "#[derive(Clone)] on trait item or impl item") } let inline = cx.meta_word(span, InternedString::new("inline")); let attrs = vec!(cx.attribute(span, inline)); let trait_def = TraitDef { span: span, attributes: Vec::new(), path: path_std!(cx, core::clone::Clone), additional_bounds: bounds, generics: LifetimeBounds::empty(), is_unsafe: false, methods: vec!( MethodDef { name: "clone", generics: LifetimeBounds::empty(), explicit_self: borrowed_explicit_self(), args: Vec::new(), ret_ty: Self_, attributes: attrs, is_unsafe: false, unify_fieldless_variants: unify_fieldless_variants, combine_substructure: substructure, } ), associated_types: Vec::new(), }; trait_def.expand(cx, mitem, item, push) } fn cs_clone( name: &str, cx: &mut ExtCtxt, trait_span: Span, substr: &Substructure, mode: Mode) -> P { let ctor_path; let all_fields; let fn_path = match mode { Mode::Shallow => cx.std_path(&["clone", "assert_receiver_is_clone"]), Mode::Deep => cx.std_path(&["clone", "Clone", "clone"]), }; let subcall = |field: &FieldInfo| { let args = vec![cx.expr_addr_of(field.span, field.self_.clone())]; let span = if mode == Mode::Shallow { // set the expn ID so we can call the unstable method Span { expn_id: cx.backtrace(), .. trait_span } } else { field.span }; cx.expr_call_global(span, fn_path.clone(), args) }; let vdata; match *substr.fields { Struct(vdata_, ref af) => { ctor_path = cx.path(trait_span, vec![substr.type_ident]); all_fields = af; vdata = vdata_; } EnumMatching(_, variant, ref af) => { ctor_path = cx.path(trait_span, vec![substr.type_ident, variant.node.name]); all_fields = af; vdata = &variant.node.data; }, EnumNonMatchingCollapsed (..) => { cx.span_bug(trait_span, &format!("non-matching enum variants in \ `derive({})`", name)) } StaticEnum(..) | StaticStruct(..) => { cx.span_bug(trait_span, &format!("static method in `derive({})`", name)) } } match mode { Mode::Shallow => { cx.expr_block(cx.block(trait_span, all_fields.iter() .map(subcall) .map(|e| cx.stmt_expr(e)) .collect(), Some(cx.expr_deref(trait_span, cx.expr_self(trait_span))))) } Mode::Deep => { match *vdata { VariantData::Struct(..) => { let fields = all_fields.iter().map(|field| { let ident = match field.name { Some(i) => i, None => { cx.span_bug(trait_span, &format!("unnamed field in normal struct in \ `derive({})`", name)) } }; cx.field_imm(field.span, ident, subcall(field)) }).collect::>(); cx.expr_struct(trait_span, ctor_path, fields) } VariantData::Tuple(..) => { let subcalls = all_fields.iter().map(subcall).collect(); let path = cx.expr_path(ctor_path); cx.expr_call(trait_span, path, subcalls) } VariantData::Unit(..) => { cx.expr_path(ctor_path) } } } } }