2014-01-30 19:29:35 +01:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-03-28 21:50:10 +11:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
Some code that abstracts away much of the boilerplate of writing
|
|
|
|
`deriving` instances for traits. Among other things it manages getting
|
|
|
|
access to the fields of the 4 different sorts of structs and enum
|
|
|
|
variants, as well as creating the method and impl ast instances.
|
|
|
|
|
|
|
|
Supported features (fairly exhaustive):
|
2013-05-07 01:23:51 +10:00
|
|
|
- Methods taking any number of parameters of any type, and returning
|
|
|
|
any type, other than vectors, bottom and closures.
|
|
|
|
- Generating `impl`s for types with type parameters and lifetimes
|
2013-03-28 21:50:10 +11:00
|
|
|
(e.g. `Option<T>`), the parameters are automatically given the
|
2013-05-07 01:23:51 +10:00
|
|
|
current trait as a bound. (This includes separate type parameters
|
|
|
|
and lifetimes for methods.)
|
2013-03-28 21:50:10 +11:00
|
|
|
- Additional bounds on the type parameters, e.g. the `Ord` instance
|
|
|
|
requires an explicit `Eq` bound at the
|
|
|
|
moment. (`TraitDef.additional_bounds`)
|
|
|
|
|
2014-01-07 18:49:13 -08:00
|
|
|
Unsupported: FIXME #6257: calling methods on reference fields,
|
2013-05-07 01:23:51 +10:00
|
|
|
e.g. deriving TotalEq/TotalOrd/Clone don't work on `struct A(&int)`,
|
|
|
|
because of how the auto-dereferencing happens.
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
The most important thing for implementers is the `Substructure` and
|
2013-05-07 01:23:51 +10:00
|
|
|
`SubstructureFields` objects. The latter groups 5 possibilities of the
|
2013-03-28 21:50:10 +11:00
|
|
|
arguments:
|
|
|
|
|
|
|
|
- `Struct`, when `Self` is a struct (including tuple structs, e.g
|
|
|
|
`struct T(int, char)`).
|
|
|
|
- `EnumMatching`, when `Self` is an enum and all the arguments are the
|
|
|
|
same variant of the enum (e.g. `Some(1)`, `Some(3)` and `Some(4)`)
|
|
|
|
- `EnumNonMatching` when `Self` is an enum and the arguments are not
|
2013-04-02 22:02:46 +11:00
|
|
|
the same variant (e.g. `None`, `Some(1)` and `None`). If
|
|
|
|
`const_nonmatching` is true, this will contain an empty list.
|
2013-05-07 01:23:51 +10:00
|
|
|
- `StaticEnum` and `StaticStruct` for static methods, where the type
|
2014-01-30 19:29:35 +01:00
|
|
|
being derived upon is either an enum or struct respectively. (Any
|
2013-05-07 01:23:51 +10:00
|
|
|
argument with type Self is just grouped among the non-self
|
|
|
|
arguments.)
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
In the first two cases, the values from the corresponding fields in
|
|
|
|
all the arguments are grouped together. In the `EnumNonMatching` case
|
|
|
|
this isn't possible (different variants have different fields), so the
|
2013-05-07 01:23:51 +10:00
|
|
|
fields are grouped by which argument they come from. There are no
|
|
|
|
fields with values in the static cases, so these are treated entirely
|
|
|
|
differently.
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
The non-static cases have `Option<ident>` in several places associated
|
2013-03-28 21:50:10 +11:00
|
|
|
with field `expr`s. This represents the name of the field it is
|
|
|
|
associated with. It is only not `None` when the associated field has
|
|
|
|
an identifier in the source code. For example, the `x`s in the
|
|
|
|
following snippet
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-05-07 01:23:51 +10:00
|
|
|
struct A { x : int }
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
struct B(int);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
enum C {
|
|
|
|
C0(int),
|
|
|
|
C1 { x: int }
|
|
|
|
}
|
2014-01-26 23:39:14 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
The `int`s in `B` and `C0` don't have an identifier, so the
|
|
|
|
`Option<ident>`s would be `None` for them.
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
In the static cases, the structure is summarised, either into the just
|
|
|
|
spans of the fields or a list of spans and the field idents (for tuple
|
|
|
|
structs and record structs, respectively), or a list of these, for
|
|
|
|
enums (one for each variant). For empty struct and empty enum
|
|
|
|
variants, it is represented as a count of 0.
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
# Examples
|
|
|
|
|
|
|
|
The following simplified `Eq` is used for in-code examples:
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-05-07 01:23:51 +10:00
|
|
|
trait Eq {
|
|
|
|
fn eq(&self, other: &Self);
|
|
|
|
}
|
|
|
|
impl Eq for int {
|
|
|
|
fn eq(&self, other: &int) -> bool {
|
|
|
|
*self == *other
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
Some examples of the values of `SubstructureFields` follow, using the
|
|
|
|
above `Eq`, `A`, `B` and `C`.
|
|
|
|
|
|
|
|
## Structs
|
|
|
|
|
|
|
|
When generating the `expr` for the `A` impl, the `SubstructureFields` is
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
|
|
|
Struct(~[FieldInfo {
|
|
|
|
span: <span of x>
|
|
|
|
name: Some(<ident of x>),
|
|
|
|
self_: <expr for &self.x>,
|
|
|
|
other: ~[<expr for &other.x]
|
|
|
|
}])
|
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
For the `B` impl, called with `B(a)` and `B(b)`,
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
|
|
|
Struct(~[FieldInfo {
|
|
|
|
span: <span of `int`>,
|
|
|
|
name: None,
|
2013-05-07 01:23:51 +10:00
|
|
|
<expr for &a>
|
2013-11-07 18:49:01 +11:00
|
|
|
~[<expr for &b>]
|
|
|
|
}])
|
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
## Enums
|
|
|
|
|
|
|
|
When generating the `expr` for a call with `self == C0(a)` and `other
|
|
|
|
== C0(b)`, the SubstructureFields is
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2014-01-09 15:05:33 +02:00
|
|
|
EnumMatching(0, <ast::Variant for C0>,
|
2013-11-07 18:49:01 +11:00
|
|
|
~[FieldInfo {
|
|
|
|
span: <span of int>
|
|
|
|
name: None,
|
|
|
|
self_: <expr for &a>,
|
|
|
|
other: ~[<expr for &b>]
|
|
|
|
}])
|
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
For `C1 {x}` and `C1 {x}`,
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2014-01-09 15:05:33 +02:00
|
|
|
EnumMatching(1, <ast::Variant for C1>,
|
2013-11-07 18:49:01 +11:00
|
|
|
~[FieldInfo {
|
|
|
|
span: <span of x>
|
|
|
|
name: Some(<ident of x>),
|
|
|
|
self_: <expr for &self.x>,
|
|
|
|
other: ~[<expr for &other.x>]
|
|
|
|
}])
|
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
For `C0(a)` and `C1 {x}` ,
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2014-01-09 15:05:33 +02:00
|
|
|
EnumNonMatching(~[(0, <ast::Variant for B0>,
|
2013-11-07 18:49:01 +11:00
|
|
|
~[(<span of int>, None, <expr for &a>)]),
|
2014-01-09 15:05:33 +02:00
|
|
|
(1, <ast::Variant for B1>,
|
2013-11-07 18:49:01 +11:00
|
|
|
~[(<span of x>, Some(<ident of x>),
|
2013-05-07 01:23:51 +10:00
|
|
|
<expr for &other.x>)])])
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
(and vice versa, but with the order of the outermost list flipped.)
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
## Static
|
|
|
|
|
|
|
|
A static method on the above would result in,
|
|
|
|
|
|
|
|
~~~~
|
2014-01-09 15:05:33 +02:00
|
|
|
StaticStruct(<ast::StructDef of A>, Named(~[(<ident of x>, <span of x>)]))
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2014-01-09 15:05:33 +02:00
|
|
|
StaticStruct(<ast::StructDef of B>, Unnamed(~[<span of x>]))
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2014-01-27 15:25:37 +11:00
|
|
|
StaticEnum(<ast::EnumDef of C>, ~[(<ident of C0>, <span of C0>, Unnamed(~[<span of int>])),
|
|
|
|
(<ident of C1>, <span of C1>,
|
|
|
|
Named(~[(<ident of x>, <span of x>)]))])
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
use ast;
|
2014-01-09 15:05:33 +02:00
|
|
|
use ast::{P, EnumDef, Expr, Ident, Generics, StructDef};
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-17 21:27:17 +10:00
|
|
|
use ext::base::ExtCtxt;
|
2013-05-18 00:19:28 +10:00
|
|
|
use ext::build::AstBuilder;
|
2013-12-07 11:57:44 +11:00
|
|
|
use codemap;
|
|
|
|
use codemap::Span;
|
2013-03-28 21:50:10 +11:00
|
|
|
use opt_vec;
|
2014-01-08 10:35:15 -08:00
|
|
|
use parse::token::InternedString;
|
2014-01-10 14:02:36 -08:00
|
|
|
use parse::token;
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-06-24 20:40:33 -04:00
|
|
|
use std::vec;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
pub use self::ty::*;
|
|
|
|
mod ty;
|
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
pub struct TraitDef<'a> {
|
2013-12-07 11:57:44 +11:00
|
|
|
/// The span for the current #[deriving(Foo)] header.
|
|
|
|
span: Span,
|
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
/// Path of the trait, including any type parameters
|
2013-12-09 23:16:18 -08:00
|
|
|
path: Path<'a>,
|
2014-02-08 19:39:53 -05:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
/// Additional bounds required of any type parameters of the type,
|
|
|
|
/// other than the current trait
|
2013-12-09 23:16:18 -08:00
|
|
|
additional_bounds: ~[Ty<'a>],
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2014-02-05 08:52:54 -08:00
|
|
|
/// Any extra lifetimes and/or bounds, e.g. `D: serialize::Decoder`
|
2013-12-09 23:16:18 -08:00
|
|
|
generics: LifetimeBounds<'a>,
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
methods: ~[MethodDef<'a>]
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
pub struct MethodDef<'a> {
|
2013-03-28 21:50:10 +11:00
|
|
|
/// name of the method
|
2013-12-09 23:16:18 -08:00
|
|
|
name: &'a str,
|
2013-06-24 20:40:33 -04:00
|
|
|
/// List of generics, e.g. `R: std::rand::Rng`
|
2013-12-09 23:16:18 -08:00
|
|
|
generics: LifetimeBounds<'a>,
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
/// Whether there is a self argument (outer Option) i.e. whether
|
|
|
|
/// this is a static function, and whether it is a pointer (inner
|
|
|
|
/// Option)
|
2013-12-09 23:16:18 -08:00
|
|
|
explicit_self: Option<Option<PtrTy<'a>>>,
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
/// Arguments other than the self argument
|
2013-12-09 23:16:18 -08:00
|
|
|
args: ~[Ty<'a>],
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
/// Return type
|
2013-12-09 23:16:18 -08:00
|
|
|
ret_ty: Ty<'a>,
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-11-19 11:13:34 +11:00
|
|
|
/// Whether to mark this as #[inline]
|
|
|
|
inline: bool,
|
|
|
|
|
2013-04-02 22:02:46 +11:00
|
|
|
/// if the value of the nonmatching enums is independent of the
|
2013-05-07 01:23:51 +10:00
|
|
|
/// actual enum variants, i.e. can use _ => .. match.
|
2013-04-02 22:02:46 +11:00
|
|
|
const_nonmatching: bool,
|
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
combine_substructure: CombineSubstructureFunc<'a>
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/// All the data about the data structure/method being derived upon.
|
2013-12-09 23:16:18 -08:00
|
|
|
pub struct Substructure<'a> {
|
2013-05-07 01:23:51 +10:00
|
|
|
/// ident of self
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
/// ident of the method
|
2013-09-02 02:50:59 +02:00
|
|
|
method_ident: Ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
/// dereferenced access to any Self or Ptr(Self, _) arguments
|
2013-12-09 23:16:18 -08:00
|
|
|
self_args: &'a [@Expr],
|
2013-05-07 01:23:51 +10:00
|
|
|
/// verbatim access to any other arguments
|
2013-12-09 23:16:18 -08:00
|
|
|
nonself_args: &'a [@Expr],
|
|
|
|
fields: &'a SubstructureFields<'a>
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
/// Summary of the relevant parts of a struct/enum field.
|
|
|
|
pub struct FieldInfo {
|
|
|
|
span: Span,
|
|
|
|
/// None for tuple structs/normal enum variants, Some for normal
|
|
|
|
/// structs/struct enum variants.
|
|
|
|
name: Option<Ident>,
|
|
|
|
/// The expression corresponding to this field of `self`
|
|
|
|
/// (specifically, a reference to it).
|
|
|
|
self_: @Expr,
|
|
|
|
/// The expressions corresponding to references to this field in
|
|
|
|
/// the other Self arguments.
|
|
|
|
other: ~[@Expr]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Fields for a static method
|
|
|
|
pub enum StaticFields {
|
|
|
|
/// Tuple structs/enum variants like this
|
|
|
|
Unnamed(~[Span]),
|
|
|
|
/// Normal structs/struct variants.
|
|
|
|
Named(~[(Ident, Span)])
|
|
|
|
}
|
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
/// A summary of the possible sets of fields. See above for details
|
|
|
|
/// and examples
|
2013-12-09 23:16:18 -08:00
|
|
|
pub enum SubstructureFields<'a> {
|
2013-11-07 18:49:01 +11:00
|
|
|
Struct(~[FieldInfo]),
|
2013-03-28 21:50:10 +11:00
|
|
|
/**
|
2014-01-09 15:05:33 +02:00
|
|
|
Matching variants of the enum: variant index, ast::Variant,
|
2013-11-07 18:49:01 +11:00
|
|
|
fields: the field name is only non-`None` in the case of a struct
|
|
|
|
variant.
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
2014-01-09 15:05:33 +02:00
|
|
|
EnumMatching(uint, &'a ast::Variant, ~[FieldInfo]),
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
/**
|
2014-01-09 15:05:33 +02:00
|
|
|
non-matching variants of the enum, [(variant index, ast::Variant,
|
2013-11-07 18:49:01 +11:00
|
|
|
[field span, field ident, fields])] (i.e. all fields for self are in the
|
2013-03-28 21:50:10 +11:00
|
|
|
first tuple, for other1 are in the second tuple, etc.)
|
|
|
|
*/
|
2014-01-09 15:05:33 +02:00
|
|
|
EnumNonMatching(&'a [(uint, P<ast::Variant>, ~[(Span, Option<Ident>, @Expr)])]),
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
/// A static method where Self is a struct.
|
2014-01-09 15:05:33 +02:00
|
|
|
StaticStruct(&'a ast::StructDef, StaticFields),
|
2013-11-07 18:49:01 +11:00
|
|
|
/// A static method where Self is an enum.
|
2014-01-27 15:25:37 +11:00
|
|
|
StaticEnum(&'a ast::EnumDef, ~[(Ident, Span, StaticFields)])
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
/**
|
|
|
|
Combine the values of all the fields together. The last argument is
|
|
|
|
all the fields of all the structures, see above for details.
|
|
|
|
*/
|
2013-12-09 23:16:18 -08:00
|
|
|
pub type CombineSubstructureFunc<'a> =
|
2014-02-06 08:50:21 +11:00
|
|
|
'a |&mut ExtCtxt, Span, &Substructure| -> @Expr;
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
/**
|
2013-05-07 01:23:51 +10:00
|
|
|
Deal with non-matching enum variants, the arguments are a list
|
2014-01-09 15:05:33 +02:00
|
|
|
representing each variant: (variant index, ast::Variant instance,
|
2013-05-07 01:23:51 +10:00
|
|
|
[variant fields]), and a list of the nonself args of the type
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
2013-12-09 23:16:18 -08:00
|
|
|
pub type EnumNonMatchFunc<'a> =
|
2014-02-06 08:50:21 +11:00
|
|
|
'a |&mut ExtCtxt,
|
2013-11-19 17:36:32 -08:00
|
|
|
Span,
|
2014-01-09 15:05:33 +02:00
|
|
|
&[(uint, P<ast::Variant>, ~[(Span, Option<Ident>, @Expr)])],
|
2013-11-19 17:36:32 -08:00
|
|
|
&[@Expr]|
|
|
|
|
-> @Expr;
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
impl<'a> TraitDef<'a> {
|
2013-12-07 11:57:44 +11:00
|
|
|
pub fn expand(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-07-19 21:51:37 +10:00
|
|
|
_mitem: @ast::MetaItem,
|
2014-01-09 15:05:33 +02:00
|
|
|
in_items: ~[@ast::Item]) -> ~[@ast::Item] {
|
2013-06-07 17:46:44 +10:00
|
|
|
let mut result = ~[];
|
2013-08-03 12:45:23 -04:00
|
|
|
for item in in_items.iter() {
|
2013-06-07 17:46:44 +10:00
|
|
|
result.push(*item);
|
|
|
|
match item.node {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ItemStruct(struct_def, ref generics) => {
|
2014-02-08 19:39:53 -05:00
|
|
|
result.push(self.expand_struct_def(cx,
|
|
|
|
struct_def,
|
2013-06-07 17:46:44 +10:00
|
|
|
item.ident,
|
|
|
|
generics));
|
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ItemEnum(ref enum_def, ref generics) => {
|
2014-02-08 19:39:53 -05:00
|
|
|
result.push(self.expand_enum_def(cx,
|
|
|
|
enum_def,
|
2013-06-07 17:46:44 +10:00
|
|
|
item.ident,
|
|
|
|
generics));
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2013-06-07 17:30:38 +10:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Given that we are deriving a trait `Tr` for a type `T<'a, ...,
|
|
|
|
* 'z, A, ..., Z>`, creates an impl like:
|
|
|
|
*
|
|
|
|
* impl<'a, ..., 'z, A:Tr B1 B2, ..., Z: Tr B1 B2> Tr for T<A, ..., Z> { ... }
|
|
|
|
*
|
|
|
|
* where B1, B2, ... are the bounds given by `bounds_paths`.'
|
|
|
|
*
|
|
|
|
*/
|
2013-12-07 11:57:44 +11:00
|
|
|
fn create_derived_impl(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident, generics: &Generics,
|
2014-01-09 15:05:33 +02:00
|
|
|
methods: ~[@ast::Method]) -> @ast::Item {
|
2013-12-07 11:57:44 +11:00
|
|
|
let trait_path = self.path.to_path(cx, self.span, type_ident, generics);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let mut trait_generics = self.generics.to_generics(cx, self.span,
|
|
|
|
type_ident, generics);
|
2013-06-07 17:30:38 +10:00
|
|
|
// Copy the lifetimes
|
2013-08-03 12:45:23 -04:00
|
|
|
for l in generics.lifetimes.iter() {
|
2013-06-27 17:41:35 -07:00
|
|
|
trait_generics.lifetimes.push(*l)
|
2013-06-07 17:30:38 +10:00
|
|
|
};
|
|
|
|
// Create the type parameters.
|
2013-08-03 12:45:23 -04:00
|
|
|
for ty_param in generics.ty_params.iter() {
|
2013-06-07 17:30:38 +10:00
|
|
|
// I don't think this can be moved out of the loop, since
|
|
|
|
// a TyParamBound requires an ast id
|
|
|
|
let mut bounds = opt_vec::from(
|
|
|
|
// extra restrictions on the generics parameters to the type being derived upon
|
2013-11-20 16:23:04 -08:00
|
|
|
self.additional_bounds.map(|p| {
|
2014-02-08 19:39:53 -05:00
|
|
|
cx.typarambound(p.to_path(cx, self.span,
|
|
|
|
type_ident, generics))
|
2013-11-20 16:23:04 -08:00
|
|
|
}));
|
2013-06-07 17:30:38 +10:00
|
|
|
// require the current trait
|
2013-07-02 12:47:32 -07:00
|
|
|
bounds.push(cx.typarambound(trait_path.clone()));
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2014-01-30 19:28:02 +02:00
|
|
|
trait_generics.ty_params.push(cx.typaram(ty_param.ident, bounds, None));
|
2013-06-07 17:30:38 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the reference to the trait.
|
|
|
|
let trait_ref = cx.trait_ref(trait_path);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-06-07 17:30:38 +10:00
|
|
|
// Create the type parameters on the `self` path.
|
2013-11-20 16:23:04 -08:00
|
|
|
let self_ty_params = generics.ty_params.map(|ty_param| {
|
2013-12-07 11:57:44 +11:00
|
|
|
cx.ty_ident(self.span, ty_param.ident)
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-10-29 06:03:32 -04:00
|
|
|
let self_lifetimes = generics.lifetimes.clone();
|
2013-06-07 17:30:38 +10:00
|
|
|
|
|
|
|
// Create the type of `self`.
|
2013-12-07 11:57:44 +11:00
|
|
|
let self_type = cx.ty_path(
|
|
|
|
cx.path_all(self.span, false, ~[ type_ident ], self_lifetimes,
|
2014-02-08 19:39:53 -05:00
|
|
|
opt_vec::take_vec(self_ty_params)), None);
|
2013-06-07 17:30:38 +10:00
|
|
|
|
|
|
|
let doc_attr = cx.attribute(
|
2013-12-07 11:57:44 +11:00
|
|
|
self.span,
|
|
|
|
cx.meta_name_value(self.span,
|
2014-01-08 10:35:15 -08:00
|
|
|
InternedString::new("doc"),
|
2014-01-10 14:02:36 -08:00
|
|
|
ast::LitStr(token::intern_and_get_ident(
|
2014-02-08 19:39:53 -05:00
|
|
|
"Automatically derived."),
|
|
|
|
ast::CookedStr)));
|
2013-06-07 17:30:38 +10:00
|
|
|
cx.item(
|
2013-12-07 11:57:44 +11:00
|
|
|
self.span,
|
2013-06-07 17:30:38 +10:00
|
|
|
::parse::token::special_idents::clownshoes_extensions,
|
|
|
|
~[doc_attr],
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::ItemImpl(trait_generics, Some(trait_ref),
|
|
|
|
self_type, methods.map(|x| *x)))
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
fn expand_struct_def(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2014-01-09 15:05:33 +02:00
|
|
|
struct_def: &StructDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2014-01-09 15:05:33 +02:00
|
|
|
generics: &Generics) -> @ast::Item {
|
2013-11-20 16:23:04 -08:00
|
|
|
let methods = self.methods.map(|method_def| {
|
2013-04-30 08:49:48 -07:00
|
|
|
let (explicit_self, self_args, nonself_args, tys) =
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.split_self_nonself_args(
|
|
|
|
cx, self, type_ident, generics);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
let body = if method_def.is_static() {
|
|
|
|
method_def.expand_static_struct_method_body(
|
2014-02-08 19:39:53 -05:00
|
|
|
cx,
|
2013-12-07 11:57:44 +11:00
|
|
|
self,
|
2013-05-07 01:23:51 +10:00
|
|
|
struct_def,
|
|
|
|
type_ident,
|
|
|
|
self_args, nonself_args)
|
2013-03-28 21:50:10 +11:00
|
|
|
} else {
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.expand_struct_method_body(cx,
|
|
|
|
self,
|
2013-03-28 21:50:10 +11:00
|
|
|
struct_def,
|
2013-05-07 01:23:51 +10:00
|
|
|
type_ident,
|
|
|
|
self_args, nonself_args)
|
2013-03-28 21:50:10 +11:00
|
|
|
};
|
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.create_method(cx, self,
|
2013-05-07 01:23:51 +10:00
|
|
|
type_ident, generics,
|
2013-04-30 08:49:48 -07:00
|
|
|
explicit_self, tys,
|
2013-05-07 01:23:51 +10:00
|
|
|
body)
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
self.create_derived_impl(cx, type_ident, generics, methods)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
fn expand_enum_def(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2014-01-09 15:05:33 +02:00
|
|
|
enum_def: &EnumDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2014-01-09 15:05:33 +02:00
|
|
|
generics: &Generics) -> @ast::Item {
|
2013-11-20 16:23:04 -08:00
|
|
|
let methods = self.methods.map(|method_def| {
|
2013-04-30 08:49:48 -07:00
|
|
|
let (explicit_self, self_args, nonself_args, tys) =
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.split_self_nonself_args(cx, self,
|
|
|
|
type_ident, generics);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
let body = if method_def.is_static() {
|
|
|
|
method_def.expand_static_enum_method_body(
|
2014-02-08 19:39:53 -05:00
|
|
|
cx,
|
2013-12-07 11:57:44 +11:00
|
|
|
self,
|
2013-05-07 01:23:51 +10:00
|
|
|
enum_def,
|
|
|
|
type_ident,
|
|
|
|
self_args, nonself_args)
|
|
|
|
} else {
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.expand_enum_method_body(cx,
|
|
|
|
self,
|
2013-05-07 01:23:51 +10:00
|
|
|
enum_def,
|
|
|
|
type_ident,
|
|
|
|
self_args, nonself_args)
|
|
|
|
};
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
method_def.create_method(cx, self,
|
2013-05-07 01:23:51 +10:00
|
|
|
type_ident, generics,
|
2013-04-30 08:49:48 -07:00
|
|
|
explicit_self, tys,
|
2013-05-07 01:23:51 +10:00
|
|
|
body)
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
self.create_derived_impl(cx, type_ident, generics, methods)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 23:16:18 -08:00
|
|
|
impl<'a> MethodDef<'a> {
|
2013-03-28 21:50:10 +11:00
|
|
|
fn call_substructure_method(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-09-02 03:45:37 +02:00
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr],
|
2013-03-28 21:50:10 +11:00
|
|
|
fields: &SubstructureFields)
|
2013-09-02 03:45:37 +02:00
|
|
|
-> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
let substructure = Substructure {
|
|
|
|
type_ident: type_ident,
|
2014-02-08 19:39:53 -05:00
|
|
|
method_ident: cx.ident_of(self.name),
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args: self_args,
|
|
|
|
nonself_args: nonself_args,
|
2013-03-28 21:50:10 +11:00
|
|
|
fields: fields
|
|
|
|
};
|
2014-02-08 19:39:53 -05:00
|
|
|
(self.combine_substructure)(cx, trait_.span,
|
2013-03-28 21:50:10 +11:00
|
|
|
&substructure)
|
|
|
|
}
|
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
fn get_ret_ty(&self,
|
|
|
|
cx: &mut ExtCtxt,
|
|
|
|
trait_: &TraitDef,
|
|
|
|
generics: &Generics,
|
|
|
|
type_ident: Ident)
|
|
|
|
-> P<ast::Ty> {
|
|
|
|
self.ret_ty.to_ty(cx, trait_.span, type_ident, generics)
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_static(&self) -> bool {
|
2013-04-30 08:49:48 -07:00
|
|
|
self.explicit_self.is_none()
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
fn split_self_nonself_args(&self,
|
|
|
|
cx: &mut ExtCtxt,
|
|
|
|
trait_: &TraitDef,
|
|
|
|
type_ident: Ident,
|
|
|
|
generics: &Generics)
|
2014-01-09 15:05:33 +02:00
|
|
|
-> (ast::ExplicitSelf, ~[@Expr], ~[@Expr], ~[(Ident, P<ast::Ty>)]) {
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-06-04 21:43:41 -07:00
|
|
|
let mut self_args = ~[];
|
|
|
|
let mut nonself_args = ~[];
|
|
|
|
let mut arg_tys = ~[];
|
2013-05-07 01:23:51 +10:00
|
|
|
let mut nonstatic = false;
|
|
|
|
|
2013-04-30 08:49:48 -07:00
|
|
|
let ast_explicit_self = match self.explicit_self {
|
2013-05-12 00:25:31 -04:00
|
|
|
Some(ref self_ptr) => {
|
2013-12-07 11:57:44 +11:00
|
|
|
let (self_expr, explicit_self) =
|
2014-02-08 19:39:53 -05:00
|
|
|
ty::get_explicit_self(cx, trait_.span, self_ptr);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
self_args.push(self_expr);
|
|
|
|
nonstatic = true;
|
2013-04-30 08:49:48 -07:00
|
|
|
|
|
|
|
explicit_self
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
None => codemap::respan(trait_.span, ast::SelfStatic),
|
2013-04-30 08:49:48 -07:00
|
|
|
};
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-08-03 12:45:23 -04:00
|
|
|
for (i, ty) in self.args.iter().enumerate() {
|
2014-02-08 19:39:53 -05:00
|
|
|
let ast_ty = ty.to_ty(cx, trait_.span, type_ident, generics);
|
|
|
|
let ident = cx.ident_of(format!("__arg_{}", i));
|
2013-05-07 01:23:51 +10:00
|
|
|
arg_tys.push((ident, ast_ty));
|
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
let arg_expr = cx.expr_ident(trait_.span, ident);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
match *ty {
|
|
|
|
// for static methods, just treat any Self
|
|
|
|
// arguments as a normal arg
|
|
|
|
Self if nonstatic => {
|
|
|
|
self_args.push(arg_expr);
|
|
|
|
}
|
|
|
|
Ptr(~Self, _) if nonstatic => {
|
2014-02-08 19:39:53 -05:00
|
|
|
self_args.push(cx.expr_deref(trait_.span, arg_expr))
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
nonself_args.push(arg_expr);
|
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-04-30 08:49:48 -07:00
|
|
|
(ast_explicit_self, self_args, nonself_args, arg_tys)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
fn create_method(&self,
|
|
|
|
cx: &mut ExtCtxt,
|
|
|
|
trait_: &TraitDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
generics: &Generics,
|
2014-01-09 15:05:33 +02:00
|
|
|
explicit_self: ast::ExplicitSelf,
|
2013-12-01 00:00:39 +02:00
|
|
|
arg_types: ~[(Ident, P<ast::Ty>)],
|
2014-01-09 15:05:33 +02:00
|
|
|
body: @Expr) -> @ast::Method {
|
2013-05-07 01:23:51 +10:00
|
|
|
// create the generics that aren't for Self
|
2014-02-08 19:39:53 -05:00
|
|
|
let fn_generics = self.generics.to_generics(cx, trait_.span, type_ident, generics);
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2014-01-27 14:18:36 +02:00
|
|
|
let self_arg = match explicit_self.node {
|
|
|
|
ast::SelfStatic => None,
|
|
|
|
_ => Some(ast::Arg::new_self(trait_.span, ast::MutImmutable))
|
|
|
|
};
|
2014-02-09 07:37:33 -05:00
|
|
|
let args = {
|
|
|
|
let args = arg_types.move_iter().map(|(name, ty)| {
|
|
|
|
cx.arg(trait_.span, name, ty)
|
|
|
|
});
|
|
|
|
self_arg.move_iter().chain(args).collect()
|
|
|
|
};
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
let ret_type = self.get_ret_ty(cx, trait_, generics, type_ident);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
let method_ident = cx.ident_of(self.name);
|
|
|
|
let fn_decl = cx.fn_decl(args, ret_type);
|
|
|
|
let body_block = cx.block_expr(body);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-11-19 11:13:34 +11:00
|
|
|
let attrs = if self.inline {
|
2014-01-08 10:35:15 -08:00
|
|
|
~[
|
2014-02-08 19:39:53 -05:00
|
|
|
cx
|
2014-01-08 10:35:15 -08:00
|
|
|
.attribute(trait_.span,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx
|
2014-01-08 10:35:15 -08:00
|
|
|
.meta_word(trait_.span,
|
|
|
|
InternedString::new(
|
|
|
|
"inline")))
|
|
|
|
]
|
2013-11-19 11:13:34 +11:00
|
|
|
} else {
|
|
|
|
~[]
|
|
|
|
};
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
// Create the method.
|
2014-01-09 15:05:33 +02:00
|
|
|
@ast::Method {
|
2013-03-28 21:50:10 +11:00
|
|
|
ident: method_ident,
|
2013-11-19 11:13:34 +11:00
|
|
|
attrs: attrs,
|
2013-05-07 01:23:51 +10:00
|
|
|
generics: fn_generics,
|
2013-04-30 08:49:48 -07:00
|
|
|
explicit_self: explicit_self,
|
2014-01-09 15:05:33 +02:00
|
|
|
purity: ast::ImpureFn,
|
2013-03-28 21:50:10 +11:00
|
|
|
decl: fn_decl,
|
|
|
|
body: body_block,
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-12-07 11:57:44 +11:00
|
|
|
span: trait_.span,
|
2014-01-09 15:05:33 +02:00
|
|
|
vis: ast::Inherited,
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
#[deriving(Eq)]
|
2013-05-07 01:23:51 +10:00
|
|
|
struct A { x: int, y: int }
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
// equivalent to:
|
|
|
|
impl Eq for A {
|
2013-05-07 01:23:51 +10:00
|
|
|
fn eq(&self, __arg_1: &A) -> bool {
|
2013-03-28 21:50:10 +11:00
|
|
|
match *self {
|
2013-05-07 01:23:51 +10:00
|
|
|
A {x: ref __self_0_0, y: ref __self_0_1} => {
|
|
|
|
match *__arg_1 {
|
|
|
|
A {x: ref __self_1_0, y: ref __self_1_1} => {
|
|
|
|
__self_0_0.eq(__self_1_0) && __self_0_1.eq(__self_1_1)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
2013-05-07 01:23:51 +10:00
|
|
|
fn expand_struct_method_body(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2014-01-09 15:05:33 +02:00
|
|
|
struct_def: &StructDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-09-02 03:45:37 +02:00
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr])
|
|
|
|
-> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-06-04 21:43:41 -07:00
|
|
|
let mut raw_fields = ~[]; // ~[[fields of self],
|
|
|
|
// [fields of next Self arg], [etc]]
|
|
|
|
let mut patterns = ~[];
|
2013-08-03 12:45:23 -04:00
|
|
|
for i in range(0u, self_args.len()) {
|
2014-02-08 19:39:53 -05:00
|
|
|
let (pat, ident_expr) = trait_.create_struct_pattern(cx, type_ident, struct_def,
|
2013-12-07 11:57:44 +11:00
|
|
|
format!("__self_{}", i),
|
|
|
|
ast::MutImmutable);
|
2013-05-07 01:23:51 +10:00
|
|
|
patterns.push(pat);
|
|
|
|
raw_fields.push(ident_expr);
|
2013-08-01 18:35:46 -04:00
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
// transpose raw_fields
|
|
|
|
let fields = match raw_fields {
|
2013-06-20 15:15:03 -04:00
|
|
|
[ref self_arg, .. rest] => {
|
2013-11-20 16:23:04 -08:00
|
|
|
self_arg.iter().enumerate().map(|(i, &(span, opt_id, field))| {
|
|
|
|
let other_fields = rest.map(|l| {
|
2013-05-07 01:23:51 +10:00
|
|
|
match &l[i] {
|
2013-11-07 18:49:01 +11:00
|
|
|
&(_, _, ex) => ex
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2013-11-07 18:49:01 +11:00
|
|
|
FieldInfo {
|
|
|
|
span: span,
|
|
|
|
name: opt_id,
|
|
|
|
self_: field,
|
|
|
|
other: other_fields
|
|
|
|
}
|
2013-11-20 16:23:04 -08:00
|
|
|
}).collect()
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2014-02-08 19:39:53 -05:00
|
|
|
[] => { cx.span_bug(trait_.span,
|
|
|
|
"no self arguments to non-static method \
|
|
|
|
in generic `deriving`") }
|
2013-05-07 01:23:51 +10:00
|
|
|
};
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
// body of the inner most destructuring match
|
|
|
|
let mut body = self.call_substructure_method(
|
2014-02-08 19:39:53 -05:00
|
|
|
cx,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_,
|
2013-05-07 01:23:51 +10:00
|
|
|
type_ident,
|
|
|
|
self_args,
|
|
|
|
nonself_args,
|
|
|
|
&Struct(fields));
|
|
|
|
|
|
|
|
// make a series of nested matches, to destructure the
|
|
|
|
// structs. This is actually right-to-left, but it shoudn't
|
|
|
|
// matter.
|
2013-08-03 12:45:23 -04:00
|
|
|
for (&arg_expr, &pat) in self_args.iter().zip(patterns.iter()) {
|
2014-02-08 19:39:53 -05:00
|
|
|
body = cx.expr_match(trait_.span, arg_expr,
|
|
|
|
~[ cx.arm(trait_.span, ~[pat], body) ])
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
2013-05-07 01:23:51 +10:00
|
|
|
body
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
fn expand_static_struct_method_body(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2014-01-09 15:05:33 +02:00
|
|
|
struct_def: &StructDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-09-02 03:45:37 +02:00
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr])
|
|
|
|
-> @Expr {
|
2014-02-08 19:39:53 -05:00
|
|
|
let summary = trait_.summarise_struct(cx, struct_def);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
self.call_substructure_method(cx,
|
|
|
|
trait_,
|
2013-05-07 01:23:51 +10:00
|
|
|
type_ident,
|
|
|
|
self_args, nonself_args,
|
|
|
|
&StaticStruct(struct_def, summary))
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
#[deriving(Eq)]
|
|
|
|
enum A {
|
|
|
|
A1
|
|
|
|
A2(int)
|
|
|
|
}
|
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
// is equivalent to (with const_nonmatching == false)
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
impl Eq for A {
|
2013-05-07 01:23:51 +10:00
|
|
|
fn eq(&self, __arg_1: &A) {
|
2013-03-28 21:50:10 +11:00
|
|
|
match *self {
|
2013-05-07 01:23:51 +10:00
|
|
|
A1 => match *__arg_1 {
|
|
|
|
A1 => true
|
|
|
|
A2(ref __arg_1_1) => false
|
2013-03-28 21:50:10 +11:00
|
|
|
},
|
2013-05-07 01:23:51 +10:00
|
|
|
A2(self_1) => match *__arg_1 {
|
2013-03-28 21:50:10 +11:00
|
|
|
A1 => false,
|
2013-05-07 01:23:51 +10:00
|
|
|
A2(ref __arg_1_1) => self_1.eq(__arg_1_1)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
|
|
|
fn expand_enum_method_body(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2014-01-09 15:05:33 +02:00
|
|
|
enum_def: &EnumDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-09-02 03:45:37 +02:00
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr])
|
2014-02-08 19:39:53 -05:00
|
|
|
-> @Expr {
|
2013-05-12 00:25:31 -04:00
|
|
|
let mut matches = ~[];
|
2014-02-08 19:39:53 -05:00
|
|
|
self.build_enum_match(cx, trait_, enum_def, type_ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args, nonself_args,
|
2013-05-12 00:25:31 -04:00
|
|
|
None, &mut matches, 0)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-04-02 22:02:46 +11:00
|
|
|
Creates the nested matches for an enum definition recursively, i.e.
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
match self {
|
|
|
|
Variant1 => match other { Variant1 => matching, Variant2 => nonmatching, ... },
|
|
|
|
Variant2 => match other { Variant1 => nonmatching, Variant2 => matching, ... },
|
|
|
|
...
|
|
|
|
}
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
It acts in the most naive way, so every branch (and subbranch,
|
|
|
|
subsubbranch, etc) exists, not just the ones where all the variants in
|
|
|
|
the tree are the same. Hopefully the optimisers get rid of any
|
|
|
|
repetition, otherwise derived methods with many Self arguments will be
|
|
|
|
exponentially large.
|
2013-04-02 22:02:46 +11:00
|
|
|
|
|
|
|
`matching` is Some(n) if all branches in the tree above the
|
|
|
|
current position are variant `n`, `None` otherwise (including on
|
|
|
|
the first call).
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
|
|
|
fn build_enum_match(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2014-01-09 15:05:33 +02:00
|
|
|
enum_def: &EnumDef,
|
2013-09-02 02:50:59 +02:00
|
|
|
type_ident: Ident,
|
2013-09-02 03:45:37 +02:00
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr],
|
2013-04-02 22:02:46 +11:00
|
|
|
matching: Option<uint>,
|
2014-01-09 15:05:33 +02:00
|
|
|
matches_so_far: &mut ~[(uint, P<ast::Variant>,
|
2013-11-07 18:49:01 +11:00
|
|
|
~[(Span, Option<Ident>, @Expr)])],
|
2013-09-02 03:45:37 +02:00
|
|
|
match_count: uint) -> @Expr {
|
2013-05-07 01:23:51 +10:00
|
|
|
if match_count == self_args.len() {
|
2013-03-28 21:50:10 +11:00
|
|
|
// we've matched against all arguments, so make the final
|
|
|
|
// expression at the bottom of the match tree
|
2013-05-12 00:25:31 -04:00
|
|
|
if matches_so_far.len() == 0 {
|
2013-12-07 11:57:44 +11:00
|
|
|
cx.span_bug(trait_.span,
|
2014-02-08 19:39:53 -05:00
|
|
|
"no self match on an enum in \
|
|
|
|
generic `deriving`");
|
2013-05-12 00:25:31 -04:00
|
|
|
}
|
|
|
|
// we currently have a vec of vecs, where each
|
|
|
|
// subvec is the fields of one of the arguments,
|
|
|
|
// but if the variants all match, we want this as
|
|
|
|
// vec of tuples, where each tuple represents a
|
|
|
|
// field.
|
|
|
|
|
|
|
|
let substructure;
|
|
|
|
|
|
|
|
// most arms don't have matching variants, so do a
|
|
|
|
// quick check to see if they match (even though
|
|
|
|
// this means iterating twice) instead of being
|
|
|
|
// optimistic and doing a pile of allocations etc.
|
|
|
|
match matching {
|
|
|
|
Some(variant_index) => {
|
|
|
|
// `ref` inside let matches is buggy. Causes havoc wih rusc.
|
|
|
|
// let (variant_index, ref self_vec) = matches_so_far[0];
|
|
|
|
let (variant, self_vec) = match matches_so_far[0] {
|
2013-12-01 00:00:39 +02:00
|
|
|
(_, v, ref s) => (v, s)
|
2013-05-12 00:25:31 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut enum_matching_fields = vec::from_elem(self_vec.len(), ~[]);
|
|
|
|
|
2013-08-03 12:45:23 -04:00
|
|
|
for triple in matches_so_far.tail().iter() {
|
2013-06-20 15:15:03 -04:00
|
|
|
match triple {
|
|
|
|
&(_, _, ref other_fields) => {
|
2013-11-07 18:49:01 +11:00
|
|
|
for (i, &(_, _, e)) in other_fields.iter().enumerate() {
|
|
|
|
enum_matching_fields[i].push(e);
|
2013-06-20 15:15:03 -04:00
|
|
|
}
|
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
2013-05-12 00:25:31 -04:00
|
|
|
let field_tuples =
|
2013-11-20 16:23:04 -08:00
|
|
|
self_vec.iter()
|
|
|
|
.zip(enum_matching_fields.iter())
|
|
|
|
.map(|(&(span, id, self_f), other)| {
|
2013-11-07 18:49:01 +11:00
|
|
|
FieldInfo {
|
|
|
|
span: span,
|
|
|
|
name: id,
|
|
|
|
self_: self_f,
|
|
|
|
other: (*other).clone()
|
|
|
|
}
|
2013-11-20 16:23:04 -08:00
|
|
|
}).collect();
|
2013-05-12 00:25:31 -04:00
|
|
|
substructure = EnumMatching(variant_index, variant, field_tuples);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
substructure = EnumNonMatching(*matches_so_far);
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
2014-02-08 19:39:53 -05:00
|
|
|
self.call_substructure_method(cx, trait_, type_ident,
|
2013-05-12 00:25:31 -04:00
|
|
|
self_args, nonself_args,
|
|
|
|
&substructure)
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
} else { // there are still matches to create
|
2013-05-07 01:23:51 +10:00
|
|
|
let current_match_str = if match_count == 0 {
|
|
|
|
~"__self"
|
2013-03-28 21:50:10 +11:00
|
|
|
} else {
|
2013-09-27 21:01:58 -07:00
|
|
|
format!("__arg_{}", match_count)
|
2013-03-28 21:50:10 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
let mut arms = ~[];
|
|
|
|
|
2013-04-02 22:02:46 +11:00
|
|
|
// the code for nonmatching variants only matters when
|
|
|
|
// we've seen at least one other variant already
|
|
|
|
if self.const_nonmatching && match_count > 0 {
|
|
|
|
// make a matching-variant match, and a _ match.
|
|
|
|
let index = match matching {
|
|
|
|
Some(i) => i,
|
2013-12-07 11:57:44 +11:00
|
|
|
None => cx.span_bug(trait_.span,
|
2014-02-06 10:38:08 +01:00
|
|
|
"non-matching variants when required to \
|
2013-11-07 18:49:01 +11:00
|
|
|
be matching in generic `deriving`")
|
2013-04-02 22:02:46 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
// matching-variant match
|
2013-12-01 00:00:39 +02:00
|
|
|
let variant = enum_def.variants[index];
|
2014-02-08 19:39:53 -05:00
|
|
|
let (pattern, idents) = trait_.create_enum_variant_pattern(cx,
|
|
|
|
variant,
|
2013-12-07 11:57:44 +11:00
|
|
|
current_match_str,
|
|
|
|
ast::MutImmutable);
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-12-01 00:00:39 +02:00
|
|
|
matches_so_far.push((index, variant, idents));
|
2014-02-08 19:39:53 -05:00
|
|
|
let arm_expr = self.build_enum_match(cx,
|
|
|
|
trait_,
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_def,
|
|
|
|
type_ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args, nonself_args,
|
2013-04-02 22:02:46 +11:00
|
|
|
matching,
|
|
|
|
matches_so_far,
|
|
|
|
match_count + 1);
|
2013-12-23 16:20:52 +01:00
|
|
|
matches_so_far.pop().unwrap();
|
2013-12-07 11:57:44 +11:00
|
|
|
arms.push(cx.arm(trait_.span, ~[ pattern ], arm_expr));
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-04-02 22:02:46 +11:00
|
|
|
if enum_def.variants.len() > 1 {
|
2013-05-12 00:25:31 -04:00
|
|
|
let e = &EnumNonMatching(&[]);
|
2014-02-08 19:39:53 -05:00
|
|
|
let wild_expr = self.call_substructure_method(cx, trait_, type_ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args, nonself_args,
|
2013-05-12 00:25:31 -04:00
|
|
|
e);
|
2014-02-08 19:39:53 -05:00
|
|
|
let wild_arm = cx.arm(
|
|
|
|
trait_.span,
|
|
|
|
~[ cx.pat_wild(trait_.span) ],
|
|
|
|
wild_expr);
|
2013-04-02 22:02:46 +11:00
|
|
|
arms.push(wild_arm);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// create an arm matching on each variant
|
2013-12-01 00:00:39 +02:00
|
|
|
for (index, &variant) in enum_def.variants.iter().enumerate() {
|
2014-02-08 19:39:53 -05:00
|
|
|
let (pattern, idents) = trait_.create_enum_variant_pattern(cx,
|
|
|
|
variant,
|
2013-12-07 11:57:44 +11:00
|
|
|
current_match_str,
|
|
|
|
ast::MutImmutable);
|
2013-04-02 22:02:46 +11:00
|
|
|
|
2013-12-01 00:00:39 +02:00
|
|
|
matches_so_far.push((index, variant, idents));
|
2013-04-02 22:02:46 +11:00
|
|
|
let new_matching =
|
|
|
|
match matching {
|
|
|
|
_ if match_count == 0 => Some(index),
|
|
|
|
Some(i) if index == i => Some(i),
|
|
|
|
_ => None
|
|
|
|
};
|
2014-02-08 19:39:53 -05:00
|
|
|
let arm_expr = self.build_enum_match(cx,
|
|
|
|
trait_,
|
2013-04-02 22:02:46 +11:00
|
|
|
enum_def,
|
|
|
|
type_ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args, nonself_args,
|
2013-04-02 22:02:46 +11:00
|
|
|
new_matching,
|
|
|
|
matches_so_far,
|
|
|
|
match_count + 1);
|
2013-12-23 16:20:52 +01:00
|
|
|
matches_so_far.pop().unwrap();
|
2013-04-02 22:02:46 +11:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let arm = cx.arm(trait_.span, ~[ pattern ], arm_expr);
|
2013-04-02 22:02:46 +11:00
|
|
|
arms.push(arm);
|
|
|
|
}
|
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-05-07 01:23:51 +10:00
|
|
|
// match foo { arm, arm, arm, ... }
|
2013-12-07 11:57:44 +11:00
|
|
|
cx.expr_match(trait_.span, self_args[match_count], arms)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
2013-05-07 01:23:51 +10:00
|
|
|
|
|
|
|
fn expand_static_enum_method_body(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
trait_: &TraitDef,
|
2014-01-09 15:05:33 +02:00
|
|
|
enum_def: &EnumDef,
|
2013-11-07 18:49:01 +11:00
|
|
|
type_ident: Ident,
|
|
|
|
self_args: &[@Expr],
|
|
|
|
nonself_args: &[@Expr])
|
2013-09-02 03:45:37 +02:00
|
|
|
-> @Expr {
|
2013-11-20 16:23:04 -08:00
|
|
|
let summary = enum_def.variants.map(|v| {
|
2013-05-07 01:23:51 +10:00
|
|
|
let ident = v.node.name;
|
|
|
|
let summary = match v.node.kind {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::TupleVariantKind(ref args) => {
|
2014-02-08 19:39:53 -05:00
|
|
|
Unnamed(args.map(|va| trait_.set_expn_info(cx, va.ty.span)))
|
2013-12-07 13:43:22 +11:00
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::StructVariantKind(struct_def) => {
|
2014-02-08 19:39:53 -05:00
|
|
|
trait_.summarise_struct(cx, struct_def)
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
|
|
|
};
|
2014-01-27 15:25:37 +11:00
|
|
|
(ident, v.span, summary)
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2014-02-08 19:39:53 -05:00
|
|
|
self.call_substructure_method(cx, trait_, type_ident,
|
2013-05-07 01:23:51 +10:00
|
|
|
self_args, nonself_args,
|
|
|
|
&StaticEnum(enum_def, summary))
|
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
#[deriving(Eq)] // dogfooding!
|
|
|
|
enum StructType {
|
|
|
|
Unknown, Record, Tuple
|
|
|
|
}
|
|
|
|
|
|
|
|
// general helper methods.
|
|
|
|
impl<'a> TraitDef<'a> {
|
2014-02-08 19:39:53 -05:00
|
|
|
fn set_expn_info(&self,
|
|
|
|
cx: &mut ExtCtxt,
|
|
|
|
mut to_set: Span) -> Span {
|
2013-12-23 15:08:23 +01:00
|
|
|
let trait_name = match self.path.path.last() {
|
2014-02-08 19:39:53 -05:00
|
|
|
None => cx.span_bug(self.span, "trait with empty path in generic `deriving`"),
|
2013-12-07 13:43:22 +11:00
|
|
|
Some(name) => *name
|
|
|
|
};
|
|
|
|
to_set.expn_info = Some(@codemap::ExpnInfo {
|
|
|
|
call_site: to_set,
|
|
|
|
callee: codemap::NameAndSpan {
|
2014-01-30 15:53:09 -08:00
|
|
|
name: format!("deriving({})", trait_name),
|
2013-12-07 13:43:22 +11:00
|
|
|
format: codemap::MacroAttribute,
|
|
|
|
span: Some(self.span)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
to_set
|
|
|
|
}
|
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
fn summarise_struct(&self,
|
|
|
|
cx: &mut ExtCtxt,
|
|
|
|
struct_def: &StructDef) -> StaticFields {
|
2013-12-07 11:57:44 +11:00
|
|
|
let mut named_idents = ~[];
|
|
|
|
let mut just_spans = ~[];
|
|
|
|
for field in struct_def.fields.iter(){
|
2014-02-08 19:39:53 -05:00
|
|
|
let sp = self.set_expn_info(cx, field.span);
|
2013-12-07 11:57:44 +11:00
|
|
|
match field.node.kind {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::NamedField(ident, _) => named_idents.push((ident, sp)),
|
|
|
|
ast::UnnamedField => just_spans.push(sp),
|
2013-12-07 11:57:44 +11:00
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
2013-05-07 01:23:51 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
match (just_spans.is_empty(), named_idents.is_empty()) {
|
2014-02-08 19:39:53 -05:00
|
|
|
(false, false) => cx.span_bug(self.span,
|
|
|
|
"a struct with named and unnamed \
|
|
|
|
fields in generic `deriving`"),
|
2013-12-07 11:57:44 +11:00
|
|
|
// named fields
|
|
|
|
(_, false) => Named(named_idents),
|
|
|
|
// tuple structs (includes empty structs)
|
|
|
|
(_, _) => Unnamed(just_spans)
|
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
fn create_subpatterns(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-07-05 22:15:21 +12:00
|
|
|
field_paths: ~[ast::Path],
|
2013-09-02 03:45:37 +02:00
|
|
|
mutbl: ast::Mutability)
|
2013-12-07 11:57:44 +11:00
|
|
|
-> ~[@ast::Pat] {
|
|
|
|
field_paths.map(|path| {
|
2014-02-08 19:39:53 -05:00
|
|
|
cx.pat(path.span,
|
2013-12-07 11:57:44 +11:00
|
|
|
ast::PatIdent(ast::BindByRef(mutbl), (*path).clone(), None))
|
|
|
|
})
|
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
fn create_struct_pattern(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2013-12-07 11:57:44 +11:00
|
|
|
struct_ident: Ident,
|
2014-01-09 15:05:33 +02:00
|
|
|
struct_def: &StructDef,
|
2013-12-07 11:57:44 +11:00
|
|
|
prefix: &str,
|
|
|
|
mutbl: ast::Mutability)
|
2014-02-08 19:39:53 -05:00
|
|
|
-> (@ast::Pat, ~[(Span, Option<Ident>, @Expr)]) {
|
2013-12-07 11:57:44 +11:00
|
|
|
if struct_def.fields.is_empty() {
|
|
|
|
return (
|
|
|
|
cx.pat_ident_binding_mode(
|
|
|
|
self.span, struct_ident, ast::BindByValue(ast::MutImmutable)),
|
|
|
|
~[]);
|
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let matching_path = cx.path(self.span, ~[ struct_ident ]);
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let mut paths = ~[];
|
|
|
|
let mut ident_expr = ~[];
|
|
|
|
let mut struct_type = Unknown;
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
for (i, struct_field) in struct_def.fields.iter().enumerate() {
|
2014-02-08 19:39:53 -05:00
|
|
|
let sp = self.set_expn_info(cx, struct_field.span);
|
2013-12-07 11:57:44 +11:00
|
|
|
let opt_id = match struct_field.node.kind {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::NamedField(ident, _) if (struct_type == Unknown ||
|
|
|
|
struct_type == Record) => {
|
2013-12-07 11:57:44 +11:00
|
|
|
struct_type = Record;
|
|
|
|
Some(ident)
|
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::UnnamedField if (struct_type == Unknown ||
|
|
|
|
struct_type == Tuple) => {
|
2013-12-07 11:57:44 +11:00
|
|
|
struct_type = Tuple;
|
|
|
|
None
|
|
|
|
}
|
|
|
|
_ => {
|
2014-02-06 10:38:08 +01:00
|
|
|
cx.span_bug(sp, "a struct with named and unnamed fields in `deriving`");
|
2013-12-07 11:57:44 +11:00
|
|
|
}
|
|
|
|
};
|
|
|
|
let path = cx.path_ident(sp, cx.ident_of(format!("{}_{}", prefix, i)));
|
|
|
|
paths.push(path.clone());
|
2014-02-08 19:39:53 -05:00
|
|
|
let val = cx.expr(
|
|
|
|
sp, ast::ExprParen(
|
|
|
|
cx.expr_deref(sp, cx.expr_path(path))));
|
2014-01-28 00:20:50 +11:00
|
|
|
ident_expr.push((sp, opt_id, val));
|
2013-12-07 11:57:44 +11:00
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
let subpats = self.create_subpatterns(cx, paths, mutbl);
|
2013-12-07 11:57:44 +11:00
|
|
|
|
|
|
|
// struct_type is definitely not Unknown, since struct_def.fields
|
|
|
|
// must be nonempty to reach here
|
|
|
|
let pattern = if struct_type == Record {
|
|
|
|
let field_pats = subpats.iter().zip(ident_expr.iter()).map(|(&pat, &(_, id, _))| {
|
|
|
|
// id is guaranteed to be Some
|
|
|
|
ast::FieldPat { ident: id.unwrap(), pat: pat }
|
|
|
|
}).collect();
|
|
|
|
cx.pat_struct(self.span, matching_path, field_pats)
|
|
|
|
} else {
|
|
|
|
cx.pat_enum(self.span, matching_path, subpats)
|
2013-06-07 17:30:38 +10:00
|
|
|
};
|
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
(pattern, ident_expr)
|
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
fn create_enum_variant_pattern(&self,
|
2014-02-08 19:39:53 -05:00
|
|
|
cx: &mut ExtCtxt,
|
2014-01-09 15:05:33 +02:00
|
|
|
variant: &ast::Variant,
|
2013-12-07 11:57:44 +11:00
|
|
|
prefix: &str,
|
|
|
|
mutbl: ast::Mutability)
|
|
|
|
-> (@ast::Pat, ~[(Span, Option<Ident>, @Expr)]) {
|
|
|
|
let variant_ident = variant.node.name;
|
|
|
|
match variant.node.kind {
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::TupleVariantKind(ref variant_args) => {
|
2013-12-07 11:57:44 +11:00
|
|
|
if variant_args.is_empty() {
|
|
|
|
return (cx.pat_ident_binding_mode(variant.span, variant_ident,
|
2014-02-08 19:39:53 -05:00
|
|
|
ast::BindByValue(ast::MutImmutable)),
|
2013-12-07 11:57:44 +11:00
|
|
|
~[]);
|
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let matching_path = cx.path_ident(variant.span, variant_ident);
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
let mut paths = ~[];
|
|
|
|
let mut ident_expr = ~[];
|
|
|
|
for (i, va) in variant_args.iter().enumerate() {
|
2014-02-08 19:39:53 -05:00
|
|
|
let sp = self.set_expn_info(cx, va.ty.span);
|
2013-12-07 11:57:44 +11:00
|
|
|
let path = cx.path_ident(sp, cx.ident_of(format!("{}_{}", prefix, i)));
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
paths.push(path.clone());
|
2014-02-08 19:39:53 -05:00
|
|
|
let val = cx.expr(
|
|
|
|
sp, ast::ExprParen(cx.expr_deref(sp, cx.expr_path(path))));
|
2014-01-28 00:20:50 +11:00
|
|
|
ident_expr.push((sp, None, val));
|
2013-12-07 11:57:44 +11:00
|
|
|
}
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2014-02-08 19:39:53 -05:00
|
|
|
let subpats = self.create_subpatterns(cx, paths, mutbl);
|
2013-06-07 17:30:38 +10:00
|
|
|
|
2013-12-07 11:57:44 +11:00
|
|
|
(cx.pat_enum(variant.span, matching_path, subpats),
|
|
|
|
ident_expr)
|
|
|
|
}
|
2014-01-09 15:05:33 +02:00
|
|
|
ast::StructVariantKind(struct_def) => {
|
2014-02-08 19:39:53 -05:00
|
|
|
self.create_struct_pattern(cx, variant_ident, struct_def,
|
2013-12-07 11:57:44 +11:00
|
|
|
prefix, mutbl)
|
2013-06-07 17:30:38 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
/* helpful premade recipes */
|
|
|
|
|
|
|
|
/**
|
|
|
|
Fold the fields. `use_foldl` controls whether this is done
|
|
|
|
left-to-right (`true`) or right-to-left (`false`).
|
|
|
|
*/
|
|
|
|
pub fn cs_fold(use_foldl: bool,
|
2014-02-06 08:50:21 +11:00
|
|
|
f: |&mut ExtCtxt, Span, @Expr, @Expr, &[@Expr]| -> @Expr,
|
2013-09-02 03:45:37 +02:00
|
|
|
base: @Expr,
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt,
|
2013-11-19 12:21:21 -08:00
|
|
|
trait_span: Span,
|
|
|
|
substructure: &Substructure)
|
|
|
|
-> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
match *substructure.fields {
|
2013-05-12 00:25:31 -04:00
|
|
|
EnumMatching(_, _, ref all_fields) | Struct(ref all_fields) => {
|
2013-03-28 21:50:10 +11:00
|
|
|
if use_foldl {
|
2013-11-20 16:23:04 -08:00
|
|
|
all_fields.iter().fold(base, |old, field| {
|
2013-11-07 18:49:01 +11:00
|
|
|
f(cx, field.span, old, field.self_, field.other)
|
2013-11-20 16:23:04 -08:00
|
|
|
})
|
2013-03-28 21:50:10 +11:00
|
|
|
} else {
|
2013-11-20 16:23:04 -08:00
|
|
|
all_fields.rev_iter().fold(base, |old, field| {
|
2013-11-07 18:49:01 +11:00
|
|
|
f(cx, field.span, old, field.self_, field.other)
|
2013-11-20 16:23:04 -08:00
|
|
|
})
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
},
|
2013-11-07 18:49:01 +11:00
|
|
|
EnumNonMatching(ref all_enums) => enum_nonmatch_f(cx, trait_span,
|
2013-05-12 00:25:31 -04:00
|
|
|
*all_enums,
|
|
|
|
substructure.nonself_args),
|
2013-11-28 12:22:53 -08:00
|
|
|
StaticEnum(..) | StaticStruct(..) => {
|
2014-02-06 10:38:08 +01:00
|
|
|
cx.span_bug(trait_span, "static function in `deriving`")
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Call the method that is being derived on all the fields, and then
|
|
|
|
process the collected results. i.e.
|
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-05-07 01:23:51 +10:00
|
|
|
f(cx, span, ~[self_1.method(__arg_1_1, __arg_2_1),
|
|
|
|
self_2.method(__arg_1_2, __arg_2_2)])
|
2013-11-07 18:49:01 +11:00
|
|
|
~~~
|
2013-03-28 21:50:10 +11:00
|
|
|
*/
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2014-02-06 08:50:21 +11:00
|
|
|
pub fn cs_same_method(f: |&mut ExtCtxt, Span, ~[@Expr]| -> @Expr,
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt,
|
2013-11-19 12:21:21 -08:00
|
|
|
trait_span: Span,
|
|
|
|
substructure: &Substructure)
|
|
|
|
-> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
match *substructure.fields {
|
2013-05-12 00:25:31 -04:00
|
|
|
EnumMatching(_, _, ref all_fields) | Struct(ref all_fields) => {
|
2013-03-28 21:50:10 +11:00
|
|
|
// call self_n.method(other_1_n, other_2_n, ...)
|
2013-11-20 16:23:04 -08:00
|
|
|
let called = all_fields.map(|field| {
|
2013-11-07 18:49:01 +11:00
|
|
|
cx.expr_method_call(field.span,
|
|
|
|
field.self_,
|
2013-05-19 15:53:42 +10:00
|
|
|
substructure.method_ident,
|
2014-01-28 00:20:50 +11:00
|
|
|
field.other.map(|e| cx.expr_addr_of(field.span, *e)))
|
2013-11-20 16:23:04 -08:00
|
|
|
});
|
2013-03-28 21:50:10 +11:00
|
|
|
|
2013-11-07 18:49:01 +11:00
|
|
|
f(cx, trait_span, called)
|
2013-03-28 21:50:10 +11:00
|
|
|
},
|
2013-11-07 18:49:01 +11:00
|
|
|
EnumNonMatching(ref all_enums) => enum_nonmatch_f(cx, trait_span,
|
2013-05-12 00:25:31 -04:00
|
|
|
*all_enums,
|
|
|
|
substructure.nonself_args),
|
2013-11-28 12:22:53 -08:00
|
|
|
StaticEnum(..) | StaticStruct(..) => {
|
2014-02-06 10:38:08 +01:00
|
|
|
cx.span_bug(trait_span, "static function in `deriving`")
|
2013-05-07 01:23:51 +10:00
|
|
|
}
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Fold together the results of calling the derived method on all the
|
|
|
|
fields. `use_foldl` controls whether this is done left-to-right
|
|
|
|
(`true`) or right-to-left (`false`).
|
|
|
|
*/
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-28 21:50:10 +11:00
|
|
|
pub fn cs_same_method_fold(use_foldl: bool,
|
2014-02-06 08:50:21 +11:00
|
|
|
f: |&mut ExtCtxt, Span, @Expr, @Expr| -> @Expr,
|
2013-09-02 03:45:37 +02:00
|
|
|
base: @Expr,
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt,
|
2013-11-19 12:21:21 -08:00
|
|
|
trait_span: Span,
|
|
|
|
substructure: &Substructure)
|
|
|
|
-> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
cs_same_method(
|
|
|
|
|cx, span, vals| {
|
|
|
|
if use_foldl {
|
2013-11-20 16:23:04 -08:00
|
|
|
vals.iter().fold(base, |old, &new| {
|
2013-03-28 21:50:10 +11:00
|
|
|
f(cx, span, old, new)
|
2013-11-20 16:23:04 -08:00
|
|
|
})
|
2013-03-28 21:50:10 +11:00
|
|
|
} else {
|
2013-11-20 16:23:04 -08:00
|
|
|
vals.rev_iter().fold(base, |old, &new| {
|
2013-03-28 21:50:10 +11:00
|
|
|
f(cx, span, old, new)
|
2013-11-20 16:23:04 -08:00
|
|
|
})
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
enum_nonmatch_f,
|
2013-11-07 18:49:01 +11:00
|
|
|
cx, trait_span, substructure)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Use a given binop to combine the result of calling the derived method
|
|
|
|
on all the fields.
|
|
|
|
*/
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-09-02 03:45:37 +02:00
|
|
|
pub fn cs_binop(binop: ast::BinOp, base: @Expr,
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt, trait_span: Span,
|
2013-09-02 03:45:37 +02:00
|
|
|
substructure: &Substructure) -> @Expr {
|
2013-03-28 21:50:10 +11:00
|
|
|
cs_same_method_fold(
|
|
|
|
true, // foldl is good enough
|
|
|
|
|cx, span, old, new| {
|
2013-05-19 15:53:42 +10:00
|
|
|
cx.expr_binary(span,
|
|
|
|
binop,
|
|
|
|
old, new)
|
2013-03-28 21:50:10 +11:00
|
|
|
|
|
|
|
},
|
|
|
|
base,
|
|
|
|
enum_nonmatch_f,
|
2013-11-07 18:49:01 +11:00
|
|
|
cx, trait_span, substructure)
|
2013-03-28 21:50:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/// cs_binop with binop == or
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-28 21:50:10 +11:00
|
|
|
pub fn cs_or(enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt, span: Span,
|
2013-09-02 03:45:37 +02:00
|
|
|
substructure: &Substructure) -> @Expr {
|
|
|
|
cs_binop(ast::BiOr, cx.expr_bool(span, false),
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f,
|
|
|
|
cx, span, substructure)
|
|
|
|
}
|
2013-09-16 21:12:18 -07:00
|
|
|
|
2013-03-28 21:50:10 +11:00
|
|
|
/// cs_binop with binop == and
|
2013-06-18 14:45:18 -07:00
|
|
|
#[inline]
|
2013-03-28 21:50:10 +11:00
|
|
|
pub fn cs_and(enum_nonmatch_f: EnumNonMatchFunc,
|
2014-02-06 08:50:21 +11:00
|
|
|
cx: &mut ExtCtxt, span: Span,
|
2013-09-02 03:45:37 +02:00
|
|
|
substructure: &Substructure) -> @Expr {
|
|
|
|
cs_binop(ast::BiAnd, cx.expr_bool(span, true),
|
2013-03-28 21:50:10 +11:00
|
|
|
enum_nonmatch_f,
|
|
|
|
cx, span, substructure)
|
|
|
|
}
|