]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/ext/deriving/hash.rs
doc: remove incomplete sentence
[rust.git] / src / libsyntax / ext / deriving / hash.rs
1 // Copyright 2014 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 use ast::{MetaItem, Item, Expr, MutMutable};
12 use codemap::Span;
13 use ext::base::ExtCtxt;
14 use ext::build::AstBuilder;
15 use ext::deriving::generic::*;
16 use ext::deriving::generic::ty::*;
17 use parse::token::InternedString;
18 use ptr::P;
19
20 pub fn expand_deriving_hash<F>(cx: &mut ExtCtxt,
21                                span: Span,
22                                mitem: &MetaItem,
23                                item: &Item,
24                                push: F) where
25     F: FnOnce(P<Item>),
26 {
27
28     let (path, generics, args) = if cx.ecfg.deriving_hash_type_parameter {
29         (Path::new_(vec!("std", "hash", "Hash"), None,
30                     vec!(box Literal(Path::new_local("__S"))), true),
31          LifetimeBounds {
32              lifetimes: Vec::new(),
33              bounds: vec!(("__S",
34                            vec!(Path::new(vec!("std", "hash", "Writer"))))),
35          },
36          Path::new_local("__S"))
37     } else {
38         (Path::new(vec!("std", "hash", "Hash")),
39          LifetimeBounds::empty(),
40          Path::new(vec!("std", "hash", "sip", "SipState")))
41     };
42     let inline = cx.meta_word(span, InternedString::new("inline"));
43     let attrs = vec!(cx.attribute(span, inline));
44     let hash_trait_def = TraitDef {
45         span: span,
46         attributes: Vec::new(),
47         path: path,
48         additional_bounds: Vec::new(),
49         generics: generics,
50         methods: vec!(
51             MethodDef {
52                 name: "hash",
53                 generics: LifetimeBounds::empty(),
54                 explicit_self: borrowed_explicit_self(),
55                 args: vec!(Ptr(box Literal(args), Borrowed(None, MutMutable))),
56                 ret_ty: nil_ty(),
57                 attributes: attrs,
58                 combine_substructure: combine_substructure(|a, b, c| {
59                     hash_substructure(a, b, c)
60                 })
61             }
62         )
63     };
64
65     hash_trait_def.expand(cx, mitem, item, push);
66 }
67
68 fn hash_substructure(cx: &mut ExtCtxt, trait_span: Span, substr: &Substructure) -> P<Expr> {
69     let state_expr = match substr.nonself_args {
70         [ref state_expr] => state_expr,
71         _ => cx.span_bug(trait_span, "incorrect number of arguments in `deriving(Hash)`")
72     };
73     let hash_ident = substr.method_ident;
74     let call_hash = |&: span, thing_expr| {
75         let expr = cx.expr_method_call(span, thing_expr, hash_ident, vec!(state_expr.clone()));
76         cx.stmt_expr(expr)
77     };
78     let mut stmts = Vec::new();
79
80     let fields = match *substr.fields {
81         Struct(ref fs) => fs,
82         EnumMatching(index, variant, ref fs) => {
83             // Determine the discriminant. We will feed this value to the byte
84             // iteration function.
85             let discriminant = match variant.node.disr_expr {
86                 Some(ref d) => d.clone(),
87                 None => cx.expr_uint(trait_span, index)
88             };
89
90             stmts.push(call_hash(trait_span, discriminant));
91
92             fs
93         }
94         _ => cx.span_bug(trait_span, "impossible substructure in `deriving(Hash)`")
95     };
96
97     for &FieldInfo { ref self_, span, .. } in fields.iter() {
98         stmts.push(call_hash(span, self_.clone()));
99     }
100
101     if stmts.len() == 0 {
102         cx.span_bug(trait_span, "#[deriving(Hash)] needs at least one field");
103     }
104
105     cx.expr_block(cx.block(trait_span, stmts, None))
106 }