// 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. /*! The compiler code necessary for #[deriving(Decodable)]. See encodable.rs for more. */ use ast::{MetaItem, item, Expr, MutMutable, Ident}; use codemap::Span; use ext::base::ExtCtxt; use ext::build::AstBuilder; use ext::deriving::generic::*; pub fn expand_deriving_decodable(cx: &ExtCtxt, span: Span, mitem: @MetaItem, in_items: ~[@item]) -> ~[@item] { let trait_def = TraitDef { cx: cx, span: span, path: Path::new_(~["extra", "serialize", "Decodable"], None, ~[~Literal(Path::new_local("__D"))], true), additional_bounds: ~[], generics: LifetimeBounds { lifetimes: ~[], bounds: ~[("__D", ~[Path::new(~["extra", "serialize", "Decoder"])])], }, methods: ~[ MethodDef { name: "decode", generics: LifetimeBounds::empty(), explicit_self: None, args: ~[Ptr(~Literal(Path::new_local("__D")), Borrowed(None, MutMutable))], ret_ty: Self, inline: false, const_nonmatching: true, combine_substructure: decodable_substructure, }, ] }; trait_def.expand(mitem, in_items) } fn decodable_substructure(cx: &ExtCtxt, span: Span, substr: &Substructure) -> @Expr { let decoder = substr.nonself_args[0]; let recurse = ~[cx.ident_of("extra"), cx.ident_of("serialize"), cx.ident_of("Decodable"), cx.ident_of("decode")]; // throw an underscore in front to suppress unused variable warnings let blkarg = cx.ident_of("_d"); let blkdecoder = cx.expr_ident(span, blkarg); let calldecode = cx.expr_call_global(span, recurse, ~[blkdecoder]); let lambdadecode = cx.lambda_expr_1(span, calldecode, blkarg); return match *substr.fields { StaticStruct(_, ref summary) => { let nfields = match *summary { Unnamed(ref fields) => fields.len(), Named(ref fields) => fields.len() }; let read_struct_field = cx.ident_of("read_struct_field"); let result = decode_static_fields(cx, span, substr.type_ident, summary, |span, name, field| { cx.expr_method_call(span, blkdecoder, read_struct_field, ~[cx.expr_str(span, name), cx.expr_uint(span, field), lambdadecode]) }); cx.expr_method_call(span, decoder, cx.ident_of("read_struct"), ~[cx.expr_str(span, cx.str_of(substr.type_ident)), cx.expr_uint(span, nfields), cx.lambda_expr_1(span, result, blkarg)]) } StaticEnum(_, ref fields) => { let variant = cx.ident_of("i"); let mut arms = ~[]; let mut variants = ~[]; let rvariant_arg = cx.ident_of("read_enum_variant_arg"); for (i, f) in fields.iter().enumerate() { let (name, parts) = match *f { (i, ref p) => (i, p) }; variants.push(cx.expr_str(span, cx.str_of(name))); let decoded = decode_static_fields(cx, span, name, parts, |span, _, field| { cx.expr_method_call(span, blkdecoder, rvariant_arg, ~[cx.expr_uint(span, field), lambdadecode]) }); arms.push(cx.arm(span, ~[cx.pat_lit(span, cx.expr_uint(span, i))], decoded)); } arms.push(cx.arm_unreachable(span)); let result = cx.expr_match(span, cx.expr_ident(span, variant), arms); let lambda = cx.lambda_expr(span, ~[blkarg, variant], result); let variant_vec = cx.expr_vec(span, variants); let result = cx.expr_method_call(span, blkdecoder, cx.ident_of("read_enum_variant"), ~[variant_vec, lambda]); cx.expr_method_call(span, decoder, cx.ident_of("read_enum"), ~[cx.expr_str(span, cx.str_of(substr.type_ident)), cx.lambda_expr_1(span, result, blkarg)]) } _ => cx.bug("expected StaticEnum or StaticStruct in deriving(Decodable)") }; } /// Create a decoder for a single enum variant/struct: /// - `outer_pat_ident` is the name of this enum variant/struct /// - `getarg` should retrieve the `uint`-th field with name `@str`. fn decode_static_fields(cx: &ExtCtxt, outer_span: Span, outer_pat_ident: Ident, fields: &StaticFields, getarg: |Span, @str, uint| -> @Expr) -> @Expr { match *fields { Unnamed(ref fields) => { if fields.is_empty() { cx.expr_ident(outer_span, outer_pat_ident) } else { let fields = fields.iter().enumerate().map(|(i, &span)| { getarg(span, format!("_field{}", i).to_managed(), i) }).collect(); cx.expr_call_ident(outer_span, outer_pat_ident, fields) } } Named(ref fields) => { // use the field's span to get nicer error messages. let fields = fields.iter().enumerate().map(|(i, &(name, span))| { cx.field_imm(span, name, getarg(span, cx.str_of(name), i)) }).collect(); cx.expr_struct_ident(outer_span, outer_pat_ident, fields) } } }