2014-02-21 21:33:23 -08:00
|
|
|
// Copyright 2014 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-04-03 13:38:45 +13:00
|
|
|
use ast;
|
2014-02-21 21:33:23 -08:00
|
|
|
use ast::{MetaItem, Item, Expr, MutMutable};
|
|
|
|
use codemap::Span;
|
|
|
|
use ext::base::ExtCtxt;
|
|
|
|
use ext::build::AstBuilder;
|
|
|
|
use ext::deriving::generic::*;
|
2014-04-23 22:43:45 +08:00
|
|
|
use parse::token::InternedString;
|
2014-02-21 21:33:23 -08:00
|
|
|
|
|
|
|
pub fn expand_deriving_hash(cx: &mut ExtCtxt,
|
|
|
|
span: Span,
|
|
|
|
mitem: @MetaItem,
|
|
|
|
item: @Item,
|
|
|
|
push: |@Item|) {
|
|
|
|
|
2014-02-28 23:17:38 -08:00
|
|
|
let (path, generics, args) = if cx.ecfg.deriving_hash_type_parameter {
|
|
|
|
(Path::new_(vec!("std", "hash", "Hash"), None,
|
2014-04-25 01:08:02 -07:00
|
|
|
vec!(box Literal(Path::new_local("__S"))), true),
|
2014-02-28 23:17:38 -08:00
|
|
|
LifetimeBounds {
|
|
|
|
lifetimes: Vec::new(),
|
2014-05-20 20:06:33 -07:00
|
|
|
bounds: vec!(("__S", ast::StaticSize,
|
|
|
|
vec!(Path::new(vec!("std", "hash", "Writer"))))),
|
2014-02-28 23:17:38 -08:00
|
|
|
},
|
2014-03-11 20:07:42 -07:00
|
|
|
Path::new_local("__S"))
|
2014-02-28 23:17:38 -08:00
|
|
|
} else {
|
|
|
|
(Path::new(vec!("std", "hash", "Hash")),
|
|
|
|
LifetimeBounds::empty(),
|
|
|
|
Path::new(vec!("std", "hash", "sip", "SipState")))
|
|
|
|
};
|
2014-04-23 22:43:45 +08:00
|
|
|
let inline = cx.meta_word(span, InternedString::new("inline"));
|
|
|
|
let attrs = vec!(cx.attribute(span, inline));
|
2014-02-21 21:33:23 -08:00
|
|
|
let hash_trait_def = TraitDef {
|
|
|
|
span: span,
|
2014-02-28 13:09:09 -08:00
|
|
|
attributes: Vec::new(),
|
2014-02-28 23:17:38 -08:00
|
|
|
path: path,
|
2014-02-28 13:09:09 -08:00
|
|
|
additional_bounds: Vec::new(),
|
2014-02-28 23:17:38 -08:00
|
|
|
generics: generics,
|
2014-02-28 13:09:09 -08:00
|
|
|
methods: vec!(
|
2014-02-21 21:33:23 -08:00
|
|
|
MethodDef {
|
|
|
|
name: "hash",
|
|
|
|
generics: LifetimeBounds::empty(),
|
|
|
|
explicit_self: borrowed_explicit_self(),
|
2014-04-25 01:08:02 -07:00
|
|
|
args: vec!(Ptr(box Literal(args), Borrowed(None, MutMutable))),
|
2014-02-21 21:33:23 -08:00
|
|
|
ret_ty: nil_ty(),
|
2014-04-23 22:43:45 +08:00
|
|
|
attributes: attrs,
|
2014-02-21 21:33:23 -08:00
|
|
|
const_nonmatching: false,
|
2014-04-21 23:25:18 -07:00
|
|
|
combine_substructure: combine_substructure(|a, b, c| {
|
|
|
|
hash_substructure(a, b, c)
|
|
|
|
})
|
2014-02-21 21:33:23 -08:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
)
|
2014-02-21 21:33:23 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
hash_trait_def.expand(cx, mitem, item, push);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hash_substructure(cx: &mut ExtCtxt, trait_span: Span, substr: &Substructure) -> @Expr {
|
|
|
|
let state_expr = match substr.nonself_args {
|
|
|
|
[state_expr] => state_expr,
|
|
|
|
_ => cx.span_bug(trait_span, "incorrect number of arguments in `deriving(Hash)`")
|
|
|
|
};
|
|
|
|
let hash_ident = substr.method_ident;
|
|
|
|
let call_hash = |span, thing_expr| {
|
2014-02-28 13:09:09 -08:00
|
|
|
let expr = cx.expr_method_call(span, thing_expr, hash_ident, vec!(state_expr));
|
2014-02-21 21:33:23 -08:00
|
|
|
cx.stmt_expr(expr)
|
|
|
|
};
|
2014-02-28 13:09:09 -08:00
|
|
|
let mut stmts = Vec::new();
|
2014-02-21 21:33:23 -08:00
|
|
|
|
|
|
|
let fields = match *substr.fields {
|
|
|
|
Struct(ref fs) => fs,
|
|
|
|
EnumMatching(index, variant, ref fs) => {
|
|
|
|
// Determine the discriminant. We will feed this value to the byte
|
|
|
|
// iteration function.
|
|
|
|
let discriminant = match variant.node.disr_expr {
|
|
|
|
Some(d) => d,
|
|
|
|
None => cx.expr_uint(trait_span, index)
|
|
|
|
};
|
|
|
|
|
|
|
|
stmts.push(call_hash(trait_span, discriminant));
|
|
|
|
|
|
|
|
fs
|
|
|
|
}
|
|
|
|
_ => cx.span_bug(trait_span, "impossible substructure in `deriving(Hash)`")
|
|
|
|
};
|
|
|
|
|
|
|
|
for &FieldInfo { self_, span, .. } in fields.iter() {
|
|
|
|
stmts.push(call_hash(span, self_));
|
|
|
|
}
|
|
|
|
|
|
|
|
if stmts.len() == 0 {
|
|
|
|
cx.span_bug(trait_span, "#[deriving(Hash)] needs at least one field");
|
|
|
|
}
|
|
|
|
|
|
|
|
cx.expr_block(cx.block(trait_span, stmts, None))
|
|
|
|
}
|