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
113
114
115
116
117
118
119
use conch_parser::ast;
use future::{EnvFuture, Poll};
use eval::{Concat, concat, Fields, WordEval, WordEvalConfig};
use std::fmt;
use std::slice;
use std::vec;
impl<W, E: ?Sized> WordEval<E> for ast::ComplexWord<W>
where W: WordEval<E>,
{
type EvalResult = W::EvalResult;
type Error = W::Error;
type EvalFuture = ComplexWord<W, vec::IntoIter<W>, E>;
fn eval_with_config(self, env: &E, cfg: WordEvalConfig) -> Self::EvalFuture {
let state = match self {
ast::ComplexWord::Single(w) => State::Single(w.eval_with_config(env, cfg)),
ast::ComplexWord::Concat(v) => State::Concat(concat(v, env, cfg)),
};
ComplexWord {
state: state,
}
}
}
impl<'a, W, E: ?Sized> WordEval<E> for &'a ast::ComplexWord<W>
where &'a W: WordEval<E>,
{
type EvalResult = <&'a W as WordEval<E>>::EvalResult;
type Error = <&'a W as WordEval<E>>::Error;
type EvalFuture = ComplexWord<&'a W, slice::Iter<'a, W>, E>;
fn eval_with_config(self, env: &E, cfg: WordEvalConfig) -> Self::EvalFuture {
let state = match *self {
ast::ComplexWord::Single(ref w) => State::Single(w.eval_with_config(env, cfg)),
ast::ComplexWord::Concat(ref v) => State::Concat(concat(v, env, cfg)),
};
ComplexWord {
state: state,
}
}
}
#[must_use = "futures do nothing unless polled"]
pub struct ComplexWord<W, I, E: ?Sized>
where W: WordEval<E>,
I: Iterator<Item = W>
{
state: State<W, I, E>,
}
impl<W, I, E: ?Sized> fmt::Debug for ComplexWord<W, I, E>
where W: WordEval<E> + fmt::Debug,
W::EvalResult: fmt::Debug,
W::EvalFuture: fmt::Debug,
I: Iterator<Item = W> + fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("ComplexWord")
.field("state", &self.state)
.finish()
}
}
enum State<W, I, E: ?Sized>
where W: WordEval<E>,
I: Iterator<Item = W>,
{
Single(W::EvalFuture),
Concat(Concat<W, I, E>),
}
impl<W, I, E: ?Sized> fmt::Debug for State<W, I, E>
where W: WordEval<E> + fmt::Debug,
W::EvalResult: fmt::Debug,
W::EvalFuture: fmt::Debug,
I: Iterator<Item = W> + fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match *self {
State::Single(ref f) => {
fmt.debug_tuple("State::Single")
.field(f)
.finish()
},
State::Concat(ref f) => {
fmt.debug_tuple("State::Concat")
.field(f)
.finish()
},
}
}
}
impl<W, I, E: ?Sized> EnvFuture<E> for ComplexWord<W, I, E>
where W: WordEval<E>,
I: Iterator<Item = W>,
{
type Item = Fields<W::EvalResult>;
type Error = W::Error;
fn poll(&mut self, env: &mut E) -> Poll<Self::Item, Self::Error> {
match self.state {
State::Single(ref mut s) => s.poll(env),
State::Concat(ref mut c) => c.poll(env),
}
}
fn cancel(&mut self, env: &mut E) {
match self.state {
State::Single(ref mut s) => s.cancel(env),
State::Concat(ref mut c) => c.cancel(env),
}
}
}