]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/ext/deriving/decodable.rs
auto merge of #12117 : nikomatsakis/rust/issue-11913-borrow-in-aliasable-loc, r=pcwalton
[rust.git] / src / libsyntax / ext / deriving / decodable.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*!
12 The compiler code necessary for #[deriving(Decodable)]. See
13 encodable.rs for more.
14 */
15
16 use ast::{MetaItem, Item, Expr, MutMutable, Ident};
17 use codemap::Span;
18 use ext::base::ExtCtxt;
19 use ext::build::AstBuilder;
20 use ext::deriving::generic::*;
21 use parse::token::InternedString;
22 use parse::token;
23
24 pub fn expand_deriving_decodable(cx: &mut ExtCtxt,
25                                  span: Span,
26                                  mitem: @MetaItem,
27                                  in_items: ~[@Item]) -> ~[@Item] {
28     let trait_def = TraitDef {
29         span: span,
30         path: Path::new_(~["serialize", "Decodable"], None,
31                          ~[~Literal(Path::new_local("__D"))], true),
32         additional_bounds: ~[],
33         generics: LifetimeBounds {
34             lifetimes: ~[],
35             bounds: ~[("__D", ~[Path::new(~["serialize", "Decoder"])])],
36         },
37         methods: ~[
38             MethodDef {
39                 name: "decode",
40                 generics: LifetimeBounds::empty(),
41                 explicit_self: None,
42                 args: ~[Ptr(~Literal(Path::new_local("__D")),
43                             Borrowed(None, MutMutable))],
44                 ret_ty: Self,
45                 inline: false,
46                 const_nonmatching: true,
47                 combine_substructure: decodable_substructure,
48             },
49         ]
50     };
51
52     trait_def.expand(cx, mitem, in_items)
53 }
54
55 fn decodable_substructure(cx: &mut ExtCtxt, trait_span: Span,
56                           substr: &Substructure) -> @Expr {
57     let decoder = substr.nonself_args[0];
58     let recurse = ~[cx.ident_of("serialize"),
59                     cx.ident_of("Decodable"),
60                     cx.ident_of("decode")];
61     // throw an underscore in front to suppress unused variable warnings
62     let blkarg = cx.ident_of("_d");
63     let blkdecoder = cx.expr_ident(trait_span, blkarg);
64     let calldecode = cx.expr_call_global(trait_span, recurse, ~[blkdecoder]);
65     let lambdadecode = cx.lambda_expr_1(trait_span, calldecode, blkarg);
66
67     return match *substr.fields {
68         StaticStruct(_, ref summary) => {
69             let nfields = match *summary {
70                 Unnamed(ref fields) => fields.len(),
71                 Named(ref fields) => fields.len()
72             };
73             let read_struct_field = cx.ident_of("read_struct_field");
74
75             let result = decode_static_fields(cx,
76                                               trait_span,
77                                               substr.type_ident,
78                                               summary,
79                                               |cx, span, name, field| {
80                 cx.expr_method_call(span, blkdecoder, read_struct_field,
81                                     ~[cx.expr_str(span, name),
82                                       cx.expr_uint(span, field),
83                                       lambdadecode])
84             });
85             cx.expr_method_call(trait_span,
86                                 decoder,
87                                 cx.ident_of("read_struct"),
88                                 ~[
89                 cx.expr_str(trait_span,
90                             token::get_ident(substr.type_ident.name)),
91                 cx.expr_uint(trait_span, nfields),
92                 cx.lambda_expr_1(trait_span, result, blkarg)
93             ])
94         }
95         StaticEnum(_, ref fields) => {
96             let variant = cx.ident_of("i");
97
98             let mut arms = ~[];
99             let mut variants = ~[];
100             let rvariant_arg = cx.ident_of("read_enum_variant_arg");
101
102             for (i, &(name, v_span, ref parts)) in fields.iter().enumerate() {
103                 variants.push(cx.expr_str(v_span,
104                                           token::get_ident(name.name)));
105
106                 let decoded = decode_static_fields(cx,
107                                                    v_span,
108                                                    name,
109                                                    parts,
110                                                    |cx, span, _, field| {
111                     let idx = cx.expr_uint(span, field);
112                     cx.expr_method_call(span, blkdecoder, rvariant_arg,
113                                         ~[idx, lambdadecode])
114                 });
115
116                 arms.push(cx.arm(v_span,
117                                  ~[cx.pat_lit(v_span, cx.expr_uint(v_span, i))],
118                                  decoded));
119             }
120
121             arms.push(cx.arm_unreachable(trait_span));
122
123             let result = cx.expr_match(trait_span, cx.expr_ident(trait_span, variant), arms);
124             let lambda = cx.lambda_expr(trait_span, ~[blkarg, variant], result);
125             let variant_vec = cx.expr_vec(trait_span, variants);
126             let result = cx.expr_method_call(trait_span, blkdecoder,
127                                              cx.ident_of("read_enum_variant"),
128                                              ~[variant_vec, lambda]);
129             cx.expr_method_call(trait_span,
130                                 decoder,
131                                 cx.ident_of("read_enum"),
132                                 ~[
133                 cx.expr_str(trait_span,
134                             token::get_ident(substr.type_ident.name)),
135                 cx.lambda_expr_1(trait_span, result, blkarg)
136             ])
137         }
138         _ => cx.bug("expected StaticEnum or StaticStruct in deriving(Decodable)")
139     };
140 }
141
142 /// Create a decoder for a single enum variant/struct:
143 /// - `outer_pat_ident` is the name of this enum variant/struct
144 /// - `getarg` should retrieve the `uint`-th field with name `@str`.
145 fn decode_static_fields(cx: &mut ExtCtxt,
146                         trait_span: Span,
147                         outer_pat_ident: Ident,
148                         fields: &StaticFields,
149                         getarg: |&mut ExtCtxt, Span, InternedString, uint| -> @Expr)
150                         -> @Expr {
151     match *fields {
152         Unnamed(ref fields) => {
153             if fields.is_empty() {
154                 cx.expr_ident(trait_span, outer_pat_ident)
155             } else {
156                 let fields = fields.iter().enumerate().map(|(i, &span)| {
157                     getarg(cx, span,
158                            token::intern_and_get_ident(format!("_field{}",
159                                                                i)),
160                            i)
161                 }).collect();
162
163                 cx.expr_call_ident(trait_span, outer_pat_ident, fields)
164             }
165         }
166         Named(ref fields) => {
167             // use the field's span to get nicer error messages.
168             let fields = fields.iter().enumerate().map(|(i, &(name, span))| {
169                 let arg = getarg(cx, span, token::get_ident(name.name), i);
170                 cx.field_imm(span, name, arg)
171             }).collect();
172             cx.expr_struct_ident(trait_span, outer_pat_ident, fields)
173         }
174     }
175 }