1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
use syntax::ast;
use syntax::codemap::{DUMMY_SP, Span};
use syntax::ptr::P;

use expr::ExprBuilder;
use invoke::{Invoke, Identity};
use ty::TyBuilder;

//////////////////////////////////////////////////////////////////////////////

pub struct Const {
    pub ty: P<ast::Ty>,
    pub expr: Option<P<ast::Expr>>,
}

//////////////////////////////////////////////////////////////////////////////

pub struct ConstBuilder<F=Identity> {
    callback: F,
    span: Span,
    expr: Option<P<ast::Expr>>,
}

impl ConstBuilder {
    pub fn new() -> Self {
        ConstBuilder::with_callback(Identity)
    }
}

impl<F> ConstBuilder<F>
    where F: Invoke<Const>,
{
    pub fn with_callback(callback: F) -> Self
        where F: Invoke<Const>,
    {
        ConstBuilder {
            callback: callback,
            span: DUMMY_SP,
            expr: None,
        }
    }

    pub fn span(mut self, span: Span) -> Self {
        self.span = span;
        self
    }

    pub fn with_expr(mut self, expr: P<ast::Expr>) -> Self {
        self.expr = Some(expr);
        self
    }

    pub fn expr(self) -> ExprBuilder<Self> {
        ExprBuilder::with_callback(self)
    }

    pub fn ty(self) -> TyBuilder<Self> {
        TyBuilder::with_callback(self)
    }

    pub fn build(self, ty: P<ast::Ty>) -> F::Result {
        self.callback.invoke(Const {
            ty: ty,
            expr: self.expr,
        })
    }
}

impl<F> Invoke<P<ast::Expr>> for ConstBuilder<F>
    where F: Invoke<Const>,
{
    type Result = Self;

    fn invoke(self, expr: P<ast::Expr>) -> Self {
        self.with_expr(expr)
    }
}

impl<F> Invoke<P<ast::Ty>> for ConstBuilder<F>
    where F: Invoke<Const>,
{
    type Result = F::Result;

    fn invoke(self, ty: P<ast::Ty>) -> F::Result {
        self.build(ty)
    }
}