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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
use std::fmt;
use std::fmt::Debug;
use std::rc::Rc;

use crate::goals::Goal;
use crate::{
    constraints::{resolve_1, Constraint, ResolveFn},
    {LVarList, State, Unify, Value},
};

/** A [projection goal](super) that allows creating a new goal based on
the resolved value. Create with [`project_1`].
*/
#[allow(clippy::type_complexity)]
pub struct Project1<A: Unify> {
    a: Value<A>,
    f: Rc<dyn Fn(Rc<A>) -> Box<dyn Goal>>,
}

/** Create a [projection goal](super) that allows creating a new goal based on
the resolved value.

```
use canrun::{LVar, Query};
use canrun::goals::{project_1, both, unify, Succeed, Fail};

let x = LVar::new();
let goal = both(unify(1, x), project_1(x, |x| if *x < 2 { Box::new(Succeed) } else { Box::new(Fail) }));
let result: Vec<_> = goal.query(x).collect();
assert_eq!(result, vec![1])
```
*/
pub fn project_1<A, IA, F>(a: IA, func: F) -> Project1<A>
where
    A: Unify,
    IA: Into<Value<A>>,
    F: Fn(Rc<A>) -> Box<dyn Goal> + 'static,
{
    Project1 {
        a: a.into(),
        f: Rc::new(func),
    }
}

impl<A: Unify> Clone for Project1<A> {
    fn clone(&self) -> Self {
        Self {
            a: self.a.clone(),
            f: self.f.clone(),
        }
    }
}

impl<A: Unify> Goal for Project1<A> {
    fn apply(&self, state: State) -> Option<State> {
        state.constrain(Rc::new(self.clone()))
    }
}

impl<A: Unify> Constraint for Project1<A> {
    fn attempt(&self, state: &State) -> Result<ResolveFn, LVarList> {
        let a = resolve_1(&self.a, state)?;
        let goal = (self.f)(a);
        Ok(Box::new(move |state| goal.apply(state)))
    }
}

impl<A: Unify + Debug> Debug for Project1<A> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Project1 {:?}", self.a)
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        core::{LVar, Query},
        goals::{both::both, fail::Fail, project::project_1::project_1, succeed::Succeed, unify},
    };

    #[test]
    fn succeeds() {
        let x = LVar::new();
        let goal = both(
            unify(1, x),
            project_1(x, |x| {
                if *x < 2 {
                    Box::new(Succeed)
                } else {
                    Box::new(Fail)
                }
            }),
        );
        assert_eq!(goal.query(x).collect::<Vec<_>>(), vec![1]);
    }

    #[test]
    fn fails() {
        let x = LVar::new();
        let goal = both(
            unify(1, x),
            project_1(x, |x| {
                if *x < 1 {
                    Box::new(Succeed)
                } else {
                    Box::new(Fail)
                }
            }),
        );
        assert_eq!(goal.query(x).collect::<Vec<_>>(), vec![]);
    }
}